From a2a0dcc19ca0f8fa0f683dac15097afb4d9e53e6 Mon Sep 17 00:00:00 2001 From: Carlos Scheidegger Date: Thu, 10 Sep 2026 13:59:08 -0500 Subject: [PATCH] Expose the YAML frontmatter body in the grammar so a `---` inside a value cannot truncate the metadata (bd-mjo6ao32, GH #671) The reader located the frontmatter body by `split("---")`-ing the opaque `metadata` token's text and keeping the second piece, so the first `---` inside a value ended the YAML there: a plain scalar silently dropped every later key, a quoted scalar failed with Q-0-99. Since PR #290 the qmd writer canonicalizes every em dash to `---`, which made both shapes reachable from any document with an em dash in a frontmatter string. The tree-sitter scanner was never at fault (it closes the block only on a column-0 `---` line), but it emitted the whole block as one external leaf token, which is why the Rust side had to rediscover the body. The grammar now parses the block as four external tokens and exposes the body as a `yaml` child under the `body` field: (metadata body: (yaml)) pampa takes the YAML text and range straight from that node; `extract_between_delimiters` and the `block.text.find(content)` offset hazard are deleted. Nothing in Rust knows about `---` any more, and the `yaml` node is also what a YAML injection query would target. Scanner: `_minus_metadata_start` (the opening `---`, sharing the thematic break's `mark_end` position so the confirming look-ahead can run speculatively), `_minus_metadata_open_newline`, `_minus_metadata_body`, `_minus_metadata_end`, then the ordinary `choice(_newline, _eof)` tail, so a closing `---` at EOF without a newline now also closes the block. A new `STATE_IN_MINUS_METADATA` bit gates the interior tokens against tree-sitter's mark-everything-valid error recovery. Consequences of the carrier change (`RawBlock quarto_minus_metadata` now holds the body text and the body range): the body is no longer trimmed, the metadata span ends after the final line break, and the source-info chain is one layer shorter. Resolved key/value offsets are unchanged. That renumbers every `s` index in the 20 `ts-packages/annotated-qmd/examples/*.json` fixtures (regenerated with the documented loop; verified that every non-`astContext` difference is an `s` renumbering) and updates 4 insta snapshots under `crates/pampa/snapshots/json/` (002, and three others with frontmatter) the same way. `Block::BlockMetadata` for a lexical block now spans the YAML body rather than the delimited block; see the plan for the follow-up that would carry both ranges. Regenerating `parser.c` renumbers LR states, so the state-keyed `resources/error-corpus/_autogen-table.json` was rebuilt with `crates/pampa/scripts/build_error_table.ts`; only the table changed. Tests: 12 reader/round-trip/tree-shape regressions in `test_frontmatter_delimiters.rs`; 5 GH #671 corpus cases plus the `body: (yaml)` child on 9 existing expectations (one, `div.txt: 2`, also gains the `block_continuation` every block in a div carries). The three file-based tests in `test_meta.rs` now go through the real reader instead of handing whole documents to `rawblock_to_config_value`. Plan: claude-notes/plans/2026-09-10-frontmatter-delimiter-split-gh671.md Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_0132TvF41q7CA19fE29UX77X --- ...09-10-frontmatter-delimiter-split-gh671.md | 405 + .../error-corpus/_autogen-table.json | 2636 +- crates/pampa/snapshots/json/002.snap | 2 +- crates/pampa/snapshots/json/003.snap | 2 +- .../json/horizontal-rules-vs-metadata.snap | 2 +- crates/pampa/snapshots/json/yaml-tags.snap | 2 +- crates/pampa/src/pandoc/meta.rs | 66 +- crates/pampa/src/pandoc/treesitter.rs | 25 +- crates/pampa/tests/integration/main.rs | 1 + .../test_frontmatter_delimiters.rs | 279 + crates/pampa/tests/integration/test_meta.rs | 93 +- .../test_rawblock_to_config_value.rs | 58 +- .../integration/test_yaml_tag_regression.rs | 6 +- .../tree-sitter-markdown/grammar.js | 25 +- .../queries/highlights.scm | 7 +- .../tree-sitter-markdown/src/grammar.json | 57 +- .../tree-sitter-markdown/src/node-types.json | 34 +- .../tree-sitter-markdown/src/parser.c | 179733 ++++++++------- .../tree-sitter-markdown/src/scanner.c | 233 +- .../tree-sitter-markdown/test/corpus/div.txt | 4 +- .../test/corpus/horizontal_rule.txt | 3 +- .../test/corpus/metadata.txt | 97 +- .../test/corpus/new-spec.txt | 6 +- .../tree-sitter-markdown/test/corpus/qmd.txt | 3 +- .../examples/academic-paper.json | 2 +- .../annotated-qmd/examples/blog-post.json | 2 +- .../examples/boundary-values.json | 2 +- .../examples/definition-list.json | 2 +- .../annotated-qmd/examples/div-attrs.json | 2 +- .../annotated-qmd/examples/empty-content.json | 2 +- .../annotated-qmd/examples/figure.json | 2 +- .../examples/horizontal-rule.json | 2 +- .../annotated-qmd/examples/inline-types.json | 2 +- ts-packages/annotated-qmd/examples/links.json | 2 +- .../annotated-qmd/examples/minimal-doc.json | 2 +- .../examples/minimal-figure.json | 2 +- .../examples/missing-fields.json | 2 +- .../annotated-qmd/examples/ordered-list.json | 2 +- .../annotated-qmd/examples/raw-block.json | 2 +- .../annotated-qmd/examples/simple.json | 2 +- ts-packages/annotated-qmd/examples/table.json | 2 +- .../annotated-qmd/examples/tutorial.json | 2 +- .../annotated-qmd/examples/yaml-tags.json | 2 +- .../annotated-qmd/examples/zero-width.json | 2 +- 44 files changed, 92599 insertions(+), 91220 deletions(-) create mode 100644 claude-notes/plans/2026-09-10-frontmatter-delimiter-split-gh671.md create mode 100644 crates/pampa/tests/integration/test_frontmatter_delimiters.rs diff --git a/claude-notes/plans/2026-09-10-frontmatter-delimiter-split-gh671.md b/claude-notes/plans/2026-09-10-frontmatter-delimiter-split-gh671.md new file mode 100644 index 000000000..a5fe5f73f --- /dev/null +++ b/claude-notes/plans/2026-09-10-frontmatter-delimiter-split-gh671.md @@ -0,0 +1,405 @@ +# Frontmatter reader splits on every `---`, truncating YAML values that contain one (bd-mjo6ao32, GH #671) + +**Date:** 2026-09-10 +**Braid:** bd-mjo6ao32 (related: bd-xs2u) +**GitHub issue:** https://github.com/quarto-dev/q2/issues/671 (filed by rundel) +**Branch:** `braid/bd-mjo6ao32-frontmatter-reader-splits-every` off `main` at `5a12a773`. +**Status:** Option A approved 2026-09-10; implemented, full `cargo xtask verify` green, committed on the topic branch (`79d352ba`, amended with this plan update). Phase 3 (close strand, GH comment, push) awaits the user. + +## Triage verdict + +**Ready to implement, reader-side only.** The tree-sitter parser is not at +fault. The defect is a five-line helper in pampa's metadata reader, +`extract_between_delimiters` in `crates/pampa/src/pandoc/meta.rs`, which +splits the raw metadata text on *every* `---` instead of on delimiter +*lines*. No qmd-writer change is needed (details below), which answers the +question raised when this was handed over. + +## Issue summary + +Since PR #290 the qmd writer canonicalizes every em dash in a markdown-parsed +frontmatter string to `---`. On re-read, the metadata is cut at that point: + +| Value shape | Writer emits | Re-read result | +| --- | --- | --- | +| single-line `"Hello — world"` | `description: Hello --- world` (plain scalar) | YAML becomes `description: Hello`; **every later key silently dropped**, no diagnostic | +| multi-line literal block with `—` | `description: "Hello ---\nworld."` (double-quoted) | YAML becomes `description: "Hello` → unterminated quote → **Q-0-99**, metadata empty | +| hand-typed `"a --- b"` | n/a (reader only) | same Q-0-99 | + +Pandoc 3.9 reads all three inputs correctly (verified locally); Pandoc ends a +YAML block only at a line consisting of `---` or `...`. + +In-the-wild hit: quarto-web `docs/blog/_archive/posts/2026-04-14-chrome-headless-shell/index.qmd` +(multi-line form, so it errors rather than silently truncating). + +## Root cause + +### The parser is correct + +The scanner (`crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c`, +`parse_minus`, the `MINUS_METADATA` branch) opens metadata only on a `---` +line at document/block start, then loops line by line: after each newline it +counts `-` characters **starting at column 0**, and closes only when it sees +exactly three, followed by optional spaces/tabs and a newline. It never +looks at `---` mid-line, and an indented ` ---` (e.g. inside a YAML block +scalar) does not close either. The `-v` concrete syntax tree for the +hand-typed case confirms the node spans the whole block: + +``` +document: {Node document (0, 0) - (6, 0)} + metadata: {Node metadata (0, 0) - (4, 0)} ← through the closing --- line + section: {Node section (4, 0) - (6, 0)} +``` + +So the `RawBlock { format: "quarto_minus_metadata", text }` handed to the +metadata reader contains the full, correct YAML block. (Construction sites: +`treesitter_utils/document.rs`, `section.rs`, `fenced_div_block.rs`, and +`treesitter.rs` for list items — all pass the node text through unchanged.) + +### The reader is not + +```rust +// crates/pampa/src/pandoc/meta.rs:567 +fn extract_between_delimiters(input: &str) -> Option<&str> { + let parts: Vec<&str> = input.split("---").collect(); + if parts.len() >= 3 { Some(parts[1].trim()) } else { None } +} +``` + +`parts[1]` is everything between the *first* and *second* `---` anywhere in +the text. A `---` inside a value therefore ends the YAML there. What happens +next depends only on whether the cut lands inside a quoted scalar (YAML +error → Q-0-99) or a plain one (valid but truncated YAML → silent key loss). + +The caller has a second, smaller latent bug on the same lines: + +```rust +let content = extract_between_delimiters(&block.text).unwrap(); +let yaml_start = block.text.find(content).unwrap(); +``` + +`find(content)` searches from the start of the text, so it can match inside +the opening delimiter when the trimmed content begins with `-` and is short +enough (a YAML block whose first line is `-`, i.e. a top-level list, finds +offset 0 instead of 4). This mis-anchors every source span in the metadata. +Fixing the extractor to return byte offsets removes the `find` entirely. + +This helper predates the crate rename (`git log -S 'split("---")'` reaches +back to `d86b8ecf`); it was never load-bearing until the writer started +emitting `---` inside values. + +### Why the writer needs no change + +- The writer's YAML is valid in every shape probed. `yaml_rust2`'s emitter + already quotes scalars that *begin* with `---` (`title: "---"`, + `sub: "--- foo"`) and emits mid-scalar dashes plain (`tail: foo ---`, + `list: [x --- y]`, nested maps likewise). A `---` inside a plain scalar + is legal YAML; only column-0 `---` is a document marker. +- Multi-line values are emitted double-quoted with `\n` escapes, so a + line consisting of `—` alone can never become a column-0 `---` line. +- Quoting on the writer side would not fix anything: the hand-typed + `"a --- b"` case is already quoted and still fails, because the split + happens *before* the YAML parser ever sees the text. +- Re-read, `Hello --- world` goes through the metadata markdown pass and + `apply_smart_typography` turns it back into `—` (verified for the en-dash + sibling: `Hello -- world` reads as `Str "–"`). So once the reader is + fixed, the PR #290 round-trip closes correctly with no writer work. + +Alternative considered and rejected: make the writer keep the literal `—` +(or `\—`) inside frontmatter. It would mask the symptom for the writer's +own output but leave hand-typed `---` broken and would contradict PR #290's +deliberate canonicalization. + +## Why the reader re-scans text it already parsed + +`minus_metadata` is an **external token** (`grammar.js` externals list, line +~1121), inherited from upstream tree-sitter-markdown, where `minus_metadata` / +`plus_metadata` are opaque leaves because a Markdown grammar has no business +parsing YAML. External tokens cannot have children, so the tree hands pampa a +single `metadata` node covering `---` … `---` with no inner structure. The +scanner knows exactly where the body starts and ends while it runs, but it +throws that away when it emits one token. `treesitter.rs:701` therefore +takes `node.utf8_text()` of the whole node, wraps it in a +`RawBlock { format: "quarto_minus_metadata" }`, and the reader has to find +the body again. `split("---")` was the quickest way to do that and was never +load-bearing until PR #290 made `---` appear inside values. + +Two facts constrain the fix: + +- The delimited RawBlock is a **transient carrier**: it is consumed by the + filter in `readers/qmd.rs:199` immediately after tree conversion and never + reaches JSON, native, snapshots, quarto-core, or the TS packages (grep + confirms only pampa and its tests know the format string). Changing its + shape is a pampa-internal decision. +- The scanner already uses the "phase is told by `valid_symbols`" idiom for + `_fenced_div_start` / `_fenced_div_end` (`scanner.c:649-654`), so a + multi-token metadata block needs no new persistent scanner state. + +## Options + +### Option A — the grammar exposes the body range (recommended) + +Replace the single external token with three: `_minus_metadata_start`, +`minus_metadata_body` (aliased to something like `yaml`), `_minus_metadata_end`. + +```js +metadata: $ => seq($._minus_metadata_start, alias($._minus_metadata_body, $.yaml), $._minus_metadata_end) +``` + +Scanner: +- `start`: the existing entry conditions (column 0, exactly `---`, newline, + next line not blank). It still needs to *confirm* a closing line exists + before committing (otherwise `---` is a thematic break), so it does the + same look-ahead loop as today but calls `mark_end` after the opening line + and lets the look-ahead run past it. `mark_end` exists precisely for this. +- `body`: valid only after `start`; consume lines until the first column-0 + `---` (+ optional whitespace) line, `mark_end` **before** it, emit. +- `end`: consume that line, emit. + +pampa: the `"metadata"` arm in `treesitter.rs:701` (the only site) reads +the `yaml` child's text and range; the RawBlock carries the YAML only, with +`source_info` = the child's range. `extract_between_delimiters` and the +`block.text.find(content)` hazard are deleted. `rawblock_to_config_value` +parses `block.text` directly. Hand-built RawBlocks in +`test_meta.rs`, `test_rawblock_to_config_value.rs`, `test_yaml_tag_regression.rs` +drop their `---` lines. + +Blast radius: 5 corpus files / 9 `(metadata)` expectations become +`(metadata (yaml))`; `tree-sitter generate; tree-sitter build; tree-sitter test`; +one dispatch arm in pampa; three test files' fixtures. Error recovery for an +unterminated block is unchanged in outcome (no `start` is emitted unless a +close exists, exactly as today). + +Why recommended: the body range comes from the parse, so there is nothing +in Rust to keep in sync with `scanner.c`. This is the concern raised in +review and it is the only option that removes the duplication rather than +shrinking it. + +### Option B — strip the token's first and last lines + +Keep the single token. In the `"metadata"` arm, drop the first line and the +last line of the node text, no `---` matching at all, and build the RawBlock +from the remainder with an offset-adjusted `source_info`. Assert (hard error, +not `debug_assert`) that the dropped lines are `---` + optional whitespace, so +any future scanner drift fails loudly instead of truncating silently. + +Coupling is to the token's *definition* (one delimiter line on each end), not +to the scanner's dash-counting. Smallest change; no grammar rebuild. Still a +convention rather than a structural guarantee. + +### Option C — line-based re-scan in Rust (rejected) + +The original proposal: find the first column-0 `---` line after the opening +one. Works, but it re-implements the scanner's closing rule in Rust with no +mechanism keeping the two in agreement. Rejected in review. + +## Proposed fix + +**Option A**, unless the user prefers B as a hotfix first. Either way the +qmd writer is untouched. The Phase 0 tests below are written so that they +pass under both A and B (they test reader behaviour, not the mechanism), +except the corpus expectations, which are A-only. + +Deliberately **not** in scope: accepting `...` as a closing delimiter. The +scanner does not recognize it; Pandoc does. Filing that as a separate parity +strand is proposed in follow-ups. (Under Option A that later becomes a +scanner-only change with no Rust counterpart, which is another point in A's +favour.) + +## Work items + +Phase 0 — tests first (must fail before the fix): + +- [x] `tests/integration/test_rawblock_to_config_value.rs` (or a new + `test_frontmatter_delimiters.rs`, registered alphabetically in `main.rs`): + full parse of the three issue inputs produces all keys and no + diagnostics; `author` is present after a `description` containing `---`; + an indented ` ---` line inside a literal block scalar survives; closing + line with trailing spaces; CRLF document. +- [x] Source-tracking check (`test_metadata_source_tracking.rs` style): the + `author` key's span points at the right bytes when an earlier value + contains `---`; a top-level-list frontmatter (`---\n- a\n---`) anchors the + YAML at offset 4, not 0 (the `find` hazard). +- [x] Round trip: parse → qmd writer → parse for the single-line and + multi-line em-dash inputs; second metadata equals the first + (`Str "—"` restored). +- [x] Option A only: corpus test in `test/corpus/` with `---` inside a + quoted value and inside a plain value, expecting `(metadata (yaml))` with + the body range excluding both delimiter lines; run `tree-sitter test`, + confirm failure. +- [x] Run the new tests, confirm each fails for the expected reason. + +Phase 1 — implementation (Option A): + +- [x] Scanner: split `MINUS_METADATA` into start/body/end tokens per the + sketch; keep the blank-line-after-opening → thematic-break behaviour. +- [x] `grammar.js`: new externals, `metadata` rule; `tree-sitter generate; + tree-sitter build; tree-sitter test`; update only the `(metadata)` + expectations touched by this change. +- [x] pampa `treesitter.rs` `"metadata"` arm: read the `yaml` child; RawBlock + text = body, `source_info` = body range. +- [x] `meta.rs`: delete `extract_between_delimiters` and the `find`; + `rawblock_to_config_value` parses `block.text` directly. Update the + hand-built RawBlocks in the three test files. +- [x] `cargo nextest run --workspace`. + +Phase 1 — implementation (Option B, if chosen instead): + +- [ ] `treesitter.rs` `"metadata"` arm strips first/last line with a hard + shape assertion; RawBlock carries body only; `meta.rs` as above. + +Phase 2 — end-to-end (record invocation + output here): + +- [x] The issue's three `printf … | cargo run --bin pampa` pipelines; the + re-read `jq -c .meta` must show both keys and `Str "—"`. +- [x] `cargo run --bin q2 -- render` of a fixture with an em dash in + `description:` and a later `author:`; inspect the HTML for both. +- [x] Full `cargo xtask verify` (pampa and tree-sitter-qmd are in the WASM + leg via `wasm-quarto-hub-client`). + +Phase 3 — wrap-up: + +- [ ] Close bd-mjo6ao32; comment on GH #671 with the fix (needs user + approval before posting). +- [ ] Decide on follow-ups below. +## Follow-ups (not part of this fix; need a decision) + +- **`...` closing delimiter parity.** Pandoc closes a YAML block on `...` + too; our scanner only recognizes `---`. Propose a `parity`-labelled strand. +- **bd-xs2u** ("Em-dash / en-dash in document titles breaks something in + hub-client", 2026-05-06, never reproduced). It predates PR #290, so the + writer was not emitting `---` then, but any hub-client path that + re-serializes frontmatter through the qmd writer today would hit exactly + this bug. Linked as `related`; worth re-testing after the fix lands. +- **bd-wl58atds** (filed during Phase 2, `discovered-from` this strand): + a multi-line literal block scalar containing a multi-byte character, + followed by a plain scalar, makes quarto-yaml's content-provenance + derivation return `None` and pampa warn "YAML string scalar has no + content provenance". Verified pre-existing on `main` with a side-by-side + build; the quarto-web file from the issue emits it 6 times both before + and after this fix. +- Observed, no action proposed: a metadata string `"- foo"` is parsed as + markdown and comes back as a bullet list, so the writer emits `* foo`. + That is the markdown-metadata contract, not a delimiter problem. + +## Reproduction record (2026-09-10, `main` @ 5a12a773) + +``` +$ printf -- '---\ndescription: "Hello — world"\nauthor: Z\n---\n\nx\n' \ + | cargo run -q --bin pampa -- -t qmd | cargo run -q --bin pampa -- -t json | jq -c .meta +{"description":{"c":[{"c":"Hello","s":7,"t":"Str"}],"s":4,"t":"MetaInlines"}} + # author dropped, no diagnostic + +$ printf -- '---\ndescription: |\n Hello —\n world.\n---\n\nx\n' \ + | cargo run -q --bin pampa -- -t qmd | cargo run -q --bin pampa -- +Error: [Q-0-99] Failed to parse YAML frontmatter: Parse error: while scanning a +quoted scalar, found unexpected end of stream at byte 13 line 1 column 14 + +$ printf -- '---\ndescription: "a --- b"\nauthor: Z\n---\n\nx\n' | pandoc -t json | jq -c '.meta|keys' +["author","description"] # Pandoc 3.9.0.2 is fine +``` + +Scanner behaviour also checked directly: a closing `--- ` with trailing +spaces and a CRLF document both parse with all keys today, so the new +extractor must keep accepting those shapes. + +## Implementation notes (2026-09-10) + +What was built differs from the Option A sketch in two places, both forced +by how tree-sitter's `mark_end` works, and a few consequences are worth +knowing about. + +**Four tokens, not three.** The scanner cannot rewind, and it must decide +"metadata or thematic break" *after* looking ahead for a closing line. The +only position at which both outcomes can share one `mark_end` is the end of +the opening `---` (plus trailing blanks) — the same span a thematic break +token takes. So `_minus_metadata_start` is the bare opening `---`, and a +dedicated `_minus_metadata_open_newline` token consumes its line break +(bypassing the block-structure line-ending machinery, which would otherwise +try to match open containers against the YAML lines). The body follows, +then `_minus_metadata_end` (the closing `---` plus blanks), then the +grammar's ordinary `choice($._newline, $._eof)` — the same tail as +`pandoc_horizontal_rule`, which is also what makes a closing `---` at EOF +with no newline valid. Interior tokens are gated by a new scanner state bit +`STATE_IN_MINUS_METADATA` (set by START, cleared by END, serialized with the +rest of `state`) so they cannot fire during error recovery, when tree-sitter +marks every external token valid. + +**Tree shape.** `(metadata body: (yaml))`, with `yaml` spanning exactly the +lines between the delimiters (line-break inclusive at the end, zero-width +for `---\n---`). Inside a container the closing `_newline` now yields a +`(block_continuation)` child of `metadata`, exactly as `pandoc_paragraph` +already does in the same position — one corpus expectation (`div.txt: 2`) +changed for that reason. Nine pre-existing `(metadata)` expectations gained +the child; five new GH #671 cases were added to `test/corpus/metadata.txt`. +Do **not** use `tree-sitter test -u` to refresh this corpus: it rewrites +every file's indentation and drops `:skip` tests. + +**Carrier contract.** `RawBlock { format: "quarto_minus_metadata" }` now +carries the YAML body as `text` and the body's range as `source_info`; +`rawblock_to_config_value` parses `text` directly and +`extract_between_delimiters` is gone. Consequences: +- The body is no longer `.trim()`med. Resolved key/value offsets are + unchanged; the metadata's overall span now ends after the final line + break (e.g. `4..30` instead of `4..29`), and the source-info chain is one + layer shorter (an `Original` on the body instead of `Original` on the + whole block + `Substring`). This shifted every `s` index in the 20 + `ts-packages/annotated-qmd/examples/*.json` fixtures (regenerated with the + documented loop; verified that every non-`astContext` diff is an `s` + renumbering) and 4 insta snapshots under `crates/pampa/snapshots/json/`. +- `Block::BlockMetadata` for a lexical (`_scope: lexical`) block now spans + the YAML body rather than the delimited block. Carrying both ranges would + mean replacing the RawBlock carrier with direct `BlockMetadata` + construction at tree-conversion time — a reasonable follow-up, not done + here. Flagged for the user. +- Indented frontmatter (`---\n a: 1\nb: 2`) that only parsed because of + the old trim now fails like it does in Pandoc. + +**Parse-error table.** Regenerating `parser.c` renumbers LR states, and +`crates/pampa/resources/error-corpus/_autogen-table.json` is keyed by them; +two `meta.rs` unit tests failed until the table was rebuilt with +`crates/pampa/scripts/build_error_table.ts` (deno; the copy under +`crates/quarto-parse-errors/scripts/` is bit-rotted — `qmdFiles` undefined). +Only the table changed; the generated case files were byte-identical. + +**Tests.** The three file-based tests in `test_meta.rs` used to hand the +*entire* `.qmd` (delimiters, body and all) to `rawblock_to_config_value` and +relied on the split; they now go through `readers::qmd::read`. Hand-built +fixtures in `test_rawblock_to_config_value.rs` and +`test_yaml_tag_regression.rs` dropped their `---` lines. + +**Tooling trap.** `tree-sitter test`/`parse` load a compiled parser cached by +grammar *name* under `~/.cache/tree-sitter/lib/`; building any other +checkout of this grammar poisons it. Delete `markdown.dylib` there if the +corpus suddenly disagrees with `cargo` test results. + +### End-to-end record + +`./target/debug/pampa` on this branch (all three commands from the issue), +output inspected: + +``` +$ printf -- '---\ndescription: "Hello — world"\nauthor: Z\n---\n\nx\n' | pampa -t qmd | pampa -t json | jq -c .meta +{"author": Z, "description": Hello Space — Space world} # both keys, em dash restored +$ printf -- '---\ndescription: |\n Hello —\n world.\n---\n\nx\n' | pampa -t qmd | pampa -t json | jq -c .meta +{"description": Hello Space — SoftBreak world.} # no Q-0-99 +$ printf -- '---\ndescription: "a --- b"\nauthor: Z\n---\n\nx\n' | pampa -t json | jq -c .meta +{"author": Z, "description": a Space — Space b} +$ pampa -t qmd | pampa -t json | jq -c '.meta|keys' +["author","categories","date","description","image","image-alt","title"] +``` + +`target/debug/q2 render` on two fixtures (output HTML inspected): + +``` +$ q2 render dash.qmd # title: "Dashes — everywhere" / description: "Hello — world" / author: Z +Dashes — everywhere +Written — form + Option<&str> { - let parts: Vec<&str> = input.split("---").collect(); - if parts.len() >= 3 { - Some(parts[1].trim()) - } else { - None - } -} - -/// Convert RawBlock to ConfigValue using unified conversion. +/// Convert a `quarto_minus_metadata` RawBlock to ConfigValue using unified conversion. +/// +/// The block's `text` is the YAML between the `---` delimiters — exactly the +/// grammar's `yaml` body node, delimiter lines excluded — and its +/// `source_info` covers that same range, so YAML offsets map onto the source +/// with no re-scanning here. (The reader once located the body itself by +/// splitting the raw node text on `---`, which cut the YAML at the first +/// `---` inside a value: bd-mjo6ao32, GH #671.) /// /// This function: /// 1. Preserves source location information @@ -582,8 +580,7 @@ fn extract_between_delimiters(input: &str) -> Option<&str> { /// /// # Panics /// -/// Panics if the RawBlock format is not "quarto_minus_metadata" or if YAML parsing fails. -/// These should be replaced with proper error handling in production. +/// Panics if the RawBlock format is not "quarto_minus_metadata". pub fn rawblock_to_config_value( block: &RawBlock, diagnostics: &mut crate::utils::diagnostic_collector::DiagnosticCollector, @@ -595,23 +592,11 @@ pub fn rawblock_to_config_value( ); } - // Extract YAML content between --- delimiters - let content = extract_between_delimiters(&block.text).unwrap(); - - // Calculate offsets within RawBlock.text - // Find the actual position of the trimmed content in the original text - // extract_between_delimiters trims the content, so we need to find where it actually starts - let yaml_start = block.text.find(content).unwrap(); - - // block.source_info is already quarto_source_map::SourceInfo - let parent = block.source_info.clone(); - - // Create Substring SourceInfo for the YAML content within the RawBlock - let yaml_parent = - quarto_source_map::SourceInfo::substring(parent, yaml_start, yaml_start + content.len()); + // The block's source_info already spans exactly the YAML text. + let yaml_parent = block.source_info.clone(); // Parse YAML with source tracking - let yaml = match quarto_yaml::parse_with_parent(content, yaml_parent.clone()) { + let yaml = match quarto_yaml::parse_with_parent(&block.text, yaml_parent.clone()) { Ok(y) => y, Err(e) => { // Report the YAML parse error as a diagnostic @@ -651,33 +636,6 @@ mod tests { quarto_source_map::SourceInfo::for_test() } - #[test] - fn test_extract_between_delimiters_valid() { - let input = "---\ntitle: Test\n---"; - let result = extract_between_delimiters(input); - assert_eq!(result, Some("title: Test")); - } - - #[test] - fn test_extract_between_delimiters_with_extra_content() { - let input = "---\ntitle: Test\n---\nBody text"; - let result = extract_between_delimiters(input); - assert_eq!(result, Some("title: Test")); - } - - #[test] - fn test_extract_between_delimiters_missing_delimiters() { - // Only one delimiter - let input = "---\ntitle: Test"; - let result = extract_between_delimiters(input); - assert_eq!(result, None); - - // No delimiters - let input = "title: Test"; - let result = extract_between_delimiters(input); - assert_eq!(result, None); - } - #[test] fn test_yaml_to_config_value_string_document_metadata() { // .with_content_provenance(si()): a hand-built node derives no diff --git a/crates/pampa/src/pandoc/treesitter.rs b/crates/pampa/src/pandoc/treesitter.rs index 658c838fa..f12e9e777 100644 --- a/crates/pampa/src/pandoc/treesitter.rs +++ b/crates/pampa/src/pandoc/treesitter.rs @@ -338,12 +338,15 @@ fn process_list_item( // the item contains a heading (e.g. `* # Section 1`). Flatten the // section's blocks into the item, mirroring `process_section`. PandocNativeIntermediate::IntermediateSection(section) => blocks.extend(section), - PandocNativeIntermediate::IntermediateMetadataString(text, _range) => { + PandocNativeIntermediate::IntermediateMetadataString(text, range) => { // for now we assume it's metadata and emit it as a rawblock blocks.push(Block::RawBlock(RawBlock { format: "quarto_minus_metadata".to_string(), text, - source_info: node_source_info_with_context(list_item_node, context), + source_info: quarto_source_map::SourceInfo::from_range( + context.current_file_id(), + range, + ), })); } // Tokens with no AST-level meaning: tree-sitter ERROR nodes from @@ -699,9 +702,21 @@ fn native_visitor( "fenced_div_note_id" => create_base_text_from_node_text(node, input_bytes), "document" => process_document(node, children, context), "metadata" => { - // Extract YAML frontmatter text - let text = node.utf8_text(input_bytes).unwrap().to_string(); - PandocNativeIntermediate::IntermediateMetadataString(text, node_location(node)) + // The grammar exposes the YAML between the `---` delimiters as + // the `body` field (a `yaml` node), so the text and range come + // straight from the parse — never re-derived from the node text, + // which is how a `---` inside a value once truncated the + // metadata (bd-mjo6ao32, GH #671). A `metadata` node without a + // body only arises from error recovery; the parse error is + // already reported, so treat it as an empty block. + let (text, range) = match node.child_by_field_name("body") { + Some(body) => ( + body.utf8_text(input_bytes).unwrap().to_string(), + node_location(&body), + ), + None => (String::new(), node_location(node)), + }; + PandocNativeIntermediate::IntermediateMetadataString(text, range) } "section" => process_section(node, children, context), "pandoc_paragraph" => process_paragraph(node, children, input_bytes, context), diff --git a/crates/pampa/tests/integration/main.rs b/crates/pampa/tests/integration/main.rs index d209acda4..933472357 100644 --- a/crates/pampa/tests/integration/main.rs +++ b/crates/pampa/tests/integration/main.rs @@ -49,6 +49,7 @@ pub mod test_emphasis_opening_mark; pub mod test_error_corpus; pub mod test_fenced_div_no_space; pub mod test_figure_figcaption_synthesis; +pub mod test_frontmatter_delimiters; pub mod test_grid_table_error; pub mod test_hard_soft_break; pub mod test_heading_auto_id; diff --git a/crates/pampa/tests/integration/test_frontmatter_delimiters.rs b/crates/pampa/tests/integration/test_frontmatter_delimiters.rs new file mode 100644 index 000000000..7128abd0f --- /dev/null +++ b/crates/pampa/tests/integration/test_frontmatter_delimiters.rs @@ -0,0 +1,279 @@ +/* + * test_frontmatter_delimiters.rs + * Copyright (c) 2026 Posit, PBC + * + * Regression coverage for bd-mjo6ao32 / GH #671. + * + * The YAML frontmatter block ends at a *line* consisting of `---`; a `---` + * anywhere inside a value is ordinary content. The reader used to rediscover + * the block's body by `split("---")`-ing the raw node text, so the first + * `---` inside a value truncated the metadata: a plain scalar silently lost + * every later key, a quoted scalar failed with Q-0-99. Since PR #290 the qmd + * writer canonicalizes every em dash to `---`, which made both shapes + * reachable from any document with an em dash in a frontmatter string. + * + * The fix makes the grammar expose the body as a `yaml` child node so the + * reader takes the range from the parse instead of re-scanning the text. + * These tests pin the reader-visible contract (all keys survive, source + * offsets stay exact, the writer's output re-reads to the same metadata) and + * the tree shape itself. + */ + +use pampa::pandoc::{Block, Pandoc}; +use pampa::readers; +use pampa::writers; +use quarto_error_reporting::DiagnosticMessage; +use quarto_pandoc_types::{ConfigMapEntry, ConfigValueKind}; +use tree_sitter_qmd::MarkdownParser; + +const EM: &str = "\u{2014}"; + +fn read(input: &str) -> (Pandoc, Vec) { + let mut sink = std::io::sink(); + let (doc, _ctx, warnings) = + readers::qmd::read(input.as_bytes(), false, "test.qmd", &mut sink, true, None) + .unwrap_or_else(|errs| panic!("read failed for {input:?}: {errs:#?}")); + (doc, warnings) +} + +fn entries(doc: &Pandoc) -> &[ConfigMapEntry] { + match &doc.meta.value { + ConfigValueKind::Map(entries) => entries, + other => panic!("expected Map metadata, got {other:?}"), + } +} + +fn keys(doc: &Pandoc) -> Vec<&str> { + entries(doc).iter().map(|e| e.key.as_str()).collect() +} + +fn entry<'a>(doc: &'a Pandoc, key: &str) -> &'a ConfigMapEntry { + entries(doc) + .iter() + .find(|e| e.key == key) + .unwrap_or_else(|| panic!("no key {key:?} in {:?}", keys(doc))) +} + +fn text(doc: &Pandoc, key: &str) -> String { + let e = entry(doc, key); + e.value + .as_plain_text() + .unwrap_or_else(|| panic!("key {key:?} is not text: {:?}", e.value.value)) +} + +/// Absolute byte offset of a key in the source file. +fn key_offset(doc: &Pandoc, key: &str) -> usize { + let (_file, start, _end) = entry(doc, key) + .key_source + .resolve_byte_range() + .unwrap_or_else(|| panic!("key {key:?} has no resolvable byte range")); + start +} + +fn write_qmd(doc: &Pandoc) -> String { + let mut buf = Vec::new(); + writers::qmd::write(doc, &mut buf).expect("qmd writer failed"); + String::from_utf8(buf).expect("qmd writer produced invalid UTF-8") +} + +// --------------------------------------------------------------------------- +// Reader contract: a `---` inside a value never ends the block +// --------------------------------------------------------------------------- + +/// The hand-typed shape from GH #671: the cut used to land inside the quoted +/// scalar, so the re-read failed with Q-0-99 and the metadata came back empty. +#[test] +fn quoted_value_containing_dashes_keeps_every_key() { + let (doc, warnings) = read("---\ndescription: \"a --- b\"\nauthor: Z\n---\n\nx\n"); + assert!(warnings.is_empty(), "unexpected diagnostics: {warnings:#?}"); + assert_eq!(keys(&doc), ["description", "author"]); + // Metadata strings are markdown, so the reader's smart-typography pass + // turns the run of dashes back into an em dash. + assert_eq!(text(&doc, "description"), format!("a {EM} b")); + assert_eq!(text(&doc, "author"), "Z"); +} + +/// The qmd writer's single-line form: a plain scalar. The cut used to leave +/// valid YAML (`description: Hello`), so every later key vanished silently. +#[test] +fn plain_value_containing_dashes_keeps_every_key() { + let (doc, warnings) = read("---\ndescription: Hello --- world\nauthor: Z\n---\n\nx\n"); + assert!(warnings.is_empty(), "unexpected diagnostics: {warnings:#?}"); + assert_eq!(keys(&doc), ["description", "author"]); + assert_eq!(text(&doc, "description"), format!("Hello {EM} world")); + assert_eq!(text(&doc, "author"), "Z"); +} + +/// The qmd writer's multi-line form: a double-quoted scalar with `\n` escapes. +#[test] +fn double_quoted_multiline_value_containing_dashes_reads() { + let (doc, warnings) = read("---\ndescription: \"Hello ---\\nworld.\"\nauthor: Z\n---\n\nx\n"); + assert!(warnings.is_empty(), "unexpected diagnostics: {warnings:#?}"); + assert_eq!(keys(&doc), ["description", "author"]); + let description = text(&doc, "description"); + assert!( + description.starts_with(&format!("Hello {EM}")) && description.ends_with("world."), + "unexpected description text: {description:?}" + ); + assert_eq!(text(&doc, "author"), "Z"); +} + +/// An indented `---` line inside a block scalar is YAML content, not a +/// delimiter; as markdown it is a thematic break between two paragraphs. +#[test] +fn indented_dash_line_inside_block_scalar_does_not_close_the_block() { + let (doc, warnings) = read("---\ndescription: |\n a\n\n ---\n\n b\nauthor: Z\n---\n\nx\n"); + assert!(warnings.is_empty(), "unexpected diagnostics: {warnings:#?}"); + assert_eq!(keys(&doc), ["description", "author"]); + match &entry(&doc, "description").value.value { + ConfigValueKind::PandocBlocks(blocks) => { + assert_eq!( + blocks.len(), + 3, + "expected Para, HorizontalRule, Para: {blocks:#?}" + ); + assert!(matches!(blocks[0], Block::Paragraph(_)), "{:?}", blocks[0]); + assert!( + matches!(blocks[1], Block::HorizontalRule(_)), + "{:?}", + blocks[1] + ); + assert!(matches!(blocks[2], Block::Paragraph(_)), "{:?}", blocks[2]); + } + other => panic!("expected PandocBlocks, got {other:?}"), + } + assert_eq!(text(&doc, "author"), "Z"); +} + +/// Controls: shapes the scanner accepted before the change and must keep +/// accepting. +#[test] +fn closing_delimiter_with_trailing_whitespace_still_closes() { + let (doc, warnings) = read("---\ntitle: T\nauthor: Z\n--- \n\nx\n"); + assert!(warnings.is_empty(), "unexpected diagnostics: {warnings:#?}"); + assert_eq!(keys(&doc), ["title", "author"]); + assert_eq!(text(&doc, "title"), "T"); +} + +#[test] +fn crlf_document_reads_every_key() { + let (doc, warnings) = read("---\r\ndescription: \"a --- b\"\r\nauthor: Z\r\n---\r\n\r\nx\r\n"); + assert!(warnings.is_empty(), "unexpected diagnostics: {warnings:#?}"); + assert_eq!(keys(&doc), ["description", "author"]); + assert_eq!(text(&doc, "description"), format!("a {EM} b")); + assert_eq!(text(&doc, "author"), "Z"); +} + +/// A metadata block nested in a fenced div goes through a different +/// intermediate-to-RawBlock site than the document-level one. +#[test] +fn metadata_inside_fenced_div_with_dashes_in_value() { + let (doc, warnings) = read("::: hello\n\n---\nnested: \"a --- b\"\nother: Z\n---\n\n:::\n"); + assert!(warnings.is_empty(), "unexpected diagnostics: {warnings:#?}"); + assert_eq!(keys(&doc), ["nested", "other"]); + assert_eq!(text(&doc, "nested"), format!("a {EM} b")); + assert_eq!(text(&doc, "other"), "Z"); +} + +// --------------------------------------------------------------------------- +// Source tracking: offsets are exact, not rediscovered by text search +// --------------------------------------------------------------------------- + +#[test] +fn key_offsets_are_exact_after_a_value_containing_dashes() { + // 0123 4 27 37 41 + // ---\n description: "a --- b"\n author: Z\n ---\n + let input = "---\ndescription: \"a --- b\"\nauthor: Z\n---\n"; + assert_eq!(&input[4..15], "description"); + assert_eq!(&input[27..33], "author"); + let (doc, warnings) = read(input); + assert!(warnings.is_empty(), "unexpected diagnostics: {warnings:#?}"); + assert_eq!(key_offset(&doc, "description"), 4); + assert_eq!(key_offset(&doc, "author"), 27); +} + +// --------------------------------------------------------------------------- +// Round trip: what the qmd writer emits re-reads to the same metadata +// --------------------------------------------------------------------------- + +#[test] +fn em_dash_in_single_line_value_round_trips_through_qmd_writer() { + let (first, _) = read(&format!( + "---\ndescription: \"Hello {EM} world\"\nauthor: Z\n---\n\nx\n" + )); + let written = write_qmd(&first); + // The writer canonicalizes the em dash to ASCII; that spelling is the + // input under test, so make sure it actually appeared. + assert!( + written.contains("---\nworld") || written.contains(" --- "), + "writer emitted {written:?}" + ); + + let (second, warnings) = read(&written); + assert!( + warnings.is_empty(), + "re-read of {written:?} produced diagnostics: {warnings:#?}" + ); + assert_eq!(keys(&second), keys(&first)); + assert_eq!(text(&second, "description"), text(&first, "description")); + assert_eq!(text(&second, "author"), "Z"); +} + +#[test] +fn em_dash_in_multi_line_value_round_trips_through_qmd_writer() { + let (first, _) = read(&format!( + "---\ndescription: |\n Hello {EM}\n world.\nauthor: Z\n---\n\nx\n" + )); + let written = write_qmd(&first); + assert!(written.contains("---"), "writer emitted {written:?}"); + + let (second, warnings) = read(&written); + assert!( + warnings.is_empty(), + "re-read of {written:?} produced diagnostics: {warnings:#?}" + ); + assert_eq!(keys(&second), keys(&first)); + assert_eq!(text(&second, "description"), text(&first, "description")); + assert_eq!(text(&second, "author"), "Z"); +} + +// --------------------------------------------------------------------------- +// Tree shape: the body is a child node with an exact range +// --------------------------------------------------------------------------- + +#[test] +fn parser_exposes_yaml_body_child_with_exact_range() { + let input = b"---\ndescription: \"a --- b\"\nauthor: Z\n---\n\nx\n"; + let mut parser = MarkdownParser::default(); + let tree = parser.parse(input, None).expect("parse failed"); + let root = tree.block_tree().root_node(); + let metadata = root.child(0).expect("document has no children"); + assert_eq!(metadata.kind(), "metadata", "{}", root.to_sexp()); + assert_eq!((metadata.start_byte(), metadata.end_byte()), (0, 41)); + + let body = metadata + .child_by_field_name("body") + .unwrap_or_else(|| panic!("metadata has no body field: {}", metadata.to_sexp())); + assert_eq!(body.kind(), "yaml"); + assert_eq!((body.start_byte(), body.end_byte()), (4, 37)); + assert_eq!( + body.utf8_text(input).unwrap(), + "description: \"a --- b\"\nauthor: Z\n" + ); +} + +/// The pampa reader appends a missing final newline before parsing, so this +/// only matters for tools that feed the grammar raw buffers; there, a closing +/// `---` at end of file is still a closing delimiter. +#[test] +fn parser_accepts_closing_delimiter_at_eof_without_newline() { + let input = b"---\ntitle: x\n---"; + let mut parser = MarkdownParser::default(); + let tree = parser.parse(input, None).expect("parse failed"); + let root = tree.block_tree().root_node(); + let metadata = root.child(0).expect("document has no children"); + assert_eq!(metadata.kind(), "metadata", "{}", root.to_sexp()); + let body = metadata.child_by_field_name("body").expect("no body field"); + assert_eq!(body.utf8_text(input).unwrap(), "title: x\n"); + assert_eq!(metadata.end_byte(), input.len()); +} diff --git a/crates/pampa/tests/integration/test_meta.rs b/crates/pampa/tests/integration/test_meta.rs index c573214a0..157a1430b 100644 --- a/crates/pampa/tests/integration/test_meta.rs +++ b/crates/pampa/tests/integration/test_meta.rs @@ -5,36 +5,31 @@ * Updated to use ConfigValue API (Phase 5 migration). */ -use pampa::pandoc::location::{Location, Range, SourceInfo}; -use pampa::pandoc::{Inline, RawBlock, rawblock_to_config_value}; -use pampa::utils::diagnostic_collector::DiagnosticCollector; -use quarto_pandoc_types::ConfigValueKind; +use pampa::pandoc::Inline; +use pampa::readers; +use quarto_pandoc_types::{ConfigValue, ConfigValueKind}; use std::fs; +/// Read a whole `.qmd` document through the qmd reader and return its +/// document-level metadata. The frontmatter's extent is decided by the +/// grammar, exactly as it is for users; these tests used to hand the entire +/// file (delimiters, body and all) to `rawblock_to_config_value`, which only +/// worked because that function re-split the text on `---`. +fn read_document_meta(path: &str) -> ConfigValue { + let content = fs::read_to_string(path).unwrap(); + let mut sink = std::io::sink(); + // Diagnostics are deliberately not asserted on: one fixture + // (`yaml-markdown-parse-failure.qmd`) exists to exercise strings whose + // markdown does not parse cleanly. + let (doc, _context, _warnings) = + readers::qmd::read(content.as_bytes(), false, path, &mut sink, true, None) + .unwrap_or_else(|errors| panic!("failed to read {path}: {errors:#?}")); + doc.meta +} + #[test] fn test_metadata_parsing() { - let content = fs::read_to_string("tests/features/metadata/metadata.qmd").unwrap(); - - let block = RawBlock { - format: "quarto_minus_metadata".to_string(), - text: content, - source_info: SourceInfo::with_range(Range { - start: Location { - offset: 0, - row: 0, - column: 0, - }, - end: Location { - offset: 0, - row: 0, - column: 0, - }, - }) - .to_source_map_info(), - }; - - let mut diagnostics = DiagnosticCollector::new(); - let config = rawblock_to_config_value(&block, &mut diagnostics); + let config = read_document_meta("tests/features/metadata/metadata.qmd"); // Extract entries from ConfigValue let entries = if let ConfigValueKind::Map(entries) = &config.value { @@ -103,28 +98,7 @@ fn test_metadata_parsing() { #[test] fn test_yaml_tagged_strings() { // Test that YAML tags (!path, !glob, !str) produce correct ConfigValue variants - let content = fs::read_to_string("tests/yaml-tagged-strings.qmd").unwrap(); - - let block = RawBlock { - format: "quarto_minus_metadata".to_string(), - text: content, - source_info: SourceInfo::with_range(Range { - start: Location { - offset: 0, - row: 0, - column: 0, - }, - end: Location { - offset: 0, - row: 0, - column: 0, - }, - }) - .to_source_map_info(), - }; - - let mut diagnostics = DiagnosticCollector::new(); - let config = rawblock_to_config_value(&block, &mut diagnostics); + let config = read_document_meta("tests/yaml-tagged-strings.qmd"); // Extract entries from ConfigValue let entries = if let ConfigValueKind::Map(entries) = &config.value { @@ -193,28 +167,7 @@ fn test_yaml_tagged_strings() { #[test] fn test_yaml_markdown_parse_behavior() { // Test how untagged strings that contain special characters are handled - let content = fs::read_to_string("tests/yaml-markdown-parse-failure.qmd").unwrap(); - - let block = RawBlock { - format: "quarto_minus_metadata".to_string(), - text: content, - source_info: SourceInfo::with_range(Range { - start: Location { - offset: 0, - row: 0, - column: 0, - }, - end: Location { - offset: 0, - row: 0, - column: 0, - }, - }) - .to_source_map_info(), - }; - - let mut diagnostics = DiagnosticCollector::new(); - let config = rawblock_to_config_value(&block, &mut diagnostics); + let config = read_document_meta("tests/yaml-markdown-parse-failure.qmd"); // Extract entries from ConfigValue let entries = if let ConfigValueKind::Map(entries) = &config.value { diff --git a/crates/pampa/tests/integration/test_rawblock_to_config_value.rs b/crates/pampa/tests/integration/test_rawblock_to_config_value.rs index f35e8a20e..46ceb0070 100644 --- a/crates/pampa/tests/integration/test_rawblock_to_config_value.rs +++ b/crates/pampa/tests/integration/test_rawblock_to_config_value.rs @@ -39,9 +39,7 @@ fn make_rawblock(content: &str) -> RawBlock { #[test] fn test_rawblock_to_config_value_simple_string() { - let content = r#"--- -title: Hello World ----"#; + let content = r#"title: Hello World"#; let block = make_rawblock(content); let mut diagnostics = DiagnosticCollector::new(); @@ -68,9 +66,7 @@ title: Hello World #[test] fn test_rawblock_to_config_value_boolean() { - let content = r#"--- -toc: true ----"#; + let content = r#"toc: true"#; let block = make_rawblock(content); let mut diagnostics = DiagnosticCollector::new(); @@ -98,9 +94,7 @@ toc: true #[test] fn test_rawblock_to_config_value_integer() { - let content = r#"--- -year: 2024 ----"#; + let content = r#"year: 2024"#; let block = make_rawblock(content); let mut diagnostics = DiagnosticCollector::new(); @@ -128,11 +122,9 @@ year: 2024 #[test] fn test_rawblock_to_config_value_array() { - let content = r#"--- -authors: + let content = r#"authors: - Alice - - Bob ----"#; + - Bob"#; let block = make_rawblock(content); let mut diagnostics = DiagnosticCollector::new(); @@ -160,11 +152,9 @@ authors: #[test] fn test_rawblock_to_config_value_nested_map() { - let content = r#"--- -format: + let content = r#"format: html: - toc: true ----"#; + toc: true"#; let block = make_rawblock(content); let mut diagnostics = DiagnosticCollector::new(); @@ -208,9 +198,7 @@ format: #[test] fn test_rawblock_to_config_value_parses_markdown() { - let content = r#"--- -title: This has *emphasis* ----"#; + let content = r#"title: This has *emphasis*"#; let block = make_rawblock(content); let mut diagnostics = DiagnosticCollector::new(); @@ -243,9 +231,7 @@ title: This has *emphasis* #[test] fn test_rawblock_to_config_value_str_tag() { - let content = r#"--- -filename: !str _foo_.py ----"#; + let content = r#"filename: !str _foo_.py"#; let block = make_rawblock(content); let mut diagnostics = DiagnosticCollector::new(); @@ -274,9 +260,7 @@ filename: !str _foo_.py #[test] fn test_rawblock_to_config_value_path_tag() { - let content = r#"--- -image: !path images/logo.png ----"#; + let content = r#"image: !path images/logo.png"#; let block = make_rawblock(content); let mut diagnostics = DiagnosticCollector::new(); @@ -301,9 +285,7 @@ image: !path images/logo.png #[test] fn test_rawblock_to_config_value_glob_tag() { - let content = r#"--- -files: !glob posts/*/index.qmd ----"#; + let content = r#"files: !glob posts/*/index.qmd"#; let block = make_rawblock(content); let mut diagnostics = DiagnosticCollector::new(); @@ -328,9 +310,7 @@ files: !glob posts/*/index.qmd #[test] fn test_rawblock_to_config_value_expr_tag() { - let content = r#"--- -date: !expr Sys.Date() ----"#; + let content = r#"date: !expr Sys.Date()"#; let block = make_rawblock(content); let mut diagnostics = DiagnosticCollector::new(); @@ -355,9 +335,7 @@ date: !expr Sys.Date() #[test] fn test_rawblock_to_config_value_prefer_tag() { - let content = r#"--- -title: !prefer My Title ----"#; + let content = r#"title: !prefer My Title"#; let block = make_rawblock(content); let mut diagnostics = DiagnosticCollector::new(); @@ -389,9 +367,7 @@ title: !prefer My Title #[test] fn test_rawblock_to_config_value_preserves_source_info() { - let content = r#"--- -title: Hello ----"#; + let content = r#"title: Hello"#; let block = make_rawblock(content); let mut diagnostics = DiagnosticCollector::new(); @@ -427,16 +403,14 @@ title: Hello #[test] fn test_no_diagnostics_for_valid_input() { - let content = r#"--- -title: Hello World + let content = r#"title: Hello World toc: true items: - first - second format: html: - theme: cosmo ----"#; + theme: cosmo"#; let block = make_rawblock(content); let mut diagnostics = DiagnosticCollector::new(); diff --git a/crates/pampa/tests/integration/test_yaml_tag_regression.rs b/crates/pampa/tests/integration/test_yaml_tag_regression.rs index f1f4f98e4..c8f86cbb5 100644 --- a/crates/pampa/tests/integration/test_yaml_tag_regression.rs +++ b/crates/pampa/tests/integration/test_yaml_tag_regression.rs @@ -15,12 +15,10 @@ use quarto_pandoc_types::ConfigValueKind; #[test] fn test_yaml_tags_preserved_in_new_api() { // Test YAML with tagged strings - let yaml_content = r#"--- -tagged_path: !path images/*.png + let yaml_content = r#"tagged_path: !path images/*.png tagged_glob: !glob posts/*/index.qmd tagged_str: !str _foo_.py -regular: This has *emphasis* ----"#; +regular: This has *emphasis*"#; let block = RawBlock { format: "quarto_minus_metadata".to_string(), diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js index 4d9cea433..cd36c02a2 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js @@ -182,6 +182,24 @@ module.exports = grammar({ repeat($.section), ), + // YAML metadata block (`---` ... `---`). All four delimiting tokens + // are external: the scanner opens a block only on a `---` line that + // is followed by a non-blank line and, somewhere below, by a closing + // line — exactly `---` at column 0, optionally followed by blanks — + // and it recognises that closing line only at a line start, so a + // `---` inside a value is body text. The body is exposed as the + // `yaml` child so consumers take the YAML's exact range from the + // tree rather than re-scanning the text (bd-mjo6ao32, GH #671); it + // is also the node a YAML injection query would target. The closing + // delimiter's line break is consumed like any other block's. + minus_metadata: $ => seq( + $._minus_metadata_start, + $._minus_metadata_open_newline, + field('body', alias($._minus_metadata_body, $.yaml)), + $._minus_metadata_end, + choice($._newline, $._eof), + ), + /////////////////////////////////////////////////////////////////////////////////////////// // BLOCK STRUCTURE @@ -1118,7 +1136,12 @@ module.exports = grammar({ $._trigger_error, $._eof, - $.minus_metadata, + // YAML metadata block, as four tokens; see the `minus_metadata` rule + // and the matching section of scanner.c. + $._minus_metadata_start, + $._minus_metadata_open_newline, + $._minus_metadata_body, + $._minus_metadata_end, $._pipe_table_start, $._pipe_table_line_ending, diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/queries/highlights.scm b/crates/tree-sitter-qmd/tree-sitter-markdown/queries/highlights.scm index ae6539354..23b5367ac 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/queries/highlights.scm +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/queries/highlights.scm @@ -8,9 +8,10 @@ ; ; INVARIANT: never emit a token covering the interior of a code cell ; (`code_fence_content`) or the frontmatter (`metadata`) — those are left to -; the embedded layer (zones 2/3). The `metadata` node is opaque (no child -; nodes for the `---` fences), so the frontmatter delimiters are synthesized -; in the extractor, not matched here. +; the embedded layer (zones 2/3). The `metadata` node exposes its YAML as the +; `body: (yaml)` child but has no child nodes for the `---` fences themselves, +; so the frontmatter delimiters are synthesized in the extractor, not matched +; here. ; --- Headings (ATX only; this grammar has no setext_heading) ----------------- ; Capture the whole heading per level; the marker child (narrower) wins 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 7e7f086d2..1b25f52c5 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json @@ -47,6 +47,49 @@ } ] }, + "minus_metadata": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_minus_metadata_start" + }, + { + "type": "SYMBOL", + "name": "_minus_metadata_open_newline" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_minus_metadata_body" + }, + "named": true, + "value": "yaml" + } + }, + { + "type": "SYMBOL", + "name": "_minus_metadata_end" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_eof" + } + ] + } + ] + }, "_block": { "type": "CHOICE", "members": [ @@ -5020,7 +5063,19 @@ }, { "type": "SYMBOL", - "name": "minus_metadata" + "name": "_minus_metadata_start" + }, + { + "type": "SYMBOL", + "name": "_minus_metadata_open_newline" + }, + { + "type": "SYMBOL", + "name": "_minus_metadata_body" + }, + { + "type": "SYMBOL", + "name": "_minus_metadata_end" }, { "type": "SYMBOL", 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 ceeb251fc..c566a78f9 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 @@ -1028,6 +1028,32 @@ "named": true, "fields": {} }, + { + "type": "metadata", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "yaml", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "block_continuation", + "named": true + } + ] + } + }, { "type": "note_definition_fenced_block", "named": true, @@ -2908,10 +2934,6 @@ "type": "key_value_key", "named": true }, - { - "type": "metadata", - "named": true - }, { "type": "numeric_character_reference", "named": true @@ -2980,6 +3002,10 @@ "type": "task_list_marker_unchecked", "named": true }, + { + "type": "yaml", + "named": true + }, { "type": "{", "named": false 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 31547f959..50fe13638 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c @@ -15,16 +15,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 4496 -#define LARGE_STATE_COUNT 621 -#define SYMBOL_COUNT 267 +#define STATE_COUNT 4511 +#define LARGE_STATE_COUNT 624 +#define SYMBOL_COUNT 271 #define ALIAS_COUNT 8 -#define TOKEN_COUNT 136 -#define EXTERNAL_TOKEN_COUNT 88 -#define FIELD_COUNT 0 +#define TOKEN_COUNT 139 +#define EXTERNAL_TOKEN_COUNT 91 +#define FIELD_COUNT 1 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 38 +#define PRODUCTION_ID_COUNT 39 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -106,202 +106,206 @@ enum ts_symbol_identifiers { 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__pandoc_lt_str = 129, - sym__pipe_table_delimiter = 130, - sym__pandoc_line_break = 131, - sym__triple_star_error = 132, - sym_grid_table = 133, - sym__indented_code_block_error = 134, - sym__caption_start = 135, - sym_document = 136, - sym__block = 137, - sym__block_not_section = 138, - sym_section = 139, - sym__section1 = 140, - sym__section2 = 141, - sym__section3 = 142, - sym__section4 = 143, - sym__section5 = 144, - sym__section6 = 145, - sym__atx_heading1 = 146, - sym__atx_heading2 = 147, - sym__atx_heading3 = 148, - sym__atx_heading4 = 149, - sym__atx_heading5 = 150, - sym__atx_heading6 = 151, - sym__atx_heading_content = 152, - sym_pandoc_horizontal_rule = 153, - sym_pandoc_paragraph = 154, - sym_inline_ref_def = 155, - sym_caption = 156, - sym_pipe_table = 157, - sym__pipe_table_newline = 158, - sym_pipe_table_delimiter_row = 159, - sym_pipe_table_delimiter_cell = 160, - sym_pipe_table_row = 161, - sym_pipe_table_cell = 162, - sym__inlines = 163, - sym_pandoc_span = 164, - sym_pandoc_image = 165, - sym_target = 166, - sym_pandoc_math = 167, - sym_pandoc_display_math = 168, - sym_pandoc_code_span = 169, - sym_pandoc_single_quote = 170, - sym_pandoc_double_quote = 171, - sym_insert = 172, - sym_delete = 173, - sym_edit_comment = 174, - sym_highlight = 175, - sym_attribute_specifier = 176, - sym__pandoc_attr_specifier = 177, - sym_unnumbered_specifier = 178, - sym_language_specifier = 179, - sym_commonmark_specifier = 180, - sym__commonmark_specifier_start_with_class = 181, - sym__commonmark_specifier_start_with_kv = 182, - sym__commonmark_key_value_specifier = 183, - sym__commonmark_single_quote_string = 184, - sym__commonmark_double_quote_string = 185, - sym__line = 186, - sym__line_with_maybe_spaces = 187, - sym__inline_element = 188, - sym__shortcode_sep = 189, - sym_shortcode_escaped = 190, - sym_shortcode = 191, - sym__shortcode_value = 192, - sym__shortcode_key_value_specifier = 193, - sym_shortcode_naked_string = 194, - sym_shortcode_string = 195, - sym_citation = 196, - sym_inline_note = 197, - sym_pandoc_superscript = 198, - sym_pandoc_subscript = 199, - sym_pandoc_strikeout = 200, - sym_pandoc_emph = 201, - sym_pandoc_strong = 202, - sym_pandoc_str = 203, - sym_pandoc_block_quote = 204, - sym_pandoc_list = 205, - sym__list_plus = 206, - sym__list_minus = 207, - sym__list_star = 208, - sym__list_dot = 209, - sym__list_parenthesis = 210, - sym__list_example = 211, - sym_list_marker_plus = 212, - sym_list_marker_minus = 213, - sym_list_marker_star = 214, - sym_list_marker_dot = 215, - sym_list_marker_parenthesis = 216, - sym_list_marker_example = 217, - sym__list_item_plus = 218, - sym__list_item_minus = 219, - sym__list_item_star = 220, - sym__list_item_dot = 221, - sym__list_item_parenthesis = 222, - sym__list_item_example = 223, - sym__list_item_content = 224, - sym_pandoc_code_block = 225, - sym_code_fence_content = 226, - sym_pandoc_div = 227, - sym_note_definition_fenced_block = 228, - sym__blank_line = 229, - sym__newline = 230, - sym__soft_line_break = 231, - sym__inline_whitespace = 232, - sym__attr_ws = 233, - aux_sym_document_repeat1 = 234, - aux_sym_document_repeat2 = 235, - aux_sym__section1_repeat1 = 236, - aux_sym__section2_repeat1 = 237, - aux_sym__section3_repeat1 = 238, - aux_sym__section4_repeat1 = 239, - aux_sym__section5_repeat1 = 240, - aux_sym_pipe_table_repeat1 = 241, - aux_sym_pipe_table_delimiter_row_repeat1 = 242, - aux_sym_pipe_table_delimiter_cell_repeat1 = 243, - aux_sym_pipe_table_row_repeat1 = 244, - aux_sym__inlines_repeat1 = 245, - aux_sym_target_repeat1 = 246, - aux_sym_pandoc_math_repeat1 = 247, - aux_sym_pandoc_code_span_repeat1 = 248, - aux_sym__commonmark_specifier_start_with_class_repeat1 = 249, - aux_sym__commonmark_specifier_start_with_kv_repeat1 = 250, - aux_sym__commonmark_single_quote_string_repeat1 = 251, - aux_sym__commonmark_double_quote_string_repeat1 = 252, - aux_sym__line_repeat1 = 253, - aux_sym__line_with_maybe_spaces_repeat1 = 254, - aux_sym_shortcode_escaped_repeat1 = 255, - aux_sym_shortcode_escaped_repeat2 = 256, - aux_sym_shortcode_repeat1 = 257, - aux_sym_pandoc_block_quote_repeat1 = 258, - aux_sym__list_plus_repeat1 = 259, - aux_sym__list_minus_repeat1 = 260, - aux_sym__list_star_repeat1 = 261, - aux_sym__list_dot_repeat1 = 262, - aux_sym__list_parenthesis_repeat1 = 263, - aux_sym__list_example_repeat1 = 264, - aux_sym_code_fence_content_repeat1 = 265, - aux_sym__attr_ws_repeat1 = 266, - alias_sym_citation_id_suppress_author = 267, - alias_sym_content = 268, - alias_sym_pandoc_soft_break = 269, - alias_sym_pandoc_space = 270, - alias_sym_pipe_table_align_right = 271, - alias_sym_pipe_table_header = 272, - alias_sym_title = 273, - alias_sym_url = 274, + sym__minus_metadata_start = 79, + sym__minus_metadata_open_newline = 80, + sym__minus_metadata_body = 81, + sym__minus_metadata_end = 82, + sym__pipe_table_start = 83, + sym__pipe_table_line_ending = 84, + sym__fenced_div_start = 85, + sym__fenced_div_end = 86, + sym_ref_id_specifier = 87, + sym_fenced_div_note_id = 88, + sym__code_span_start = 89, + sym__code_span_close = 90, + sym__latex_span_start = 91, + sym__latex_span_close = 92, + sym__html_comment = 93, + sym_raw_specifier = 94, + sym__autolink = 95, + sym__language_specifier_token = 96, + sym__key_specifier_token = 97, + sym__value_specifier_token = 98, + sym__highlight_span_start = 99, + sym__insert_span_start = 100, + sym__delete_span_start = 101, + sym__edit_comment_span_start = 102, + sym__single_quote_span_open = 103, + sym__single_quote_span_close = 104, + sym__double_quote_span_open = 105, + sym__double_quote_span_close = 106, + sym__shortcode_open_escaped = 107, + sym__shortcode_close_escaped = 108, + sym__shortcode_open = 109, + sym__shortcode_close = 110, + sym__cite_author_in_text_with_open_bracket = 111, + sym__cite_suppress_author_with_open_bracket = 112, + sym__cite_author_in_text = 113, + sym__cite_suppress_author = 114, + sym__strikeout_open = 115, + sym__strikeout_close = 116, + sym__subscript_open = 117, + sym__subscript_close = 118, + sym__superscript_open = 119, + sym__superscript_close = 120, + sym__inline_note_start_token = 121, + sym__strong_emphasis_open_star = 122, + sym__strong_emphasis_close_star = 123, + sym__strong_emphasis_open_underscore = 124, + sym__strong_emphasis_close_underscore = 125, + sym__emphasis_open_star = 126, + sym__emphasis_close_star = 127, + sym__emphasis_open_underscore = 128, + sym__emphasis_close_underscore = 129, + sym_inline_note_reference = 130, + sym_html_element = 131, + sym__pandoc_lt_str = 132, + sym__pipe_table_delimiter = 133, + sym__pandoc_line_break = 134, + sym__triple_star_error = 135, + sym_grid_table = 136, + sym__indented_code_block_error = 137, + sym__caption_start = 138, + sym_document = 139, + sym_minus_metadata = 140, + sym__block = 141, + sym__block_not_section = 142, + sym_section = 143, + sym__section1 = 144, + sym__section2 = 145, + sym__section3 = 146, + sym__section4 = 147, + sym__section5 = 148, + sym__section6 = 149, + sym__atx_heading1 = 150, + sym__atx_heading2 = 151, + sym__atx_heading3 = 152, + sym__atx_heading4 = 153, + sym__atx_heading5 = 154, + sym__atx_heading6 = 155, + sym__atx_heading_content = 156, + sym_pandoc_horizontal_rule = 157, + sym_pandoc_paragraph = 158, + sym_inline_ref_def = 159, + sym_caption = 160, + sym_pipe_table = 161, + sym__pipe_table_newline = 162, + sym_pipe_table_delimiter_row = 163, + sym_pipe_table_delimiter_cell = 164, + sym_pipe_table_row = 165, + sym_pipe_table_cell = 166, + sym__inlines = 167, + sym_pandoc_span = 168, + sym_pandoc_image = 169, + sym_target = 170, + sym_pandoc_math = 171, + sym_pandoc_display_math = 172, + sym_pandoc_code_span = 173, + sym_pandoc_single_quote = 174, + sym_pandoc_double_quote = 175, + sym_insert = 176, + sym_delete = 177, + sym_edit_comment = 178, + sym_highlight = 179, + sym_attribute_specifier = 180, + sym__pandoc_attr_specifier = 181, + sym_unnumbered_specifier = 182, + sym_language_specifier = 183, + sym_commonmark_specifier = 184, + sym__commonmark_specifier_start_with_class = 185, + sym__commonmark_specifier_start_with_kv = 186, + sym__commonmark_key_value_specifier = 187, + sym__commonmark_single_quote_string = 188, + sym__commonmark_double_quote_string = 189, + sym__line = 190, + sym__line_with_maybe_spaces = 191, + sym__inline_element = 192, + sym__shortcode_sep = 193, + sym_shortcode_escaped = 194, + sym_shortcode = 195, + sym__shortcode_value = 196, + sym__shortcode_key_value_specifier = 197, + sym_shortcode_naked_string = 198, + sym_shortcode_string = 199, + sym_citation = 200, + sym_inline_note = 201, + sym_pandoc_superscript = 202, + sym_pandoc_subscript = 203, + sym_pandoc_strikeout = 204, + sym_pandoc_emph = 205, + sym_pandoc_strong = 206, + sym_pandoc_str = 207, + sym_pandoc_block_quote = 208, + sym_pandoc_list = 209, + sym__list_plus = 210, + sym__list_minus = 211, + sym__list_star = 212, + sym__list_dot = 213, + sym__list_parenthesis = 214, + sym__list_example = 215, + sym_list_marker_plus = 216, + sym_list_marker_minus = 217, + sym_list_marker_star = 218, + sym_list_marker_dot = 219, + sym_list_marker_parenthesis = 220, + sym_list_marker_example = 221, + sym__list_item_plus = 222, + sym__list_item_minus = 223, + sym__list_item_star = 224, + sym__list_item_dot = 225, + sym__list_item_parenthesis = 226, + sym__list_item_example = 227, + sym__list_item_content = 228, + sym_pandoc_code_block = 229, + sym_code_fence_content = 230, + sym_pandoc_div = 231, + sym_note_definition_fenced_block = 232, + sym__blank_line = 233, + sym__newline = 234, + sym__soft_line_break = 235, + sym__inline_whitespace = 236, + sym__attr_ws = 237, + aux_sym_document_repeat1 = 238, + aux_sym_document_repeat2 = 239, + aux_sym__section1_repeat1 = 240, + aux_sym__section2_repeat1 = 241, + aux_sym__section3_repeat1 = 242, + aux_sym__section4_repeat1 = 243, + aux_sym__section5_repeat1 = 244, + aux_sym_pipe_table_repeat1 = 245, + aux_sym_pipe_table_delimiter_row_repeat1 = 246, + aux_sym_pipe_table_delimiter_cell_repeat1 = 247, + aux_sym_pipe_table_row_repeat1 = 248, + aux_sym__inlines_repeat1 = 249, + aux_sym_target_repeat1 = 250, + aux_sym_pandoc_math_repeat1 = 251, + aux_sym_pandoc_code_span_repeat1 = 252, + aux_sym__commonmark_specifier_start_with_class_repeat1 = 253, + aux_sym__commonmark_specifier_start_with_kv_repeat1 = 254, + aux_sym__commonmark_single_quote_string_repeat1 = 255, + aux_sym__commonmark_double_quote_string_repeat1 = 256, + aux_sym__line_repeat1 = 257, + aux_sym__line_with_maybe_spaces_repeat1 = 258, + aux_sym_shortcode_escaped_repeat1 = 259, + aux_sym_shortcode_escaped_repeat2 = 260, + aux_sym_shortcode_repeat1 = 261, + aux_sym_pandoc_block_quote_repeat1 = 262, + aux_sym__list_plus_repeat1 = 263, + aux_sym__list_minus_repeat1 = 264, + aux_sym__list_star_repeat1 = 265, + aux_sym__list_dot_repeat1 = 266, + aux_sym__list_parenthesis_repeat1 = 267, + aux_sym__list_example_repeat1 = 268, + aux_sym_code_fence_content_repeat1 = 269, + aux_sym__attr_ws_repeat1 = 270, + alias_sym_citation_id_suppress_author = 271, + alias_sym_content = 272, + alias_sym_pandoc_soft_break = 273, + alias_sym_pandoc_space = 274, + alias_sym_pipe_table_align_right = 275, + alias_sym_pipe_table_header = 276, + alias_sym_title = 277, + alias_sym_url = 278, }; static const char * const ts_symbol_names[] = { @@ -384,7 +388,10 @@ static const char * const ts_symbol_names[] = { [sym__error] = "_error", [sym__trigger_error] = "_trigger_error", [sym__eof] = "_eof", - [sym_minus_metadata] = "metadata", + [sym__minus_metadata_start] = "_minus_metadata_start", + [sym__minus_metadata_open_newline] = "_minus_metadata_open_newline", + [sym__minus_metadata_body] = "yaml", + [sym__minus_metadata_end] = "_minus_metadata_end", [sym__pipe_table_start] = "_pipe_table_start", [sym__pipe_table_line_ending] = "_pipe_table_line_ending", [sym__fenced_div_start] = "_fenced_div_start", @@ -442,6 +449,7 @@ static const char * const ts_symbol_names[] = { [sym__indented_code_block_error] = "_indented_code_block_error", [sym__caption_start] = "_caption_start", [sym_document] = "document", + [sym_minus_metadata] = "metadata", [sym__block] = "_block", [sym__block_not_section] = "_block_not_section", [sym_section] = "section", @@ -662,7 +670,10 @@ static const TSSymbol ts_symbol_map[] = { [sym__error] = sym__error, [sym__trigger_error] = sym__trigger_error, [sym__eof] = sym__eof, - [sym_minus_metadata] = sym_minus_metadata, + [sym__minus_metadata_start] = sym__minus_metadata_start, + [sym__minus_metadata_open_newline] = sym__minus_metadata_open_newline, + [sym__minus_metadata_body] = sym__minus_metadata_body, + [sym__minus_metadata_end] = sym__minus_metadata_end, [sym__pipe_table_start] = sym__pipe_table_start, [sym__pipe_table_line_ending] = sym__pipe_table_line_ending, [sym__fenced_div_start] = sym__fenced_div_start, @@ -720,6 +731,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__indented_code_block_error] = sym__indented_code_block_error, [sym__caption_start] = sym__caption_start, [sym_document] = sym_document, + [sym_minus_metadata] = sym_minus_metadata, [sym__block] = sym__block, [sym__block_not_section] = sym__block_not_section, [sym_section] = sym_section, @@ -1177,10 +1189,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_minus_metadata] = { + [sym__minus_metadata_start] = { + .visible = false, + .named = true, + }, + [sym__minus_metadata_open_newline] = { + .visible = false, + .named = true, + }, + [sym__minus_metadata_body] = { .visible = true, .named = true, }, + [sym__minus_metadata_end] = { + .visible = false, + .named = true, + }, [sym__pipe_table_start] = { .visible = false, .named = true, @@ -1409,6 +1433,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_minus_metadata] = { + .visible = true, + .named = true, + }, [sym__block] = { .visible = false, .named = true, @@ -1963,31 +1991,49 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; +enum ts_field_identifiers { + field_body = 1, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_body] = "body", +}; + +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [27] = {.index = 0, .length = 1}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_body, 2}, +}; + static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { [0] = sym_section, }, [2] = { - [1] = sym_section, + [0] = alias_sym_pandoc_space, }, [3] = { - [0] = alias_sym_pandoc_space, + [0] = alias_sym_pandoc_soft_break, }, [4] = { - [0] = alias_sym_pandoc_soft_break, + [1] = sym__highlight_span_start, }, [5] = { - [1] = sym__highlight_span_start, + [1] = sym__delete_span_start, }, [6] = { - [1] = sym__delete_span_start, + [1] = sym__edit_comment_span_start, }, [7] = { - [1] = sym__edit_comment_span_start, + [1] = alias_sym_citation_id_suppress_author, }, [8] = { - [1] = alias_sym_citation_id_suppress_author, + [1] = sym_section, }, [9] = { [0] = sym_pipe_table_cell, @@ -2050,38 +2096,38 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [26] = { [2] = sym_commonmark_specifier, }, - [27] = { + [28] = { [1] = alias_sym_pipe_table_header, }, - [28] = { + [29] = { [1] = alias_sym_pipe_table_align_right, }, - [29] = { + [30] = { [0] = sym_shortcode_naked_string, }, - [30] = { + [31] = { [2] = alias_sym_title, }, - [31] = { + [32] = { [2] = alias_sym_url, }, - [32] = { + [33] = { [3] = sym__value_specifier_token, }, - [33] = { + [34] = { [2] = alias_sym_pipe_table_align_right, }, - [34] = { + [35] = { [3] = alias_sym_title, }, - [35] = { + [36] = { [1] = alias_sym_url, [3] = alias_sym_title, }, - [36] = { + [37] = { [4] = sym__value_specifier_token, }, - [37] = { + [38] = { [2] = alias_sym_url, [4] = alias_sym_title, }, @@ -2149,128 +2195,128 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 5, [6] = 6, [7] = 7, - [8] = 6, - [9] = 2, - [10] = 3, - [11] = 4, + [8] = 2, + [9] = 7, + [10] = 4, + [11] = 3, [12] = 5, - [13] = 7, - [14] = 6, - [15] = 2, - [16] = 3, - [17] = 4, + [13] = 6, + [14] = 2, + [15] = 7, + [16] = 4, + [17] = 3, [18] = 5, - [19] = 7, + [19] = 6, [20] = 20, [21] = 21, - [22] = 22, + [22] = 20, [23] = 23, [24] = 24, [25] = 25, - [26] = 25, - [27] = 20, - [28] = 21, - [29] = 22, - [30] = 23, - [31] = 24, - [32] = 25, - [33] = 20, - [34] = 21, - [35] = 22, - [36] = 23, - [37] = 24, + [26] = 21, + [27] = 27, + [28] = 27, + [29] = 23, + [30] = 24, + [31] = 25, + [32] = 21, + [33] = 27, + [34] = 20, + [35] = 23, + [36] = 24, + [37] = 25, [38] = 38, - [39] = 39, + [39] = 38, [40] = 40, [41] = 41, [42] = 42, [43] = 43, [44] = 44, [45] = 45, - [46] = 38, - [47] = 39, - [48] = 40, - [49] = 41, - [50] = 42, - [51] = 43, - [52] = 44, - [53] = 38, - [54] = 39, - [55] = 40, - [56] = 41, - [57] = 42, - [58] = 43, - [59] = 44, - [60] = 45, + [46] = 46, + [47] = 40, + [48] = 42, + [49] = 42, + [50] = 43, + [51] = 44, + [52] = 45, + [53] = 46, + [54] = 40, + [55] = 38, + [56] = 43, + [57] = 44, + [58] = 45, + [59] = 46, + [60] = 60, [61] = 61, [62] = 62, [63] = 63, [64] = 64, [65] = 65, - [66] = 66, - [67] = 64, + [66] = 64, + [67] = 65, [68] = 68, [69] = 69, [70] = 64, - [71] = 65, - [72] = 68, - [73] = 73, + [71] = 68, + [72] = 72, + [73] = 65, [74] = 68, - [75] = 65, + [75] = 41, [76] = 76, [77] = 77, [78] = 78, - [79] = 76, - [80] = 77, - [81] = 76, - [82] = 78, + [79] = 77, + [80] = 76, + [81] = 78, + [82] = 76, [83] = 77, [84] = 78, [85] = 85, [86] = 86, [87] = 87, - [88] = 85, - [89] = 86, - [90] = 87, + [88] = 87, + [89] = 87, + [90] = 86, [91] = 85, [92] = 86, - [93] = 87, + [93] = 85, [94] = 94, [95] = 95, [96] = 96, - [97] = 95, - [98] = 94, - [99] = 96, - [100] = 95, - [101] = 94, - [102] = 96, + [97] = 96, + [98] = 95, + [99] = 95, + [100] = 94, + [101] = 96, + [102] = 94, [103] = 103, [104] = 104, [105] = 105, [106] = 104, [107] = 105, - [108] = 103, - [109] = 105, - [110] = 104, - [111] = 103, + [108] = 105, + [109] = 103, + [110] = 103, + [111] = 104, [112] = 112, [113] = 113, [114] = 114, [115] = 114, - [116] = 112, - [117] = 114, + [116] = 114, + [117] = 113, [118] = 112, - [119] = 113, + [119] = 112, [120] = 113, [121] = 121, [122] = 122, [123] = 123, [124] = 122, - [125] = 121, + [125] = 122, [126] = 123, - [127] = 123, - [128] = 121, - [129] = 122, + [127] = 121, + [128] = 123, + [129] = 121, [130] = 130, [131] = 131, [132] = 132, @@ -2281,44 +2327,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [137] = 137, [138] = 138, [139] = 139, - [140] = 140, + [140] = 135, [141] = 141, [142] = 142, - [143] = 143, - [144] = 144, - [145] = 145, + [143] = 134, + [144] = 135, + [145] = 134, [146] = 146, [147] = 147, - [148] = 146, + [148] = 148, [149] = 149, - [150] = 147, + [150] = 150, [151] = 151, - [152] = 146, - [153] = 147, - [154] = 130, - [155] = 144, - [156] = 137, - [157] = 139, - [158] = 136, - [159] = 134, - [160] = 134, - [161] = 135, - [162] = 136, - [163] = 137, - [164] = 138, - [165] = 139, - [166] = 140, - [167] = 141, - [168] = 142, - [169] = 143, - [170] = 135, - [171] = 144, - [172] = 140, - [173] = 141, - [174] = 142, - [175] = 130, - [176] = 143, - [177] = 138, + [152] = 152, + [153] = 153, + [154] = 138, + [155] = 139, + [156] = 141, + [157] = 142, + [158] = 142, + [159] = 136, + [160] = 137, + [161] = 147, + [162] = 141, + [163] = 148, + [164] = 149, + [165] = 130, + [166] = 151, + [167] = 152, + [168] = 138, + [169] = 147, + [170] = 148, + [171] = 149, + [172] = 130, + [173] = 151, + [174] = 152, + [175] = 139, + [176] = 136, + [177] = 137, [178] = 178, [179] = 179, [180] = 180, @@ -2344,55 +2390,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [200] = 200, [201] = 201, [202] = 202, - [203] = 203, - [204] = 198, - [205] = 186, - [206] = 184, - [207] = 187, - [208] = 188, - [209] = 209, - [210] = 185, - [211] = 211, - [212] = 186, - [213] = 213, - [214] = 187, - [215] = 215, - [216] = 188, - [217] = 217, - [218] = 218, - [219] = 219, - [220] = 220, - [221] = 221, - [222] = 222, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, + [203] = 187, + [204] = 192, + [205] = 187, + [206] = 179, + [207] = 180, + [208] = 181, + [209] = 182, + [210] = 183, + [211] = 192, + [212] = 196, + [213] = 196, + [214] = 190, + [215] = 191, + [216] = 193, + [217] = 199, + [218] = 201, + [219] = 184, + [220] = 185, + [221] = 186, + [222] = 189, + [223] = 194, + [224] = 195, + [225] = 178, + [226] = 197, [227] = 227, [228] = 228, [229] = 229, - [230] = 230, + [230] = 190, [231] = 231, [232] = 232, [233] = 233, [234] = 234, [235] = 235, [236] = 236, - [237] = 181, + [237] = 237, [238] = 238, [239] = 239, - [240] = 240, + [240] = 191, [241] = 241, [242] = 242, - [243] = 243, + [243] = 193, [244] = 244, - [245] = 245, + [245] = 199, [246] = 246, - [247] = 247, - [248] = 248, - [249] = 249, + [247] = 201, + [248] = 184, + [249] = 185, [250] = 250, - [251] = 251, + [251] = 186, [252] = 252, [253] = 253, [254] = 254, @@ -2401,708 +2447,708 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [257] = 257, [258] = 258, [259] = 259, - [260] = 260, - [261] = 261, + [260] = 189, + [261] = 194, [262] = 262, [263] = 263, - [264] = 182, + [264] = 195, [265] = 265, - [266] = 189, - [267] = 267, + [266] = 266, + [267] = 178, [268] = 268, [269] = 269, - [270] = 270, - [271] = 190, + [270] = 197, + [271] = 271, [272] = 272, [273] = 273, - [274] = 192, - [275] = 183, - [276] = 193, + [274] = 274, + [275] = 275, + [276] = 276, [277] = 277, - [278] = 184, + [278] = 278, [279] = 279, - [280] = 195, - [281] = 196, + [280] = 280, + [281] = 281, [282] = 282, - [283] = 185, - [284] = 199, - [285] = 191, - [286] = 179, - [287] = 189, + [283] = 283, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 287, [288] = 288, - [289] = 190, - [290] = 192, + [289] = 289, + [290] = 290, [291] = 291, - [292] = 272, - [293] = 273, + [292] = 292, + [293] = 293, [294] = 294, - [295] = 201, - [296] = 180, - [297] = 181, - [298] = 191, - [299] = 272, - [300] = 194, - [301] = 201, - [302] = 180, - [303] = 196, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 303, [304] = 304, - [305] = 194, - [306] = 198, - [307] = 182, - [308] = 193, - [309] = 197, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 202, [310] = 310, - [311] = 272, - [312] = 273, - [313] = 272, - [314] = 273, - [315] = 272, - [316] = 273, - [317] = 272, - [318] = 273, - [319] = 272, - [320] = 273, - [321] = 272, - [322] = 273, - [323] = 272, - [324] = 273, - [325] = 272, - [326] = 273, - [327] = 272, - [328] = 273, - [329] = 272, - [330] = 273, - [331] = 272, - [332] = 273, - [333] = 272, - [334] = 273, - [335] = 272, - [336] = 273, - [337] = 199, - [338] = 179, - [339] = 183, - [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 344, - [345] = 345, - [346] = 178, - [347] = 178, - [348] = 195, - [349] = 273, - [350] = 197, - [351] = 220, - [352] = 263, - [353] = 224, - [354] = 225, - [355] = 277, - [356] = 279, - [357] = 226, - [358] = 228, - [359] = 288, - [360] = 232, - [361] = 234, - [362] = 291, - [363] = 236, - [364] = 238, - [365] = 239, - [366] = 240, - [367] = 241, - [368] = 242, - [369] = 243, - [370] = 244, - [371] = 245, - [372] = 246, - [373] = 247, - [374] = 248, - [375] = 249, - [376] = 202, - [377] = 251, - [378] = 252, - [379] = 253, - [380] = 254, - [381] = 255, - [382] = 265, - [383] = 256, - [384] = 257, - [385] = 258, - [386] = 259, - [387] = 260, - [388] = 261, - [389] = 262, - [390] = 263, - [391] = 270, - [392] = 267, - [393] = 291, - [394] = 294, - [395] = 218, - [396] = 304, - [397] = 223, - [398] = 304, - [399] = 227, - [400] = 229, - [401] = 231, - [402] = 233, - [403] = 268, - [404] = 265, - [405] = 270, - [406] = 267, - [407] = 310, - [408] = 218, - [409] = 220, - [410] = 223, - [411] = 227, - [412] = 229, - [413] = 231, - [414] = 233, - [415] = 415, - [416] = 416, - [417] = 235, - [418] = 250, - [419] = 269, - [420] = 277, - [421] = 340, - [422] = 279, - [423] = 341, - [424] = 342, - [425] = 288, - [426] = 343, - [427] = 344, - [428] = 345, - [429] = 282, - [430] = 203, - [431] = 268, - [432] = 310, - [433] = 340, - [434] = 341, - [435] = 342, - [436] = 343, - [437] = 344, - [438] = 345, - [439] = 282, - [440] = 440, - [441] = 441, - [442] = 442, - [443] = 443, - [444] = 444, - [445] = 203, - [446] = 209, - [447] = 209, - [448] = 211, - [449] = 211, - [450] = 213, - [451] = 235, - [452] = 215, - [453] = 213, - [454] = 217, - [455] = 219, - [456] = 215, - [457] = 221, - [458] = 222, - [459] = 250, - [460] = 224, - [461] = 461, - [462] = 462, - [463] = 463, - [464] = 225, - [465] = 226, - [466] = 217, - [467] = 228, - [468] = 230, - [469] = 219, - [470] = 232, - [471] = 269, - [472] = 234, - [473] = 221, - [474] = 236, - [475] = 222, - [476] = 238, - [477] = 239, - [478] = 240, + [311] = 311, + [312] = 312, + [313] = 202, + [314] = 314, + [315] = 314, + [316] = 202, + [317] = 314, + [318] = 198, + [319] = 200, + [320] = 179, + [321] = 202, + [322] = 314, + [323] = 202, + [324] = 314, + [325] = 202, + [326] = 314, + [327] = 202, + [328] = 314, + [329] = 202, + [330] = 314, + [331] = 202, + [332] = 314, + [333] = 202, + [334] = 314, + [335] = 202, + [336] = 314, + [337] = 198, + [338] = 314, + [339] = 202, + [340] = 314, + [341] = 202, + [342] = 314, + [343] = 202, + [344] = 314, + [345] = 202, + [346] = 314, + [347] = 180, + [348] = 181, + [349] = 182, + [350] = 183, + [351] = 200, + [352] = 291, + [353] = 253, + [354] = 254, + [355] = 255, + [356] = 266, + [357] = 256, + [358] = 257, + [359] = 268, + [360] = 258, + [361] = 269, + [362] = 362, + [363] = 271, + [364] = 272, + [365] = 365, + [366] = 273, + [367] = 274, + [368] = 239, + [369] = 241, + [370] = 275, + [371] = 371, + [372] = 372, + [373] = 373, + [374] = 259, + [375] = 234, + [376] = 252, + [377] = 253, + [378] = 254, + [379] = 255, + [380] = 262, + [381] = 276, + [382] = 239, + [383] = 277, + [384] = 263, + [385] = 232, + [386] = 278, + [387] = 265, + [388] = 241, + [389] = 266, + [390] = 279, + [391] = 308, + [392] = 268, + [393] = 242, + [394] = 280, + [395] = 269, + [396] = 312, + [397] = 271, + [398] = 272, + [399] = 281, + [400] = 244, + [401] = 273, + [402] = 402, + [403] = 282, + [404] = 404, + [405] = 283, + [406] = 406, + [407] = 284, + [408] = 274, + [409] = 285, + [410] = 275, + [411] = 242, + [412] = 310, + [413] = 286, + [414] = 276, + [415] = 233, + [416] = 277, + [417] = 246, + [418] = 278, + [419] = 234, + [420] = 279, + [421] = 235, + [422] = 280, + [423] = 236, + [424] = 281, + [425] = 282, + [426] = 283, + [427] = 284, + [428] = 428, + [429] = 285, + [430] = 286, + [431] = 287, + [432] = 288, + [433] = 289, + [434] = 290, + [435] = 252, + [436] = 265, + [437] = 293, + [438] = 294, + [439] = 295, + [440] = 296, + [441] = 287, + [442] = 297, + [443] = 298, + [444] = 299, + [445] = 300, + [446] = 244, + [447] = 301, + [448] = 288, + [449] = 302, + [450] = 303, + [451] = 289, + [452] = 290, + [453] = 291, + [454] = 292, + [455] = 293, + [456] = 294, + [457] = 295, + [458] = 304, + [459] = 296, + [460] = 297, + [461] = 298, + [462] = 299, + [463] = 300, + [464] = 301, + [465] = 302, + [466] = 303, + [467] = 304, + [468] = 305, + [469] = 306, + [470] = 305, + [471] = 306, + [472] = 307, + [473] = 307, + [474] = 227, + [475] = 228, + [476] = 246, + [477] = 227, + [478] = 237, [479] = 479, - [480] = 241, - [481] = 242, - [482] = 243, - [483] = 244, - [484] = 245, - [485] = 246, - [486] = 247, - [487] = 248, - [488] = 249, - [489] = 202, - [490] = 251, - [491] = 252, - [492] = 253, - [493] = 254, - [494] = 255, - [495] = 256, - [496] = 257, - [497] = 258, - [498] = 259, - [499] = 260, - [500] = 261, - [501] = 262, - [502] = 230, - [503] = 503, - [504] = 504, - [505] = 505, + [480] = 256, + [481] = 257, + [482] = 258, + [483] = 235, + [484] = 259, + [485] = 236, + [486] = 486, + [487] = 237, + [488] = 238, + [489] = 262, + [490] = 229, + [491] = 231, + [492] = 232, + [493] = 311, + [494] = 231, + [495] = 250, + [496] = 238, + [497] = 311, + [498] = 229, + [499] = 250, + [500] = 263, + [501] = 308, + [502] = 312, + [503] = 310, + [504] = 233, + [505] = 292, [506] = 506, - [507] = 507, + [507] = 506, [508] = 508, [509] = 509, [510] = 510, - [511] = 506, - [512] = 507, - [513] = 508, - [514] = 509, + [511] = 511, + [512] = 512, + [513] = 506, + [514] = 508, [515] = 509, - [516] = 516, - [517] = 506, - [518] = 507, - [519] = 508, - [520] = 509, - [521] = 506, - [522] = 506, - [523] = 507, - [524] = 508, - [525] = 509, - [526] = 507, - [527] = 508, - [528] = 506, - [529] = 507, - [530] = 508, - [531] = 509, - [532] = 509, - [533] = 533, - [534] = 506, - [535] = 507, - [536] = 508, - [537] = 509, - [538] = 510, - [539] = 539, - [540] = 506, - [541] = 507, - [542] = 508, - [543] = 509, - [544] = 503, - [545] = 545, - [546] = 506, - [547] = 507, - [548] = 508, - [549] = 509, - [550] = 516, - [551] = 551, - [552] = 506, - [553] = 507, - [554] = 508, - [555] = 509, - [556] = 551, - [557] = 506, - [558] = 507, + [516] = 510, + [517] = 509, + [518] = 510, + [519] = 506, + [520] = 508, + [521] = 509, + [522] = 510, + [523] = 509, + [524] = 510, + [525] = 506, + [526] = 508, + [527] = 509, + [528] = 510, + [529] = 529, + [530] = 506, + [531] = 506, + [532] = 508, + [533] = 509, + [534] = 510, + [535] = 508, + [536] = 536, + [537] = 506, + [538] = 508, + [539] = 509, + [540] = 510, + [541] = 529, + [542] = 529, + [543] = 506, + [544] = 508, + [545] = 509, + [546] = 510, + [547] = 536, + [548] = 506, + [549] = 506, + [550] = 508, + [551] = 509, + [552] = 510, + [553] = 553, + [554] = 554, + [555] = 506, + [556] = 508, + [557] = 509, + [558] = 510, [559] = 508, - [560] = 509, - [561] = 505, - [562] = 506, - [563] = 507, - [564] = 508, - [565] = 509, - [566] = 506, - [567] = 510, - [568] = 506, - [569] = 507, - [570] = 508, - [571] = 509, - [572] = 539, - [573] = 506, - [574] = 506, - [575] = 507, - [576] = 508, - [577] = 509, - [578] = 507, - [579] = 508, - [580] = 509, - [581] = 503, - [582] = 545, - [583] = 539, - [584] = 545, - [585] = 516, - [586] = 508, - [587] = 507, - [588] = 505, - [589] = 533, - [590] = 551, - [591] = 533, - [592] = 592, - [593] = 441, - [594] = 443, + [560] = 560, + [561] = 506, + [562] = 508, + [563] = 509, + [564] = 510, + [565] = 536, + [566] = 554, + [567] = 506, + [568] = 508, + [569] = 509, + [570] = 510, + [571] = 511, + [572] = 512, + [573] = 509, + [574] = 508, + [575] = 509, + [576] = 510, + [577] = 510, + [578] = 506, + [579] = 553, + [580] = 553, + [581] = 508, + [582] = 582, + [583] = 583, + [584] = 554, + [585] = 506, + [586] = 511, + [587] = 512, + [588] = 508, + [589] = 509, + [590] = 510, + [591] = 582, + [592] = 560, + [593] = 560, + [594] = 582, [595] = 595, - [596] = 416, - [597] = 444, - [598] = 592, - [599] = 461, - [600] = 463, - [601] = 462, - [602] = 415, - [603] = 592, - [604] = 479, - [605] = 592, - [606] = 592, - [607] = 592, - [608] = 592, - [609] = 440, - [610] = 592, - [611] = 592, - [612] = 592, - [613] = 592, - [614] = 592, - [615] = 592, - [616] = 592, - [617] = 592, - [618] = 592, - [619] = 619, - [620] = 442, - [621] = 621, - [622] = 622, - [623] = 621, + [596] = 362, + [597] = 365, + [598] = 371, + [599] = 595, + [600] = 373, + [601] = 428, + [602] = 479, + [603] = 486, + [604] = 402, + [605] = 404, + [606] = 406, + [607] = 607, + [608] = 608, + [609] = 595, + [610] = 595, + [611] = 595, + [612] = 595, + [613] = 595, + [614] = 595, + [615] = 595, + [616] = 595, + [617] = 595, + [618] = 595, + [619] = 595, + [620] = 595, + [621] = 595, + [622] = 595, + [623] = 372, [624] = 624, - [625] = 622, - [626] = 621, - [627] = 622, - [628] = 621, - [629] = 622, - [630] = 621, - [631] = 631, - [632] = 622, - [633] = 622, - [634] = 621, - [635] = 621, - [636] = 622, - [637] = 621, - [638] = 622, - [639] = 621, - [640] = 622, - [641] = 622, - [642] = 621, - [643] = 622, - [644] = 621, - [645] = 622, - [646] = 646, - [647] = 647, - [648] = 648, - [649] = 631, + [625] = 625, + [626] = 626, + [627] = 627, + [628] = 624, + [629] = 629, + [630] = 624, + [631] = 629, + [632] = 625, + [633] = 626, + [634] = 627, + [635] = 624, + [636] = 629, + [637] = 624, + [638] = 629, + [639] = 624, + [640] = 629, + [641] = 641, + [642] = 642, + [643] = 629, + [644] = 641, + [645] = 624, + [646] = 629, + [647] = 642, + [648] = 624, + [649] = 629, [650] = 624, - [651] = 622, - [652] = 621, - [653] = 646, - [654] = 648, - [655] = 622, - [656] = 621, - [657] = 622, - [658] = 621, - [659] = 647, - [660] = 622, - [661] = 621, - [662] = 621, - [663] = 631, - [664] = 631, - [665] = 647, - [666] = 631, - [667] = 646, - [668] = 631, - [669] = 646, - [670] = 647, - [671] = 631, - [672] = 647, - [673] = 646, - [674] = 631, - [675] = 631, - [676] = 646, - [677] = 647, - [678] = 646, - [679] = 647, - [680] = 647, - [681] = 646, - [682] = 646, - [683] = 647, - [684] = 631, - [685] = 646, - [686] = 647, - [687] = 631, - [688] = 646, - [689] = 647, - [690] = 631, - [691] = 646, - [692] = 631, - [693] = 619, - [694] = 595, - [695] = 646, - [696] = 647, - [697] = 647, - [698] = 698, - [699] = 698, - [700] = 700, - [701] = 700, - [702] = 698, - [703] = 703, - [704] = 704, + [651] = 624, + [652] = 629, + [653] = 624, + [654] = 629, + [655] = 624, + [656] = 629, + [657] = 624, + [658] = 629, + [659] = 624, + [660] = 629, + [661] = 624, + [662] = 629, + [663] = 624, + [664] = 629, + [665] = 629, + [666] = 625, + [667] = 625, + [668] = 626, + [669] = 625, + [670] = 625, + [671] = 626, + [672] = 625, + [673] = 641, + [674] = 641, + [675] = 641, + [676] = 626, + [677] = 625, + [678] = 608, + [679] = 626, + [680] = 607, + [681] = 625, + [682] = 641, + [683] = 641, + [684] = 641, + [685] = 625, + [686] = 641, + [687] = 626, + [688] = 626, + [689] = 641, + [690] = 625, + [691] = 626, + [692] = 641, + [693] = 626, + [694] = 626, + [695] = 641, + [696] = 625, + [697] = 626, + [698] = 641, + [699] = 625, + [700] = 626, + [701] = 701, + [702] = 702, + [703] = 701, + [704] = 701, [705] = 705, [706] = 706, - [707] = 703, - [708] = 704, + [707] = 707, + [708] = 708, [709] = 705, [710] = 706, - [711] = 703, - [712] = 704, - [713] = 705, - [714] = 700, - [715] = 705, - [716] = 706, - [717] = 703, - [718] = 704, - [719] = 705, - [720] = 706, - [721] = 704, - [722] = 705, - [723] = 706, - [724] = 700, - [725] = 698, - [726] = 700, - [727] = 698, - [728] = 700, - [729] = 698, - [730] = 700, - [731] = 703, - [732] = 704, - [733] = 705, - [734] = 706, - [735] = 619, - [736] = 703, - [737] = 703, - [738] = 704, - [739] = 705, - [740] = 706, - [741] = 698, - [742] = 700, - [743] = 703, - [744] = 704, - [745] = 703, - [746] = 704, - [747] = 705, - [748] = 706, - [749] = 703, - [750] = 706, - [751] = 698, - [752] = 705, - [753] = 698, - [754] = 700, - [755] = 698, - [756] = 700, - [757] = 698, - [758] = 700, - [759] = 703, - [760] = 704, - [761] = 705, - [762] = 706, + [711] = 702, + [712] = 701, + [713] = 707, + [714] = 705, + [715] = 706, + [716] = 707, + [717] = 708, + [718] = 708, + [719] = 702, + [720] = 701, + [721] = 705, + [722] = 706, + [723] = 707, + [724] = 708, + [725] = 607, + [726] = 702, + [727] = 701, + [728] = 705, + [729] = 706, + [730] = 707, + [731] = 708, + [732] = 702, + [733] = 701, + [734] = 705, + [735] = 706, + [736] = 707, + [737] = 708, + [738] = 702, + [739] = 701, + [740] = 705, + [741] = 706, + [742] = 707, + [743] = 708, + [744] = 702, + [745] = 701, + [746] = 705, + [747] = 706, + [748] = 707, + [749] = 708, + [750] = 702, + [751] = 701, + [752] = 702, + [753] = 702, + [754] = 705, + [755] = 706, + [756] = 707, + [757] = 708, + [758] = 608, + [759] = 705, + [760] = 702, + [761] = 701, + [762] = 705, [763] = 706, - [764] = 698, - [765] = 703, - [766] = 704, - [767] = 705, - [768] = 706, - [769] = 700, - [770] = 703, - [771] = 704, - [772] = 703, - [773] = 704, - [774] = 698, - [775] = 698, - [776] = 700, - [777] = 700, - [778] = 705, - [779] = 703, - [780] = 704, - [781] = 705, - [782] = 706, + [764] = 707, + [765] = 708, + [766] = 706, + [767] = 707, + [768] = 702, + [769] = 701, + [770] = 705, + [771] = 706, + [772] = 707, + [773] = 708, + [774] = 708, + [775] = 702, + [776] = 701, + [777] = 705, + [778] = 706, + [779] = 707, + [780] = 708, + [781] = 702, + [782] = 705, [783] = 706, - [784] = 705, - [785] = 706, - [786] = 705, - [787] = 595, - [788] = 706, - [789] = 698, - [790] = 700, - [791] = 698, - [792] = 700, - [793] = 703, - [794] = 704, - [795] = 704, - [796] = 796, - [797] = 797, - [798] = 798, + [784] = 707, + [785] = 708, + [786] = 702, + [787] = 701, + [788] = 705, + [789] = 706, + [790] = 707, + [791] = 708, + [792] = 702, + [793] = 701, + [794] = 705, + [795] = 706, + [796] = 707, + [797] = 708, + [798] = 701, [799] = 799, - [800] = 798, + [800] = 800, [801] = 801, - [802] = 798, - [803] = 799, + [802] = 802, + [803] = 801, [804] = 804, [805] = 805, - [806] = 799, - [807] = 799, + [806] = 806, + [807] = 801, [808] = 808, - [809] = 809, - [810] = 796, - [811] = 811, - [812] = 797, + [809] = 799, + [810] = 800, + [811] = 804, + [812] = 806, [813] = 813, - [814] = 804, - [815] = 813, - [816] = 801, + [814] = 814, + [815] = 805, + [816] = 802, [817] = 808, - [818] = 809, - [819] = 796, - [820] = 797, - [821] = 805, - [822] = 804, - [823] = 813, - [824] = 801, + [818] = 799, + [819] = 800, + [820] = 806, + [821] = 813, + [822] = 814, + [823] = 805, + [824] = 802, [825] = 808, - [826] = 809, - [827] = 796, - [828] = 797, - [829] = 805, + [826] = 826, + [827] = 808, + [828] = 799, + [829] = 800, [830] = 804, - [831] = 813, - [832] = 801, - [833] = 808, - [834] = 809, - [835] = 796, - [836] = 797, - [837] = 805, - [838] = 804, - [839] = 813, - [840] = 801, - [841] = 808, - [842] = 809, + [831] = 806, + [832] = 813, + [833] = 814, + [834] = 805, + [835] = 802, + [836] = 808, + [837] = 799, + [838] = 800, + [839] = 801, + [840] = 806, + [841] = 813, + [842] = 814, [843] = 805, - [844] = 797, - [845] = 805, - [846] = 804, - [847] = 813, - [848] = 801, - [849] = 808, - [850] = 809, - [851] = 796, - [852] = 797, - [853] = 805, - [854] = 804, - [855] = 813, - [856] = 801, - [857] = 808, - [858] = 809, - [859] = 796, - [860] = 797, - [861] = 805, - [862] = 804, - [863] = 813, - [864] = 801, - [865] = 808, - [866] = 809, - [867] = 796, - [868] = 797, - [869] = 805, - [870] = 804, - [871] = 813, - [872] = 801, - [873] = 808, - [874] = 809, - [875] = 796, - [876] = 797, - [877] = 805, - [878] = 804, - [879] = 813, - [880] = 801, - [881] = 808, - [882] = 809, - [883] = 796, - [884] = 797, - [885] = 805, - [886] = 804, - [887] = 813, - [888] = 801, - [889] = 808, - [890] = 809, - [891] = 796, - [892] = 797, - [893] = 805, - [894] = 804, - [895] = 813, - [896] = 801, - [897] = 808, - [898] = 809, - [899] = 796, - [900] = 797, - [901] = 805, - [902] = 804, - [903] = 813, - [904] = 801, - [905] = 808, - [906] = 809, - [907] = 796, - [908] = 797, - [909] = 805, - [910] = 804, - [911] = 813, - [912] = 801, - [913] = 808, - [914] = 809, - [915] = 796, - [916] = 797, - [917] = 805, - [918] = 804, - [919] = 813, - [920] = 801, - [921] = 808, - [922] = 809, - [923] = 796, - [924] = 797, - [925] = 805, - [926] = 804, - [927] = 813, - [928] = 801, - [929] = 808, - [930] = 809, - [931] = 796, - [932] = 932, - [933] = 932, - [934] = 932, - [935] = 932, - [936] = 932, - [937] = 932, - [938] = 932, - [939] = 932, - [940] = 932, - [941] = 932, - [942] = 932, - [943] = 932, - [944] = 932, - [945] = 945, - [946] = 945, - [947] = 945, - [948] = 945, - [949] = 945, - [950] = 945, - [951] = 945, - [952] = 945, - [953] = 945, - [954] = 945, - [955] = 945, - [956] = 945, - [957] = 945, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 958, + [844] = 802, + [845] = 808, + [846] = 799, + [847] = 800, + [848] = 814, + [849] = 806, + [850] = 813, + [851] = 814, + [852] = 805, + [853] = 802, + [854] = 808, + [855] = 799, + [856] = 813, + [857] = 806, + [858] = 813, + [859] = 814, + [860] = 805, + [861] = 802, + [862] = 808, + [863] = 799, + [864] = 800, + [865] = 806, + [866] = 813, + [867] = 814, + [868] = 805, + [869] = 802, + [870] = 808, + [871] = 799, + [872] = 800, + [873] = 806, + [874] = 813, + [875] = 814, + [876] = 805, + [877] = 802, + [878] = 808, + [879] = 799, + [880] = 800, + [881] = 806, + [882] = 813, + [883] = 814, + [884] = 805, + [885] = 802, + [886] = 808, + [887] = 799, + [888] = 800, + [889] = 806, + [890] = 813, + [891] = 814, + [892] = 805, + [893] = 802, + [894] = 808, + [895] = 799, + [896] = 800, + [897] = 806, + [898] = 813, + [899] = 814, + [900] = 805, + [901] = 802, + [902] = 808, + [903] = 799, + [904] = 800, + [905] = 806, + [906] = 813, + [907] = 814, + [908] = 805, + [909] = 802, + [910] = 808, + [911] = 799, + [912] = 800, + [913] = 806, + [914] = 813, + [915] = 814, + [916] = 805, + [917] = 802, + [918] = 808, + [919] = 799, + [920] = 800, + [921] = 806, + [922] = 813, + [923] = 814, + [924] = 805, + [925] = 802, + [926] = 808, + [927] = 799, + [928] = 800, + [929] = 806, + [930] = 813, + [931] = 814, + [932] = 805, + [933] = 802, + [934] = 800, + [935] = 935, + [936] = 935, + [937] = 935, + [938] = 935, + [939] = 935, + [940] = 935, + [941] = 935, + [942] = 935, + [943] = 935, + [944] = 935, + [945] = 935, + [946] = 935, + [947] = 935, + [948] = 948, + [949] = 948, + [950] = 948, + [951] = 948, + [952] = 948, + [953] = 948, + [954] = 948, + [955] = 948, + [956] = 948, + [957] = 948, + [958] = 948, + [959] = 948, + [960] = 948, + [961] = 961, [962] = 962, [963] = 963, [964] = 964, @@ -3113,7 +3159,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [969] = 969, [970] = 970, [971] = 971, - [972] = 972, + [972] = 961, [973] = 973, [974] = 974, [975] = 975, @@ -3127,21 +3173,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [983] = 983, [984] = 984, [985] = 985, - [986] = 967, - [987] = 980, - [988] = 981, - [989] = 982, - [990] = 983, - [991] = 991, - [992] = 992, - [993] = 993, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 980, + [991] = 981, + [992] = 976, + [993] = 977, [994] = 994, [995] = 995, [996] = 996, [997] = 997, [998] = 998, [999] = 999, - [1000] = 971, + [1000] = 986, [1001] = 1001, [1002] = 1002, [1003] = 1003, @@ -3162,7 +3208,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 972, + [1021] = 1021, [1022] = 1022, [1023] = 1023, [1024] = 1024, @@ -3191,10 +3237,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1047] = 1047, [1048] = 1048, [1049] = 1049, - [1050] = 979, + [1050] = 1050, [1051] = 1051, [1052] = 1052, - [1053] = 1053, + [1053] = 983, [1054] = 1054, [1055] = 1055, [1056] = 1056, @@ -3203,2215 +3249,2215 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1059] = 1059, [1060] = 1060, [1061] = 1061, - [1062] = 959, - [1063] = 975, - [1064] = 976, - [1065] = 977, - [1066] = 966, - [1067] = 984, - [1068] = 985, - [1069] = 1069, - [1070] = 973, - [1071] = 965, - [1072] = 970, - [1073] = 974, - [1074] = 960, - [1075] = 962, - [1076] = 963, - [1077] = 964, - [1078] = 978, - [1079] = 979, - [1080] = 980, - [1081] = 981, - [1082] = 968, - [1083] = 969, - [1084] = 982, - [1085] = 983, - [1086] = 960, - [1087] = 966, - [1088] = 984, - [1089] = 985, - [1090] = 965, + [1062] = 1062, + [1063] = 968, + [1064] = 973, + [1065] = 975, + [1066] = 974, + [1067] = 964, + [1068] = 965, + [1069] = 987, + [1070] = 966, + [1071] = 967, + [1072] = 984, + [1073] = 978, + [1074] = 963, + [1075] = 979, + [1076] = 970, + [1077] = 988, + [1078] = 982, + [1079] = 969, + [1080] = 983, + [1081] = 980, + [1082] = 981, + [1083] = 962, + [1084] = 976, + [1085] = 971, + [1086] = 1086, + [1087] = 977, + [1088] = 985, + [1089] = 963, + [1090] = 979, [1091] = 970, - [1092] = 962, - [1093] = 963, - [1094] = 964, - [1095] = 967, - [1096] = 968, - [1097] = 971, - [1098] = 972, + [1092] = 988, + [1093] = 982, + [1094] = 962, + [1095] = 971, + [1096] = 985, + [1097] = 986, + [1098] = 968, [1099] = 973, - [1100] = 974, - [1101] = 959, - [1102] = 975, - [1103] = 976, - [1104] = 977, - [1105] = 978, - [1106] = 1106, - [1107] = 979, - [1108] = 973, - [1109] = 974, - [1110] = 1031, - [1111] = 959, - [1112] = 975, - [1113] = 1032, - [1114] = 976, + [1100] = 975, + [1101] = 974, + [1102] = 964, + [1103] = 965, + [1104] = 966, + [1105] = 967, + [1106] = 984, + [1107] = 978, + [1108] = 969, + [1109] = 1109, + [1110] = 964, + [1111] = 1027, + [1112] = 976, + [1113] = 1033, + [1114] = 1034, [1115] = 977, - [1116] = 1024, - [1117] = 1033, - [1118] = 978, - [1119] = 1034, + [1116] = 963, + [1117] = 1026, + [1118] = 979, + [1119] = 970, [1120] = 1035, - [1121] = 1036, - [1122] = 1037, - [1123] = 1038, - [1124] = 1059, - [1125] = 1039, - [1126] = 965, - [1127] = 1012, + [1121] = 988, + [1122] = 982, + [1123] = 1036, + [1124] = 1037, + [1125] = 1038, + [1126] = 1039, + [1127] = 965, [1128] = 1040, - [1129] = 1041, - [1130] = 1013, - [1131] = 1042, - [1132] = 1034, - [1133] = 1035, - [1134] = 960, - [1135] = 966, + [1129] = 1061, + [1130] = 1041, + [1131] = 1002, + [1132] = 1042, + [1133] = 1043, + [1134] = 966, + [1135] = 967, [1136] = 984, - [1137] = 985, - [1138] = 965, - [1139] = 970, - [1140] = 1036, - [1141] = 970, - [1142] = 1037, - [1143] = 1038, - [1144] = 1059, - [1145] = 1039, - [1146] = 1040, - [1147] = 1041, - [1148] = 1042, - [1149] = 1106, - [1150] = 999, - [1151] = 1043, - [1152] = 1043, - [1153] = 1014, - [1154] = 1015, - [1155] = 1155, - [1156] = 1051, - [1157] = 1052, - [1158] = 1044, - [1159] = 962, - [1160] = 962, - [1161] = 963, - [1162] = 963, - [1163] = 964, - [1164] = 964, - [1165] = 967, - [1166] = 968, - [1167] = 971, - [1168] = 972, - [1169] = 973, - [1170] = 974, - [1171] = 959, - [1172] = 975, - [1173] = 976, - [1174] = 977, - [1175] = 967, - [1176] = 979, - [1177] = 968, - [1178] = 980, - [1179] = 971, - [1180] = 1060, - [1181] = 1181, - [1182] = 1044, - [1183] = 962, - [1184] = 963, - [1185] = 964, - [1186] = 967, - [1187] = 972, - [1188] = 968, + [1137] = 1003, + [1138] = 1044, + [1139] = 1045, + [1140] = 1004, + [1141] = 1046, + [1142] = 989, + [1143] = 1047, + [1144] = 978, + [1145] = 1059, + [1146] = 1060, + [1147] = 964, + [1148] = 1048, + [1149] = 969, + [1150] = 983, + [1151] = 980, + [1152] = 981, + [1153] = 976, + [1154] = 977, + [1155] = 969, + [1156] = 1005, + [1157] = 1006, + [1158] = 1158, + [1159] = 1007, + [1160] = 965, + [1161] = 1008, + [1162] = 1049, + [1163] = 1062, + [1164] = 1050, + [1165] = 983, + [1166] = 963, + [1167] = 1009, + [1168] = 1010, + [1169] = 1011, + [1170] = 1012, + [1171] = 1013, + [1172] = 979, + [1173] = 970, + [1174] = 1046, + [1175] = 1014, + [1176] = 1015, + [1177] = 962, + [1178] = 974, + [1179] = 1016, + [1180] = 989, + [1181] = 971, + [1182] = 988, + [1183] = 1017, + [1184] = 1018, + [1185] = 1109, + [1186] = 982, + [1187] = 962, + [1188] = 966, [1189] = 971, - [1190] = 972, - [1191] = 973, - [1192] = 974, - [1193] = 959, - [1194] = 975, - [1195] = 976, - [1196] = 977, - [1197] = 1060, - [1198] = 1045, - [1199] = 973, - [1200] = 974, - [1201] = 1046, - [1202] = 959, - [1203] = 975, - [1204] = 976, - [1205] = 992, - [1206] = 1047, - [1207] = 1061, - [1208] = 1048, - [1209] = 993, - [1210] = 994, - [1211] = 995, + [1190] = 985, + [1191] = 986, + [1192] = 968, + [1193] = 1054, + [1194] = 994, + [1195] = 973, + [1196] = 975, + [1197] = 974, + [1198] = 964, + [1199] = 1199, + [1200] = 965, + [1201] = 966, + [1202] = 967, + [1203] = 984, + [1204] = 978, + [1205] = 967, + [1206] = 969, + [1207] = 983, + [1208] = 980, + [1209] = 981, + [1210] = 976, + [1211] = 985, [1212] = 977, - [1213] = 981, - [1214] = 978, - [1215] = 1053, - [1216] = 979, - [1217] = 980, - [1218] = 1054, - [1219] = 982, - [1220] = 1220, - [1221] = 981, - [1222] = 1045, - [1223] = 982, - [1224] = 1224, - [1225] = 978, - [1226] = 979, - [1227] = 980, - [1228] = 981, - [1229] = 1049, - [1230] = 982, - [1231] = 983, - [1232] = 983, - [1233] = 1046, - [1234] = 960, + [1213] = 984, + [1214] = 963, + [1215] = 979, + [1216] = 970, + [1217] = 988, + [1218] = 982, + [1219] = 962, + [1220] = 978, + [1221] = 971, + [1222] = 1047, + [1223] = 985, + [1224] = 986, + [1225] = 968, + [1226] = 973, + [1227] = 1048, + [1228] = 975, + [1229] = 974, + [1230] = 964, + [1231] = 965, + [1232] = 966, + [1233] = 967, + [1234] = 984, [1235] = 978, - [1236] = 979, - [1237] = 980, - [1238] = 981, - [1239] = 966, - [1240] = 982, + [1236] = 1236, + [1237] = 1049, + [1238] = 969, + [1239] = 995, + [1240] = 996, [1241] = 983, - [1242] = 984, - [1243] = 991, - [1244] = 1047, - [1245] = 985, - [1246] = 1061, - [1247] = 996, - [1248] = 965, - [1249] = 970, - [1250] = 1048, - [1251] = 983, - [1252] = 997, - [1253] = 985, - [1254] = 1016, - [1255] = 1017, - [1256] = 1018, - [1257] = 1057, - [1258] = 1058, - [1259] = 1010, - [1260] = 1019, - [1261] = 1261, - [1262] = 1020, - [1263] = 1001, - [1264] = 962, - [1265] = 963, - [1266] = 1011, - [1267] = 1022, - [1268] = 1023, - [1269] = 1049, - [1270] = 1024, - [1271] = 1025, - [1272] = 1106, - [1273] = 1026, - [1274] = 1051, - [1275] = 960, - [1276] = 960, - [1277] = 966, - [1278] = 984, - [1279] = 985, - [1280] = 964, - [1281] = 967, - [1282] = 965, - [1283] = 970, - [1284] = 1027, + [1242] = 980, + [1243] = 997, + [1244] = 998, + [1245] = 981, + [1246] = 976, + [1247] = 977, + [1248] = 200, + [1249] = 971, + [1250] = 963, + [1251] = 979, + [1252] = 970, + [1253] = 988, + [1254] = 982, + [1255] = 962, + [1256] = 985, + [1257] = 971, + [1258] = 985, + [1259] = 963, + [1260] = 979, + [1261] = 986, + [1262] = 968, + [1263] = 973, + [1264] = 975, + [1265] = 974, + [1266] = 964, + [1267] = 965, + [1268] = 966, + [1269] = 967, + [1270] = 963, + [1271] = 979, + [1272] = 970, + [1273] = 984, + [1274] = 978, + [1275] = 988, + [1276] = 982, + [1277] = 986, + [1278] = 969, + [1279] = 983, + [1280] = 980, + [1281] = 981, + [1282] = 976, + [1283] = 977, + [1284] = 968, [1285] = 962, - [1286] = 963, - [1287] = 964, - [1288] = 967, - [1289] = 968, - [1290] = 971, - [1291] = 972, - [1292] = 973, - [1293] = 974, - [1294] = 959, - [1295] = 975, - [1296] = 968, + [1286] = 970, + [1287] = 988, + [1288] = 982, + [1289] = 963, + [1290] = 979, + [1291] = 962, + [1292] = 970, + [1293] = 988, + [1294] = 982, + [1295] = 962, + [1296] = 973, [1297] = 971, - [1298] = 976, - [1299] = 977, - [1300] = 1028, - [1301] = 978, - [1302] = 965, - [1303] = 980, - [1304] = 981, - [1305] = 982, - [1306] = 983, - [1307] = 1029, - [1308] = 1030, - [1309] = 1052, - [1310] = 960, - [1311] = 966, - [1312] = 972, - [1313] = 973, - [1314] = 984, - [1315] = 985, - [1316] = 965, - [1317] = 970, - [1318] = 1031, - [1319] = 962, - [1320] = 963, - [1321] = 964, - [1322] = 967, - [1323] = 968, - [1324] = 971, - [1325] = 972, - [1326] = 973, - [1327] = 974, - [1328] = 974, - [1329] = 959, - [1330] = 959, - [1331] = 975, - [1332] = 976, - [1333] = 977, - [1334] = 1032, - [1335] = 978, - [1336] = 979, - [1337] = 980, - [1338] = 981, - [1339] = 982, - [1340] = 983, - [1341] = 1053, - [1342] = 960, - [1343] = 966, - [1344] = 975, - [1345] = 976, - [1346] = 984, - [1347] = 985, - [1348] = 965, - [1349] = 970, - [1350] = 960, - [1351] = 1023, - [1352] = 963, - [1353] = 964, - [1354] = 967, + [1298] = 985, + [1299] = 986, + [1300] = 968, + [1301] = 973, + [1302] = 975, + [1303] = 1062, + [1304] = 974, + [1305] = 1024, + [1306] = 965, + [1307] = 1019, + [1308] = 1020, + [1309] = 966, + [1310] = 967, + [1311] = 984, + [1312] = 978, + [1313] = 969, + [1314] = 969, + [1315] = 983, + [1316] = 980, + [1317] = 1021, + [1318] = 981, + [1319] = 1050, + [1320] = 1022, + [1321] = 976, + [1322] = 977, + [1323] = 1023, + [1324] = 986, + [1325] = 983, + [1326] = 963, + [1327] = 979, + [1328] = 970, + [1329] = 988, + [1330] = 982, + [1331] = 962, + [1332] = 980, + [1333] = 971, + [1334] = 985, + [1335] = 986, + [1336] = 1024, + [1337] = 968, + [1338] = 973, + [1339] = 1025, + [1340] = 976, + [1341] = 975, + [1342] = 974, + [1343] = 964, + [1344] = 965, + [1345] = 966, + [1346] = 967, + [1347] = 984, + [1348] = 978, + [1349] = 1026, + [1350] = 1027, + [1351] = 977, + [1352] = 1028, + [1353] = 981, + [1354] = 1025, [1355] = 968, - [1356] = 971, - [1357] = 972, - [1358] = 973, - [1359] = 974, - [1360] = 959, - [1361] = 975, - [1362] = 976, - [1363] = 977, - [1364] = 966, - [1365] = 978, - [1366] = 979, - [1367] = 980, - [1368] = 981, - [1369] = 982, - [1370] = 983, - [1371] = 196, - [1372] = 984, - [1373] = 960, - [1374] = 966, - [1375] = 984, - [1376] = 985, - [1377] = 965, - [1378] = 970, - [1379] = 985, - [1380] = 962, - [1381] = 963, - [1382] = 964, - [1383] = 967, - [1384] = 968, - [1385] = 971, - [1386] = 972, - [1387] = 973, - [1388] = 974, - [1389] = 959, - [1390] = 975, - [1391] = 976, - [1392] = 977, - [1393] = 965, - [1394] = 978, - [1395] = 979, - [1396] = 980, - [1397] = 981, - [1398] = 982, - [1399] = 983, - [1400] = 970, - [1401] = 960, - [1402] = 977, - [1403] = 1002, - [1404] = 978, - [1405] = 966, - [1406] = 979, - [1407] = 980, - [1408] = 981, - [1409] = 982, - [1410] = 983, - [1411] = 984, - [1412] = 985, - [1413] = 965, - [1414] = 970, - [1415] = 1033, - [1416] = 962, - [1417] = 1003, - [1418] = 960, - [1419] = 966, - [1420] = 963, - [1421] = 984, + [1356] = 1029, + [1357] = 983, + [1358] = 980, + [1359] = 981, + [1360] = 976, + [1361] = 977, + [1362] = 975, + [1363] = 1030, + [1364] = 1031, + [1365] = 1032, + [1366] = 1051, + [1367] = 963, + [1368] = 979, + [1369] = 1033, + [1370] = 1034, + [1371] = 970, + [1372] = 988, + [1373] = 982, + [1374] = 962, + [1375] = 1052, + [1376] = 971, + [1377] = 973, + [1378] = 985, + [1379] = 1109, + [1380] = 971, + [1381] = 986, + [1382] = 968, + [1383] = 985, + [1384] = 986, + [1385] = 973, + [1386] = 975, + [1387] = 974, + [1388] = 964, + [1389] = 965, + [1390] = 966, + [1391] = 968, + [1392] = 973, + [1393] = 975, + [1394] = 974, + [1395] = 967, + [1396] = 984, + [1397] = 964, + [1398] = 965, + [1399] = 978, + [1400] = 999, + [1401] = 969, + [1402] = 983, + [1403] = 980, + [1404] = 981, + [1405] = 976, + [1406] = 977, + [1407] = 1054, + [1408] = 963, + [1409] = 979, + [1410] = 970, + [1411] = 988, + [1412] = 982, + [1413] = 962, + [1414] = 966, + [1415] = 967, + [1416] = 984, + [1417] = 978, + [1418] = 1035, + [1419] = 1057, + [1420] = 1036, + [1421] = 971, [1422] = 985, - [1423] = 965, - [1424] = 970, - [1425] = 970, - [1426] = 964, - [1427] = 967, - [1428] = 968, - [1429] = 971, - [1430] = 972, - [1431] = 973, - [1432] = 962, - [1433] = 963, - [1434] = 964, - [1435] = 974, - [1436] = 967, - [1437] = 968, - [1438] = 971, - [1439] = 972, - [1440] = 973, - [1441] = 974, - [1442] = 959, - [1443] = 975, - [1444] = 959, - [1445] = 976, - [1446] = 977, - [1447] = 998, - [1448] = 978, - [1449] = 979, - [1450] = 980, - [1451] = 981, - [1452] = 982, - [1453] = 975, - [1454] = 983, - [1455] = 1004, - [1456] = 960, - [1457] = 966, - [1458] = 984, - [1459] = 985, - [1460] = 965, - [1461] = 970, - [1462] = 976, - [1463] = 1005, - [1464] = 962, - [1465] = 963, - [1466] = 964, - [1467] = 967, - [1468] = 968, - [1469] = 971, - [1470] = 972, - [1471] = 977, - [1472] = 973, - [1473] = 974, - [1474] = 959, - [1475] = 975, - [1476] = 976, - [1477] = 977, - [1478] = 1181, - [1479] = 1006, - [1480] = 1055, - [1481] = 978, - [1482] = 979, - [1483] = 980, - [1484] = 981, - [1485] = 982, - [1486] = 983, - [1487] = 1007, - [1488] = 991, - [1489] = 978, - [1490] = 1008, - [1491] = 966, - [1492] = 1054, + [1423] = 986, + [1424] = 968, + [1425] = 973, + [1426] = 975, + [1427] = 974, + [1428] = 964, + [1429] = 1058, + [1430] = 965, + [1431] = 1051, + [1432] = 966, + [1433] = 967, + [1434] = 984, + [1435] = 978, + [1436] = 1037, + [1437] = 969, + [1438] = 983, + [1439] = 980, + [1440] = 981, + [1441] = 976, + [1442] = 977, + [1443] = 1038, + [1444] = 963, + [1445] = 979, + [1446] = 970, + [1447] = 988, + [1448] = 982, + [1449] = 962, + [1450] = 1039, + [1451] = 971, + [1452] = 985, + [1453] = 986, + [1454] = 968, + [1455] = 973, + [1456] = 975, + [1457] = 974, + [1458] = 964, + [1459] = 965, + [1460] = 966, + [1461] = 967, + [1462] = 984, + [1463] = 978, + [1464] = 1040, + [1465] = 969, + [1466] = 983, + [1467] = 980, + [1468] = 981, + [1469] = 976, + [1470] = 977, + [1471] = 1061, + [1472] = 963, + [1473] = 979, + [1474] = 970, + [1475] = 988, + [1476] = 982, + [1477] = 962, + [1478] = 1041, + [1479] = 971, + [1480] = 985, + [1481] = 986, + [1482] = 968, + [1483] = 973, + [1484] = 975, + [1485] = 974, + [1486] = 964, + [1487] = 965, + [1488] = 966, + [1489] = 967, + [1490] = 984, + [1491] = 978, + [1492] = 1199, [1493] = 1055, - [1494] = 1056, - [1495] = 992, - [1496] = 993, - [1497] = 994, - [1498] = 979, - [1499] = 995, - [1500] = 1057, - [1501] = 1058, - [1502] = 1009, - [1503] = 984, - [1504] = 996, - [1505] = 1026, - [1506] = 962, - [1507] = 980, - [1508] = 997, - [1509] = 985, - [1510] = 963, - [1511] = 998, - [1512] = 964, - [1513] = 967, - [1514] = 999, - [1515] = 1027, - [1516] = 981, + [1494] = 969, + [1495] = 983, + [1496] = 980, + [1497] = 981, + [1498] = 980, + [1499] = 976, + [1500] = 977, + [1501] = 994, + [1502] = 981, + [1503] = 975, + [1504] = 1055, + [1505] = 1056, + [1506] = 1057, + [1507] = 995, + [1508] = 996, + [1509] = 997, + [1510] = 998, + [1511] = 1058, + [1512] = 1059, + [1513] = 1001, + [1514] = 974, + [1515] = 999, + [1516] = 1060, [1517] = 1028, [1518] = 1001, - [1519] = 1002, - [1520] = 1003, - [1521] = 1004, - [1522] = 1005, - [1523] = 1006, - [1524] = 1007, - [1525] = 982, - [1526] = 1008, - [1527] = 1009, - [1528] = 1010, - [1529] = 1011, - [1530] = 1012, - [1531] = 1029, - [1532] = 1030, - [1533] = 1013, - [1534] = 983, - [1535] = 968, - [1536] = 971, - [1537] = 1014, - [1538] = 1015, - [1539] = 1016, - [1540] = 1017, - [1541] = 1018, - [1542] = 972, - [1543] = 1056, - [1544] = 1019, - [1545] = 1020, - [1546] = 960, - [1547] = 1025, - [1548] = 1022, - [1549] = 966, - [1550] = 984, - [1551] = 962, - [1552] = 1046, - [1553] = 1046, - [1554] = 1047, - [1555] = 1061, - [1556] = 1048, - [1557] = 991, - [1558] = 270, - [1559] = 992, - [1560] = 993, - [1561] = 994, - [1562] = 995, + [1519] = 964, + [1520] = 1056, + [1521] = 1002, + [1522] = 1042, + [1523] = 1523, + [1524] = 1003, + [1525] = 1043, + [1526] = 1029, + [1527] = 1004, + [1528] = 1005, + [1529] = 1006, + [1530] = 1007, + [1531] = 1008, + [1532] = 1009, + [1533] = 1010, + [1534] = 1011, + [1535] = 1012, + [1536] = 1013, + [1537] = 1052, + [1538] = 1014, + [1539] = 1015, + [1540] = 1030, + [1541] = 1031, + [1542] = 1016, + [1543] = 1032, + [1544] = 1044, + [1545] = 1017, + [1546] = 1018, + [1547] = 1019, + [1548] = 1020, + [1549] = 1021, + [1550] = 1045, + [1551] = 1022, + [1552] = 1023, + [1553] = 1553, + [1554] = 969, + [1555] = 1030, + [1556] = 1043, + [1557] = 1044, + [1558] = 1045, + [1559] = 1046, + [1560] = 989, + [1561] = 1047, + [1562] = 1048, [1563] = 1049, - [1564] = 1106, - [1565] = 996, - [1566] = 997, - [1567] = 998, - [1568] = 999, - [1569] = 1001, - [1570] = 1002, - [1571] = 1003, - [1572] = 1004, - [1573] = 1005, - [1574] = 1006, - [1575] = 1007, - [1576] = 1008, - [1577] = 1009, - [1578] = 1010, - [1579] = 1011, - [1580] = 1012, - [1581] = 1013, - [1582] = 1014, - [1583] = 1015, - [1584] = 1051, - [1585] = 1052, - [1586] = 1181, - [1587] = 1053, - [1588] = 1054, - [1589] = 1016, - [1590] = 1017, - [1591] = 1018, - [1592] = 1019, - [1593] = 1020, - [1594] = 1022, - [1595] = 1023, - [1596] = 1024, - [1597] = 1025, - [1598] = 1026, - [1599] = 1027, - [1600] = 1028, - [1601] = 1029, - [1602] = 1030, - [1603] = 1031, - [1604] = 1032, - [1605] = 1033, - [1606] = 1055, - [1607] = 1056, - [1608] = 1057, - [1609] = 1058, - [1610] = 1034, - [1611] = 1035, - [1612] = 1036, - [1613] = 1037, - [1614] = 1038, - [1615] = 1059, - [1616] = 1039, - [1617] = 1040, - [1618] = 1041, - [1619] = 1042, - [1620] = 1045, - [1621] = 1044, - [1622] = 1060, - [1623] = 1045, - [1624] = 1046, - [1625] = 1047, - [1626] = 1061, - [1627] = 1048, - [1628] = 991, - [1629] = 996, - [1630] = 992, - [1631] = 993, - [1632] = 994, - [1633] = 995, - [1634] = 997, - [1635] = 1049, - [1636] = 1106, - [1637] = 996, - [1638] = 998, - [1639] = 997, - [1640] = 999, + [1564] = 1062, + [1565] = 1050, + [1566] = 994, + [1567] = 312, + [1568] = 995, + [1569] = 996, + [1570] = 997, + [1571] = 998, + [1572] = 1051, + [1573] = 1052, + [1574] = 999, + [1575] = 1001, + [1576] = 1002, + [1577] = 1003, + [1578] = 1004, + [1579] = 1005, + [1580] = 1006, + [1581] = 1007, + [1582] = 1008, + [1583] = 1009, + [1584] = 1010, + [1585] = 1011, + [1586] = 1012, + [1587] = 1013, + [1588] = 1014, + [1589] = 1015, + [1590] = 1016, + [1591] = 1017, + [1592] = 1018, + [1593] = 1109, + [1594] = 1054, + [1595] = 1199, + [1596] = 1055, + [1597] = 1056, + [1598] = 1019, + [1599] = 1020, + [1600] = 1021, + [1601] = 1022, + [1602] = 1023, + [1603] = 1024, + [1604] = 1025, + [1605] = 1026, + [1606] = 1027, + [1607] = 1028, + [1608] = 1029, + [1609] = 1030, + [1610] = 1031, + [1611] = 1032, + [1612] = 1033, + [1613] = 1034, + [1614] = 1035, + [1615] = 1057, + [1616] = 1058, + [1617] = 1059, + [1618] = 1060, + [1619] = 1036, + [1620] = 1037, + [1621] = 1038, + [1622] = 1039, + [1623] = 1040, + [1624] = 1061, + [1625] = 1041, + [1626] = 1042, + [1627] = 1043, + [1628] = 1044, + [1629] = 1042, + [1630] = 1046, + [1631] = 989, + [1632] = 1047, + [1633] = 1048, + [1634] = 1049, + [1635] = 1062, + [1636] = 1050, + [1637] = 994, + [1638] = 995, + [1639] = 996, + [1640] = 997, [1641] = 998, [1642] = 999, - [1643] = 1001, - [1644] = 1002, + [1643] = 1051, + [1644] = 1052, [1645] = 1001, - [1646] = 1002, - [1647] = 1003, - [1648] = 1004, - [1649] = 1005, - [1650] = 1006, - [1651] = 1007, - [1652] = 1008, - [1653] = 1009, - [1654] = 1010, - [1655] = 1011, - [1656] = 1012, - [1657] = 1003, - [1658] = 1013, - [1659] = 1004, - [1660] = 1005, - [1661] = 1014, - [1662] = 1015, - [1663] = 1051, - [1664] = 1052, - [1665] = 1181, - [1666] = 1006, - [1667] = 1053, - [1668] = 1054, - [1669] = 1016, - [1670] = 1017, - [1671] = 1018, - [1672] = 1007, - [1673] = 1019, - [1674] = 1020, - [1675] = 1008, - [1676] = 1022, - [1677] = 1023, - [1678] = 1009, - [1679] = 1024, - [1680] = 1025, - [1681] = 1010, - [1682] = 1026, - [1683] = 1027, - [1684] = 1028, - [1685] = 1029, - [1686] = 1030, - [1687] = 1031, - [1688] = 1032, - [1689] = 1011, - [1690] = 1033, - [1691] = 1055, - [1692] = 1056, - [1693] = 1057, - [1694] = 1058, - [1695] = 1034, - [1696] = 1035, - [1697] = 1036, - [1698] = 1037, - [1699] = 1038, - [1700] = 1059, - [1701] = 1039, - [1702] = 1040, - [1703] = 1041, - [1704] = 1042, - [1705] = 1043, - [1706] = 1044, - [1707] = 1060, - [1708] = 1045, - [1709] = 1046, - [1710] = 1047, - [1711] = 1061, - [1712] = 1048, - [1713] = 991, - [1714] = 1012, - [1715] = 1013, - [1716] = 992, - [1717] = 993, - [1718] = 994, - [1719] = 995, - [1720] = 1014, - [1721] = 1049, - [1722] = 1015, - [1723] = 1106, - [1724] = 996, - [1725] = 1051, - [1726] = 1052, - [1727] = 997, - [1728] = 998, - [1729] = 999, - [1730] = 1001, - [1731] = 1002, - [1732] = 1003, - [1733] = 1004, - [1734] = 1005, - [1735] = 1006, - [1736] = 1007, - [1737] = 1008, - [1738] = 1009, - [1739] = 1010, - [1740] = 1011, - [1741] = 1012, - [1742] = 1013, - [1743] = 1181, - [1744] = 1014, - [1745] = 1015, - [1746] = 1051, - [1747] = 1052, - [1748] = 1181, - [1749] = 1053, - [1750] = 1054, + [1646] = 999, + [1647] = 1001, + [1648] = 1002, + [1649] = 1002, + [1650] = 1003, + [1651] = 1003, + [1652] = 1004, + [1653] = 1005, + [1654] = 1006, + [1655] = 1007, + [1656] = 1008, + [1657] = 1009, + [1658] = 1010, + [1659] = 1011, + [1660] = 1012, + [1661] = 1013, + [1662] = 1014, + [1663] = 1015, + [1664] = 1004, + [1665] = 1005, + [1666] = 1016, + [1667] = 1006, + [1668] = 1017, + [1669] = 1018, + [1670] = 1109, + [1671] = 1054, + [1672] = 1199, + [1673] = 1007, + [1674] = 1055, + [1675] = 1056, + [1676] = 1019, + [1677] = 1020, + [1678] = 1021, + [1679] = 1008, + [1680] = 1022, + [1681] = 1023, + [1682] = 1009, + [1683] = 1024, + [1684] = 1025, + [1685] = 1010, + [1686] = 1026, + [1687] = 1027, + [1688] = 1011, + [1689] = 1028, + [1690] = 1029, + [1691] = 1030, + [1692] = 1031, + [1693] = 1032, + [1694] = 1012, + [1695] = 1033, + [1696] = 1034, + [1697] = 1013, + [1698] = 1035, + [1699] = 1057, + [1700] = 1058, + [1701] = 1059, + [1702] = 1060, + [1703] = 1036, + [1704] = 1037, + [1705] = 1038, + [1706] = 1039, + [1707] = 1040, + [1708] = 1061, + [1709] = 1041, + [1710] = 1042, + [1711] = 1043, + [1712] = 1044, + [1713] = 1045, + [1714] = 1046, + [1715] = 989, + [1716] = 1047, + [1717] = 1048, + [1718] = 1049, + [1719] = 1062, + [1720] = 1050, + [1721] = 994, + [1722] = 1014, + [1723] = 1015, + [1724] = 995, + [1725] = 996, + [1726] = 997, + [1727] = 998, + [1728] = 1016, + [1729] = 1051, + [1730] = 1052, + [1731] = 1017, + [1732] = 999, + [1733] = 1018, + [1734] = 1001, + [1735] = 1109, + [1736] = 1054, + [1737] = 1002, + [1738] = 1003, + [1739] = 1004, + [1740] = 1005, + [1741] = 1006, + [1742] = 1007, + [1743] = 1008, + [1744] = 1009, + [1745] = 1010, + [1746] = 1011, + [1747] = 1012, + [1748] = 1013, + [1749] = 1014, + [1750] = 1015, [1751] = 1016, [1752] = 1017, [1753] = 1018, - [1754] = 1019, - [1755] = 1020, - [1756] = 1022, - [1757] = 1023, - [1758] = 1024, - [1759] = 1025, - [1760] = 1026, - [1761] = 1027, - [1762] = 1028, - [1763] = 1029, - [1764] = 1030, - [1765] = 1031, - [1766] = 1032, - [1767] = 1033, - [1768] = 1055, - [1769] = 1056, - [1770] = 1057, - [1771] = 1058, - [1772] = 1034, - [1773] = 1035, - [1774] = 1036, - [1775] = 1037, - [1776] = 1038, - [1777] = 1059, - [1778] = 1039, - [1779] = 1040, - [1780] = 1041, - [1781] = 1042, - [1782] = 1043, - [1783] = 1044, - [1784] = 1060, - [1785] = 1045, - [1786] = 1046, - [1787] = 1047, - [1788] = 1061, - [1789] = 1048, - [1790] = 991, - [1791] = 992, - [1792] = 993, - [1793] = 994, - [1794] = 995, - [1795] = 1049, - [1796] = 1106, - [1797] = 996, - [1798] = 997, - [1799] = 998, - [1800] = 999, - [1801] = 1001, - [1802] = 1002, - [1803] = 1003, - [1804] = 1004, - [1805] = 1005, - [1806] = 1006, - [1807] = 1007, - [1808] = 1008, - [1809] = 1009, - [1810] = 1010, - [1811] = 1011, - [1812] = 1012, - [1813] = 1013, - [1814] = 1014, - [1815] = 1015, - [1816] = 1051, - [1817] = 1052, - [1818] = 1181, - [1819] = 1053, - [1820] = 1054, - [1821] = 1016, - [1822] = 1017, - [1823] = 1018, - [1824] = 1019, - [1825] = 1020, - [1826] = 1022, - [1827] = 1023, - [1828] = 1024, - [1829] = 1025, - [1830] = 1026, - [1831] = 1027, - [1832] = 1028, - [1833] = 1029, - [1834] = 1030, - [1835] = 1031, - [1836] = 1032, - [1837] = 1016, - [1838] = 1033, - [1839] = 1055, - [1840] = 1056, - [1841] = 1057, - [1842] = 1058, - [1843] = 1034, - [1844] = 1035, - [1845] = 1036, - [1846] = 1037, - [1847] = 1038, - [1848] = 1059, - [1849] = 1039, - [1850] = 1040, - [1851] = 1041, - [1852] = 1042, - [1853] = 1043, - [1854] = 1044, - [1855] = 1060, - [1856] = 1045, - [1857] = 1046, - [1858] = 1047, - [1859] = 1061, - [1860] = 1048, - [1861] = 991, - [1862] = 1017, - [1863] = 1018, - [1864] = 1019, - [1865] = 1020, - [1866] = 992, - [1867] = 993, - [1868] = 994, - [1869] = 995, - [1870] = 1022, - [1871] = 1049, - [1872] = 1023, - [1873] = 1106, + [1754] = 1109, + [1755] = 1054, + [1756] = 1199, + [1757] = 1055, + [1758] = 1056, + [1759] = 1019, + [1760] = 1020, + [1761] = 1021, + [1762] = 1199, + [1763] = 1022, + [1764] = 1023, + [1765] = 1024, + [1766] = 1025, + [1767] = 1026, + [1768] = 1027, + [1769] = 1028, + [1770] = 1029, + [1771] = 1030, + [1772] = 1031, + [1773] = 1032, + [1774] = 1033, + [1775] = 1034, + [1776] = 1035, + [1777] = 1057, + [1778] = 1058, + [1779] = 1059, + [1780] = 1060, + [1781] = 1036, + [1782] = 1037, + [1783] = 1038, + [1784] = 1039, + [1785] = 1040, + [1786] = 1061, + [1787] = 1041, + [1788] = 1042, + [1789] = 1043, + [1790] = 1044, + [1791] = 1045, + [1792] = 1046, + [1793] = 989, + [1794] = 1047, + [1795] = 1048, + [1796] = 1049, + [1797] = 1062, + [1798] = 1050, + [1799] = 994, + [1800] = 995, + [1801] = 996, + [1802] = 997, + [1803] = 998, + [1804] = 1051, + [1805] = 1052, + [1806] = 999, + [1807] = 1001, + [1808] = 1002, + [1809] = 1003, + [1810] = 1004, + [1811] = 1005, + [1812] = 1006, + [1813] = 1007, + [1814] = 1008, + [1815] = 1009, + [1816] = 1010, + [1817] = 1011, + [1818] = 1012, + [1819] = 1013, + [1820] = 1014, + [1821] = 1015, + [1822] = 1016, + [1823] = 1017, + [1824] = 1018, + [1825] = 1109, + [1826] = 1054, + [1827] = 1199, + [1828] = 1055, + [1829] = 1056, + [1830] = 1019, + [1831] = 1020, + [1832] = 1021, + [1833] = 1022, + [1834] = 1023, + [1835] = 1024, + [1836] = 1025, + [1837] = 1026, + [1838] = 1027, + [1839] = 1028, + [1840] = 1029, + [1841] = 1030, + [1842] = 1031, + [1843] = 1032, + [1844] = 1033, + [1845] = 1034, + [1846] = 1035, + [1847] = 1057, + [1848] = 1058, + [1849] = 1059, + [1850] = 1060, + [1851] = 1036, + [1852] = 1037, + [1853] = 1038, + [1854] = 1039, + [1855] = 1040, + [1856] = 1061, + [1857] = 1041, + [1858] = 1042, + [1859] = 1043, + [1860] = 1044, + [1861] = 1045, + [1862] = 1046, + [1863] = 989, + [1864] = 1047, + [1865] = 1048, + [1866] = 1049, + [1867] = 1062, + [1868] = 1050, + [1869] = 994, + [1870] = 1019, + [1871] = 1020, + [1872] = 1021, + [1873] = 995, [1874] = 996, - [1875] = 1024, - [1876] = 1025, - [1877] = 997, - [1878] = 1026, - [1879] = 998, - [1880] = 1027, + [1875] = 997, + [1876] = 998, + [1877] = 1022, + [1878] = 1051, + [1879] = 1023, + [1880] = 1052, [1881] = 999, - [1882] = 1028, - [1883] = 1029, + [1882] = 1024, + [1883] = 1025, [1884] = 1001, - [1885] = 1002, - [1886] = 1003, - [1887] = 1004, - [1888] = 1005, - [1889] = 1006, - [1890] = 1007, - [1891] = 1008, - [1892] = 1009, - [1893] = 1010, - [1894] = 1011, - [1895] = 1012, - [1896] = 1030, - [1897] = 1013, - [1898] = 1031, - [1899] = 1032, + [1885] = 1026, + [1886] = 1002, + [1887] = 1027, + [1888] = 1003, + [1889] = 1028, + [1890] = 1004, + [1891] = 1005, + [1892] = 1006, + [1893] = 1007, + [1894] = 1008, + [1895] = 1009, + [1896] = 1010, + [1897] = 1011, + [1898] = 1012, + [1899] = 1013, [1900] = 1014, [1901] = 1015, - [1902] = 1051, - [1903] = 1052, - [1904] = 1181, - [1905] = 1053, - [1906] = 1054, - [1907] = 1016, - [1908] = 1017, - [1909] = 1018, - [1910] = 1033, - [1911] = 1019, - [1912] = 1020, - [1913] = 1022, - [1914] = 1023, - [1915] = 1024, - [1916] = 1025, - [1917] = 1026, - [1918] = 1027, - [1919] = 1028, - [1920] = 1029, - [1921] = 1030, - [1922] = 1055, - [1923] = 1031, - [1924] = 1032, - [1925] = 1056, - [1926] = 1033, - [1927] = 1055, - [1928] = 1056, - [1929] = 1057, - [1930] = 1058, - [1931] = 1034, - [1932] = 1035, - [1933] = 1036, - [1934] = 1037, - [1935] = 1038, + [1902] = 1029, + [1903] = 1030, + [1904] = 1016, + [1905] = 1031, + [1906] = 1032, + [1907] = 1017, + [1908] = 1018, + [1909] = 1109, + [1910] = 1054, + [1911] = 1199, + [1912] = 1055, + [1913] = 1056, + [1914] = 1019, + [1915] = 1020, + [1916] = 1021, + [1917] = 1033, + [1918] = 1022, + [1919] = 1023, + [1920] = 1034, + [1921] = 1024, + [1922] = 1025, + [1923] = 1026, + [1924] = 1027, + [1925] = 1035, + [1926] = 1028, + [1927] = 1029, + [1928] = 1030, + [1929] = 1031, + [1930] = 1032, + [1931] = 1033, + [1932] = 1034, + [1933] = 1035, + [1934] = 1057, + [1935] = 1058, [1936] = 1059, - [1937] = 1039, - [1938] = 1040, - [1939] = 1041, - [1940] = 1042, - [1941] = 1043, - [1942] = 1044, - [1943] = 1060, - [1944] = 1045, - [1945] = 1046, - [1946] = 1047, - [1947] = 1061, - [1948] = 1048, - [1949] = 991, - [1950] = 992, - [1951] = 993, - [1952] = 994, - [1953] = 995, - [1954] = 1049, - [1955] = 1106, - [1956] = 996, - [1957] = 1069, - [1958] = 997, - [1959] = 998, - [1960] = 999, - [1961] = 1001, - [1962] = 1002, - [1963] = 1003, - [1964] = 1004, - [1965] = 1005, - [1966] = 1006, - [1967] = 1007, - [1968] = 1008, - [1969] = 1009, - [1970] = 1010, - [1971] = 1011, - [1972] = 1012, - [1973] = 1013, - [1974] = 1014, - [1975] = 1015, - [1976] = 1051, - [1977] = 1052, - [1978] = 1181, - [1979] = 1053, - [1980] = 1054, - [1981] = 1016, - [1982] = 1017, - [1983] = 1018, - [1984] = 1019, - [1985] = 1020, - [1986] = 1022, - [1987] = 1023, - [1988] = 1024, - [1989] = 1025, - [1990] = 1026, - [1991] = 1027, - [1992] = 1028, - [1993] = 1029, - [1994] = 1030, - [1995] = 1031, - [1996] = 1032, - [1997] = 1033, - [1998] = 1055, - [1999] = 1056, - [2000] = 1057, - [2001] = 1058, - [2002] = 1034, - [2003] = 1035, - [2004] = 1036, - [2005] = 1037, - [2006] = 1038, - [2007] = 1059, - [2008] = 1039, - [2009] = 1040, - [2010] = 1041, - [2011] = 1042, - [2012] = 1043, - [2013] = 1044, - [2014] = 1060, - [2015] = 1045, - [2016] = 1046, - [2017] = 1047, - [2018] = 1061, - [2019] = 1048, - [2020] = 991, - [2021] = 1034, - [2022] = 992, - [2023] = 993, - [2024] = 994, - [2025] = 995, - [2026] = 1035, - [2027] = 1036, - [2028] = 1049, - [2029] = 1037, - [2030] = 1106, - [2031] = 1038, - [2032] = 996, - [2033] = 1059, - [2034] = 1039, - [2035] = 997, - [2036] = 1040, - [2037] = 1041, - [2038] = 998, - [2039] = 1042, - [2040] = 1043, - [2041] = 999, - [2042] = 1001, + [1937] = 1060, + [1938] = 1036, + [1939] = 1037, + [1940] = 1038, + [1941] = 1039, + [1942] = 1040, + [1943] = 1061, + [1944] = 1041, + [1945] = 1042, + [1946] = 1043, + [1947] = 1044, + [1948] = 1045, + [1949] = 1046, + [1950] = 989, + [1951] = 1047, + [1952] = 1048, + [1953] = 1049, + [1954] = 1062, + [1955] = 1050, + [1956] = 994, + [1957] = 1057, + [1958] = 1058, + [1959] = 995, + [1960] = 996, + [1961] = 997, + [1962] = 998, + [1963] = 1051, + [1964] = 1052, + [1965] = 999, + [1966] = 1001, + [1967] = 1002, + [1968] = 1003, + [1969] = 1004, + [1970] = 1005, + [1971] = 1006, + [1972] = 1007, + [1973] = 1008, + [1974] = 1009, + [1975] = 1010, + [1976] = 1011, + [1977] = 1012, + [1978] = 1013, + [1979] = 1014, + [1980] = 1015, + [1981] = 1086, + [1982] = 1016, + [1983] = 1017, + [1984] = 1018, + [1985] = 1109, + [1986] = 1054, + [1987] = 1199, + [1988] = 1055, + [1989] = 1056, + [1990] = 1019, + [1991] = 1020, + [1992] = 1021, + [1993] = 1022, + [1994] = 1023, + [1995] = 1024, + [1996] = 1025, + [1997] = 1026, + [1998] = 1027, + [1999] = 1028, + [2000] = 1029, + [2001] = 1030, + [2002] = 1031, + [2003] = 1032, + [2004] = 1033, + [2005] = 1034, + [2006] = 1035, + [2007] = 1057, + [2008] = 1058, + [2009] = 1059, + [2010] = 1060, + [2011] = 1036, + [2012] = 1037, + [2013] = 1038, + [2014] = 1039, + [2015] = 1040, + [2016] = 1061, + [2017] = 1041, + [2018] = 1042, + [2019] = 1043, + [2020] = 1044, + [2021] = 1045, + [2022] = 1046, + [2023] = 989, + [2024] = 1047, + [2025] = 1048, + [2026] = 1049, + [2027] = 1062, + [2028] = 1050, + [2029] = 994, + [2030] = 995, + [2031] = 996, + [2032] = 997, + [2033] = 998, + [2034] = 1051, + [2035] = 1052, + [2036] = 1036, + [2037] = 999, + [2038] = 1037, + [2039] = 1038, + [2040] = 1001, + [2041] = 1039, + [2042] = 1040, [2043] = 1002, - [2044] = 1003, - [2045] = 1004, - [2046] = 1005, - [2047] = 1006, - [2048] = 1007, - [2049] = 1008, - [2050] = 1009, - [2051] = 1010, - [2052] = 1011, - [2053] = 1012, - [2054] = 1013, - [2055] = 1014, - [2056] = 1015, - [2057] = 1051, - [2058] = 1052, - [2059] = 1053, - [2060] = 1054, - [2061] = 1016, - [2062] = 1017, - [2063] = 1018, - [2064] = 1019, - [2065] = 1020, - [2066] = 1022, - [2067] = 1023, - [2068] = 1024, - [2069] = 1025, - [2070] = 1026, - [2071] = 1027, - [2072] = 1028, - [2073] = 1029, - [2074] = 1030, - [2075] = 1031, - [2076] = 1032, - [2077] = 1033, - [2078] = 1055, - [2079] = 1056, - [2080] = 1057, - [2081] = 1058, - [2082] = 1034, - [2083] = 1035, - [2084] = 1036, - [2085] = 1037, - [2086] = 1038, - [2087] = 1059, - [2088] = 1039, - [2089] = 1040, - [2090] = 1041, - [2091] = 1042, - [2092] = 1043, - [2093] = 1044, - [2094] = 1060, - [2095] = 1045, - [2096] = 1047, - [2097] = 1061, - [2098] = 1048, + [2044] = 1061, + [2045] = 1041, + [2046] = 1003, + [2047] = 1042, + [2048] = 1043, + [2049] = 1004, + [2050] = 1005, + [2051] = 1006, + [2052] = 1007, + [2053] = 1008, + [2054] = 1009, + [2055] = 1010, + [2056] = 1011, + [2057] = 1012, + [2058] = 1013, + [2059] = 1014, + [2060] = 1015, + [2061] = 1044, + [2062] = 1045, + [2063] = 1016, + [2064] = 1017, + [2065] = 1018, + [2066] = 1109, + [2067] = 1054, + [2068] = 1055, + [2069] = 1056, + [2070] = 1019, + [2071] = 1020, + [2072] = 1021, + [2073] = 1022, + [2074] = 1023, + [2075] = 1024, + [2076] = 1025, + [2077] = 1026, + [2078] = 1027, + [2079] = 1028, + [2080] = 1029, + [2081] = 1031, + [2082] = 1032, + [2083] = 1033, + [2084] = 1034, + [2085] = 1035, + [2086] = 1057, + [2087] = 1058, + [2088] = 1059, + [2089] = 1060, + [2090] = 1036, + [2091] = 1037, + [2092] = 1038, + [2093] = 1039, + [2094] = 1040, + [2095] = 1061, + [2096] = 1041, + [2097] = 1042, + [2098] = 1043, [2099] = 1044, - [2100] = 1060, - [2101] = 1045, - [2102] = 1046, - [2103] = 1049, - [2104] = 1106, - [2105] = 1047, - [2106] = 1061, - [2107] = 1048, - [2108] = 991, - [2109] = 1051, - [2110] = 1052, - [2111] = 1053, - [2112] = 1054, - [2113] = 1055, - [2114] = 1056, - [2115] = 1057, - [2116] = 1058, - [2117] = 992, - [2118] = 993, - [2119] = 994, - [2120] = 995, - [2121] = 960, - [2122] = 966, - [2123] = 984, - [2124] = 985, - [2125] = 965, - [2126] = 970, - [2127] = 962, + [2100] = 1045, + [2101] = 1046, + [2102] = 989, + [2103] = 1047, + [2104] = 1048, + [2105] = 1049, + [2106] = 1062, + [2107] = 1050, + [2108] = 1046, + [2109] = 989, + [2110] = 1047, + [2111] = 1051, + [2112] = 1048, + [2113] = 1052, + [2114] = 1049, + [2115] = 1062, + [2116] = 1050, + [2117] = 994, + [2118] = 1109, + [2119] = 1054, + [2120] = 1055, + [2121] = 1056, + [2122] = 1057, + [2123] = 1058, + [2124] = 1059, + [2125] = 1060, + [2126] = 995, + [2127] = 996, [2128] = 963, - [2129] = 964, - [2130] = 967, - [2131] = 968, - [2132] = 971, - [2133] = 972, - [2134] = 973, - [2135] = 974, - [2136] = 959, - [2137] = 975, - [2138] = 976, - [2139] = 977, - [2140] = 978, - [2141] = 979, - [2142] = 980, - [2143] = 981, - [2144] = 982, - [2145] = 983, - [2146] = 1106, - [2147] = 996, - [2148] = 997, - [2149] = 998, - [2150] = 999, - [2151] = 1001, - [2152] = 1002, - [2153] = 1003, - [2154] = 1004, - [2155] = 1005, - [2156] = 1006, - [2157] = 1007, - [2158] = 1008, - [2159] = 1009, - [2160] = 1010, - [2161] = 1011, - [2162] = 1012, - [2163] = 1013, - [2164] = 1014, - [2165] = 1015, - [2166] = 1181, - [2167] = 1053, - [2168] = 1054, - [2169] = 1016, - [2170] = 1017, - [2171] = 1018, - [2172] = 1019, - [2173] = 1020, - [2174] = 1022, - [2175] = 1023, - [2176] = 1024, - [2177] = 1025, - [2178] = 1026, - [2179] = 1027, - [2180] = 1028, - [2181] = 1029, - [2182] = 1030, - [2183] = 1031, - [2184] = 1032, - [2185] = 1033, - [2186] = 1057, - [2187] = 1058, - [2188] = 1034, - [2189] = 1035, - [2190] = 1036, - [2191] = 1037, - [2192] = 1038, - [2193] = 1059, - [2194] = 1039, - [2195] = 1040, - [2196] = 1041, - [2197] = 1042, - [2198] = 1043, - [2199] = 1044, - [2200] = 1060, - [2201] = 1045, - [2202] = 1046, - [2203] = 1047, - [2204] = 1061, - [2205] = 1048, - [2206] = 196, - [2207] = 991, - [2208] = 992, - [2209] = 993, - [2210] = 994, - [2211] = 995, + [2129] = 979, + [2130] = 970, + [2131] = 988, + [2132] = 982, + [2133] = 962, + [2134] = 997, + [2135] = 998, + [2136] = 971, + [2137] = 985, + [2138] = 986, + [2139] = 968, + [2140] = 973, + [2141] = 975, + [2142] = 974, + [2143] = 964, + [2144] = 965, + [2145] = 966, + [2146] = 967, + [2147] = 984, + [2148] = 978, + [2149] = 969, + [2150] = 983, + [2151] = 980, + [2152] = 981, + [2153] = 976, + [2154] = 977, + [2155] = 1052, + [2156] = 999, + [2157] = 1001, + [2158] = 1002, + [2159] = 1003, + [2160] = 1004, + [2161] = 1005, + [2162] = 1006, + [2163] = 1007, + [2164] = 1008, + [2165] = 1009, + [2166] = 1010, + [2167] = 1011, + [2168] = 1012, + [2169] = 1013, + [2170] = 1014, + [2171] = 1015, + [2172] = 1016, + [2173] = 1017, + [2174] = 1018, + [2175] = 1199, + [2176] = 1055, + [2177] = 1056, + [2178] = 1019, + [2179] = 1020, + [2180] = 1021, + [2181] = 1022, + [2182] = 1023, + [2183] = 1024, + [2184] = 1025, + [2185] = 1026, + [2186] = 1027, + [2187] = 1028, + [2188] = 1029, + [2189] = 1030, + [2190] = 1031, + [2191] = 1032, + [2192] = 1033, + [2193] = 1034, + [2194] = 1035, + [2195] = 1059, + [2196] = 1060, + [2197] = 1036, + [2198] = 1037, + [2199] = 1038, + [2200] = 1039, + [2201] = 1040, + [2202] = 1061, + [2203] = 1041, + [2204] = 1042, + [2205] = 1043, + [2206] = 1044, + [2207] = 1045, + [2208] = 1046, + [2209] = 989, + [2210] = 1047, + [2211] = 1048, [2212] = 1049, - [2213] = 1106, - [2214] = 991, - [2215] = 996, - [2216] = 997, - [2217] = 998, - [2218] = 999, - [2219] = 1001, - [2220] = 1002, - [2221] = 1003, - [2222] = 1004, - [2223] = 1005, - [2224] = 1006, - [2225] = 1007, - [2226] = 1008, - [2227] = 1009, - [2228] = 1010, - [2229] = 1011, - [2230] = 1012, - [2231] = 1013, - [2232] = 1014, - [2233] = 1015, - [2234] = 1051, - [2235] = 1052, - [2236] = 1181, - [2237] = 1053, - [2238] = 1054, - [2239] = 1016, - [2240] = 1017, - [2241] = 1018, - [2242] = 1019, - [2243] = 1020, - [2244] = 1022, - [2245] = 1023, - [2246] = 1024, - [2247] = 1025, - [2248] = 1026, - [2249] = 1027, - [2250] = 1028, - [2251] = 1029, - [2252] = 1030, - [2253] = 1031, - [2254] = 1032, - [2255] = 1033, - [2256] = 1055, - [2257] = 1056, - [2258] = 1057, - [2259] = 1058, - [2260] = 1034, - [2261] = 1035, - [2262] = 1036, - [2263] = 1037, - [2264] = 1038, - [2265] = 1059, - [2266] = 1039, - [2267] = 1040, - [2268] = 1041, - [2269] = 1042, - [2270] = 1043, - [2271] = 1044, - [2272] = 1060, - [2273] = 1045, - [2274] = 1046, - [2275] = 1047, - [2276] = 1061, - [2277] = 1048, - [2278] = 991, - [2279] = 992, - [2280] = 993, - [2281] = 994, - [2282] = 995, - [2283] = 1049, - [2284] = 1106, - [2285] = 996, - [2286] = 997, - [2287] = 998, - [2288] = 999, - [2289] = 1001, - [2290] = 1002, - [2291] = 1003, - [2292] = 1004, - [2293] = 1005, - [2294] = 1006, - [2295] = 1007, - [2296] = 1008, - [2297] = 1009, - [2298] = 1010, - [2299] = 1011, - [2300] = 1012, - [2301] = 1013, - [2302] = 1014, - [2303] = 1015, - [2304] = 1051, - [2305] = 1052, - [2306] = 1181, - [2307] = 1053, - [2308] = 1054, - [2309] = 1016, - [2310] = 1017, - [2311] = 1018, - [2312] = 1019, - [2313] = 1020, - [2314] = 992, - [2315] = 1022, - [2316] = 1023, - [2317] = 993, - [2318] = 1024, - [2319] = 1025, - [2320] = 1026, - [2321] = 1027, - [2322] = 1028, - [2323] = 1029, - [2324] = 1030, - [2325] = 1031, - [2326] = 1032, - [2327] = 994, - [2328] = 1033, - [2329] = 1055, - [2330] = 1056, - [2331] = 1057, - [2332] = 1058, - [2333] = 1034, - [2334] = 1035, - [2335] = 1036, - [2336] = 1037, - [2337] = 1038, - [2338] = 1059, - [2339] = 1039, - [2340] = 1040, - [2341] = 1041, - [2342] = 1042, - [2343] = 1043, - [2344] = 1044, - [2345] = 1060, - [2346] = 1045, - [2347] = 1046, - [2348] = 1047, - [2349] = 1061, - [2350] = 1048, - [2351] = 991, - [2352] = 995, - [2353] = 1049, - [2354] = 992, - [2355] = 993, - [2356] = 994, - [2357] = 995, - [2358] = 1049, - [2359] = 1106, - [2360] = 996, - [2361] = 997, - [2362] = 998, - [2363] = 999, - [2364] = 1001, - [2365] = 1002, - [2366] = 1003, - [2367] = 1004, - [2368] = 1005, - [2369] = 1006, - [2370] = 1007, - [2371] = 1008, - [2372] = 1009, - [2373] = 1010, - [2374] = 1011, - [2375] = 1012, - [2376] = 1013, - [2377] = 1014, - [2378] = 1015, - [2379] = 1051, - [2380] = 1052, - [2381] = 1181, - [2382] = 1053, - [2383] = 1054, - [2384] = 1016, - [2385] = 1017, - [2386] = 1018, - [2387] = 1019, - [2388] = 1020, - [2389] = 1022, - [2390] = 1023, - [2391] = 1060, - [2392] = 1024, - [2393] = 1025, - [2394] = 1026, - [2395] = 1027, - [2396] = 1028, - [2397] = 1029, - [2398] = 1030, - [2399] = 1031, - [2400] = 1032, - [2401] = 1033, - [2402] = 1055, - [2403] = 1056, - [2404] = 1057, - [2405] = 1058, - [2406] = 1034, - [2407] = 1035, - [2408] = 1036, - [2409] = 1037, - [2410] = 1038, - [2411] = 1059, - [2412] = 1039, - [2413] = 1040, - [2414] = 1041, - [2415] = 1042, - [2416] = 1043, - [2417] = 1044, - [2418] = 1043, - [2419] = 1052, - [2420] = 1014, - [2421] = 1015, - [2422] = 1016, - [2423] = 1017, - [2424] = 1018, - [2425] = 1155, - [2426] = 1019, - [2427] = 1020, - [2428] = 1022, - [2429] = 1023, - [2430] = 1220, - [2431] = 1024, - [2432] = 1025, - [2433] = 1026, - [2434] = 1027, - [2435] = 1028, - [2436] = 1029, - [2437] = 1030, - [2438] = 1031, - [2439] = 1032, - [2440] = 1033, - [2441] = 1034, - [2442] = 1035, - [2443] = 1036, - [2444] = 1037, - [2445] = 1038, - [2446] = 1039, - [2447] = 1040, - [2448] = 1041, - [2449] = 1042, - [2450] = 1043, - [2451] = 1044, - [2452] = 1045, - [2453] = 1046, - [2454] = 1047, - [2455] = 1048, - [2456] = 1049, - [2457] = 1106, - [2458] = 1051, - [2459] = 270, - [2460] = 1013, - [2461] = 1054, - [2462] = 1069, - [2463] = 1055, - [2464] = 1056, - [2465] = 1057, - [2466] = 1058, - [2467] = 1059, - [2468] = 1060, - [2469] = 1061, - [2470] = 991, - [2471] = 1224, - [2472] = 992, - [2473] = 993, - [2474] = 994, - [2475] = 995, - [2476] = 996, - [2477] = 997, - [2478] = 196, - [2479] = 267, - [2480] = 268, - [2481] = 998, - [2482] = 999, - [2483] = 1001, - [2484] = 1002, - [2485] = 1003, - [2486] = 1004, - [2487] = 1005, - [2488] = 1006, - [2489] = 1007, - [2490] = 1008, - [2491] = 1009, - [2492] = 1010, - [2493] = 1011, - [2494] = 1012, - [2495] = 1261, - [2496] = 1053, - [2497] = 267, - [2498] = 270, - [2499] = 268, - [2500] = 2500, - [2501] = 2501, - [2502] = 2502, + [2213] = 1062, + [2214] = 1050, + [2215] = 200, + [2216] = 994, + [2217] = 995, + [2218] = 996, + [2219] = 997, + [2220] = 998, + [2221] = 1051, + [2222] = 1052, + [2223] = 999, + [2224] = 994, + [2225] = 1001, + [2226] = 1002, + [2227] = 1003, + [2228] = 1004, + [2229] = 1005, + [2230] = 1006, + [2231] = 1007, + [2232] = 1008, + [2233] = 1009, + [2234] = 1010, + [2235] = 1011, + [2236] = 1012, + [2237] = 1013, + [2238] = 1014, + [2239] = 1015, + [2240] = 1016, + [2241] = 1017, + [2242] = 1018, + [2243] = 1109, + [2244] = 1054, + [2245] = 1199, + [2246] = 1055, + [2247] = 1056, + [2248] = 1019, + [2249] = 1020, + [2250] = 1021, + [2251] = 1022, + [2252] = 1023, + [2253] = 1024, + [2254] = 1025, + [2255] = 1026, + [2256] = 1027, + [2257] = 1028, + [2258] = 1029, + [2259] = 1030, + [2260] = 1031, + [2261] = 1032, + [2262] = 1033, + [2263] = 1034, + [2264] = 1035, + [2265] = 1057, + [2266] = 1058, + [2267] = 1059, + [2268] = 1060, + [2269] = 1036, + [2270] = 1037, + [2271] = 1038, + [2272] = 1039, + [2273] = 1040, + [2274] = 1061, + [2275] = 1041, + [2276] = 1042, + [2277] = 1043, + [2278] = 1044, + [2279] = 1045, + [2280] = 1046, + [2281] = 989, + [2282] = 1047, + [2283] = 1048, + [2284] = 1049, + [2285] = 1062, + [2286] = 1050, + [2287] = 994, + [2288] = 995, + [2289] = 996, + [2290] = 997, + [2291] = 998, + [2292] = 1051, + [2293] = 1052, + [2294] = 999, + [2295] = 1001, + [2296] = 1002, + [2297] = 1003, + [2298] = 1004, + [2299] = 1005, + [2300] = 1006, + [2301] = 1007, + [2302] = 1008, + [2303] = 1009, + [2304] = 1010, + [2305] = 1011, + [2306] = 1012, + [2307] = 1013, + [2308] = 1014, + [2309] = 1015, + [2310] = 1016, + [2311] = 1017, + [2312] = 1018, + [2313] = 1109, + [2314] = 1054, + [2315] = 1199, + [2316] = 1055, + [2317] = 1056, + [2318] = 1019, + [2319] = 1020, + [2320] = 1021, + [2321] = 1022, + [2322] = 1023, + [2323] = 1024, + [2324] = 1025, + [2325] = 1026, + [2326] = 1027, + [2327] = 995, + [2328] = 1028, + [2329] = 1029, + [2330] = 1030, + [2331] = 1031, + [2332] = 1032, + [2333] = 996, + [2334] = 1033, + [2335] = 1034, + [2336] = 1035, + [2337] = 1057, + [2338] = 1058, + [2339] = 1059, + [2340] = 1060, + [2341] = 1036, + [2342] = 1037, + [2343] = 1038, + [2344] = 1039, + [2345] = 1040, + [2346] = 1061, + [2347] = 1041, + [2348] = 1042, + [2349] = 1043, + [2350] = 1044, + [2351] = 1045, + [2352] = 1046, + [2353] = 989, + [2354] = 1047, + [2355] = 1048, + [2356] = 1049, + [2357] = 1062, + [2358] = 1050, + [2359] = 994, + [2360] = 997, + [2361] = 998, + [2362] = 995, + [2363] = 996, + [2364] = 997, + [2365] = 998, + [2366] = 1051, + [2367] = 1051, + [2368] = 1052, + [2369] = 999, + [2370] = 1001, + [2371] = 1002, + [2372] = 1003, + [2373] = 1004, + [2374] = 1005, + [2375] = 1006, + [2376] = 1007, + [2377] = 1008, + [2378] = 1009, + [2379] = 1010, + [2380] = 1011, + [2381] = 1012, + [2382] = 1013, + [2383] = 1014, + [2384] = 1015, + [2385] = 1016, + [2386] = 1017, + [2387] = 1018, + [2388] = 1109, + [2389] = 1054, + [2390] = 1199, + [2391] = 1055, + [2392] = 1056, + [2393] = 1019, + [2394] = 1020, + [2395] = 1021, + [2396] = 1022, + [2397] = 1023, + [2398] = 1024, + [2399] = 1025, + [2400] = 1026, + [2401] = 1027, + [2402] = 1041, + [2403] = 1028, + [2404] = 1029, + [2405] = 1030, + [2406] = 1031, + [2407] = 1032, + [2408] = 1033, + [2409] = 1034, + [2410] = 1035, + [2411] = 1057, + [2412] = 1058, + [2413] = 1059, + [2414] = 1060, + [2415] = 1036, + [2416] = 1037, + [2417] = 1038, + [2418] = 1039, + [2419] = 1040, + [2420] = 1061, + [2421] = 1045, + [2422] = 1033, + [2423] = 999, + [2424] = 1001, + [2425] = 1002, + [2426] = 312, + [2427] = 1003, + [2428] = 1004, + [2429] = 1005, + [2430] = 1006, + [2431] = 1007, + [2432] = 1008, + [2433] = 1009, + [2434] = 1010, + [2435] = 1011, + [2436] = 1012, + [2437] = 1013, + [2438] = 1014, + [2439] = 1015, + [2440] = 1086, + [2441] = 1553, + [2442] = 1016, + [2443] = 1236, + [2444] = 1017, + [2445] = 1018, + [2446] = 1019, + [2447] = 1020, + [2448] = 1021, + [2449] = 1022, + [2450] = 1023, + [2451] = 1024, + [2452] = 1025, + [2453] = 1026, + [2454] = 1027, + [2455] = 1028, + [2456] = 1029, + [2457] = 1030, + [2458] = 1031, + [2459] = 1032, + [2460] = 998, + [2461] = 1523, + [2462] = 1035, + [2463] = 1036, + [2464] = 1037, + [2465] = 1038, + [2466] = 1039, + [2467] = 1040, + [2468] = 1041, + [2469] = 1042, + [2470] = 1043, + [2471] = 1044, + [2472] = 1045, + [2473] = 1046, + [2474] = 1047, + [2475] = 1048, + [2476] = 1049, + [2477] = 1050, + [2478] = 1051, + [2479] = 1052, + [2480] = 1109, + [2481] = 1054, + [2482] = 1055, + [2483] = 1056, + [2484] = 1158, + [2485] = 1057, + [2486] = 1058, + [2487] = 1059, + [2488] = 1060, + [2489] = 1061, + [2490] = 989, + [2491] = 1062, + [2492] = 200, + [2493] = 310, + [2494] = 311, + [2495] = 994, + [2496] = 995, + [2497] = 996, + [2498] = 997, + [2499] = 1034, + [2500] = 310, + [2501] = 312, + [2502] = 311, [2503] = 2503, [2504] = 2504, [2505] = 2505, - [2506] = 2505, - [2507] = 2505, - [2508] = 2505, - [2509] = 2505, - [2510] = 2505, - [2511] = 2511, - [2512] = 2505, - [2513] = 2505, - [2514] = 2505, - [2515] = 2505, - [2516] = 2505, - [2517] = 2505, - [2518] = 2518, - [2519] = 2505, - [2520] = 2505, - [2521] = 2505, - [2522] = 2505, - [2523] = 2505, - [2524] = 2524, - [2525] = 2524, - [2526] = 2526, - [2527] = 2526, - [2528] = 2524, + [2506] = 2506, + [2507] = 2507, + [2508] = 2508, + [2509] = 2508, + [2510] = 2508, + [2511] = 2508, + [2512] = 2508, + [2513] = 2508, + [2514] = 2508, + [2515] = 2508, + [2516] = 2508, + [2517] = 2508, + [2518] = 2508, + [2519] = 2508, + [2520] = 2508, + [2521] = 2508, + [2522] = 2522, + [2523] = 2508, + [2524] = 2508, + [2525] = 2525, + [2526] = 2508, + [2527] = 2527, + [2528] = 2527, [2529] = 2529, [2530] = 2530, - [2531] = 2526, - [2532] = 2524, - [2533] = 2524, - [2534] = 2526, - [2535] = 2524, - [2536] = 2529, - [2537] = 2530, - [2538] = 2526, - [2539] = 2529, - [2540] = 2529, - [2541] = 2526, - [2542] = 2529, - [2543] = 2526, - [2544] = 2529, - [2545] = 2526, - [2546] = 2529, - [2547] = 2526, - [2548] = 2529, - [2549] = 2524, - [2550] = 2529, - [2551] = 2524, - [2552] = 2529, - [2553] = 2530, + [2531] = 2527, + [2532] = 2529, + [2533] = 2533, + [2534] = 2533, + [2535] = 2530, + [2536] = 2527, + [2537] = 2529, + [2538] = 2533, + [2539] = 2530, + [2540] = 2527, + [2541] = 2529, + [2542] = 2533, + [2543] = 2530, + [2544] = 2527, + [2545] = 2529, + [2546] = 2533, + [2547] = 2530, + [2548] = 2527, + [2549] = 2530, + [2550] = 2527, + [2551] = 2529, + [2552] = 2533, + [2553] = 2529, [2554] = 2530, - [2555] = 2524, - [2556] = 2524, - [2557] = 2524, - [2558] = 2529, + [2555] = 2530, + [2556] = 2527, + [2557] = 2529, + [2558] = 2533, [2559] = 2530, - [2560] = 2526, - [2561] = 2526, - [2562] = 2530, - [2563] = 2526, - [2564] = 2529, - [2565] = 2526, + [2560] = 2527, + [2561] = 2529, + [2562] = 2533, + [2563] = 2530, + [2564] = 2533, + [2565] = 2533, [2566] = 2530, - [2567] = 2530, - [2568] = 2526, - [2569] = 2526, - [2570] = 2530, - [2571] = 2526, - [2572] = 2529, - [2573] = 2524, - [2574] = 2529, - [2575] = 2530, - [2576] = 2524, - [2577] = 2529, - [2578] = 2530, - [2579] = 2526, - [2580] = 2526, - [2581] = 2524, - [2582] = 2530, - [2583] = 2529, + [2567] = 2527, + [2568] = 2529, + [2569] = 2533, + [2570] = 2527, + [2571] = 2530, + [2572] = 2527, + [2573] = 2529, + [2574] = 2533, + [2575] = 2527, + [2576] = 2533, + [2577] = 2527, + [2578] = 2533, + [2579] = 2527, + [2580] = 2533, + [2581] = 2527, + [2582] = 2533, + [2583] = 2530, [2584] = 2530, - [2585] = 2524, - [2586] = 2529, - [2587] = 2530, - [2588] = 2524, + [2585] = 2530, + [2586] = 2527, + [2587] = 2529, + [2588] = 2533, [2589] = 2529, [2590] = 2530, - [2591] = 2526, - [2592] = 2526, - [2593] = 2530, - [2594] = 2529, - [2595] = 2529, - [2596] = 2596, - [2597] = 2596, - [2598] = 2596, - [2599] = 2596, - [2600] = 2600, - [2601] = 2596, - [2602] = 2596, - [2603] = 2600, - [2604] = 2596, - [2605] = 2600, - [2606] = 2600, - [2607] = 2596, - [2608] = 2600, - [2609] = 2600, - [2610] = 2596, - [2611] = 2600, - [2612] = 2596, - [2613] = 2596, - [2614] = 2600, - [2615] = 2600, - [2616] = 2600, - [2617] = 2596, - [2618] = 2596, - [2619] = 2596, - [2620] = 2600, - [2621] = 2600, - [2622] = 2600, - [2623] = 2596, - [2624] = 2600, - [2625] = 2600, - [2626] = 2596, - [2627] = 2596, - [2628] = 2600, - [2629] = 2600, - [2630] = 2630, - [2631] = 2630, - [2632] = 2630, - [2633] = 2630, - [2634] = 2630, - [2635] = 2635, - [2636] = 2630, - [2637] = 2630, - [2638] = 2630, + [2591] = 2527, + [2592] = 2533, + [2593] = 2529, + [2594] = 2533, + [2595] = 2527, + [2596] = 2529, + [2597] = 2533, + [2598] = 2529, + [2599] = 2599, + [2600] = 2599, + [2601] = 2601, + [2602] = 2599, + [2603] = 2601, + [2604] = 2599, + [2605] = 2601, + [2606] = 2601, + [2607] = 2599, + [2608] = 2599, + [2609] = 2601, + [2610] = 2601, + [2611] = 2601, + [2612] = 2599, + [2613] = 2601, + [2614] = 2599, + [2615] = 2599, + [2616] = 2601, + [2617] = 2599, + [2618] = 2599, + [2619] = 2599, + [2620] = 2601, + [2621] = 2601, + [2622] = 2599, + [2623] = 2601, + [2624] = 2601, + [2625] = 2599, + [2626] = 2599, + [2627] = 2599, + [2628] = 2601, + [2629] = 2601, + [2630] = 2599, + [2631] = 2601, + [2632] = 2601, + [2633] = 2633, + [2634] = 2634, + [2635] = 2634, + [2636] = 2634, + [2637] = 2634, + [2638] = 2634, [2639] = 2639, - [2640] = 2630, - [2641] = 2630, - [2642] = 2630, - [2643] = 2630, - [2644] = 2644, - [2645] = 2630, - [2646] = 2630, - [2647] = 2630, - [2648] = 2630, - [2649] = 2630, - [2650] = 2650, - [2651] = 196, - [2652] = 2652, - [2653] = 196, - [2654] = 2650, - [2655] = 2655, - [2656] = 268, - [2657] = 2655, + [2640] = 2634, + [2641] = 2641, + [2642] = 2634, + [2643] = 2634, + [2644] = 2634, + [2645] = 2634, + [2646] = 2634, + [2647] = 2634, + [2648] = 2634, + [2649] = 2634, + [2650] = 2634, + [2651] = 2634, + [2652] = 2634, + [2653] = 200, + [2654] = 2654, + [2655] = 200, + [2656] = 2656, + [2657] = 2654, [2658] = 2658, [2659] = 2659, [2660] = 2660, - [2661] = 2655, - [2662] = 268, - [2663] = 2655, - [2664] = 267, - [2665] = 2655, - [2666] = 2655, - [2667] = 2655, - [2668] = 2659, - [2669] = 2655, - [2670] = 2655, - [2671] = 267, - [2672] = 2655, - [2673] = 270, - [2674] = 2655, - [2675] = 2675, - [2676] = 2655, - [2677] = 2655, - [2678] = 2655, - [2679] = 2658, - [2680] = 2675, - [2681] = 270, - [2682] = 2682, - [2683] = 2655, - [2684] = 2655, - [2685] = 2650, - [2686] = 2686, - [2687] = 196, - [2688] = 2686, - [2689] = 196, - [2690] = 2690, - [2691] = 2690, - [2692] = 2682, + [2661] = 2659, + [2662] = 2662, + [2663] = 2659, + [2664] = 2659, + [2665] = 2659, + [2666] = 310, + [2667] = 2659, + [2668] = 2668, + [2669] = 2659, + [2670] = 2659, + [2671] = 312, + [2672] = 2659, + [2673] = 2673, + [2674] = 2659, + [2675] = 2659, + [2676] = 310, + [2677] = 2659, + [2678] = 2659, + [2679] = 2668, + [2680] = 311, + [2681] = 2659, + [2682] = 312, + [2683] = 2659, + [2684] = 2659, + [2685] = 2673, + [2686] = 311, + [2687] = 2658, + [2688] = 2654, + [2689] = 2689, + [2690] = 200, + [2691] = 200, + [2692] = 2689, [2693] = 2693, - [2694] = 2690, - [2695] = 2690, - [2696] = 2696, - [2697] = 2697, - [2698] = 267, - [2699] = 2699, - [2700] = 2697, - [2701] = 2693, - [2702] = 2699, - [2703] = 268, - [2704] = 2697, - [2705] = 2697, - [2706] = 2693, - [2707] = 2690, - [2708] = 2693, - [2709] = 2690, + [2694] = 2694, + [2695] = 2695, + [2696] = 2694, + [2697] = 2693, + [2698] = 2693, + [2699] = 2693, + [2700] = 2695, + [2701] = 2694, + [2702] = 2695, + [2703] = 2694, + [2704] = 2694, + [2705] = 310, + [2706] = 2694, + [2707] = 2707, + [2708] = 312, + [2709] = 2693, [2710] = 2693, - [2711] = 270, - [2712] = 2690, - [2713] = 2693, - [2714] = 2690, - [2715] = 2659, - [2716] = 2697, - [2717] = 2693, - [2718] = 2693, - [2719] = 2693, - [2720] = 2690, - [2721] = 2697, - [2722] = 2690, - [2723] = 2690, - [2724] = 2690, - [2725] = 2690, - [2726] = 2697, - [2727] = 2696, - [2728] = 268, - [2729] = 2697, - [2730] = 2730, - [2731] = 2731, - [2732] = 2693, - [2733] = 2697, - [2734] = 2697, - [2735] = 2690, - [2736] = 2693, - [2737] = 2697, - [2738] = 2738, - [2739] = 270, - [2740] = 2690, + [2711] = 2693, + [2712] = 2693, + [2713] = 2695, + [2714] = 2695, + [2715] = 2695, + [2716] = 2694, + [2717] = 2694, + [2718] = 2718, + [2719] = 2695, + [2720] = 2693, + [2721] = 2695, + [2722] = 2694, + [2723] = 2695, + [2724] = 2693, + [2725] = 2725, + [2726] = 2662, + [2727] = 2693, + [2728] = 310, + [2729] = 2729, + [2730] = 2695, + [2731] = 312, + [2732] = 2695, + [2733] = 2733, + [2734] = 2694, + [2735] = 2660, + [2736] = 2694, + [2737] = 2695, + [2738] = 2673, + [2739] = 2694, + [2740] = 2740, [2741] = 2693, - [2742] = 2693, - [2743] = 2697, - [2744] = 2697, - [2745] = 2693, - [2746] = 2697, - [2747] = 2693, - [2748] = 267, - [2749] = 2697, - [2750] = 2693, + [2742] = 311, + [2743] = 2695, + [2744] = 2693, + [2745] = 2694, + [2746] = 2707, + [2747] = 2694, + [2748] = 2740, + [2749] = 2695, + [2750] = 2694, [2751] = 2751, - [2752] = 2690, - [2753] = 2697, - [2754] = 2660, - [2755] = 2755, - [2756] = 2756, - [2757] = 196, - [2758] = 2758, + [2752] = 2693, + [2753] = 2693, + [2754] = 2693, + [2755] = 2694, + [2756] = 2695, + [2757] = 2695, + [2758] = 311, [2759] = 2759, - [2760] = 2686, + [2760] = 2760, [2761] = 2761, - [2762] = 2756, - [2763] = 2756, - [2764] = 2764, - [2765] = 2682, - [2766] = 2766, - [2767] = 2767, + [2762] = 2762, + [2763] = 200, + [2764] = 2762, + [2765] = 2689, + [2766] = 2762, + [2767] = 228, [2768] = 2768, - [2769] = 2769, - [2770] = 2660, - [2771] = 270, + [2769] = 2662, + [2770] = 200, + [2771] = 2771, [2772] = 2772, - [2773] = 196, - [2774] = 2766, + [2773] = 2773, + [2774] = 2774, [2775] = 2775, [2776] = 2776, - [2777] = 268, - [2778] = 196, - [2779] = 2779, - [2780] = 2780, - [2781] = 2764, - [2782] = 2764, - [2783] = 2783, - [2784] = 2772, - [2785] = 2775, - [2786] = 2786, - [2787] = 294, - [2788] = 2783, - [2789] = 2789, - [2790] = 2772, - [2791] = 2780, - [2792] = 2775, - [2793] = 2779, + [2777] = 200, + [2778] = 2778, + [2779] = 312, + [2780] = 2773, + [2781] = 2776, + [2782] = 2782, + [2783] = 2775, + [2784] = 2784, + [2785] = 2785, + [2786] = 2785, + [2787] = 311, + [2788] = 2773, + [2789] = 2778, + [2790] = 2771, + [2791] = 310, + [2792] = 2792, + [2793] = 2768, [2794] = 2794, - [2795] = 267, - [2796] = 2796, - [2797] = 2797, - [2798] = 2798, + [2795] = 2795, + [2796] = 2775, + [2797] = 2660, + [2798] = 2776, [2799] = 2799, [2800] = 2800, [2801] = 2801, [2802] = 2802, - [2803] = 2803, - [2804] = 2799, - [2805] = 268, + [2803] = 2660, + [2804] = 2804, + [2805] = 2805, [2806] = 2799, - [2807] = 2797, + [2807] = 2801, [2808] = 2808, [2809] = 2809, - [2810] = 2799, - [2811] = 2682, - [2812] = 2812, - [2813] = 2813, + [2810] = 2810, + [2811] = 2811, + [2812] = 310, + [2813] = 2808, [2814] = 2814, - [2815] = 196, + [2815] = 2805, [2816] = 2799, - [2817] = 2817, - [2818] = 2802, + [2817] = 2801, + [2818] = 2808, [2819] = 2819, - [2820] = 2799, - [2821] = 2660, - [2822] = 2822, - [2823] = 2799, + [2820] = 2814, + [2821] = 2821, + [2822] = 2814, + [2823] = 2823, [2824] = 2824, - [2825] = 2825, - [2826] = 2826, - [2827] = 2827, - [2828] = 2828, - [2829] = 2799, + [2825] = 2814, + [2826] = 2805, + [2827] = 2799, + [2828] = 2801, + [2829] = 2808, [2830] = 2830, - [2831] = 2796, - [2832] = 2819, - [2833] = 2799, + [2831] = 2810, + [2832] = 200, + [2833] = 2814, [2834] = 2834, - [2835] = 2835, - [2836] = 196, - [2837] = 2799, + [2835] = 2814, + [2836] = 2805, + [2837] = 2805, [2838] = 2799, - [2839] = 2799, - [2840] = 2840, + [2839] = 2801, + [2840] = 2808, [2841] = 2799, - [2842] = 2803, - [2843] = 270, - [2844] = 2799, - [2845] = 2845, - [2846] = 270, - [2847] = 2799, - [2848] = 267, - [2849] = 2819, - [2850] = 2799, - [2851] = 2800, - [2852] = 2796, - [2853] = 2834, - [2854] = 2824, - [2855] = 2840, - [2856] = 2800, - [2857] = 2857, - [2858] = 2796, - [2859] = 2834, - [2860] = 2824, - [2861] = 2840, - [2862] = 2796, - [2863] = 2834, - [2864] = 2824, - [2865] = 2840, - [2866] = 2796, - [2867] = 2834, - [2868] = 2824, - [2869] = 2840, - [2870] = 2796, - [2871] = 2834, - [2872] = 2872, - [2873] = 2840, - [2874] = 2796, - [2875] = 2834, - [2876] = 2824, - [2877] = 2840, - [2878] = 2797, - [2879] = 2796, - [2880] = 2834, - [2881] = 2824, - [2882] = 2840, - [2883] = 2883, - [2884] = 2796, - [2885] = 2834, - [2886] = 2824, - [2887] = 2840, - [2888] = 2796, - [2889] = 2834, - [2890] = 2824, - [2891] = 2840, - [2892] = 2892, - [2893] = 2796, - [2894] = 2834, - [2895] = 2824, - [2896] = 2840, - [2897] = 2897, - [2898] = 196, - [2899] = 2796, - [2900] = 2834, - [2901] = 2824, - [2902] = 2840, - [2903] = 2822, - [2904] = 2834, - [2905] = 2824, - [2906] = 2840, - [2907] = 2802, - [2908] = 2796, - [2909] = 2834, - [2910] = 2824, - [2911] = 2840, - [2912] = 2825, - [2913] = 2826, - [2914] = 2796, - [2915] = 2834, - [2916] = 2824, - [2917] = 2840, - [2918] = 2803, - [2919] = 2845, - [2920] = 2796, - [2921] = 2834, - [2922] = 2824, - [2923] = 2840, - [2924] = 2834, - [2925] = 2840, - [2926] = 2834, - [2927] = 2840, - [2928] = 2834, - [2929] = 2840, - [2930] = 2834, - [2931] = 2840, - [2932] = 2824, - [2933] = 2933, - [2934] = 2934, - [2935] = 2935, + [2842] = 2842, + [2843] = 2801, + [2844] = 2805, + [2845] = 2799, + [2846] = 2801, + [2847] = 2808, + [2848] = 2808, + [2849] = 2849, + [2850] = 2814, + [2851] = 312, + [2852] = 2849, + [2853] = 200, + [2854] = 2805, + [2855] = 2801, + [2856] = 2801, + [2857] = 2808, + [2858] = 2808, + [2859] = 2814, + [2860] = 2814, + [2861] = 312, + [2862] = 2810, + [2863] = 2863, + [2864] = 2805, + [2865] = 2863, + [2866] = 2805, + [2867] = 2799, + [2868] = 2801, + [2869] = 2808, + [2870] = 2870, + [2871] = 2871, + [2872] = 2811, + [2873] = 2873, + [2874] = 2874, + [2875] = 2799, + [2876] = 2799, + [2877] = 2801, + [2878] = 2808, + [2879] = 2814, + [2880] = 2805, + [2881] = 2800, + [2882] = 2882, + [2883] = 2799, + [2884] = 2819, + [2885] = 2885, + [2886] = 2805, + [2887] = 2799, + [2888] = 2801, + [2889] = 2808, + [2890] = 2800, + [2891] = 2863, + [2892] = 2873, + [2893] = 2801, + [2894] = 2894, + [2895] = 2808, + [2896] = 2805, + [2897] = 2799, + [2898] = 2801, + [2899] = 2814, + [2900] = 2808, + [2901] = 200, + [2902] = 2814, + [2903] = 2903, + [2904] = 2904, + [2905] = 2814, + [2906] = 2799, + [2907] = 2904, + [2908] = 2805, + [2909] = 2799, + [2910] = 2801, + [2911] = 2808, + [2912] = 2814, + [2913] = 2904, + [2914] = 311, + [2915] = 2662, + [2916] = 2916, + [2917] = 2814, + [2918] = 2882, + [2919] = 2805, + [2920] = 2920, + [2921] = 2805, + [2922] = 2799, + [2923] = 2801, + [2924] = 2808, + [2925] = 2799, + [2926] = 2808, + [2927] = 2799, + [2928] = 2808, + [2929] = 2799, + [2930] = 2808, + [2931] = 2799, + [2932] = 2808, + [2933] = 2814, + [2934] = 2849, + [2935] = 2805, [2936] = 2936, - [2937] = 2758, + [2937] = 2937, [2938] = 2938, [2939] = 2939, - [2940] = 2940, + [2940] = 312, [2941] = 2941, [2942] = 2942, [2943] = 2943, [2944] = 2944, - [2945] = 195, - [2946] = 2946, + [2945] = 2759, + [2946] = 198, [2947] = 2947, - [2948] = 2933, - [2949] = 2940, - [2950] = 2936, - [2951] = 2934, - [2952] = 2938, - [2953] = 2953, - [2954] = 2954, - [2955] = 1059, + [2948] = 2942, + [2949] = 2949, + [2950] = 2943, + [2951] = 2951, + [2952] = 310, + [2953] = 2942, + [2954] = 2943, + [2955] = 2955, [2956] = 2956, - [2957] = 2944, + [2957] = 1061, [2958] = 2958, - [2959] = 2946, - [2960] = 2947, - [2961] = 2933, - [2962] = 2936, - [2963] = 2963, - [2964] = 2947, - [2965] = 1060, + [2959] = 989, + [2960] = 2782, + [2961] = 2942, + [2962] = 1062, + [2963] = 311, + [2964] = 2943, + [2965] = 2965, [2966] = 2966, [2967] = 2944, - [2968] = 2940, - [2969] = 2946, - [2970] = 2947, - [2971] = 2933, - [2972] = 2936, - [2973] = 2936, - [2974] = 1061, - [2975] = 2934, - [2976] = 2944, - [2977] = 2940, - [2978] = 2946, - [2979] = 2947, - [2980] = 2933, - [2981] = 2936, - [2982] = 2759, - [2983] = 2983, - [2984] = 2935, - [2985] = 2934, - [2986] = 2986, - [2987] = 2944, - [2988] = 2988, - [2989] = 2946, - [2990] = 2947, - [2991] = 2933, - [2992] = 2936, - [2993] = 2935, - [2994] = 2940, - [2995] = 2934, - [2996] = 2944, - [2997] = 2942, - [2998] = 2946, - [2999] = 2947, - [3000] = 2933, - [3001] = 2936, - [3002] = 2934, + [2968] = 2942, + [2969] = 2939, + [2970] = 2942, + [2971] = 2943, + [2972] = 2972, + [2973] = 2973, + [2974] = 2942, + [2975] = 2939, + [2976] = 2943, + [2977] = 2936, + [2978] = 2978, + [2979] = 2979, + [2980] = 200, + [2981] = 2942, + [2982] = 2982, + [2983] = 2943, + [2984] = 2795, + [2985] = 310, + [2986] = 2942, + [2987] = 311, + [2988] = 2943, + [2989] = 2989, + [2990] = 2942, + [2991] = 2943, + [2992] = 200, + [2993] = 312, + [2994] = 310, + [2995] = 2956, + [2996] = 2942, + [2997] = 2943, + [2998] = 2761, + [2999] = 311, + [3000] = 198, + [3001] = 2942, + [3002] = 2943, [3003] = 3003, - [3004] = 3004, - [3005] = 2940, - [3006] = 270, - [3007] = 2944, - [3008] = 3008, - [3009] = 2946, - [3010] = 2947, - [3011] = 2933, - [3012] = 2936, - [3013] = 2940, + [3004] = 2942, + [3005] = 2942, + [3006] = 2956, + [3007] = 2943, + [3008] = 2760, + [3009] = 3009, + [3010] = 3010, + [3011] = 2942, + [3012] = 2943, + [3013] = 2943, [3014] = 3014, - [3015] = 2940, - [3016] = 3016, - [3017] = 2944, - [3018] = 2934, - [3019] = 2946, + [3015] = 2937, + [3016] = 2966, + [3017] = 2936, + [3018] = 3018, + [3019] = 3019, [3020] = 2947, - [3021] = 2933, - [3022] = 2936, - [3023] = 2940, - [3024] = 267, - [3025] = 3025, - [3026] = 2944, - [3027] = 3027, - [3028] = 2946, - [3029] = 3029, - [3030] = 2933, + [3021] = 3014, + [3022] = 3022, + [3023] = 3023, + [3024] = 2937, + [3025] = 312, + [3026] = 2936, + [3027] = 3018, + [3028] = 3019, + [3029] = 2947, + [3030] = 3014, [3031] = 2936, - [3032] = 2942, - [3033] = 195, - [3034] = 2983, - [3035] = 3035, - [3036] = 2934, - [3037] = 2944, - [3038] = 270, - [3039] = 2946, + [3032] = 3032, + [3033] = 3019, + [3034] = 2947, + [3035] = 3014, + [3036] = 3036, + [3037] = 2936, + [3038] = 3018, + [3039] = 3019, [3040] = 2947, - [3041] = 2933, - [3042] = 2936, - [3043] = 2940, - [3044] = 267, - [3045] = 3045, - [3046] = 3046, - [3047] = 3047, - [3048] = 3048, - [3049] = 2934, - [3050] = 2944, - [3051] = 2944, - [3052] = 2946, + [3041] = 3014, + [3042] = 3042, + [3043] = 2943, + [3044] = 2936, + [3045] = 3018, + [3046] = 3019, + [3047] = 2947, + [3048] = 3014, + [3049] = 3049, + [3050] = 2936, + [3051] = 3018, + [3052] = 3019, [3053] = 2947, - [3054] = 2933, - [3055] = 2936, - [3056] = 2761, - [3057] = 268, - [3058] = 3058, - [3059] = 2940, - [3060] = 2944, - [3061] = 268, - [3062] = 2946, - [3063] = 2947, - [3064] = 2933, + [3054] = 3014, + [3055] = 3019, + [3056] = 3056, + [3057] = 3057, + [3058] = 2936, + [3059] = 3059, + [3060] = 3018, + [3061] = 3019, + [3062] = 2947, + [3063] = 3014, + [3064] = 3014, [3065] = 2936, - [3066] = 2938, - [3067] = 2934, - [3068] = 3068, - [3069] = 267, - [3070] = 2786, - [3071] = 2944, - [3072] = 268, - [3073] = 2946, + [3066] = 3018, + [3067] = 3019, + [3068] = 2947, + [3069] = 3014, + [3070] = 2942, + [3071] = 2936, + [3072] = 3018, + [3073] = 3019, [3074] = 2947, - [3075] = 2933, + [3075] = 3014, [3076] = 2936, - [3077] = 3077, - [3078] = 2940, - [3079] = 2934, - [3080] = 2940, - [3081] = 2983, - [3082] = 2944, - [3083] = 270, - [3084] = 2946, - [3085] = 2947, - [3086] = 2933, - [3087] = 2936, - [3088] = 2940, - [3089] = 2934, - [3090] = 2934, - [3091] = 196, - [3092] = 2933, - [3093] = 2944, - [3094] = 2940, - [3095] = 2946, - [3096] = 2947, - [3097] = 2933, - [3098] = 2934, - [3099] = 196, - [3100] = 2946, - [3101] = 2933, - [3102] = 2940, - [3103] = 2934, - [3104] = 2946, - [3105] = 2933, - [3106] = 2939, - [3107] = 2934, - [3108] = 2946, - [3109] = 2933, - [3110] = 2768, - [3111] = 2946, - [3112] = 2946, + [3077] = 3018, + [3078] = 3019, + [3079] = 2947, + [3080] = 3014, + [3081] = 2936, + [3082] = 3018, + [3083] = 3019, + [3084] = 2947, + [3085] = 3014, + [3086] = 2936, + [3087] = 3018, + [3088] = 3019, + [3089] = 2947, + [3090] = 3014, + [3091] = 2943, + [3092] = 3018, + [3093] = 3018, + [3094] = 3019, + [3095] = 2947, + [3096] = 3014, + [3097] = 2936, + [3098] = 3018, + [3099] = 3019, + [3100] = 2947, + [3101] = 3014, + [3102] = 2944, + [3103] = 3103, + [3104] = 2936, + [3105] = 3018, + [3106] = 3019, + [3107] = 2947, + [3108] = 3018, + [3109] = 2947, + [3110] = 3018, + [3111] = 2947, + [3112] = 3018, [3113] = 2947, - [3114] = 3114, - [3115] = 196, - [3116] = 3116, - [3117] = 1059, - [3118] = 3118, - [3119] = 1060, - [3120] = 3120, - [3121] = 1061, - [3122] = 196, - [3123] = 2983, - [3124] = 267, - [3125] = 3125, - [3126] = 3125, - [3127] = 268, - [3128] = 3128, - [3129] = 3125, - [3130] = 3130, - [3131] = 3131, - [3132] = 270, - [3133] = 2935, - [3134] = 2942, - [3135] = 2942, - [3136] = 3136, - [3137] = 3125, - [3138] = 2983, - [3139] = 2935, - [3140] = 2935, - [3141] = 3120, - [3142] = 267, - [3143] = 3120, - [3144] = 270, - [3145] = 3125, + [3114] = 3018, + [3115] = 2947, + [3116] = 3018, + [3117] = 3117, + [3118] = 3117, + [3119] = 3119, + [3120] = 2956, + [3121] = 2956, + [3122] = 3122, + [3123] = 3117, + [3124] = 3124, + [3125] = 1061, + [3126] = 989, + [3127] = 1062, + [3128] = 200, + [3129] = 1061, + [3130] = 989, + [3131] = 1062, + [3132] = 3132, + [3133] = 308, + [3134] = 200, + [3135] = 310, + [3136] = 3122, + [3137] = 311, + [3138] = 3117, + [3139] = 312, + [3140] = 3140, + [3141] = 2939, + [3142] = 2939, + [3143] = 3143, + [3144] = 3144, + [3145] = 2654, [3146] = 3146, - [3147] = 2935, - [3148] = 265, - [3149] = 3149, - [3150] = 3125, - [3151] = 3151, - [3152] = 268, - [3153] = 2935, + [3147] = 3147, + [3148] = 3122, + [3149] = 2654, + [3150] = 3150, + [3151] = 3117, + [3152] = 2944, + [3153] = 2939, [3154] = 3154, - [3155] = 2942, - [3156] = 3156, - [3157] = 3120, - [3158] = 267, - [3159] = 3159, - [3160] = 2942, - [3161] = 3125, - [3162] = 3120, - [3163] = 3120, - [3164] = 3164, - [3165] = 3120, - [3166] = 2942, - [3167] = 2983, - [3168] = 3125, - [3169] = 3125, - [3170] = 3170, + [3155] = 3122, + [3156] = 2956, + [3157] = 3122, + [3158] = 2956, + [3159] = 2944, + [3160] = 2944, + [3161] = 3117, + [3162] = 3162, + [3163] = 3147, + [3164] = 3122, + [3165] = 3122, + [3166] = 3117, + [3167] = 3122, + [3168] = 3168, + [3169] = 3122, + [3170] = 3117, [3171] = 3171, - [3172] = 3125, - [3173] = 3156, - [3174] = 3174, - [3175] = 2942, - [3176] = 3120, - [3177] = 3177, - [3178] = 3178, + [3172] = 3117, + [3173] = 3117, + [3174] = 2956, + [3175] = 3175, + [3176] = 2939, + [3177] = 2944, + [3178] = 3175, [3179] = 3179, - [3180] = 3125, - [3181] = 268, - [3182] = 3120, - [3183] = 3183, - [3184] = 2983, + [3180] = 308, + [3181] = 3117, + [3182] = 3182, + [3183] = 310, + [3184] = 2939, [3185] = 3185, - [3186] = 2983, - [3187] = 3187, - [3188] = 3156, - [3189] = 265, - [3190] = 2983, - [3191] = 2942, - [3192] = 3120, - [3193] = 3120, - [3194] = 2650, - [3195] = 3125, - [3196] = 3125, - [3197] = 2935, - [3198] = 2935, - [3199] = 2983, - [3200] = 3156, - [3201] = 2650, - [3202] = 2942, - [3203] = 2935, - [3204] = 3204, - [3205] = 3120, - [3206] = 3120, - [3207] = 3207, - [3208] = 3125, - [3209] = 2942, - [3210] = 2983, - [3211] = 3211, - [3212] = 3114, - [3213] = 2983, - [3214] = 3125, - [3215] = 3215, - [3216] = 2935, - [3217] = 2983, - [3218] = 2942, - [3219] = 3120, - [3220] = 2935, + [3186] = 2944, + [3187] = 3175, + [3188] = 311, + [3189] = 3122, + [3190] = 2939, + [3191] = 3175, + [3192] = 3117, + [3193] = 2939, + [3194] = 3194, + [3195] = 3195, + [3196] = 2944, + [3197] = 3197, + [3198] = 310, + [3199] = 3199, + [3200] = 2944, + [3201] = 3147, + [3202] = 3202, + [3203] = 3117, + [3204] = 311, + [3205] = 3205, + [3206] = 3122, + [3207] = 2939, + [3208] = 3122, + [3209] = 2956, + [3210] = 2939, + [3211] = 2944, + [3212] = 2944, + [3213] = 3122, + [3214] = 3122, + [3215] = 2956, + [3216] = 2956, + [3217] = 3217, + [3218] = 2956, + [3219] = 3117, + [3220] = 2944, [3221] = 3221, - [3222] = 3120, - [3223] = 3223, - [3224] = 3125, + [3222] = 3117, + [3223] = 2956, + [3224] = 2939, [3225] = 3225, - [3226] = 3120, - [3227] = 1059, - [3228] = 1060, - [3229] = 1061, - [3230] = 3154, - [3231] = 3215, - [3232] = 3154, - [3233] = 3215, - [3234] = 3223, - [3235] = 3114, - [3236] = 3223, - [3237] = 3114, - [3238] = 3223, - [3239] = 3114, - [3240] = 3223, - [3241] = 3114, - [3242] = 3223, - [3243] = 3114, - [3244] = 3223, - [3245] = 3114, - [3246] = 3223, - [3247] = 3114, - [3248] = 3223, - [3249] = 3114, - [3250] = 3223, - [3251] = 3114, - [3252] = 3223, - [3253] = 3114, - [3254] = 3223, - [3255] = 3114, - [3256] = 3223, - [3257] = 3114, - [3258] = 3223, - [3259] = 3114, - [3260] = 3223, - [3261] = 3114, - [3262] = 3223, - [3263] = 3114, - [3264] = 3114, - [3265] = 3114, - [3266] = 3114, - [3267] = 3267, - [3268] = 3268, - [3269] = 3269, - [3270] = 3270, + [3226] = 3226, + [3227] = 3227, + [3228] = 3228, + [3229] = 312, + [3230] = 3122, + [3231] = 3231, + [3232] = 3117, + [3233] = 3168, + [3234] = 3132, + [3235] = 3235, + [3236] = 3168, + [3237] = 3132, + [3238] = 3205, + [3239] = 3147, + [3240] = 3205, + [3241] = 3147, + [3242] = 3205, + [3243] = 3147, + [3244] = 3205, + [3245] = 3147, + [3246] = 3205, + [3247] = 3147, + [3248] = 3205, + [3249] = 3147, + [3250] = 3205, + [3251] = 3147, + [3252] = 3205, + [3253] = 3147, + [3254] = 3205, + [3255] = 3147, + [3256] = 3205, + [3257] = 3147, + [3258] = 3205, + [3259] = 3147, + [3260] = 3205, + [3261] = 3147, + [3262] = 3205, + [3263] = 3147, + [3264] = 3205, + [3265] = 3147, + [3266] = 3205, + [3267] = 3147, + [3268] = 3147, + [3269] = 3147, + [3270] = 3122, [3271] = 3271, [3272] = 3272, [3273] = 3273, @@ -5419,411 +5465,411 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3275] = 3275, [3276] = 3276, [3277] = 3277, - [3278] = 3268, - [3279] = 3279, - [3280] = 3027, - [3281] = 2963, - [3282] = 3282, - [3283] = 3283, + [3278] = 3272, + [3279] = 3272, + [3280] = 3280, + [3281] = 3281, + [3282] = 200, + [3283] = 3271, [3284] = 3284, - [3285] = 3285, - [3286] = 3286, + [3285] = 3276, + [3286] = 3281, [3287] = 3287, - [3288] = 3285, - [3289] = 3289, - [3290] = 3270, - [3291] = 3291, - [3292] = 3271, - [3293] = 3268, - [3294] = 3294, - [3295] = 3282, - [3296] = 3296, - [3297] = 3297, - [3298] = 3269, - [3299] = 3286, - [3300] = 3286, - [3301] = 3272, - [3302] = 3273, - [3303] = 3274, - [3304] = 3275, - [3305] = 3276, - [3306] = 3277, - [3307] = 196, - [3308] = 3270, - [3309] = 3271, - [3310] = 3310, - [3311] = 3311, + [3288] = 3284, + [3289] = 3281, + [3290] = 3280, + [3291] = 3284, + [3292] = 3281, + [3293] = 3284, + [3294] = 3281, + [3295] = 3272, + [3296] = 3280, + [3297] = 3284, + [3298] = 3281, + [3299] = 3272, + [3300] = 3280, + [3301] = 3276, + [3302] = 3302, + [3303] = 3303, + [3304] = 2654, + [3305] = 3305, + [3306] = 3271, + [3307] = 3307, + [3308] = 3308, + [3309] = 3309, + [3310] = 3284, + [3311] = 3305, [3312] = 3312, [3313] = 3313, - [3314] = 3314, - [3315] = 3315, - [3316] = 3035, - [3317] = 3268, + [3314] = 3287, + [3315] = 3276, + [3316] = 3281, + [3317] = 3317, [3318] = 3318, - [3319] = 3279, + [3319] = 3319, [3320] = 3320, - [3321] = 3077, - [3322] = 3285, - [3323] = 3068, - [3324] = 3324, - [3325] = 3325, - [3326] = 195, - [3327] = 3327, - [3328] = 3270, - [3329] = 3271, - [3330] = 3268, - [3331] = 3331, - [3332] = 3297, - [3333] = 3276, - [3334] = 3282, - [3335] = 3286, - [3336] = 3279, - [3337] = 3337, - [3338] = 3310, - [3339] = 3311, - [3340] = 3311, - [3341] = 3341, - [3342] = 3287, - [3343] = 3318, - [3344] = 3279, - [3345] = 3282, - [3346] = 3285, - [3347] = 3286, - [3348] = 3312, - [3349] = 3270, - [3350] = 3285, - [3351] = 3273, - [3352] = 3270, - [3353] = 3274, - [3354] = 3318, - [3355] = 3279, - [3356] = 3271, - [3357] = 3331, - [3358] = 3046, - [3359] = 3268, - [3360] = 3285, - [3361] = 3361, - [3362] = 3324, - [3363] = 3270, - [3364] = 3318, - [3365] = 3271, - [3366] = 3268, - [3367] = 3315, - [3368] = 3284, - [3369] = 2956, - [3370] = 3314, - [3371] = 3324, - [3372] = 2659, - [3373] = 3282, - [3374] = 3279, - [3375] = 3325, - [3376] = 3331, - [3377] = 195, - [3378] = 3286, + [3321] = 3321, + [3322] = 3322, + [3323] = 3272, + [3324] = 3280, + [3325] = 3273, + [3326] = 3280, + [3327] = 3056, + [3328] = 3328, + [3329] = 3329, + [3330] = 3313, + [3331] = 3275, + [3332] = 3271, + [3333] = 3302, + [3334] = 3284, + [3335] = 3276, + [3336] = 3308, + [3337] = 3281, + [3338] = 3281, + [3339] = 3271, + [3340] = 3340, + [3341] = 3305, + [3342] = 3313, + [3343] = 3287, + [3344] = 3340, + [3345] = 3272, + [3346] = 3317, + [3347] = 3318, + [3348] = 3319, + [3349] = 3320, + [3350] = 3321, + [3351] = 3322, + [3352] = 3352, + [3353] = 3284, + [3354] = 3354, + [3355] = 3355, + [3356] = 3276, + [3357] = 3280, + [3358] = 3281, + [3359] = 3284, + [3360] = 3273, + [3361] = 3276, + [3362] = 3275, + [3363] = 3309, + [3364] = 3010, + [3365] = 3365, + [3366] = 3281, + [3367] = 3367, + [3368] = 3271, + [3369] = 3022, + [3370] = 3272, + [3371] = 3280, + [3372] = 3354, + [3373] = 198, + [3374] = 3374, + [3375] = 3329, + [3376] = 3374, + [3377] = 3284, + [3378] = 3378, [3379] = 3271, - [3380] = 3282, - [3381] = 3320, - [3382] = 3286, - [3383] = 3296, - [3384] = 196, - [3385] = 3268, - [3386] = 3271, - [3387] = 3318, - [3388] = 3279, - [3389] = 3327, - [3390] = 2954, - [3391] = 3325, - [3392] = 3327, - [3393] = 3285, - [3394] = 3282, - [3395] = 3270, - [3396] = 3271, - [3397] = 3268, - [3398] = 3341, - [3399] = 3399, - [3400] = 3400, - [3401] = 3401, - [3402] = 3286, - [3403] = 3341, - [3404] = 3318, - [3405] = 3312, - [3406] = 3318, - [3407] = 3279, - [3408] = 3279, - [3409] = 3282, - [3410] = 3286, - [3411] = 3401, - [3412] = 3337, - [3413] = 3413, - [3414] = 3285, - [3415] = 3270, - [3416] = 3318, - [3417] = 3279, - [3418] = 3271, - [3419] = 3285, - [3420] = 3270, - [3421] = 3271, - [3422] = 3268, - [3423] = 3268, - [3424] = 3284, - [3425] = 267, - [3426] = 268, - [3427] = 3285, - [3428] = 3400, - [3429] = 3283, - [3430] = 3430, - [3431] = 3285, - [3432] = 270, - [3433] = 3283, - [3434] = 3285, - [3435] = 3313, - [3436] = 3270, - [3437] = 267, - [3438] = 268, - [3439] = 3270, - [3440] = 3271, - [3441] = 3268, - [3442] = 3282, - [3443] = 3286, - [3444] = 3282, - [3445] = 2986, - [3446] = 3401, - [3447] = 3294, - [3448] = 3282, - [3449] = 270, - [3450] = 3269, - [3451] = 3286, - [3452] = 3318, - [3453] = 3279, - [3454] = 3286, - [3455] = 2659, - [3456] = 3277, - [3457] = 3457, - [3458] = 3400, - [3459] = 3285, - [3460] = 3271, - [3461] = 3268, - [3462] = 3282, - [3463] = 3270, - [3464] = 3271, - [3465] = 3337, - [3466] = 3318, - [3467] = 3320, - [3468] = 3287, - [3469] = 3279, - [3470] = 3315, - [3471] = 3286, - [3472] = 3285, - [3473] = 3318, - [3474] = 3270, - [3475] = 3271, - [3476] = 3282, - [3477] = 3268, - [3478] = 3286, - [3479] = 3313, - [3480] = 3310, - [3481] = 3318, - [3482] = 3279, - [3483] = 3318, - [3484] = 3279, - [3485] = 3282, - [3486] = 2650, - [3487] = 3275, - [3488] = 3285, - [3489] = 3270, - [3490] = 3271, - [3491] = 3268, - [3492] = 3286, - [3493] = 2650, - [3494] = 3270, - [3495] = 3337, - [3496] = 3270, - [3497] = 3268, - [3498] = 3270, - [3499] = 3268, - [3500] = 3294, - [3501] = 3282, - [3502] = 3270, - [3503] = 3268, - [3504] = 3504, - [3505] = 3270, - [3506] = 3268, - [3507] = 3282, - [3508] = 3286, - [3509] = 3314, - [3510] = 3361, - [3511] = 3291, - [3512] = 2941, - [3513] = 3361, - [3514] = 3318, + [3380] = 3284, + [3381] = 3276, + [3382] = 3281, + [3383] = 3383, + [3384] = 3321, + [3385] = 3322, + [3386] = 3365, + [3387] = 3328, + [3388] = 3365, + [3389] = 3383, + [3390] = 3390, + [3391] = 3272, + [3392] = 3390, + [3393] = 3276, + [3394] = 2673, + [3395] = 3281, + [3396] = 3374, + [3397] = 200, + [3398] = 3273, + [3399] = 3271, + [3400] = 3281, + [3401] = 3275, + [3402] = 2949, + [3403] = 3273, + [3404] = 3275, + [3405] = 3308, + [3406] = 3272, + [3407] = 3280, + [3408] = 3408, + [3409] = 3009, + [3410] = 3354, + [3411] = 3317, + [3412] = 3271, + [3413] = 3284, + [3414] = 3276, + [3415] = 3280, + [3416] = 3416, + [3417] = 310, + [3418] = 311, + [3419] = 3273, + [3420] = 3303, + [3421] = 3275, + [3422] = 3272, + [3423] = 2972, + [3424] = 3273, + [3425] = 3273, + [3426] = 3280, + [3427] = 3352, + [3428] = 3303, + [3429] = 3429, + [3430] = 3307, + [3431] = 3367, + [3432] = 3432, + [3433] = 3302, + [3434] = 3032, + [3435] = 3273, + [3436] = 3408, + [3437] = 3271, + [3438] = 3416, + [3439] = 3274, + [3440] = 3277, + [3441] = 3275, + [3442] = 3284, + [3443] = 3276, + [3444] = 3275, + [3445] = 3281, + [3446] = 3367, + [3447] = 3378, + [3448] = 3319, + [3449] = 3429, + [3450] = 3450, + [3451] = 3451, + [3452] = 3272, + [3453] = 3280, + [3454] = 3318, + [3455] = 3277, + [3456] = 3378, + [3457] = 3036, + [3458] = 3272, + [3459] = 3280, + [3460] = 312, + [3461] = 3329, + [3462] = 3271, + [3463] = 3275, + [3464] = 3284, + [3465] = 310, + [3466] = 3276, + [3467] = 3328, + [3468] = 3281, + [3469] = 2654, + [3470] = 3470, + [3471] = 2958, + [3472] = 2673, + [3473] = 3273, + [3474] = 2951, + [3475] = 3365, + [3476] = 3312, + [3477] = 3271, + [3478] = 3272, + [3479] = 3280, + [3480] = 3383, + [3481] = 3273, + [3482] = 3284, + [3483] = 3275, + [3484] = 3275, + [3485] = 311, + [3486] = 3271, + [3487] = 3271, + [3488] = 198, + [3489] = 2989, + [3490] = 3276, + [3491] = 3274, + [3492] = 3450, + [3493] = 3281, + [3494] = 3272, + [3495] = 3280, + [3496] = 3284, + [3497] = 3309, + [3498] = 3271, + [3499] = 3284, + [3500] = 3276, + [3501] = 3281, + [3502] = 3390, + [3503] = 3273, + [3504] = 3273, + [3505] = 3284, + [3506] = 3273, + [3507] = 3320, + [3508] = 3275, + [3509] = 3340, + [3510] = 3273, + [3511] = 3273, + [3512] = 3275, + [3513] = 312, + [3514] = 3275, [3515] = 3272, - [3516] = 3318, - [3517] = 3279, - [3518] = 3291, - [3519] = 3279, - [3520] = 3318, - [3521] = 3285, - [3522] = 3025, - [3523] = 3296, - [3524] = 3430, - [3525] = 3297, - [3526] = 3268, - [3527] = 3527, - [3528] = 3361, - [3529] = 270, - [3530] = 3361, - [3531] = 3531, - [3532] = 3532, + [3516] = 3280, + [3517] = 3275, + [3518] = 3275, + [3519] = 3519, + [3520] = 3271, + [3521] = 3284, + [3522] = 3276, + [3523] = 3281, + [3524] = 3450, + [3525] = 3352, + [3526] = 3284, + [3527] = 3429, + [3528] = 3307, + [3529] = 3276, + [3530] = 3408, + [3531] = 3416, + [3532] = 3281, [3533] = 3533, [3534] = 3534, - [3535] = 2659, - [3536] = 3183, - [3537] = 3537, - [3538] = 195, - [3539] = 3361, - [3540] = 3177, - [3541] = 2659, - [3542] = 3542, + [3535] = 1061, + [3536] = 989, + [3537] = 1062, + [3538] = 3225, + [3539] = 3539, + [3540] = 3144, + [3541] = 3541, + [3542] = 3171, [3543] = 3543, - [3544] = 3361, - [3545] = 3361, - [3546] = 3149, + [3544] = 3533, + [3545] = 3545, + [3546] = 3231, [3547] = 3547, - [3548] = 3548, - [3549] = 265, + [3548] = 3309, + [3549] = 3549, [3550] = 3550, - [3551] = 3204, - [3552] = 3068, + [3551] = 3551, + [3552] = 3235, [3553] = 3553, - [3554] = 3554, - [3555] = 1059, + [3554] = 2941, + [3555] = 3555, [3556] = 3556, - [3557] = 1060, - [3558] = 1061, - [3559] = 2686, + [3557] = 2689, + [3558] = 3124, + [3559] = 2689, [3560] = 3560, - [3561] = 3267, - [3562] = 2686, - [3563] = 270, - [3564] = 3361, - [3565] = 3361, - [3566] = 3566, - [3567] = 3164, + [3561] = 3561, + [3562] = 3226, + [3563] = 3056, + [3564] = 3564, + [3565] = 3179, + [3566] = 198, + [3567] = 3309, [3568] = 3568, - [3569] = 3171, - [3570] = 3128, - [3571] = 3130, - [3572] = 195, + [3569] = 198, + [3570] = 3570, + [3571] = 3571, + [3572] = 3561, [3573] = 3573, - [3574] = 3574, - [3575] = 3554, + [3574] = 3570, + [3575] = 3575, [3576] = 3576, - [3577] = 3556, - [3578] = 3550, - [3579] = 3579, - [3580] = 3580, - [3581] = 3581, - [3582] = 3568, + [3577] = 3577, + [3578] = 3547, + [3579] = 3551, + [3580] = 3573, + [3581] = 3568, + [3582] = 3533, [3583] = 3583, - [3584] = 3533, - [3585] = 3585, + [3584] = 3555, + [3585] = 2673, [3586] = 3586, - [3587] = 3554, - [3588] = 3576, - [3589] = 3556, - [3590] = 3573, + [3587] = 3202, + [3588] = 3575, + [3589] = 3576, + [3590] = 3577, [3591] = 3591, [3592] = 3550, - [3593] = 3579, - [3594] = 3580, - [3595] = 3583, - [3596] = 3581, - [3597] = 3568, - [3598] = 3583, - [3599] = 3131, - [3600] = 3361, - [3601] = 3581, - [3602] = 3568, + [3593] = 3227, + [3594] = 3547, + [3595] = 3551, + [3596] = 3573, + [3597] = 3597, + [3598] = 3309, + [3599] = 2982, + [3600] = 3533, + [3601] = 3583, + [3602] = 3555, [3603] = 3603, - [3604] = 3581, + [3604] = 3604, [3605] = 3605, [3606] = 3606, - [3607] = 3581, - [3608] = 3568, - [3609] = 3583, - [3610] = 265, - [3611] = 3207, - [3612] = 3533, - [3613] = 3576, - [3614] = 3581, - [3615] = 3568, - [3616] = 3583, - [3617] = 3579, - [3618] = 3618, - [3619] = 3619, - [3620] = 3581, - [3621] = 3568, - [3622] = 3583, - [3623] = 3580, - [3624] = 3624, - [3625] = 3581, - [3626] = 3568, + [3607] = 3586, + [3608] = 3533, + [3609] = 3150, + [3610] = 3555, + [3611] = 3533, + [3612] = 3583, + [3613] = 3555, + [3614] = 3583, + [3615] = 3615, + [3616] = 308, + [3617] = 3533, + [3618] = 3583, + [3619] = 3555, + [3620] = 3620, + [3621] = 3621, + [3622] = 3533, + [3623] = 3583, + [3624] = 3555, + [3625] = 3575, + [3626] = 3533, [3627] = 3583, - [3628] = 3581, - [3629] = 3568, - [3630] = 3225, + [3628] = 3555, + [3629] = 3576, + [3630] = 3533, [3631] = 3583, - [3632] = 3581, - [3633] = 3568, - [3634] = 3583, + [3632] = 198, + [3633] = 3555, + [3634] = 3309, [3635] = 3635, - [3636] = 3636, - [3637] = 3606, - [3638] = 226, - [3639] = 3581, - [3640] = 3568, - [3641] = 3583, - [3642] = 3361, - [3643] = 3581, - [3644] = 3568, - [3645] = 3583, - [3646] = 2988, - [3647] = 3560, - [3648] = 3624, - [3649] = 3581, - [3650] = 3568, - [3651] = 3583, - [3652] = 3635, - [3653] = 3581, - [3654] = 3568, - [3655] = 3583, - [3656] = 3635, - [3657] = 195, - [3658] = 3581, - [3659] = 3568, - [3660] = 3583, - [3661] = 3174, - [3662] = 3581, - [3663] = 3568, - [3664] = 3179, - [3665] = 3583, - [3666] = 3048, - [3667] = 3187, - [3668] = 3624, - [3669] = 3361, - [3670] = 3583, - [3671] = 3671, - [3672] = 3672, - [3673] = 3673, - [3674] = 3674, - [3675] = 3675, - [3676] = 3676, + [3636] = 3543, + [3637] = 3533, + [3638] = 3583, + [3639] = 3555, + [3640] = 3309, + [3641] = 275, + [3642] = 3533, + [3643] = 3583, + [3644] = 3555, + [3645] = 3309, + [3646] = 3309, + [3647] = 3533, + [3648] = 3583, + [3649] = 3119, + [3650] = 312, + [3651] = 3555, + [3652] = 3309, + [3653] = 3570, + [3654] = 3583, + [3655] = 3555, + [3656] = 308, + [3657] = 3533, + [3658] = 3583, + [3659] = 3555, + [3660] = 3568, + [3661] = 3154, + [3662] = 3533, + [3663] = 3583, + [3664] = 3555, + [3665] = 2673, + [3666] = 3550, + [3667] = 3533, + [3668] = 3583, + [3669] = 3555, + [3670] = 3577, + [3671] = 3309, + [3672] = 3309, + [3673] = 312, + [3674] = 3197, + [3675] = 3146, + [3676] = 3583, [3677] = 3677, [3678] = 3678, - [3679] = 3676, - [3680] = 3677, + [3679] = 3679, + [3680] = 3680, [3681] = 3681, - [3682] = 3678, + [3682] = 3682, [3683] = 3683, [3684] = 3684, [3685] = 3685, @@ -5833,810 +5879,825 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3689] = 3689, [3690] = 3690, [3691] = 3691, - [3692] = 3671, - [3693] = 3684, + [3692] = 3692, + [3693] = 3693, [3694] = 3694, [3695] = 3695, - [3696] = 3685, - [3697] = 3686, + [3696] = 3696, + [3697] = 3697, [3698] = 3698, - [3699] = 3681, - [3700] = 3687, - [3701] = 3688, - [3702] = 3684, - [3703] = 3703, - [3704] = 3687, - [3705] = 3688, - [3706] = 3691, - [3707] = 3698, + [3699] = 3699, + [3700] = 3700, + [3701] = 3701, + [3702] = 3694, + [3703] = 3700, + [3704] = 3704, + [3705] = 3355, + [3706] = 308, + [3707] = 3707, [3708] = 3708, [3709] = 3709, - [3710] = 3703, - [3711] = 3671, - [3712] = 265, - [3713] = 3709, - [3714] = 3543, - [3715] = 3703, + [3710] = 3710, + [3711] = 3711, + [3712] = 3678, + [3713] = 3713, + [3714] = 3679, + [3715] = 3680, [3716] = 3716, - [3717] = 3717, - [3718] = 3718, + [3717] = 3682, + [3718] = 3683, [3719] = 3719, - [3720] = 3720, - [3721] = 3708, - [3722] = 3722, - [3723] = 3698, - [3724] = 3724, - [3725] = 3725, - [3726] = 3673, - [3727] = 3727, + [3720] = 3681, + [3721] = 3684, + [3722] = 3686, + [3723] = 3723, + [3724] = 3685, + [3725] = 3686, + [3726] = 3687, + [3727] = 3701, [3728] = 3728, - [3729] = 3729, - [3730] = 3730, - [3731] = 3681, - [3732] = 3732, + [3729] = 3711, + [3730] = 3688, + [3731] = 3719, + [3732] = 3678, [3733] = 3733, - [3734] = 3734, + [3734] = 3685, [3735] = 3735, [3736] = 3736, [3737] = 3737, - [3738] = 3681, - [3739] = 3739, - [3740] = 3734, - [3741] = 3684, - [3742] = 3742, - [3743] = 3743, - [3744] = 3744, - [3745] = 3716, - [3746] = 3746, - [3747] = 3672, - [3748] = 3716, - [3749] = 3674, - [3750] = 3675, - [3751] = 3676, - [3752] = 3677, + [3738] = 3738, + [3739] = 3677, + [3740] = 3740, + [3741] = 3716, + [3742] = 3689, + [3743] = 3690, + [3744] = 3691, + [3745] = 3692, + [3746] = 3693, + [3747] = 3689, + [3748] = 3719, + [3749] = 3749, + [3750] = 3750, + [3751] = 3751, + [3752] = 3733, [3753] = 3678, - [3754] = 3754, - [3755] = 3149, - [3756] = 3728, - [3757] = 3718, - [3758] = 3758, - [3759] = 3720, + [3754] = 3679, + [3755] = 3680, + [3756] = 1051, + [3757] = 3682, + [3758] = 3683, + [3759] = 3701, [3760] = 3685, [3761] = 3686, [3762] = 3687, [3763] = 3688, - [3764] = 3764, - [3765] = 3684, - [3766] = 3691, - [3767] = 3671, - [3768] = 3678, - [3769] = 3769, - [3770] = 3709, - [3771] = 3703, - [3772] = 3709, + [3764] = 3689, + [3765] = 3735, + [3766] = 3696, + [3767] = 3711, + [3768] = 3697, + [3769] = 3698, + [3770] = 3699, + [3771] = 3696, + [3772] = 3697, [3773] = 3698, - [3774] = 3681, - [3775] = 3703, - [3776] = 3267, - [3777] = 3684, - [3778] = 3691, - [3779] = 3671, - [3780] = 3722, - [3781] = 3781, - [3782] = 3782, - [3783] = 3724, + [3774] = 3699, + [3775] = 3775, + [3776] = 3719, + [3777] = 3694, + [3778] = 3700, + [3779] = 3709, + [3780] = 3733, + [3781] = 3736, + [3782] = 3709, + [3783] = 3694, [3784] = 3709, - [3785] = 3703, - [3786] = 3716, - [3787] = 3725, - [3788] = 3718, - [3789] = 3673, - [3790] = 3720, - [3791] = 3716, - [3792] = 3792, - [3793] = 3718, - [3794] = 3722, - [3795] = 3720, - [3796] = 3727, - [3797] = 3722, - [3798] = 3724, - [3799] = 3724, - [3800] = 3725, - [3801] = 3673, - [3802] = 3727, - [3803] = 3728, - [3804] = 3729, - [3805] = 3730, - [3806] = 3725, - [3807] = 3732, + [3785] = 3710, + [3786] = 3700, + [3787] = 3710, + [3788] = 3713, + [3789] = 3686, + [3790] = 3710, + [3791] = 3735, + [3792] = 3737, + [3793] = 3736, + [3794] = 3737, + [3795] = 3681, + [3796] = 3684, + [3797] = 3738, + [3798] = 3687, + [3799] = 3677, + [3800] = 3740, + [3801] = 3716, + [3802] = 3701, + [3803] = 3803, + [3804] = 3711, + [3805] = 3690, + [3806] = 3719, + [3807] = 3691, [3808] = 3733, - [3809] = 3734, + [3809] = 3692, [3810] = 3735, - [3811] = 3673, - [3812] = 3727, - [3813] = 3813, - [3814] = 3728, - [3815] = 3716, - [3816] = 3729, - [3817] = 3742, - [3818] = 3743, - [3819] = 3744, - [3820] = 3730, - [3821] = 3746, - [3822] = 3672, - [3823] = 3728, - [3824] = 3674, - [3825] = 3675, - [3826] = 3676, - [3827] = 3677, + [3811] = 3736, + [3812] = 3737, + [3813] = 3738, + [3814] = 3677, + [3815] = 3740, + [3816] = 3716, + [3817] = 3738, + [3818] = 3690, + [3819] = 3691, + [3820] = 3692, + [3821] = 3693, + [3822] = 3693, + [3823] = 3709, + [3824] = 3710, + [3825] = 3677, + [3826] = 3740, + [3827] = 3713, [3828] = 3678, - [3829] = 3732, - [3830] = 3733, - [3831] = 3734, - [3832] = 3735, - [3833] = 3735, - [3834] = 3729, + [3829] = 3679, + [3830] = 3680, + [3831] = 3716, + [3832] = 3682, + [3833] = 3683, + [3834] = 3690, [3835] = 3685, [3836] = 3686, [3837] = 3687, [3838] = 3688, - [3839] = 3709, - [3840] = 3730, + [3839] = 3689, + [3840] = 3690, [3841] = 3691, - [3842] = 3671, - [3843] = 3843, - [3844] = 3732, - [3845] = 3742, - [3846] = 3743, - [3847] = 3744, + [3842] = 3713, + [3843] = 3556, + [3844] = 3692, + [3845] = 3693, + [3846] = 3696, + [3847] = 3697, [3848] = 3698, - [3849] = 3681, - [3850] = 3733, - [3851] = 3746, - [3852] = 3684, - [3853] = 3672, - [3854] = 3698, - [3855] = 3855, - [3856] = 3716, - [3857] = 3674, - [3858] = 3675, + [3849] = 3699, + [3850] = 3692, + [3851] = 3678, + [3852] = 3694, + [3853] = 3700, + [3854] = 3681, + [3855] = 3679, + [3856] = 3684, + [3857] = 3680, + [3858] = 3858, [3859] = 3709, - [3860] = 3703, - [3861] = 267, - [3862] = 3703, - [3863] = 3504, - [3864] = 3864, - [3865] = 3676, - [3866] = 3716, - [3867] = 3677, - [3868] = 3718, - [3869] = 3678, - [3870] = 3720, - [3871] = 3739, - [3872] = 3722, - [3873] = 3734, - [3874] = 3724, - [3875] = 3725, - [3876] = 3673, - [3877] = 3727, - [3878] = 3728, - [3879] = 3729, - [3880] = 3730, - [3881] = 3881, - [3882] = 3732, + [3860] = 3710, + [3861] = 3679, + [3862] = 3862, + [3863] = 3713, + [3864] = 3688, + [3865] = 3519, + [3866] = 3689, + [3867] = 3867, + [3868] = 3701, + [3869] = 3711, + [3870] = 3681, + [3871] = 3684, + [3872] = 3872, + [3873] = 3873, + [3874] = 3874, + [3875] = 3711, + [3876] = 3876, + [3877] = 3701, + [3878] = 1060, + [3879] = 3711, + [3880] = 3719, + [3881] = 3719, + [3882] = 3882, [3883] = 3733, - [3884] = 3734, + [3884] = 2689, [3885] = 3735, - [3886] = 3718, - [3887] = 3735, - [3888] = 3742, - [3889] = 3889, - [3890] = 3890, - [3891] = 3685, - [3892] = 3742, - [3893] = 3743, - [3894] = 3744, - [3895] = 3709, - [3896] = 3746, - [3897] = 3672, - [3898] = 3703, - [3899] = 3674, - [3900] = 3675, - [3901] = 3676, - [3902] = 3677, + [3886] = 3736, + [3887] = 3737, + [3888] = 3738, + [3889] = 3677, + [3890] = 3740, + [3891] = 3716, + [3892] = 3733, + [3893] = 3690, + [3894] = 3691, + [3895] = 3692, + [3896] = 3693, + [3897] = 3897, + [3898] = 3719, + [3899] = 3735, + [3900] = 3736, + [3901] = 3681, + [3902] = 3737, [3903] = 3678, - [3904] = 3686, - [3905] = 3687, - [3906] = 3688, - [3907] = 3718, - [3908] = 3720, - [3909] = 3691, + [3904] = 3679, + [3905] = 3680, + [3906] = 3906, + [3907] = 3682, + [3908] = 3683, + [3909] = 3738, [3910] = 3685, [3911] = 3686, [3912] = 3687, [3913] = 3688, - [3914] = 3764, - [3915] = 3671, - [3916] = 3691, - [3917] = 3671, - [3918] = 3724, - [3919] = 3730, - [3920] = 3920, - [3921] = 3782, - [3922] = 3674, + [3914] = 3689, + [3915] = 3677, + [3916] = 3684, + [3917] = 3682, + [3918] = 3740, + [3919] = 3716, + [3920] = 3691, + [3921] = 3696, + [3922] = 3697, [3923] = 3698, - [3924] = 3681, - [3925] = 3543, - [3926] = 3720, - [3927] = 3684, - [3928] = 3722, - [3929] = 3698, - [3930] = 3743, - [3931] = 3744, - [3932] = 3681, - [3933] = 3746, - [3934] = 3672, - [3935] = 3746, - [3936] = 3685, - [3937] = 3686, - [3938] = 3687, - [3939] = 3688, - [3940] = 3746, - [3941] = 3742, - [3942] = 3684, - [3943] = 3743, - [3944] = 3742, - [3945] = 3724, - [3946] = 3725, - [3947] = 3744, - [3948] = 3672, - [3949] = 3746, - [3950] = 3729, - [3951] = 3672, - [3952] = 3716, - [3953] = 3709, - [3954] = 3709, - [3955] = 3703, - [3956] = 3673, - [3957] = 3957, - [3958] = 3674, - [3959] = 3959, + [3924] = 3699, + [3925] = 3683, + [3926] = 3690, + [3927] = 3694, + [3928] = 3700, + [3929] = 3929, + [3930] = 3709, + [3931] = 3691, + [3932] = 3932, + [3933] = 3692, + [3934] = 3709, + [3935] = 3710, + [3936] = 3693, + [3937] = 3687, + [3938] = 3713, + [3939] = 3939, + [3940] = 3692, + [3941] = 3679, + [3942] = 3680, + [3943] = 3685, + [3944] = 3682, + [3945] = 3683, + [3946] = 3686, + [3947] = 3696, + [3948] = 3697, + [3949] = 3698, + [3950] = 3699, + [3951] = 3687, + [3952] = 3688, + [3953] = 3953, + [3954] = 3693, + [3955] = 3689, + [3956] = 3696, + [3957] = 3697, + [3958] = 3678, + [3959] = 3698, [3960] = 3960, - [3961] = 3718, - [3962] = 3727, - [3963] = 3675, - [3964] = 3720, - [3965] = 3676, - [3966] = 3722, - [3967] = 3677, - [3968] = 3724, - [3969] = 3716, + [3961] = 3679, + [3962] = 3680, + [3963] = 3701, + [3964] = 3682, + [3965] = 3683, + [3966] = 3678, + [3967] = 3685, + [3968] = 3968, + [3969] = 3686, [3970] = 3970, - [3971] = 3971, - [3972] = 3728, - [3973] = 3678, - [3974] = 3729, - [3975] = 3730, - [3976] = 3725, - [3977] = 3718, - [3978] = 3673, - [3979] = 3727, - [3980] = 3728, - [3981] = 3729, - [3982] = 3730, - [3983] = 3970, - [3984] = 3743, - [3985] = 3732, - [3986] = 3733, - [3987] = 3720, - [3988] = 3685, - [3989] = 3889, - [3990] = 3722, - [3991] = 3686, - [3992] = 3724, - [3993] = 3725, - [3994] = 3673, - [3995] = 3727, - [3996] = 3734, - [3997] = 3735, - [3998] = 3728, - [3999] = 3729, - [4000] = 3730, - [4001] = 3722, - [4002] = 3732, - [4003] = 4003, - [4004] = 3733, - [4005] = 3734, - [4006] = 3735, - [4007] = 265, - [4008] = 2686, - [4009] = 3744, - [4010] = 3716, - [4011] = 3957, - [4012] = 265, - [4013] = 3959, - [4014] = 3960, - [4015] = 3732, - [4016] = 3733, - [4017] = 3734, - [4018] = 3735, - [4019] = 3684, - [4020] = 3742, - [4021] = 3743, - [4022] = 3744, - [4023] = 267, - [4024] = 3970, - [4025] = 3971, - [4026] = 3718, - [4027] = 3746, - [4028] = 3890, - [4029] = 3742, - [4030] = 3672, - [4031] = 3743, - [4032] = 3674, - [4033] = 3742, - [4034] = 3744, - [4035] = 3743, - [4036] = 3744, - [4037] = 3720, - [4038] = 3746, - [4039] = 3672, - [4040] = 3675, - [4041] = 3676, - [4042] = 3677, - [4043] = 3678, - [4044] = 3674, - [4045] = 3683, + [3971] = 3695, + [3972] = 3687, + [3973] = 3688, + [3974] = 3974, + [3975] = 3975, + [3976] = 3689, + [3977] = 3696, + [3978] = 3697, + [3979] = 3728, + [3980] = 3679, + [3981] = 3707, + [3982] = 3982, + [3983] = 3699, + [3984] = 3679, + [3985] = 3985, + [3986] = 3711, + [3987] = 3678, + [3988] = 3874, + [3989] = 3688, + [3990] = 3974, + [3991] = 3991, + [3992] = 3680, + [3993] = 3993, + [3994] = 3994, + [3995] = 3991, + [3996] = 3719, + [3997] = 3681, + [3998] = 3733, + [3999] = 3999, + [4000] = 3698, + [4001] = 4001, + [4002] = 4002, + [4003] = 3699, + [4004] = 3682, + [4005] = 3694, + [4006] = 3696, + [4007] = 3697, + [4008] = 3735, + [4009] = 3736, + [4010] = 3698, + [4011] = 3699, + [4012] = 3683, + [4013] = 3680, + [4014] = 3694, + [4015] = 3737, + [4016] = 3700, + [4017] = 4017, + [4018] = 3736, + [4019] = 3685, + [4020] = 3738, + [4021] = 3686, + [4022] = 3709, + [4023] = 3968, + [4024] = 3710, + [4025] = 3970, + [4026] = 3695, + [4027] = 3677, + [4028] = 3687, + [4029] = 3688, + [4030] = 3713, + [4031] = 3982, + [4032] = 4032, + [4033] = 3694, + [4034] = 3700, + [4035] = 3740, + [4036] = 3707, + [4037] = 3982, + [4038] = 3716, + [4039] = 3689, + [4040] = 3985, + [4041] = 3700, + [4042] = 3690, + [4043] = 4043, + [4044] = 3685, + [4045] = 3691, [4046] = 3681, - [4047] = 3685, - [4048] = 3674, - [4049] = 3675, - [4050] = 3686, - [4051] = 3687, - [4052] = 3685, - [4053] = 3686, - [4054] = 3676, - [4055] = 3687, - [4056] = 3688, - [4057] = 3688, - [4058] = 3676, - [4059] = 3691, - [4060] = 3671, - [4061] = 3677, - [4062] = 3959, - [4063] = 3960, - [4064] = 3672, - [4065] = 3920, - [4066] = 3671, - [4067] = 3690, - [4068] = 3691, - [4069] = 3708, - [4070] = 3698, - [4071] = 3739, - [4072] = 3681, - [4073] = 3970, - [4074] = 3971, - [4075] = 268, - [4076] = 1057, - [4077] = 3684, - [4078] = 3727, - [4079] = 3675, - [4080] = 3676, - [4081] = 3678, - [4082] = 3722, - [4083] = 3698, - [4084] = 3677, - [4085] = 3678, - [4086] = 4086, - [4087] = 3724, - [4088] = 3959, - [4089] = 3960, - [4090] = 3758, - [4091] = 3698, - [4092] = 3843, - [4093] = 3709, - [4094] = 3920, - [4095] = 3703, - [4096] = 3681, - [4097] = 3709, - [4098] = 3970, - [4099] = 3971, - [4100] = 3722, - [4101] = 3725, - [4102] = 3724, - [4103] = 3716, - [4104] = 3725, - [4105] = 3718, - [4106] = 3673, - [4107] = 3685, - [4108] = 3686, - [4109] = 3720, - [4110] = 3684, - [4111] = 3687, - [4112] = 3722, - [4113] = 3959, - [4114] = 3960, - [4115] = 3746, - [4116] = 3688, - [4117] = 3672, - [4118] = 3725, + [4047] = 3692, + [4048] = 3750, + [4049] = 3693, + [4050] = 3710, + [4051] = 3700, + [4052] = 3733, + [4053] = 3677, + [4054] = 3680, + [4055] = 3681, + [4056] = 3684, + [4057] = 3684, + [4058] = 3713, + [4059] = 3709, + [4060] = 3932, + [4061] = 3678, + [4062] = 3679, + [4063] = 4063, + [4064] = 3701, + [4065] = 3694, + [4066] = 3711, + [4067] = 3680, + [4068] = 3710, + [4069] = 3719, + [4070] = 4070, + [4071] = 3733, + [4072] = 2689, + [4073] = 3735, + [4074] = 3736, + [4075] = 3970, + [4076] = 3695, + [4077] = 3682, + [4078] = 3737, + [4079] = 3683, + [4080] = 3709, + [4081] = 3710, + [4082] = 3738, + [4083] = 3970, + [4084] = 3685, + [4085] = 3775, + [4086] = 3707, + [4087] = 3982, + [4088] = 4017, + [4089] = 3683, + [4090] = 4090, + [4091] = 3740, + [4092] = 3716, + [4093] = 3696, + [4094] = 3690, + [4095] = 3686, + [4096] = 3687, + [4097] = 3691, + [4098] = 3692, + [4099] = 3688, + [4100] = 3693, + [4101] = 3970, + [4102] = 3695, + [4103] = 3697, + [4104] = 3713, + [4105] = 3698, + [4106] = 3775, + [4107] = 3749, + [4108] = 4043, + [4109] = 4109, + [4110] = 4063, + [4111] = 3707, + [4112] = 3982, + [4113] = 3929, + [4114] = 1057, + [4115] = 1058, + [4116] = 3690, + [4117] = 3699, + [4118] = 3906, [4119] = 4119, - [4120] = 3724, - [4121] = 3727, - [4122] = 4122, - [4123] = 3970, - [4124] = 3971, - [4125] = 3725, - [4126] = 3673, - [4127] = 3727, - [4128] = 3728, - [4129] = 3729, - [4130] = 3730, - [4131] = 3691, - [4132] = 3671, - [4133] = 3728, - [4134] = 3732, - [4135] = 3746, - [4136] = 3729, - [4137] = 3734, - [4138] = 3959, - [4139] = 3960, - [4140] = 3730, - [4141] = 3674, - [4142] = 3675, - [4143] = 3676, - [4144] = 3677, - [4145] = 3718, - [4146] = 4146, - [4147] = 3678, - [4148] = 3970, - [4149] = 3971, - [4150] = 3735, - [4151] = 3673, - [4152] = 3689, - [4153] = 3727, - [4154] = 3728, - [4155] = 3732, - [4156] = 3675, - [4157] = 3698, - [4158] = 3681, - [4159] = 3742, - [4160] = 3743, - [4161] = 3733, - [4162] = 3744, - [4163] = 3959, - [4164] = 3960, - [4165] = 3758, - [4166] = 4166, - [4167] = 3734, - [4168] = 3746, - [4169] = 3672, - [4170] = 4170, - [4171] = 3959, - [4172] = 3684, - [4173] = 3970, - [4174] = 3971, - [4175] = 3960, - [4176] = 3674, - [4177] = 3675, - [4178] = 3676, - [4179] = 3677, - [4180] = 3678, - [4181] = 3709, - [4182] = 3735, - [4183] = 4183, - [4184] = 3703, - [4185] = 3685, - [4186] = 4186, - [4187] = 3686, - [4188] = 3959, - [4189] = 3960, - [4190] = 3843, - [4191] = 1058, - [4192] = 4183, - [4193] = 1053, - [4194] = 3685, - [4195] = 4195, - [4196] = 4196, - [4197] = 3686, - [4198] = 3970, - [4199] = 3971, - [4200] = 4200, - [4201] = 3687, - [4202] = 3688, - [4203] = 4203, - [4204] = 3813, - [4205] = 3691, - [4206] = 3671, - [4207] = 3695, - [4208] = 3681, - [4209] = 3719, - [4210] = 4210, - [4211] = 3691, - [4212] = 3716, - [4213] = 3959, - [4214] = 3960, - [4215] = 4215, - [4216] = 3685, - [4217] = 3686, - [4218] = 4183, - [4219] = 3813, - [4220] = 3855, - [4221] = 4119, - [4222] = 4146, - [4223] = 3970, - [4224] = 3971, - [4225] = 4170, - [4226] = 3855, - [4227] = 3718, - [4228] = 3698, - [4229] = 3681, - [4230] = 4119, - [4231] = 3720, - [4232] = 3685, - [4233] = 3709, - [4234] = 3684, - [4235] = 3413, - [4236] = 3703, - [4237] = 4146, - [4238] = 3959, - [4239] = 3960, - [4240] = 3687, - [4241] = 3688, - [4242] = 3722, - [4243] = 4243, - [4244] = 1051, - [4245] = 4245, - [4246] = 1054, - [4247] = 3686, - [4248] = 3970, - [4249] = 3971, - [4250] = 1052, - [4251] = 4170, - [4252] = 3724, - [4253] = 3732, - [4254] = 3709, - [4255] = 3703, - [4256] = 3725, - [4257] = 4257, - [4258] = 3716, - [4259] = 3673, - [4260] = 3727, - [4261] = 3742, - [4262] = 3728, - [4263] = 3959, - [4264] = 3960, - [4265] = 3729, - [4266] = 3716, - [4267] = 3718, - [4268] = 4268, - [4269] = 1055, - [4270] = 3687, - [4271] = 3718, - [4272] = 3730, - [4273] = 3970, - [4274] = 3971, - [4275] = 3691, - [4276] = 3720, - [4277] = 3690, - [4278] = 3722, - [4279] = 268, - [4280] = 3724, - [4281] = 3725, - [4282] = 3743, - [4283] = 3720, - [4284] = 3673, - [4285] = 3727, - [4286] = 3744, - [4287] = 3728, - [4288] = 3959, - [4289] = 3960, - [4290] = 3671, - [4291] = 3722, - [4292] = 3688, - [4293] = 3729, - [4294] = 3698, - [4295] = 3720, - [4296] = 3730, - [4297] = 3724, - [4298] = 3970, - [4299] = 3971, - [4300] = 4300, - [4301] = 4203, - [4302] = 3687, - [4303] = 3732, - [4304] = 3733, - [4305] = 3734, - [4306] = 3735, - [4307] = 3725, - [4308] = 3673, - [4309] = 3743, - [4310] = 3732, - [4311] = 3727, - [4312] = 3677, - [4313] = 3959, - [4314] = 3960, - [4315] = 1056, - [4316] = 3733, - [4317] = 3728, - [4318] = 3734, - [4319] = 3792, - [4320] = 3735, - [4321] = 3742, - [4322] = 3743, - [4323] = 3970, - [4324] = 3971, - [4325] = 3744, - [4326] = 3744, - [4327] = 3746, - [4328] = 3672, - [4329] = 3688, - [4330] = 3674, - [4331] = 3675, - [4332] = 3729, - [4333] = 3730, - [4334] = 3676, - [4335] = 3677, - [4336] = 3957, - [4337] = 3678, - [4338] = 3959, - [4339] = 3960, - [4340] = 3698, - [4341] = 3681, - [4342] = 3732, - [4343] = 3769, - [4344] = 3733, - [4345] = 4345, - [4346] = 3769, - [4347] = 3729, - [4348] = 3970, - [4349] = 3971, - [4350] = 3782, - [4351] = 3730, - [4352] = 4186, - [4353] = 3685, - [4354] = 3686, - [4355] = 3687, - [4356] = 3688, - [4357] = 3734, - [4358] = 3735, - [4359] = 3742, - [4360] = 2686, - [4361] = 3733, - [4362] = 3691, - [4363] = 3959, - [4364] = 3960, - [4365] = 3671, - [4366] = 4366, - [4367] = 3746, - [4368] = 3684, - [4369] = 3743, - [4370] = 3890, - [4371] = 3683, - [4372] = 3689, - [4373] = 3970, - [4374] = 3971, - [4375] = 4186, - [4376] = 3744, - [4377] = 3703, - [4378] = 3698, - [4379] = 3681, - [4380] = 3746, - [4381] = 3672, - [4382] = 3672, - [4383] = 1106, - [4384] = 3684, - [4385] = 4385, - [4386] = 3674, - [4387] = 3732, - [4388] = 3674, - [4389] = 3742, - [4390] = 3675, - [4391] = 3743, - [4392] = 3676, - [4393] = 4393, - [4394] = 3709, - [4395] = 3703, - [4396] = 3677, - [4397] = 3678, - [4398] = 3733, - [4399] = 3691, - [4400] = 3971, - [4401] = 3716, - [4402] = 3671, - [4403] = 3695, - [4404] = 3718, - [4405] = 4405, - [4406] = 4405, - [4407] = 4003, - [4408] = 3694, - [4409] = 4300, - [4410] = 4086, - [4411] = 4166, - [4412] = 3737, - [4413] = 4257, - [4414] = 4366, - [4415] = 4122, - [4416] = 4385, - [4417] = 3719, - [4418] = 3720, + [4120] = 3689, + [4121] = 3735, + [4122] = 3678, + [4123] = 3679, + [4124] = 3700, + [4125] = 3680, + [4126] = 3970, + [4127] = 3695, + [4128] = 3119, + [4129] = 3713, + [4130] = 3682, + [4131] = 3683, + [4132] = 3694, + [4133] = 3685, + [4134] = 3684, + [4135] = 3682, + [4136] = 3707, + [4137] = 3982, + [4138] = 3686, + [4139] = 3681, + [4140] = 3684, + [4141] = 3687, + [4142] = 3688, + [4143] = 3749, + [4144] = 3689, + [4145] = 3736, + [4146] = 3696, + [4147] = 3700, + [4148] = 3678, + [4149] = 3688, + [4150] = 3679, + [4151] = 3970, + [4152] = 3695, + [4153] = 3698, + [4154] = 4043, + [4155] = 3680, + [4156] = 3701, + [4157] = 3968, + [4158] = 4109, + [4159] = 3682, + [4160] = 3696, + [4161] = 3707, + [4162] = 3982, + [4163] = 3697, + [4164] = 3699, + [4165] = 3698, + [4166] = 3699, + [4167] = 3709, + [4168] = 3710, + [4169] = 3694, + [4170] = 3929, + [4171] = 3696, + [4172] = 3700, + [4173] = 3683, + [4174] = 3694, + [4175] = 311, + [4176] = 3970, + [4177] = 3695, + [4178] = 4178, + [4179] = 3713, + [4180] = 3685, + [4181] = 3701, + [4182] = 3700, + [4183] = 3709, + [4184] = 3993, + [4185] = 3711, + [4186] = 3707, + [4187] = 3982, + [4188] = 3144, + [4189] = 3719, + [4190] = 3710, + [4191] = 3733, + [4192] = 3686, + [4193] = 3687, + [4194] = 3713, + [4195] = 3737, + [4196] = 3697, + [4197] = 3688, + [4198] = 308, + [4199] = 3985, + [4200] = 3696, + [4201] = 3970, + [4202] = 3695, + [4203] = 3876, + [4204] = 3735, + [4205] = 3681, + [4206] = 3994, + [4207] = 3736, + [4208] = 3740, + [4209] = 3711, + [4210] = 3737, + [4211] = 3707, + [4212] = 3982, + [4213] = 3999, + [4214] = 3738, + [4215] = 3677, + [4216] = 3740, + [4217] = 3697, + [4218] = 3716, + [4219] = 3716, + [4220] = 3681, + [4221] = 3709, + [4222] = 3710, + [4223] = 3681, + [4224] = 3684, + [4225] = 3684, + [4226] = 3970, + [4227] = 3695, + [4228] = 3882, + [4229] = 3691, + [4230] = 3682, + [4231] = 3698, + [4232] = 3690, + [4233] = 3691, + [4234] = 3692, + [4235] = 3693, + [4236] = 3707, + [4237] = 3982, + [4238] = 3689, + [4239] = 3713, + [4240] = 4109, + [4241] = 4241, + [4242] = 3701, + [4243] = 3699, + [4244] = 3711, + [4245] = 310, + [4246] = 3684, + [4247] = 3737, + [4248] = 3719, + [4249] = 3738, + [4250] = 3681, + [4251] = 3970, + [4252] = 3695, + [4253] = 308, + [4254] = 3733, + [4255] = 3678, + [4256] = 3679, + [4257] = 3680, + [4258] = 3701, + [4259] = 4001, + [4260] = 3867, + [4261] = 3707, + [4262] = 3982, + [4263] = 3735, + [4264] = 3736, + [4265] = 3874, + [4266] = 3737, + [4267] = 3738, + [4268] = 3876, + [4269] = 3677, + [4270] = 3711, + [4271] = 4271, + [4272] = 3740, + [4273] = 3716, + [4274] = 3681, + [4275] = 3684, + [4276] = 3970, + [4277] = 3695, + [4278] = 1055, + [4279] = 3690, + [4280] = 4280, + [4281] = 3691, + [4282] = 3882, + [4283] = 3692, + [4284] = 3897, + [4285] = 3693, + [4286] = 3707, + [4287] = 3982, + [4288] = 3684, + [4289] = 3906, + [4290] = 3939, + [4291] = 3719, + [4292] = 4063, + [4293] = 3682, + [4294] = 3701, + [4295] = 3689, + [4296] = 3677, + [4297] = 3733, + [4298] = 3713, + [4299] = 3701, + [4300] = 3701, + [4301] = 3970, + [4302] = 3695, + [4303] = 3678, + [4304] = 3683, + [4305] = 4305, + [4306] = 3679, + [4307] = 3735, + [4308] = 3711, + [4309] = 3932, + [4310] = 3680, + [4311] = 3707, + [4312] = 3982, + [4313] = 3696, + [4314] = 3685, + [4315] = 3686, + [4316] = 3687, + [4317] = 3682, + [4318] = 3688, + [4319] = 3683, + [4320] = 3713, + [4321] = 3735, + [4322] = 3711, + [4323] = 3685, + [4324] = 3719, + [4325] = 3686, + [4326] = 3970, + [4327] = 3695, + [4328] = 3689, + [4329] = 3687, + [4330] = 4330, + [4331] = 3688, + [4332] = 3689, + [4333] = 1056, + [4334] = 3697, + [4335] = 3719, + [4336] = 3707, + [4337] = 3982, + [4338] = 3698, + [4339] = 4339, + [4340] = 3696, + [4341] = 3697, + [4342] = 3728, + [4343] = 3974, + [4344] = 3736, + [4345] = 3733, + [4346] = 3737, + [4347] = 3733, + [4348] = 4348, + [4349] = 3735, + [4350] = 3696, + [4351] = 3970, + [4352] = 3695, + [4353] = 3991, + [4354] = 3993, + [4355] = 3994, + [4356] = 3999, + [4357] = 3698, + [4358] = 3699, + [4359] = 3699, + [4360] = 3736, + [4361] = 3707, + [4362] = 3982, + [4363] = 3897, + [4364] = 310, + [4365] = 3697, + [4366] = 3556, + [4367] = 3698, + [4368] = 3699, + [4369] = 3737, + [4370] = 3738, + [4371] = 3677, + [4372] = 4090, + [4373] = 3694, + [4374] = 3740, + [4375] = 3700, + [4376] = 3970, + [4377] = 3695, + [4378] = 4378, + [4379] = 3735, + [4380] = 3694, + [4381] = 3700, + [4382] = 3716, + [4383] = 3738, + [4384] = 3750, + [4385] = 4339, + [4386] = 3707, + [4387] = 3982, + [4388] = 3736, + [4389] = 3693, + [4390] = 3737, + [4391] = 3709, + [4392] = 3710, + [4393] = 3733, + [4394] = 3738, + [4395] = 3690, + [4396] = 3691, + [4397] = 3677, + [4398] = 3713, + [4399] = 3692, + [4400] = 3740, + [4401] = 3738, + [4402] = 1109, + [4403] = 4403, + [4404] = 3709, + [4405] = 3710, + [4406] = 1054, + [4407] = 3716, + [4408] = 4017, + [4409] = 3693, + [4410] = 3698, + [4411] = 4411, + [4412] = 4090, + [4413] = 3681, + [4414] = 3684, + [4415] = 1052, + [4416] = 4403, + [4417] = 4417, + [4418] = 3690, [4419] = 4419, - [4420] = 4405, - [4421] = 4003, - [4422] = 3694, - [4423] = 4300, - [4424] = 4086, - [4425] = 4166, - [4426] = 3737, - [4427] = 4257, - [4428] = 4366, - [4429] = 4122, - [4430] = 4385, - [4431] = 4405, - [4432] = 4003, - [4433] = 4405, - [4434] = 4003, - [4435] = 4405, - [4436] = 4003, - [4437] = 4405, - [4438] = 4003, - [4439] = 4405, - [4440] = 4003, - [4441] = 4405, - [4442] = 4003, - [4443] = 4405, - [4444] = 4003, - [4445] = 4405, - [4446] = 4003, - [4447] = 4405, - [4448] = 4003, - [4449] = 4405, - [4450] = 4003, - [4451] = 4405, - [4452] = 4003, - [4453] = 4405, - [4454] = 4003, - [4455] = 4405, - [4456] = 4003, - [4457] = 4003, - [4458] = 4003, - [4459] = 4003, - [4460] = 4003, - [4461] = 3722, - [4462] = 3734, - [4463] = 3724, - [4464] = 3725, - [4465] = 3673, - [4466] = 3727, - [4467] = 3728, - [4468] = 3729, - [4469] = 3730, - [4470] = 3744, - [4471] = 3732, - [4472] = 3733, - [4473] = 3734, - [4474] = 3735, - [4475] = 3675, - [4476] = 3685, - [4477] = 3686, - [4478] = 3687, - [4479] = 3688, - [4480] = 4203, - [4481] = 3742, - [4482] = 3743, - [4483] = 3744, - [4484] = 3735, - [4485] = 3746, - [4486] = 3672, - [4487] = 3691, - [4488] = 3674, - [4489] = 3675, - [4490] = 3676, - [4491] = 3677, - [4492] = 3678, - [4493] = 3671, - [4494] = 1049, - [4495] = 3733, + [4420] = 4378, + [4421] = 4002, + [4422] = 3858, + [4423] = 4119, + [4424] = 4424, + [4425] = 4271, + [4426] = 3960, + [4427] = 3975, + [4428] = 4032, + [4429] = 4417, + [4430] = 4419, + [4431] = 4403, + [4432] = 3691, + [4433] = 3701, + [4434] = 3677, + [4435] = 4378, + [4436] = 4002, + [4437] = 3858, + [4438] = 4119, + [4439] = 4424, + [4440] = 4271, + [4441] = 3960, + [4442] = 3975, + [4443] = 4032, + [4444] = 4417, + [4445] = 4419, + [4446] = 4378, + [4447] = 4002, + [4448] = 4378, + [4449] = 4002, + [4450] = 4378, + [4451] = 4002, + [4452] = 4378, + [4453] = 4002, + [4454] = 4378, + [4455] = 4002, + [4456] = 4378, + [4457] = 4002, + [4458] = 4378, + [4459] = 4002, + [4460] = 4378, + [4461] = 4002, + [4462] = 4378, + [4463] = 4002, + [4464] = 4378, + [4465] = 4002, + [4466] = 4378, + [4467] = 4002, + [4468] = 4378, + [4469] = 4002, + [4470] = 4378, + [4471] = 4002, + [4472] = 4002, + [4473] = 4002, + [4474] = 4002, + [4475] = 4002, + [4476] = 3711, + [4477] = 3740, + [4478] = 3719, + [4479] = 3692, + [4480] = 3733, + [4481] = 3693, + [4482] = 3735, + [4483] = 3736, + [4484] = 3737, + [4485] = 3738, + [4486] = 3677, + [4487] = 3740, + [4488] = 3716, + [4489] = 3683, + [4490] = 3690, + [4491] = 3691, + [4492] = 3692, + [4493] = 3693, + [4494] = 3699, + [4495] = 1059, + [4496] = 311, + [4497] = 3716, + [4498] = 4424, + [4499] = 3694, + [4500] = 3678, + [4501] = 3679, + [4502] = 3680, + [4503] = 3867, + [4504] = 3682, + [4505] = 3683, + [4506] = 3740, + [4507] = 3685, + [4508] = 3686, + [4509] = 3687, + [4510] = 3697, }; static const TSCharacterRange aux_sym_shortcode_naked_string_token2_character_set_1[] = { @@ -19409,37 +19470,37 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [36] = {.lex_state = 4, .external_lex_state = 4}, [37] = {.lex_state = 4, .external_lex_state = 4}, [38] = {.lex_state = 2022, .external_lex_state = 5}, - [39] = {.lex_state = 2022, .external_lex_state = 6}, + [39] = {.lex_state = 2022, .external_lex_state = 5}, [40] = {.lex_state = 2022, .external_lex_state = 6}, [41] = {.lex_state = 2022, .external_lex_state = 6}, [42] = {.lex_state = 2022, .external_lex_state = 6}, [43] = {.lex_state = 2022, .external_lex_state = 6}, [44] = {.lex_state = 2022, .external_lex_state = 6}, [45] = {.lex_state = 2022, .external_lex_state = 6}, - [46] = {.lex_state = 2022, .external_lex_state = 5}, + [46] = {.lex_state = 2022, .external_lex_state = 6}, [47] = {.lex_state = 2022, .external_lex_state = 6}, [48] = {.lex_state = 2022, .external_lex_state = 6}, [49] = {.lex_state = 2022, .external_lex_state = 6}, [50] = {.lex_state = 2022, .external_lex_state = 6}, [51] = {.lex_state = 2022, .external_lex_state = 6}, [52] = {.lex_state = 2022, .external_lex_state = 6}, - [53] = {.lex_state = 2022, .external_lex_state = 5}, + [53] = {.lex_state = 2022, .external_lex_state = 6}, [54] = {.lex_state = 2022, .external_lex_state = 6}, - [55] = {.lex_state = 2022, .external_lex_state = 6}, + [55] = {.lex_state = 2022, .external_lex_state = 5}, [56] = {.lex_state = 2022, .external_lex_state = 6}, [57] = {.lex_state = 2022, .external_lex_state = 6}, [58] = {.lex_state = 2022, .external_lex_state = 6}, [59] = {.lex_state = 2022, .external_lex_state = 6}, - [60] = {.lex_state = 2022, .external_lex_state = 7}, + [60] = {.lex_state = 2022, .external_lex_state = 2}, [61] = {.lex_state = 2022, .external_lex_state = 2}, [62] = {.lex_state = 2022, .external_lex_state = 7}, - [63] = {.lex_state = 2022, .external_lex_state = 2}, + [63] = {.lex_state = 2022, .external_lex_state = 7}, [64] = {.lex_state = 2022, .external_lex_state = 7}, [65] = {.lex_state = 2022, .external_lex_state = 7}, - [66] = {.lex_state = 2022, .external_lex_state = 2}, + [66] = {.lex_state = 2022, .external_lex_state = 7}, [67] = {.lex_state = 2022, .external_lex_state = 7}, [68] = {.lex_state = 2022, .external_lex_state = 7}, - [69] = {.lex_state = 2022, .external_lex_state = 7}, + [69] = {.lex_state = 2022, .external_lex_state = 2}, [70] = {.lex_state = 2022, .external_lex_state = 7}, [71] = {.lex_state = 2022, .external_lex_state = 7}, [72] = {.lex_state = 2022, .external_lex_state = 7}, @@ -19451,42 +19512,42 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [78] = {.lex_state = 2022, .external_lex_state = 6}, [79] = {.lex_state = 2022, .external_lex_state = 7}, [80] = {.lex_state = 2022, .external_lex_state = 7}, - [81] = {.lex_state = 2022, .external_lex_state = 2}, + [81] = {.lex_state = 2022, .external_lex_state = 7}, [82] = {.lex_state = 2022, .external_lex_state = 2}, [83] = {.lex_state = 2022, .external_lex_state = 2}, - [84] = {.lex_state = 2022, .external_lex_state = 7}, + [84] = {.lex_state = 2022, .external_lex_state = 2}, [85] = {.lex_state = 2022, .external_lex_state = 6}, [86] = {.lex_state = 2022, .external_lex_state = 6}, [87] = {.lex_state = 2022, .external_lex_state = 6}, - [88] = {.lex_state = 2022, .external_lex_state = 7}, + [88] = {.lex_state = 2022, .external_lex_state = 2}, [89] = {.lex_state = 2022, .external_lex_state = 7}, - [90] = {.lex_state = 2022, .external_lex_state = 7}, - [91] = {.lex_state = 2022, .external_lex_state = 2}, - [92] = {.lex_state = 2022, .external_lex_state = 2}, + [90] = {.lex_state = 2022, .external_lex_state = 2}, + [91] = {.lex_state = 2022, .external_lex_state = 7}, + [92] = {.lex_state = 2022, .external_lex_state = 7}, [93] = {.lex_state = 2022, .external_lex_state = 2}, [94] = {.lex_state = 2022, .external_lex_state = 6}, [95] = {.lex_state = 2022, .external_lex_state = 6}, [96] = {.lex_state = 2022, .external_lex_state = 6}, [97] = {.lex_state = 2022, .external_lex_state = 7}, [98] = {.lex_state = 2022, .external_lex_state = 7}, - [99] = {.lex_state = 2022, .external_lex_state = 7}, - [100] = {.lex_state = 2022, .external_lex_state = 2}, + [99] = {.lex_state = 2022, .external_lex_state = 2}, + [100] = {.lex_state = 2022, .external_lex_state = 7}, [101] = {.lex_state = 2022, .external_lex_state = 2}, [102] = {.lex_state = 2022, .external_lex_state = 2}, [103] = {.lex_state = 2022, .external_lex_state = 6}, [104] = {.lex_state = 2022, .external_lex_state = 6}, [105] = {.lex_state = 2022, .external_lex_state = 6}, [106] = {.lex_state = 2022, .external_lex_state = 7}, - [107] = {.lex_state = 2022, .external_lex_state = 2}, - [108] = {.lex_state = 2022, .external_lex_state = 7}, - [109] = {.lex_state = 2022, .external_lex_state = 7}, - [110] = {.lex_state = 2022, .external_lex_state = 2}, + [107] = {.lex_state = 2022, .external_lex_state = 7}, + [108] = {.lex_state = 2022, .external_lex_state = 2}, + [109] = {.lex_state = 2022, .external_lex_state = 2}, + [110] = {.lex_state = 2022, .external_lex_state = 7}, [111] = {.lex_state = 2022, .external_lex_state = 2}, [112] = {.lex_state = 2022, .external_lex_state = 6}, [113] = {.lex_state = 2022, .external_lex_state = 6}, [114] = {.lex_state = 2022, .external_lex_state = 6}, - [115] = {.lex_state = 2022, .external_lex_state = 2}, - [116] = {.lex_state = 2022, .external_lex_state = 7}, + [115] = {.lex_state = 2022, .external_lex_state = 7}, + [116] = {.lex_state = 2022, .external_lex_state = 2}, [117] = {.lex_state = 2022, .external_lex_state = 7}, [118] = {.lex_state = 2022, .external_lex_state = 2}, [119] = {.lex_state = 2022, .external_lex_state = 7}, @@ -19496,57 +19557,57 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [123] = {.lex_state = 2022, .external_lex_state = 6}, [124] = {.lex_state = 2022, .external_lex_state = 2}, [125] = {.lex_state = 2022, .external_lex_state = 7}, - [126] = {.lex_state = 2022, .external_lex_state = 2}, - [127] = {.lex_state = 2022, .external_lex_state = 7}, + [126] = {.lex_state = 2022, .external_lex_state = 7}, + [127] = {.lex_state = 2022, .external_lex_state = 2}, [128] = {.lex_state = 2022, .external_lex_state = 2}, [129] = {.lex_state = 2022, .external_lex_state = 7}, [130] = {.lex_state = 2022, .external_lex_state = 6}, [131] = {.lex_state = 4, .external_lex_state = 3}, [132] = {.lex_state = 4, .external_lex_state = 3}, [133] = {.lex_state = 4, .external_lex_state = 3}, - [134] = {.lex_state = 2022, .external_lex_state = 6}, - [135] = {.lex_state = 2022, .external_lex_state = 6}, + [134] = {.lex_state = 2022, .external_lex_state = 8}, + [135] = {.lex_state = 2022, .external_lex_state = 8}, [136] = {.lex_state = 2022, .external_lex_state = 6}, [137] = {.lex_state = 2022, .external_lex_state = 6}, [138] = {.lex_state = 2022, .external_lex_state = 6}, [139] = {.lex_state = 2022, .external_lex_state = 6}, - [140] = {.lex_state = 2022, .external_lex_state = 6}, + [140] = {.lex_state = 2022, .external_lex_state = 8}, [141] = {.lex_state = 2022, .external_lex_state = 6}, [142] = {.lex_state = 2022, .external_lex_state = 6}, - [143] = {.lex_state = 2022, .external_lex_state = 6}, - [144] = {.lex_state = 2022, .external_lex_state = 6}, - [145] = {.lex_state = 4, .external_lex_state = 3}, - [146] = {.lex_state = 2022, .external_lex_state = 8}, - [147] = {.lex_state = 2022, .external_lex_state = 8}, - [148] = {.lex_state = 2022, .external_lex_state = 8}, - [149] = {.lex_state = 4, .external_lex_state = 3}, - [150] = {.lex_state = 2022, .external_lex_state = 8}, - [151] = {.lex_state = 4, .external_lex_state = 3}, - [152] = {.lex_state = 2022, .external_lex_state = 8}, - [153] = {.lex_state = 2022, .external_lex_state = 8}, + [143] = {.lex_state = 2022, .external_lex_state = 8}, + [144] = {.lex_state = 2022, .external_lex_state = 8}, + [145] = {.lex_state = 2022, .external_lex_state = 8}, + [146] = {.lex_state = 4, .external_lex_state = 3}, + [147] = {.lex_state = 2022, .external_lex_state = 6}, + [148] = {.lex_state = 2022, .external_lex_state = 6}, + [149] = {.lex_state = 2022, .external_lex_state = 6}, + [150] = {.lex_state = 4, .external_lex_state = 3}, + [151] = {.lex_state = 2022, .external_lex_state = 6}, + [152] = {.lex_state = 2022, .external_lex_state = 6}, + [153] = {.lex_state = 4, .external_lex_state = 3}, [154] = {.lex_state = 2022, .external_lex_state = 2}, - [155] = {.lex_state = 2022, .external_lex_state = 7}, + [155] = {.lex_state = 2022, .external_lex_state = 2}, [156] = {.lex_state = 2022, .external_lex_state = 2}, [157] = {.lex_state = 2022, .external_lex_state = 2}, - [158] = {.lex_state = 2022, .external_lex_state = 2}, + [158] = {.lex_state = 2022, .external_lex_state = 7}, [159] = {.lex_state = 2022, .external_lex_state = 7}, - [160] = {.lex_state = 2022, .external_lex_state = 2}, + [160] = {.lex_state = 2022, .external_lex_state = 7}, [161] = {.lex_state = 2022, .external_lex_state = 7}, [162] = {.lex_state = 2022, .external_lex_state = 7}, [163] = {.lex_state = 2022, .external_lex_state = 7}, [164] = {.lex_state = 2022, .external_lex_state = 7}, [165] = {.lex_state = 2022, .external_lex_state = 7}, - [166] = {.lex_state = 2022, .external_lex_state = 2}, - [167] = {.lex_state = 2022, .external_lex_state = 2}, - [168] = {.lex_state = 2022, .external_lex_state = 2}, + [166] = {.lex_state = 2022, .external_lex_state = 7}, + [167] = {.lex_state = 2022, .external_lex_state = 7}, + [168] = {.lex_state = 2022, .external_lex_state = 7}, [169] = {.lex_state = 2022, .external_lex_state = 2}, [170] = {.lex_state = 2022, .external_lex_state = 2}, [171] = {.lex_state = 2022, .external_lex_state = 2}, - [172] = {.lex_state = 2022, .external_lex_state = 7}, - [173] = {.lex_state = 2022, .external_lex_state = 7}, - [174] = {.lex_state = 2022, .external_lex_state = 7}, + [172] = {.lex_state = 2022, .external_lex_state = 2}, + [173] = {.lex_state = 2022, .external_lex_state = 2}, + [174] = {.lex_state = 2022, .external_lex_state = 2}, [175] = {.lex_state = 2022, .external_lex_state = 7}, - [176] = {.lex_state = 2022, .external_lex_state = 7}, + [176] = {.lex_state = 2022, .external_lex_state = 2}, [177] = {.lex_state = 2022, .external_lex_state = 2}, [178] = {.lex_state = 2022, .external_lex_state = 9}, [179] = {.lex_state = 2022, .external_lex_state = 9}, @@ -19558,7 +19619,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [185] = {.lex_state = 2022, .external_lex_state = 9}, [186] = {.lex_state = 2022, .external_lex_state = 9}, [187] = {.lex_state = 2022, .external_lex_state = 9}, - [188] = {.lex_state = 2022, .external_lex_state = 9}, + [188] = {.lex_state = 2022, .external_lex_state = 10}, [189] = {.lex_state = 2022, .external_lex_state = 9}, [190] = {.lex_state = 2022, .external_lex_state = 9}, [191] = {.lex_state = 2022, .external_lex_state = 9}, @@ -19570,58 +19631,58 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [197] = {.lex_state = 2022, .external_lex_state = 9}, [198] = {.lex_state = 2022, .external_lex_state = 9}, [199] = {.lex_state = 2022, .external_lex_state = 9}, - [200] = {.lex_state = 2022, .external_lex_state = 10}, + [200] = {.lex_state = 2022, .external_lex_state = 9}, [201] = {.lex_state = 2022, .external_lex_state = 9}, - [202] = {.lex_state = 2022, .external_lex_state = 6}, - [203] = {.lex_state = 2022, .external_lex_state = 6}, - [204] = {.lex_state = 2022, .external_lex_state = 11}, - [205] = {.lex_state = 2022, .external_lex_state = 11}, + [202] = {.lex_state = 2, .external_lex_state = 11}, + [203] = {.lex_state = 2022, .external_lex_state = 5}, + [204] = {.lex_state = 2022, .external_lex_state = 12}, + [205] = {.lex_state = 2022, .external_lex_state = 12}, [206] = {.lex_state = 2022, .external_lex_state = 5}, - [207] = {.lex_state = 2022, .external_lex_state = 11}, - [208] = {.lex_state = 2022, .external_lex_state = 11}, - [209] = {.lex_state = 2022, .external_lex_state = 6}, + [207] = {.lex_state = 2022, .external_lex_state = 5}, + [208] = {.lex_state = 2022, .external_lex_state = 5}, + [209] = {.lex_state = 2022, .external_lex_state = 5}, [210] = {.lex_state = 2022, .external_lex_state = 5}, - [211] = {.lex_state = 2022, .external_lex_state = 6}, - [212] = {.lex_state = 2022, .external_lex_state = 5}, - [213] = {.lex_state = 2022, .external_lex_state = 6}, + [211] = {.lex_state = 2022, .external_lex_state = 5}, + [212] = {.lex_state = 2022, .external_lex_state = 12}, + [213] = {.lex_state = 2022, .external_lex_state = 5}, [214] = {.lex_state = 2022, .external_lex_state = 5}, - [215] = {.lex_state = 2022, .external_lex_state = 6}, + [215] = {.lex_state = 2022, .external_lex_state = 5}, [216] = {.lex_state = 2022, .external_lex_state = 5}, - [217] = {.lex_state = 2022, .external_lex_state = 6}, - [218] = {.lex_state = 2022, .external_lex_state = 6}, - [219] = {.lex_state = 2022, .external_lex_state = 6}, - [220] = {.lex_state = 2022, .external_lex_state = 6}, - [221] = {.lex_state = 2022, .external_lex_state = 6}, - [222] = {.lex_state = 2022, .external_lex_state = 6}, - [223] = {.lex_state = 2022, .external_lex_state = 6}, - [224] = {.lex_state = 2022, .external_lex_state = 6}, - [225] = {.lex_state = 2022, .external_lex_state = 6}, - [226] = {.lex_state = 2022, .external_lex_state = 6}, + [217] = {.lex_state = 2022, .external_lex_state = 5}, + [218] = {.lex_state = 2022, .external_lex_state = 5}, + [219] = {.lex_state = 2022, .external_lex_state = 5}, + [220] = {.lex_state = 2022, .external_lex_state = 5}, + [221] = {.lex_state = 2022, .external_lex_state = 5}, + [222] = {.lex_state = 2022, .external_lex_state = 5}, + [223] = {.lex_state = 2022, .external_lex_state = 5}, + [224] = {.lex_state = 2022, .external_lex_state = 5}, + [225] = {.lex_state = 2022, .external_lex_state = 5}, + [226] = {.lex_state = 2022, .external_lex_state = 5}, [227] = {.lex_state = 2022, .external_lex_state = 6}, [228] = {.lex_state = 2022, .external_lex_state = 6}, [229] = {.lex_state = 2022, .external_lex_state = 6}, - [230] = {.lex_state = 2022, .external_lex_state = 6}, + [230] = {.lex_state = 2022, .external_lex_state = 12}, [231] = {.lex_state = 2022, .external_lex_state = 6}, [232] = {.lex_state = 2022, .external_lex_state = 6}, [233] = {.lex_state = 2022, .external_lex_state = 6}, [234] = {.lex_state = 2022, .external_lex_state = 6}, [235] = {.lex_state = 2022, .external_lex_state = 6}, [236] = {.lex_state = 2022, .external_lex_state = 6}, - [237] = {.lex_state = 2022, .external_lex_state = 11}, + [237] = {.lex_state = 2022, .external_lex_state = 6}, [238] = {.lex_state = 2022, .external_lex_state = 6}, [239] = {.lex_state = 2022, .external_lex_state = 6}, - [240] = {.lex_state = 2022, .external_lex_state = 6}, + [240] = {.lex_state = 2022, .external_lex_state = 12}, [241] = {.lex_state = 2022, .external_lex_state = 6}, [242] = {.lex_state = 2022, .external_lex_state = 6}, - [243] = {.lex_state = 2022, .external_lex_state = 6}, + [243] = {.lex_state = 2022, .external_lex_state = 12}, [244] = {.lex_state = 2022, .external_lex_state = 6}, - [245] = {.lex_state = 2022, .external_lex_state = 6}, + [245] = {.lex_state = 2022, .external_lex_state = 12}, [246] = {.lex_state = 2022, .external_lex_state = 6}, - [247] = {.lex_state = 2022, .external_lex_state = 6}, - [248] = {.lex_state = 2022, .external_lex_state = 6}, - [249] = {.lex_state = 2022, .external_lex_state = 6}, + [247] = {.lex_state = 2022, .external_lex_state = 12}, + [248] = {.lex_state = 2022, .external_lex_state = 12}, + [249] = {.lex_state = 2022, .external_lex_state = 12}, [250] = {.lex_state = 2022, .external_lex_state = 6}, - [251] = {.lex_state = 2022, .external_lex_state = 6}, + [251] = {.lex_state = 2022, .external_lex_state = 12}, [252] = {.lex_state = 2022, .external_lex_state = 6}, [253] = {.lex_state = 2022, .external_lex_state = 6}, [254] = {.lex_state = 2022, .external_lex_state = 6}, @@ -19630,545 +19691,545 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [257] = {.lex_state = 2022, .external_lex_state = 6}, [258] = {.lex_state = 2022, .external_lex_state = 6}, [259] = {.lex_state = 2022, .external_lex_state = 6}, - [260] = {.lex_state = 2022, .external_lex_state = 6}, - [261] = {.lex_state = 2022, .external_lex_state = 6}, + [260] = {.lex_state = 2022, .external_lex_state = 12}, + [261] = {.lex_state = 2022, .external_lex_state = 12}, [262] = {.lex_state = 2022, .external_lex_state = 6}, [263] = {.lex_state = 2022, .external_lex_state = 6}, - [264] = {.lex_state = 2022, .external_lex_state = 11}, + [264] = {.lex_state = 2022, .external_lex_state = 12}, [265] = {.lex_state = 2022, .external_lex_state = 6}, - [266] = {.lex_state = 2022, .external_lex_state = 11}, - [267] = {.lex_state = 2022, .external_lex_state = 6}, + [266] = {.lex_state = 2022, .external_lex_state = 6}, + [267] = {.lex_state = 2022, .external_lex_state = 12}, [268] = {.lex_state = 2022, .external_lex_state = 6}, [269] = {.lex_state = 2022, .external_lex_state = 6}, - [270] = {.lex_state = 2022, .external_lex_state = 6}, - [271] = {.lex_state = 2022, .external_lex_state = 11}, - [272] = {.lex_state = 2, .external_lex_state = 12}, - [273] = {.lex_state = 2, .external_lex_state = 12}, - [274] = {.lex_state = 2022, .external_lex_state = 11}, - [275] = {.lex_state = 2022, .external_lex_state = 11}, - [276] = {.lex_state = 2022, .external_lex_state = 11}, + [270] = {.lex_state = 2022, .external_lex_state = 12}, + [271] = {.lex_state = 2022, .external_lex_state = 6}, + [272] = {.lex_state = 2022, .external_lex_state = 6}, + [273] = {.lex_state = 2022, .external_lex_state = 6}, + [274] = {.lex_state = 2022, .external_lex_state = 6}, + [275] = {.lex_state = 2022, .external_lex_state = 6}, + [276] = {.lex_state = 2022, .external_lex_state = 6}, [277] = {.lex_state = 2022, .external_lex_state = 6}, - [278] = {.lex_state = 2022, .external_lex_state = 11}, + [278] = {.lex_state = 2022, .external_lex_state = 6}, [279] = {.lex_state = 2022, .external_lex_state = 6}, - [280] = {.lex_state = 2022, .external_lex_state = 5}, - [281] = {.lex_state = 2022, .external_lex_state = 5}, + [280] = {.lex_state = 2022, .external_lex_state = 6}, + [281] = {.lex_state = 2022, .external_lex_state = 6}, [282] = {.lex_state = 2022, .external_lex_state = 6}, - [283] = {.lex_state = 2022, .external_lex_state = 11}, - [284] = {.lex_state = 2022, .external_lex_state = 11}, - [285] = {.lex_state = 2022, .external_lex_state = 11}, - [286] = {.lex_state = 2022, .external_lex_state = 11}, - [287] = {.lex_state = 2022, .external_lex_state = 5}, + [283] = {.lex_state = 2022, .external_lex_state = 6}, + [284] = {.lex_state = 2022, .external_lex_state = 6}, + [285] = {.lex_state = 2022, .external_lex_state = 6}, + [286] = {.lex_state = 2022, .external_lex_state = 6}, + [287] = {.lex_state = 2022, .external_lex_state = 6}, [288] = {.lex_state = 2022, .external_lex_state = 6}, - [289] = {.lex_state = 2022, .external_lex_state = 5}, - [290] = {.lex_state = 2022, .external_lex_state = 5}, + [289] = {.lex_state = 2022, .external_lex_state = 6}, + [290] = {.lex_state = 2022, .external_lex_state = 6}, [291] = {.lex_state = 2022, .external_lex_state = 6}, - [292] = {.lex_state = 2, .external_lex_state = 12}, - [293] = {.lex_state = 2, .external_lex_state = 12}, + [292] = {.lex_state = 2022, .external_lex_state = 6}, + [293] = {.lex_state = 2022, .external_lex_state = 6}, [294] = {.lex_state = 2022, .external_lex_state = 6}, - [295] = {.lex_state = 2022, .external_lex_state = 5}, - [296] = {.lex_state = 2022, .external_lex_state = 5}, - [297] = {.lex_state = 2022, .external_lex_state = 5}, - [298] = {.lex_state = 2022, .external_lex_state = 5}, - [299] = {.lex_state = 2, .external_lex_state = 12}, - [300] = {.lex_state = 2022, .external_lex_state = 11}, - [301] = {.lex_state = 2022, .external_lex_state = 11}, - [302] = {.lex_state = 2022, .external_lex_state = 11}, - [303] = {.lex_state = 2022, .external_lex_state = 11}, + [295] = {.lex_state = 2022, .external_lex_state = 6}, + [296] = {.lex_state = 2022, .external_lex_state = 6}, + [297] = {.lex_state = 2022, .external_lex_state = 6}, + [298] = {.lex_state = 2022, .external_lex_state = 6}, + [299] = {.lex_state = 2022, .external_lex_state = 6}, + [300] = {.lex_state = 2022, .external_lex_state = 6}, + [301] = {.lex_state = 2022, .external_lex_state = 6}, + [302] = {.lex_state = 2022, .external_lex_state = 6}, + [303] = {.lex_state = 2022, .external_lex_state = 6}, [304] = {.lex_state = 2022, .external_lex_state = 6}, - [305] = {.lex_state = 2022, .external_lex_state = 5}, - [306] = {.lex_state = 2022, .external_lex_state = 5}, - [307] = {.lex_state = 2022, .external_lex_state = 5}, - [308] = {.lex_state = 2022, .external_lex_state = 5}, - [309] = {.lex_state = 2022, .external_lex_state = 5}, + [305] = {.lex_state = 2022, .external_lex_state = 6}, + [306] = {.lex_state = 2022, .external_lex_state = 6}, + [307] = {.lex_state = 2022, .external_lex_state = 6}, + [308] = {.lex_state = 2022, .external_lex_state = 6}, + [309] = {.lex_state = 2, .external_lex_state = 11}, [310] = {.lex_state = 2022, .external_lex_state = 6}, - [311] = {.lex_state = 2, .external_lex_state = 12}, - [312] = {.lex_state = 2, .external_lex_state = 12}, - [313] = {.lex_state = 2, .external_lex_state = 12}, - [314] = {.lex_state = 2, .external_lex_state = 12}, - [315] = {.lex_state = 2, .external_lex_state = 12}, - [316] = {.lex_state = 2, .external_lex_state = 12}, - [317] = {.lex_state = 2, .external_lex_state = 12}, - [318] = {.lex_state = 2, .external_lex_state = 12}, - [319] = {.lex_state = 2, .external_lex_state = 12}, - [320] = {.lex_state = 2, .external_lex_state = 12}, - [321] = {.lex_state = 2, .external_lex_state = 12}, - [322] = {.lex_state = 2, .external_lex_state = 12}, - [323] = {.lex_state = 2, .external_lex_state = 12}, - [324] = {.lex_state = 2, .external_lex_state = 12}, - [325] = {.lex_state = 2, .external_lex_state = 12}, - [326] = {.lex_state = 2, .external_lex_state = 12}, - [327] = {.lex_state = 2, .external_lex_state = 12}, - [328] = {.lex_state = 2, .external_lex_state = 12}, - [329] = {.lex_state = 2, .external_lex_state = 12}, - [330] = {.lex_state = 2, .external_lex_state = 12}, - [331] = {.lex_state = 2, .external_lex_state = 12}, - [332] = {.lex_state = 2, .external_lex_state = 12}, - [333] = {.lex_state = 2, .external_lex_state = 12}, - [334] = {.lex_state = 2, .external_lex_state = 12}, - [335] = {.lex_state = 2, .external_lex_state = 12}, - [336] = {.lex_state = 2, .external_lex_state = 12}, - [337] = {.lex_state = 2022, .external_lex_state = 5}, - [338] = {.lex_state = 2022, .external_lex_state = 5}, - [339] = {.lex_state = 2022, .external_lex_state = 5}, - [340] = {.lex_state = 2022, .external_lex_state = 6}, - [341] = {.lex_state = 2022, .external_lex_state = 6}, - [342] = {.lex_state = 2022, .external_lex_state = 6}, - [343] = {.lex_state = 2022, .external_lex_state = 6}, - [344] = {.lex_state = 2022, .external_lex_state = 6}, - [345] = {.lex_state = 2022, .external_lex_state = 6}, - [346] = {.lex_state = 2022, .external_lex_state = 5}, - [347] = {.lex_state = 2022, .external_lex_state = 11}, - [348] = {.lex_state = 2022, .external_lex_state = 11}, - [349] = {.lex_state = 2, .external_lex_state = 12}, - [350] = {.lex_state = 2022, .external_lex_state = 11}, - [351] = {.lex_state = 2022, .external_lex_state = 2}, + [311] = {.lex_state = 2022, .external_lex_state = 6}, + [312] = {.lex_state = 2022, .external_lex_state = 6}, + [313] = {.lex_state = 2, .external_lex_state = 11}, + [314] = {.lex_state = 2, .external_lex_state = 11}, + [315] = {.lex_state = 2, .external_lex_state = 11}, + [316] = {.lex_state = 2, .external_lex_state = 11}, + [317] = {.lex_state = 2, .external_lex_state = 11}, + [318] = {.lex_state = 2022, .external_lex_state = 5}, + [319] = {.lex_state = 2022, .external_lex_state = 5}, + [320] = {.lex_state = 2022, .external_lex_state = 12}, + [321] = {.lex_state = 2, .external_lex_state = 11}, + [322] = {.lex_state = 2, .external_lex_state = 11}, + [323] = {.lex_state = 2, .external_lex_state = 11}, + [324] = {.lex_state = 2, .external_lex_state = 11}, + [325] = {.lex_state = 2, .external_lex_state = 11}, + [326] = {.lex_state = 2, .external_lex_state = 11}, + [327] = {.lex_state = 2, .external_lex_state = 11}, + [328] = {.lex_state = 2, .external_lex_state = 11}, + [329] = {.lex_state = 2, .external_lex_state = 11}, + [330] = {.lex_state = 2, .external_lex_state = 11}, + [331] = {.lex_state = 2, .external_lex_state = 11}, + [332] = {.lex_state = 2, .external_lex_state = 11}, + [333] = {.lex_state = 2, .external_lex_state = 11}, + [334] = {.lex_state = 2, .external_lex_state = 11}, + [335] = {.lex_state = 2, .external_lex_state = 11}, + [336] = {.lex_state = 2, .external_lex_state = 11}, + [337] = {.lex_state = 2022, .external_lex_state = 12}, + [338] = {.lex_state = 2, .external_lex_state = 11}, + [339] = {.lex_state = 2, .external_lex_state = 11}, + [340] = {.lex_state = 2, .external_lex_state = 11}, + [341] = {.lex_state = 2, .external_lex_state = 11}, + [342] = {.lex_state = 2, .external_lex_state = 11}, + [343] = {.lex_state = 2, .external_lex_state = 11}, + [344] = {.lex_state = 2, .external_lex_state = 11}, + [345] = {.lex_state = 2, .external_lex_state = 11}, + [346] = {.lex_state = 2, .external_lex_state = 11}, + [347] = {.lex_state = 2022, .external_lex_state = 12}, + [348] = {.lex_state = 2022, .external_lex_state = 12}, + [349] = {.lex_state = 2022, .external_lex_state = 12}, + [350] = {.lex_state = 2022, .external_lex_state = 12}, + [351] = {.lex_state = 2022, .external_lex_state = 12}, [352] = {.lex_state = 2022, .external_lex_state = 7}, - [353] = {.lex_state = 2022, .external_lex_state = 2}, - [354] = {.lex_state = 2022, .external_lex_state = 2}, - [355] = {.lex_state = 2022, .external_lex_state = 2}, + [353] = {.lex_state = 2022, .external_lex_state = 7}, + [354] = {.lex_state = 2022, .external_lex_state = 7}, + [355] = {.lex_state = 2022, .external_lex_state = 7}, [356] = {.lex_state = 2022, .external_lex_state = 2}, - [357] = {.lex_state = 2022, .external_lex_state = 2}, - [358] = {.lex_state = 2022, .external_lex_state = 2}, + [357] = {.lex_state = 2022, .external_lex_state = 7}, + [358] = {.lex_state = 2022, .external_lex_state = 7}, [359] = {.lex_state = 2022, .external_lex_state = 2}, - [360] = {.lex_state = 2022, .external_lex_state = 2}, + [360] = {.lex_state = 2022, .external_lex_state = 7}, [361] = {.lex_state = 2022, .external_lex_state = 2}, - [362] = {.lex_state = 2022, .external_lex_state = 2}, + [362] = {.lex_state = 2022, .external_lex_state = 10}, [363] = {.lex_state = 2022, .external_lex_state = 2}, [364] = {.lex_state = 2022, .external_lex_state = 2}, - [365] = {.lex_state = 2022, .external_lex_state = 2}, + [365] = {.lex_state = 2022, .external_lex_state = 13}, [366] = {.lex_state = 2022, .external_lex_state = 2}, [367] = {.lex_state = 2022, .external_lex_state = 2}, [368] = {.lex_state = 2022, .external_lex_state = 2}, [369] = {.lex_state = 2022, .external_lex_state = 2}, [370] = {.lex_state = 2022, .external_lex_state = 2}, - [371] = {.lex_state = 2022, .external_lex_state = 2}, - [372] = {.lex_state = 2022, .external_lex_state = 2}, - [373] = {.lex_state = 2022, .external_lex_state = 2}, - [374] = {.lex_state = 2022, .external_lex_state = 2}, + [371] = {.lex_state = 2022, .external_lex_state = 13}, + [372] = {.lex_state = 2022, .external_lex_state = 10}, + [373] = {.lex_state = 2022, .external_lex_state = 13}, + [374] = {.lex_state = 2022, .external_lex_state = 7}, [375] = {.lex_state = 2022, .external_lex_state = 2}, [376] = {.lex_state = 2022, .external_lex_state = 2}, [377] = {.lex_state = 2022, .external_lex_state = 2}, [378] = {.lex_state = 2022, .external_lex_state = 2}, [379] = {.lex_state = 2022, .external_lex_state = 2}, - [380] = {.lex_state = 2022, .external_lex_state = 2}, + [380] = {.lex_state = 2022, .external_lex_state = 7}, [381] = {.lex_state = 2022, .external_lex_state = 2}, - [382] = {.lex_state = 2022, .external_lex_state = 2}, + [382] = {.lex_state = 2022, .external_lex_state = 7}, [383] = {.lex_state = 2022, .external_lex_state = 2}, - [384] = {.lex_state = 2022, .external_lex_state = 2}, - [385] = {.lex_state = 2022, .external_lex_state = 2}, + [384] = {.lex_state = 2022, .external_lex_state = 7}, + [385] = {.lex_state = 2022, .external_lex_state = 7}, [386] = {.lex_state = 2022, .external_lex_state = 2}, - [387] = {.lex_state = 2022, .external_lex_state = 2}, - [388] = {.lex_state = 2022, .external_lex_state = 2}, - [389] = {.lex_state = 2022, .external_lex_state = 2}, + [387] = {.lex_state = 2022, .external_lex_state = 7}, + [388] = {.lex_state = 2022, .external_lex_state = 7}, + [389] = {.lex_state = 2022, .external_lex_state = 7}, [390] = {.lex_state = 2022, .external_lex_state = 2}, [391] = {.lex_state = 2022, .external_lex_state = 2}, - [392] = {.lex_state = 2022, .external_lex_state = 2}, + [392] = {.lex_state = 2022, .external_lex_state = 7}, [393] = {.lex_state = 2022, .external_lex_state = 7}, - [394] = {.lex_state = 2022, .external_lex_state = 7}, - [395] = {.lex_state = 2022, .external_lex_state = 2}, + [394] = {.lex_state = 2022, .external_lex_state = 2}, + [395] = {.lex_state = 2022, .external_lex_state = 7}, [396] = {.lex_state = 2022, .external_lex_state = 2}, - [397] = {.lex_state = 2022, .external_lex_state = 2}, + [397] = {.lex_state = 2022, .external_lex_state = 7}, [398] = {.lex_state = 2022, .external_lex_state = 7}, [399] = {.lex_state = 2022, .external_lex_state = 2}, - [400] = {.lex_state = 2022, .external_lex_state = 2}, - [401] = {.lex_state = 2022, .external_lex_state = 2}, - [402] = {.lex_state = 2022, .external_lex_state = 2}, + [400] = {.lex_state = 2022, .external_lex_state = 7}, + [401] = {.lex_state = 2022, .external_lex_state = 7}, + [402] = {.lex_state = 2022, .external_lex_state = 10}, [403] = {.lex_state = 2022, .external_lex_state = 2}, - [404] = {.lex_state = 2022, .external_lex_state = 7}, - [405] = {.lex_state = 2022, .external_lex_state = 7}, - [406] = {.lex_state = 2022, .external_lex_state = 7}, + [404] = {.lex_state = 2022, .external_lex_state = 10}, + [405] = {.lex_state = 2022, .external_lex_state = 2}, + [406] = {.lex_state = 2022, .external_lex_state = 13}, [407] = {.lex_state = 2022, .external_lex_state = 2}, [408] = {.lex_state = 2022, .external_lex_state = 7}, - [409] = {.lex_state = 2022, .external_lex_state = 7}, + [409] = {.lex_state = 2022, .external_lex_state = 2}, [410] = {.lex_state = 2022, .external_lex_state = 7}, - [411] = {.lex_state = 2022, .external_lex_state = 7}, - [412] = {.lex_state = 2022, .external_lex_state = 7}, - [413] = {.lex_state = 2022, .external_lex_state = 7}, + [411] = {.lex_state = 2022, .external_lex_state = 2}, + [412] = {.lex_state = 2022, .external_lex_state = 2}, + [413] = {.lex_state = 2022, .external_lex_state = 2}, [414] = {.lex_state = 2022, .external_lex_state = 7}, - [415] = {.lex_state = 2022, .external_lex_state = 10}, - [416] = {.lex_state = 2022, .external_lex_state = 13}, + [415] = {.lex_state = 2022, .external_lex_state = 7}, + [416] = {.lex_state = 2022, .external_lex_state = 7}, [417] = {.lex_state = 2022, .external_lex_state = 7}, [418] = {.lex_state = 2022, .external_lex_state = 7}, [419] = {.lex_state = 2022, .external_lex_state = 7}, [420] = {.lex_state = 2022, .external_lex_state = 7}, - [421] = {.lex_state = 2022, .external_lex_state = 2}, + [421] = {.lex_state = 2022, .external_lex_state = 7}, [422] = {.lex_state = 2022, .external_lex_state = 7}, - [423] = {.lex_state = 2022, .external_lex_state = 2}, - [424] = {.lex_state = 2022, .external_lex_state = 2}, + [423] = {.lex_state = 2022, .external_lex_state = 7}, + [424] = {.lex_state = 2022, .external_lex_state = 7}, [425] = {.lex_state = 2022, .external_lex_state = 7}, - [426] = {.lex_state = 2022, .external_lex_state = 2}, - [427] = {.lex_state = 2022, .external_lex_state = 2}, - [428] = {.lex_state = 2022, .external_lex_state = 2}, - [429] = {.lex_state = 2022, .external_lex_state = 2}, - [430] = {.lex_state = 2022, .external_lex_state = 2}, + [426] = {.lex_state = 2022, .external_lex_state = 7}, + [427] = {.lex_state = 2022, .external_lex_state = 7}, + [428] = {.lex_state = 2022, .external_lex_state = 10}, + [429] = {.lex_state = 2022, .external_lex_state = 7}, + [430] = {.lex_state = 2022, .external_lex_state = 7}, [431] = {.lex_state = 2022, .external_lex_state = 7}, [432] = {.lex_state = 2022, .external_lex_state = 7}, [433] = {.lex_state = 2022, .external_lex_state = 7}, [434] = {.lex_state = 2022, .external_lex_state = 7}, [435] = {.lex_state = 2022, .external_lex_state = 7}, - [436] = {.lex_state = 2022, .external_lex_state = 7}, + [436] = {.lex_state = 2022, .external_lex_state = 2}, [437] = {.lex_state = 2022, .external_lex_state = 7}, [438] = {.lex_state = 2022, .external_lex_state = 7}, [439] = {.lex_state = 2022, .external_lex_state = 7}, - [440] = {.lex_state = 2022, .external_lex_state = 10}, - [441] = {.lex_state = 2022, .external_lex_state = 13}, - [442] = {.lex_state = 2022, .external_lex_state = 13}, - [443] = {.lex_state = 2022, .external_lex_state = 10}, - [444] = {.lex_state = 2022, .external_lex_state = 13}, + [440] = {.lex_state = 2022, .external_lex_state = 7}, + [441] = {.lex_state = 2022, .external_lex_state = 2}, + [442] = {.lex_state = 2022, .external_lex_state = 7}, + [443] = {.lex_state = 2022, .external_lex_state = 7}, + [444] = {.lex_state = 2022, .external_lex_state = 7}, [445] = {.lex_state = 2022, .external_lex_state = 7}, [446] = {.lex_state = 2022, .external_lex_state = 2}, [447] = {.lex_state = 2022, .external_lex_state = 7}, - [448] = {.lex_state = 2022, .external_lex_state = 7}, - [449] = {.lex_state = 2022, .external_lex_state = 2}, + [448] = {.lex_state = 2022, .external_lex_state = 2}, + [449] = {.lex_state = 2022, .external_lex_state = 7}, [450] = {.lex_state = 2022, .external_lex_state = 7}, [451] = {.lex_state = 2022, .external_lex_state = 2}, - [452] = {.lex_state = 2022, .external_lex_state = 7}, + [452] = {.lex_state = 2022, .external_lex_state = 2}, [453] = {.lex_state = 2022, .external_lex_state = 2}, - [454] = {.lex_state = 2022, .external_lex_state = 7}, - [455] = {.lex_state = 2022, .external_lex_state = 7}, + [454] = {.lex_state = 2022, .external_lex_state = 2}, + [455] = {.lex_state = 2022, .external_lex_state = 2}, [456] = {.lex_state = 2022, .external_lex_state = 2}, - [457] = {.lex_state = 2022, .external_lex_state = 7}, + [457] = {.lex_state = 2022, .external_lex_state = 2}, [458] = {.lex_state = 2022, .external_lex_state = 7}, [459] = {.lex_state = 2022, .external_lex_state = 2}, - [460] = {.lex_state = 2022, .external_lex_state = 7}, - [461] = {.lex_state = 2022, .external_lex_state = 10}, - [462] = {.lex_state = 2022, .external_lex_state = 10}, - [463] = {.lex_state = 2022, .external_lex_state = 13}, - [464] = {.lex_state = 2022, .external_lex_state = 7}, - [465] = {.lex_state = 2022, .external_lex_state = 7}, + [460] = {.lex_state = 2022, .external_lex_state = 2}, + [461] = {.lex_state = 2022, .external_lex_state = 2}, + [462] = {.lex_state = 2022, .external_lex_state = 2}, + [463] = {.lex_state = 2022, .external_lex_state = 2}, + [464] = {.lex_state = 2022, .external_lex_state = 2}, + [465] = {.lex_state = 2022, .external_lex_state = 2}, [466] = {.lex_state = 2022, .external_lex_state = 2}, - [467] = {.lex_state = 2022, .external_lex_state = 7}, + [467] = {.lex_state = 2022, .external_lex_state = 2}, [468] = {.lex_state = 2022, .external_lex_state = 7}, - [469] = {.lex_state = 2022, .external_lex_state = 2}, - [470] = {.lex_state = 2022, .external_lex_state = 7}, + [469] = {.lex_state = 2022, .external_lex_state = 7}, + [470] = {.lex_state = 2022, .external_lex_state = 2}, [471] = {.lex_state = 2022, .external_lex_state = 2}, - [472] = {.lex_state = 2022, .external_lex_state = 7}, - [473] = {.lex_state = 2022, .external_lex_state = 2}, + [472] = {.lex_state = 2022, .external_lex_state = 2}, + [473] = {.lex_state = 2022, .external_lex_state = 7}, [474] = {.lex_state = 2022, .external_lex_state = 7}, - [475] = {.lex_state = 2022, .external_lex_state = 2}, - [476] = {.lex_state = 2022, .external_lex_state = 7}, - [477] = {.lex_state = 2022, .external_lex_state = 7}, + [475] = {.lex_state = 2022, .external_lex_state = 7}, + [476] = {.lex_state = 2022, .external_lex_state = 2}, + [477] = {.lex_state = 2022, .external_lex_state = 2}, [478] = {.lex_state = 2022, .external_lex_state = 7}, [479] = {.lex_state = 2022, .external_lex_state = 10}, - [480] = {.lex_state = 2022, .external_lex_state = 7}, - [481] = {.lex_state = 2022, .external_lex_state = 7}, - [482] = {.lex_state = 2022, .external_lex_state = 7}, - [483] = {.lex_state = 2022, .external_lex_state = 7}, - [484] = {.lex_state = 2022, .external_lex_state = 7}, - [485] = {.lex_state = 2022, .external_lex_state = 7}, - [486] = {.lex_state = 2022, .external_lex_state = 7}, - [487] = {.lex_state = 2022, .external_lex_state = 7}, - [488] = {.lex_state = 2022, .external_lex_state = 7}, - [489] = {.lex_state = 2022, .external_lex_state = 7}, - [490] = {.lex_state = 2022, .external_lex_state = 7}, - [491] = {.lex_state = 2022, .external_lex_state = 7}, - [492] = {.lex_state = 2022, .external_lex_state = 7}, - [493] = {.lex_state = 2022, .external_lex_state = 7}, + [480] = {.lex_state = 2022, .external_lex_state = 2}, + [481] = {.lex_state = 2022, .external_lex_state = 2}, + [482] = {.lex_state = 2022, .external_lex_state = 2}, + [483] = {.lex_state = 2022, .external_lex_state = 2}, + [484] = {.lex_state = 2022, .external_lex_state = 2}, + [485] = {.lex_state = 2022, .external_lex_state = 2}, + [486] = {.lex_state = 2022, .external_lex_state = 13}, + [487] = {.lex_state = 2022, .external_lex_state = 2}, + [488] = {.lex_state = 2022, .external_lex_state = 2}, + [489] = {.lex_state = 2022, .external_lex_state = 2}, + [490] = {.lex_state = 2022, .external_lex_state = 2}, + [491] = {.lex_state = 2022, .external_lex_state = 2}, + [492] = {.lex_state = 2022, .external_lex_state = 2}, + [493] = {.lex_state = 2022, .external_lex_state = 2}, [494] = {.lex_state = 2022, .external_lex_state = 7}, - [495] = {.lex_state = 2022, .external_lex_state = 7}, + [495] = {.lex_state = 2022, .external_lex_state = 2}, [496] = {.lex_state = 2022, .external_lex_state = 7}, [497] = {.lex_state = 2022, .external_lex_state = 7}, [498] = {.lex_state = 2022, .external_lex_state = 7}, [499] = {.lex_state = 2022, .external_lex_state = 7}, - [500] = {.lex_state = 2022, .external_lex_state = 7}, + [500] = {.lex_state = 2022, .external_lex_state = 2}, [501] = {.lex_state = 2022, .external_lex_state = 7}, - [502] = {.lex_state = 2022, .external_lex_state = 2}, - [503] = {.lex_state = 2022, .external_lex_state = 14}, - [504] = {.lex_state = 2022, .external_lex_state = 12}, - [505] = {.lex_state = 2022, .external_lex_state = 12}, - [506] = {.lex_state = 1, .external_lex_state = 12}, - [507] = {.lex_state = 1, .external_lex_state = 12}, - [508] = {.lex_state = 1, .external_lex_state = 12}, - [509] = {.lex_state = 1, .external_lex_state = 12}, - [510] = {.lex_state = 2022, .external_lex_state = 14}, - [511] = {.lex_state = 1, .external_lex_state = 12}, - [512] = {.lex_state = 1, .external_lex_state = 12}, - [513] = {.lex_state = 1, .external_lex_state = 12}, - [514] = {.lex_state = 1, .external_lex_state = 12}, - [515] = {.lex_state = 1, .external_lex_state = 12}, - [516] = {.lex_state = 2022, .external_lex_state = 14}, - [517] = {.lex_state = 1, .external_lex_state = 12}, - [518] = {.lex_state = 1, .external_lex_state = 12}, - [519] = {.lex_state = 1, .external_lex_state = 12}, - [520] = {.lex_state = 1, .external_lex_state = 12}, - [521] = {.lex_state = 1, .external_lex_state = 12}, - [522] = {.lex_state = 1, .external_lex_state = 12}, - [523] = {.lex_state = 1, .external_lex_state = 12}, - [524] = {.lex_state = 1, .external_lex_state = 12}, - [525] = {.lex_state = 1, .external_lex_state = 12}, - [526] = {.lex_state = 1, .external_lex_state = 12}, - [527] = {.lex_state = 1, .external_lex_state = 12}, - [528] = {.lex_state = 1, .external_lex_state = 12}, - [529] = {.lex_state = 1, .external_lex_state = 12}, - [530] = {.lex_state = 1, .external_lex_state = 12}, - [531] = {.lex_state = 1, .external_lex_state = 12}, - [532] = {.lex_state = 1, .external_lex_state = 12}, - [533] = {.lex_state = 2022, .external_lex_state = 14}, - [534] = {.lex_state = 1, .external_lex_state = 12}, - [535] = {.lex_state = 1, .external_lex_state = 12}, - [536] = {.lex_state = 1, .external_lex_state = 12}, - [537] = {.lex_state = 1, .external_lex_state = 12}, - [538] = {.lex_state = 2022, .external_lex_state = 14}, - [539] = {.lex_state = 2022, .external_lex_state = 14}, - [540] = {.lex_state = 1, .external_lex_state = 12}, - [541] = {.lex_state = 1, .external_lex_state = 12}, - [542] = {.lex_state = 1, .external_lex_state = 12}, - [543] = {.lex_state = 1, .external_lex_state = 12}, - [544] = {.lex_state = 2022, .external_lex_state = 14}, - [545] = {.lex_state = 2022, .external_lex_state = 14}, - [546] = {.lex_state = 1, .external_lex_state = 12}, - [547] = {.lex_state = 1, .external_lex_state = 12}, - [548] = {.lex_state = 1, .external_lex_state = 12}, - [549] = {.lex_state = 1, .external_lex_state = 12}, - [550] = {.lex_state = 2022, .external_lex_state = 14}, - [551] = {.lex_state = 2022, .external_lex_state = 15}, - [552] = {.lex_state = 1, .external_lex_state = 12}, - [553] = {.lex_state = 1, .external_lex_state = 12}, - [554] = {.lex_state = 1, .external_lex_state = 12}, - [555] = {.lex_state = 1, .external_lex_state = 12}, - [556] = {.lex_state = 2022, .external_lex_state = 15}, - [557] = {.lex_state = 1, .external_lex_state = 12}, - [558] = {.lex_state = 1, .external_lex_state = 12}, - [559] = {.lex_state = 1, .external_lex_state = 12}, - [560] = {.lex_state = 1, .external_lex_state = 12}, - [561] = {.lex_state = 2022, .external_lex_state = 12}, - [562] = {.lex_state = 1, .external_lex_state = 12}, - [563] = {.lex_state = 1, .external_lex_state = 12}, - [564] = {.lex_state = 1, .external_lex_state = 12}, - [565] = {.lex_state = 1, .external_lex_state = 12}, - [566] = {.lex_state = 1, .external_lex_state = 12}, - [567] = {.lex_state = 2022, .external_lex_state = 14}, - [568] = {.lex_state = 1, .external_lex_state = 12}, - [569] = {.lex_state = 1, .external_lex_state = 12}, - [570] = {.lex_state = 1, .external_lex_state = 12}, - [571] = {.lex_state = 1, .external_lex_state = 12}, + [502] = {.lex_state = 2022, .external_lex_state = 7}, + [503] = {.lex_state = 2022, .external_lex_state = 7}, + [504] = {.lex_state = 2022, .external_lex_state = 2}, + [505] = {.lex_state = 2022, .external_lex_state = 7}, + [506] = {.lex_state = 1, .external_lex_state = 11}, + [507] = {.lex_state = 1, .external_lex_state = 11}, + [508] = {.lex_state = 1, .external_lex_state = 11}, + [509] = {.lex_state = 1, .external_lex_state = 11}, + [510] = {.lex_state = 1, .external_lex_state = 11}, + [511] = {.lex_state = 2022, .external_lex_state = 14}, + [512] = {.lex_state = 2022, .external_lex_state = 14}, + [513] = {.lex_state = 1, .external_lex_state = 11}, + [514] = {.lex_state = 1, .external_lex_state = 11}, + [515] = {.lex_state = 1, .external_lex_state = 11}, + [516] = {.lex_state = 1, .external_lex_state = 11}, + [517] = {.lex_state = 1, .external_lex_state = 11}, + [518] = {.lex_state = 1, .external_lex_state = 11}, + [519] = {.lex_state = 1, .external_lex_state = 11}, + [520] = {.lex_state = 1, .external_lex_state = 11}, + [521] = {.lex_state = 1, .external_lex_state = 11}, + [522] = {.lex_state = 1, .external_lex_state = 11}, + [523] = {.lex_state = 1, .external_lex_state = 11}, + [524] = {.lex_state = 1, .external_lex_state = 11}, + [525] = {.lex_state = 1, .external_lex_state = 11}, + [526] = {.lex_state = 1, .external_lex_state = 11}, + [527] = {.lex_state = 1, .external_lex_state = 11}, + [528] = {.lex_state = 1, .external_lex_state = 11}, + [529] = {.lex_state = 2022, .external_lex_state = 14}, + [530] = {.lex_state = 1, .external_lex_state = 11}, + [531] = {.lex_state = 1, .external_lex_state = 11}, + [532] = {.lex_state = 1, .external_lex_state = 11}, + [533] = {.lex_state = 1, .external_lex_state = 11}, + [534] = {.lex_state = 1, .external_lex_state = 11}, + [535] = {.lex_state = 1, .external_lex_state = 11}, + [536] = {.lex_state = 2022, .external_lex_state = 11}, + [537] = {.lex_state = 1, .external_lex_state = 11}, + [538] = {.lex_state = 1, .external_lex_state = 11}, + [539] = {.lex_state = 1, .external_lex_state = 11}, + [540] = {.lex_state = 1, .external_lex_state = 11}, + [541] = {.lex_state = 2022, .external_lex_state = 14}, + [542] = {.lex_state = 2022, .external_lex_state = 14}, + [543] = {.lex_state = 1, .external_lex_state = 11}, + [544] = {.lex_state = 1, .external_lex_state = 11}, + [545] = {.lex_state = 1, .external_lex_state = 11}, + [546] = {.lex_state = 1, .external_lex_state = 11}, + [547] = {.lex_state = 2022, .external_lex_state = 11}, + [548] = {.lex_state = 1, .external_lex_state = 11}, + [549] = {.lex_state = 1, .external_lex_state = 11}, + [550] = {.lex_state = 1, .external_lex_state = 11}, + [551] = {.lex_state = 1, .external_lex_state = 11}, + [552] = {.lex_state = 1, .external_lex_state = 11}, + [553] = {.lex_state = 2022, .external_lex_state = 14}, + [554] = {.lex_state = 2022, .external_lex_state = 14}, + [555] = {.lex_state = 1, .external_lex_state = 11}, + [556] = {.lex_state = 1, .external_lex_state = 11}, + [557] = {.lex_state = 1, .external_lex_state = 11}, + [558] = {.lex_state = 1, .external_lex_state = 11}, + [559] = {.lex_state = 1, .external_lex_state = 11}, + [560] = {.lex_state = 2022, .external_lex_state = 15}, + [561] = {.lex_state = 1, .external_lex_state = 11}, + [562] = {.lex_state = 1, .external_lex_state = 11}, + [563] = {.lex_state = 1, .external_lex_state = 11}, + [564] = {.lex_state = 1, .external_lex_state = 11}, + [565] = {.lex_state = 2022, .external_lex_state = 11}, + [566] = {.lex_state = 2022, .external_lex_state = 14}, + [567] = {.lex_state = 1, .external_lex_state = 11}, + [568] = {.lex_state = 1, .external_lex_state = 11}, + [569] = {.lex_state = 1, .external_lex_state = 11}, + [570] = {.lex_state = 1, .external_lex_state = 11}, + [571] = {.lex_state = 2022, .external_lex_state = 14}, [572] = {.lex_state = 2022, .external_lex_state = 14}, - [573] = {.lex_state = 1, .external_lex_state = 12}, - [574] = {.lex_state = 1, .external_lex_state = 12}, - [575] = {.lex_state = 1, .external_lex_state = 12}, - [576] = {.lex_state = 1, .external_lex_state = 12}, - [577] = {.lex_state = 1, .external_lex_state = 12}, - [578] = {.lex_state = 1, .external_lex_state = 12}, - [579] = {.lex_state = 1, .external_lex_state = 12}, - [580] = {.lex_state = 1, .external_lex_state = 12}, - [581] = {.lex_state = 2022, .external_lex_state = 14}, + [573] = {.lex_state = 1, .external_lex_state = 11}, + [574] = {.lex_state = 1, .external_lex_state = 11}, + [575] = {.lex_state = 1, .external_lex_state = 11}, + [576] = {.lex_state = 1, .external_lex_state = 11}, + [577] = {.lex_state = 1, .external_lex_state = 11}, + [578] = {.lex_state = 1, .external_lex_state = 11}, + [579] = {.lex_state = 2022, .external_lex_state = 14}, + [580] = {.lex_state = 2022, .external_lex_state = 14}, + [581] = {.lex_state = 1, .external_lex_state = 11}, [582] = {.lex_state = 2022, .external_lex_state = 14}, - [583] = {.lex_state = 2022, .external_lex_state = 14}, + [583] = {.lex_state = 2022, .external_lex_state = 11}, [584] = {.lex_state = 2022, .external_lex_state = 14}, - [585] = {.lex_state = 2022, .external_lex_state = 14}, - [586] = {.lex_state = 1, .external_lex_state = 12}, - [587] = {.lex_state = 1, .external_lex_state = 12}, - [588] = {.lex_state = 2022, .external_lex_state = 12}, - [589] = {.lex_state = 2022, .external_lex_state = 14}, - [590] = {.lex_state = 2022, .external_lex_state = 15}, + [585] = {.lex_state = 1, .external_lex_state = 11}, + [586] = {.lex_state = 2022, .external_lex_state = 14}, + [587] = {.lex_state = 2022, .external_lex_state = 14}, + [588] = {.lex_state = 1, .external_lex_state = 11}, + [589] = {.lex_state = 1, .external_lex_state = 11}, + [590] = {.lex_state = 1, .external_lex_state = 11}, [591] = {.lex_state = 2022, .external_lex_state = 14}, - [592] = {.lex_state = 2022, .external_lex_state = 12}, - [593] = {.lex_state = 2022, .external_lex_state = 16}, - [594] = {.lex_state = 2022, .external_lex_state = 17}, - [595] = {.lex_state = 2022, .external_lex_state = 10}, + [592] = {.lex_state = 2022, .external_lex_state = 15}, + [593] = {.lex_state = 2022, .external_lex_state = 15}, + [594] = {.lex_state = 2022, .external_lex_state = 14}, + [595] = {.lex_state = 2022, .external_lex_state = 11}, [596] = {.lex_state = 2022, .external_lex_state = 16}, - [597] = {.lex_state = 2022, .external_lex_state = 16}, - [598] = {.lex_state = 2022, .external_lex_state = 12}, - [599] = {.lex_state = 2022, .external_lex_state = 17}, - [600] = {.lex_state = 2022, .external_lex_state = 16}, - [601] = {.lex_state = 2022, .external_lex_state = 17}, - [602] = {.lex_state = 2022, .external_lex_state = 17}, - [603] = {.lex_state = 2022, .external_lex_state = 12}, - [604] = {.lex_state = 2022, .external_lex_state = 17}, - [605] = {.lex_state = 2022, .external_lex_state = 12}, - [606] = {.lex_state = 2022, .external_lex_state = 12}, - [607] = {.lex_state = 2022, .external_lex_state = 12}, - [608] = {.lex_state = 2022, .external_lex_state = 12}, - [609] = {.lex_state = 2022, .external_lex_state = 17}, - [610] = {.lex_state = 2022, .external_lex_state = 12}, - [611] = {.lex_state = 2022, .external_lex_state = 12}, - [612] = {.lex_state = 2022, .external_lex_state = 12}, - [613] = {.lex_state = 2022, .external_lex_state = 12}, - [614] = {.lex_state = 2022, .external_lex_state = 12}, - [615] = {.lex_state = 2022, .external_lex_state = 12}, - [616] = {.lex_state = 2022, .external_lex_state = 12}, - [617] = {.lex_state = 2022, .external_lex_state = 12}, - [618] = {.lex_state = 2022, .external_lex_state = 12}, - [619] = {.lex_state = 2022, .external_lex_state = 10}, - [620] = {.lex_state = 2022, .external_lex_state = 16}, - [621] = {.lex_state = 2, .external_lex_state = 18}, - [622] = {.lex_state = 2, .external_lex_state = 18}, - [623] = {.lex_state = 2, .external_lex_state = 18}, - [624] = {.lex_state = 2022, .external_lex_state = 18}, - [625] = {.lex_state = 2, .external_lex_state = 18}, - [626] = {.lex_state = 2, .external_lex_state = 18}, - [627] = {.lex_state = 2, .external_lex_state = 18}, + [597] = {.lex_state = 2022, .external_lex_state = 17}, + [598] = {.lex_state = 2022, .external_lex_state = 17}, + [599] = {.lex_state = 2022, .external_lex_state = 11}, + [600] = {.lex_state = 2022, .external_lex_state = 17}, + [601] = {.lex_state = 2022, .external_lex_state = 16}, + [602] = {.lex_state = 2022, .external_lex_state = 16}, + [603] = {.lex_state = 2022, .external_lex_state = 17}, + [604] = {.lex_state = 2022, .external_lex_state = 16}, + [605] = {.lex_state = 2022, .external_lex_state = 16}, + [606] = {.lex_state = 2022, .external_lex_state = 17}, + [607] = {.lex_state = 2022, .external_lex_state = 10}, + [608] = {.lex_state = 2022, .external_lex_state = 10}, + [609] = {.lex_state = 2022, .external_lex_state = 11}, + [610] = {.lex_state = 2022, .external_lex_state = 11}, + [611] = {.lex_state = 2022, .external_lex_state = 11}, + [612] = {.lex_state = 2022, .external_lex_state = 11}, + [613] = {.lex_state = 2022, .external_lex_state = 11}, + [614] = {.lex_state = 2022, .external_lex_state = 11}, + [615] = {.lex_state = 2022, .external_lex_state = 11}, + [616] = {.lex_state = 2022, .external_lex_state = 11}, + [617] = {.lex_state = 2022, .external_lex_state = 11}, + [618] = {.lex_state = 2022, .external_lex_state = 11}, + [619] = {.lex_state = 2022, .external_lex_state = 11}, + [620] = {.lex_state = 2022, .external_lex_state = 11}, + [621] = {.lex_state = 2022, .external_lex_state = 11}, + [622] = {.lex_state = 2022, .external_lex_state = 11}, + [623] = {.lex_state = 2022, .external_lex_state = 16}, + [624] = {.lex_state = 2, .external_lex_state = 18}, + [625] = {.lex_state = 2, .external_lex_state = 11}, + [626] = {.lex_state = 2, .external_lex_state = 11}, + [627] = {.lex_state = 2022, .external_lex_state = 18}, [628] = {.lex_state = 2, .external_lex_state = 18}, [629] = {.lex_state = 2, .external_lex_state = 18}, [630] = {.lex_state = 2, .external_lex_state = 18}, - [631] = {.lex_state = 2022, .external_lex_state = 19}, - [632] = {.lex_state = 2, .external_lex_state = 18}, - [633] = {.lex_state = 2, .external_lex_state = 18}, - [634] = {.lex_state = 2, .external_lex_state = 18}, + [631] = {.lex_state = 2, .external_lex_state = 18}, + [632] = {.lex_state = 2022, .external_lex_state = 19}, + [633] = {.lex_state = 2022, .external_lex_state = 19}, + [634] = {.lex_state = 2022, .external_lex_state = 18}, [635] = {.lex_state = 2, .external_lex_state = 18}, [636] = {.lex_state = 2, .external_lex_state = 18}, [637] = {.lex_state = 2, .external_lex_state = 18}, [638] = {.lex_state = 2, .external_lex_state = 18}, [639] = {.lex_state = 2, .external_lex_state = 18}, [640] = {.lex_state = 2, .external_lex_state = 18}, - [641] = {.lex_state = 2, .external_lex_state = 18}, - [642] = {.lex_state = 2, .external_lex_state = 18}, + [641] = {.lex_state = 2022, .external_lex_state = 19}, + [642] = {.lex_state = 2022, .external_lex_state = 15}, [643] = {.lex_state = 2, .external_lex_state = 18}, - [644] = {.lex_state = 2, .external_lex_state = 18}, + [644] = {.lex_state = 2, .external_lex_state = 11}, [645] = {.lex_state = 2, .external_lex_state = 18}, - [646] = {.lex_state = 2, .external_lex_state = 12}, - [647] = {.lex_state = 2, .external_lex_state = 12}, - [648] = {.lex_state = 2022, .external_lex_state = 15}, - [649] = {.lex_state = 2, .external_lex_state = 12}, - [650] = {.lex_state = 2022, .external_lex_state = 18}, + [646] = {.lex_state = 2, .external_lex_state = 18}, + [647] = {.lex_state = 2022, .external_lex_state = 15}, + [648] = {.lex_state = 2, .external_lex_state = 18}, + [649] = {.lex_state = 2, .external_lex_state = 18}, + [650] = {.lex_state = 2, .external_lex_state = 18}, [651] = {.lex_state = 2, .external_lex_state = 18}, [652] = {.lex_state = 2, .external_lex_state = 18}, - [653] = {.lex_state = 2022, .external_lex_state = 19}, - [654] = {.lex_state = 2022, .external_lex_state = 15}, + [653] = {.lex_state = 2, .external_lex_state = 18}, + [654] = {.lex_state = 2, .external_lex_state = 18}, [655] = {.lex_state = 2, .external_lex_state = 18}, [656] = {.lex_state = 2, .external_lex_state = 18}, [657] = {.lex_state = 2, .external_lex_state = 18}, [658] = {.lex_state = 2, .external_lex_state = 18}, - [659] = {.lex_state = 2022, .external_lex_state = 19}, + [659] = {.lex_state = 2, .external_lex_state = 18}, [660] = {.lex_state = 2, .external_lex_state = 18}, [661] = {.lex_state = 2, .external_lex_state = 18}, [662] = {.lex_state = 2, .external_lex_state = 18}, - [663] = {.lex_state = 3, .external_lex_state = 12}, - [664] = {.lex_state = 2022, .external_lex_state = 20}, - [665] = {.lex_state = 2022, .external_lex_state = 21}, - [666] = {.lex_state = 2022, .external_lex_state = 21}, - [667] = {.lex_state = 2022, .external_lex_state = 22}, - [668] = {.lex_state = 2022, .external_lex_state = 23}, - [669] = {.lex_state = 2022, .external_lex_state = 24}, - [670] = {.lex_state = 2022, .external_lex_state = 24}, - [671] = {.lex_state = 2022, .external_lex_state = 24}, - [672] = {.lex_state = 2022, .external_lex_state = 22}, - [673] = {.lex_state = 2022, .external_lex_state = 20}, - [674] = {.lex_state = 1, .external_lex_state = 12}, - [675] = {.lex_state = 2022, .external_lex_state = 22}, - [676] = {.lex_state = 3, .external_lex_state = 12}, - [677] = {.lex_state = 3, .external_lex_state = 12}, - [678] = {.lex_state = 2022, .external_lex_state = 23}, - [679] = {.lex_state = 2022, .external_lex_state = 23}, - [680] = {.lex_state = 2022, .external_lex_state = 20}, + [663] = {.lex_state = 2, .external_lex_state = 18}, + [664] = {.lex_state = 2, .external_lex_state = 18}, + [665] = {.lex_state = 2, .external_lex_state = 18}, + [666] = {.lex_state = 2022, .external_lex_state = 20}, + [667] = {.lex_state = 2022, .external_lex_state = 21}, + [668] = {.lex_state = 2022, .external_lex_state = 21}, + [669] = {.lex_state = 2022, .external_lex_state = 22}, + [670] = {.lex_state = 2022, .external_lex_state = 23}, + [671] = {.lex_state = 2022, .external_lex_state = 23}, + [672] = {.lex_state = 1, .external_lex_state = 11}, + [673] = {.lex_state = 1, .external_lex_state = 11}, + [674] = {.lex_state = 2022, .external_lex_state = 24}, + [675] = {.lex_state = 2022, .external_lex_state = 25}, + [676] = {.lex_state = 1, .external_lex_state = 11}, + [677] = {.lex_state = 2022, .external_lex_state = 24}, + [678] = {.lex_state = 2022, .external_lex_state = 16}, + [679] = {.lex_state = 2022, .external_lex_state = 24}, + [680] = {.lex_state = 2022, .external_lex_state = 16}, [681] = {.lex_state = 2022, .external_lex_state = 25}, - [682] = {.lex_state = 2022, .external_lex_state = 26}, - [683] = {.lex_state = 2022, .external_lex_state = 25}, - [684] = {.lex_state = 2022, .external_lex_state = 25}, - [685] = {.lex_state = 2022, .external_lex_state = 27}, - [686] = {.lex_state = 2022, .external_lex_state = 27}, - [687] = {.lex_state = 2022, .external_lex_state = 26}, - [688] = {.lex_state = 1, .external_lex_state = 12}, - [689] = {.lex_state = 2022, .external_lex_state = 26}, + [682] = {.lex_state = 2022, .external_lex_state = 23}, + [683] = {.lex_state = 2022, .external_lex_state = 22}, + [684] = {.lex_state = 2022, .external_lex_state = 26}, + [685] = {.lex_state = 2022, .external_lex_state = 26}, + [686] = {.lex_state = 2022, .external_lex_state = 21}, + [687] = {.lex_state = 2022, .external_lex_state = 22}, + [688] = {.lex_state = 2022, .external_lex_state = 26}, + [689] = {.lex_state = 2022, .external_lex_state = 27}, [690] = {.lex_state = 2022, .external_lex_state = 27}, - [691] = {.lex_state = 2022, .external_lex_state = 21}, - [692] = {.lex_state = 2022, .external_lex_state = 28}, - [693] = {.lex_state = 2022, .external_lex_state = 17}, - [694] = {.lex_state = 2022, .external_lex_state = 17}, - [695] = {.lex_state = 2022, .external_lex_state = 28}, - [696] = {.lex_state = 2022, .external_lex_state = 28}, - [697] = {.lex_state = 1, .external_lex_state = 12}, - [698] = {.lex_state = 2022, .external_lex_state = 29}, - [699] = {.lex_state = 2022, .external_lex_state = 29}, - [700] = {.lex_state = 2022, .external_lex_state = 30}, - [701] = {.lex_state = 2022, .external_lex_state = 30}, - [702] = {.lex_state = 2022, .external_lex_state = 29}, - [703] = {.lex_state = 1, .external_lex_state = 18}, - [704] = {.lex_state = 1, .external_lex_state = 18}, + [691] = {.lex_state = 2022, .external_lex_state = 27}, + [692] = {.lex_state = 2022, .external_lex_state = 20}, + [693] = {.lex_state = 2022, .external_lex_state = 28}, + [694] = {.lex_state = 2022, .external_lex_state = 20}, + [695] = {.lex_state = 3, .external_lex_state = 11}, + [696] = {.lex_state = 3, .external_lex_state = 11}, + [697] = {.lex_state = 3, .external_lex_state = 11}, + [698] = {.lex_state = 2022, .external_lex_state = 28}, + [699] = {.lex_state = 2022, .external_lex_state = 28}, + [700] = {.lex_state = 2022, .external_lex_state = 25}, + [701] = {.lex_state = 2022, .external_lex_state = 29}, + [702] = {.lex_state = 2022, .external_lex_state = 30}, + [703] = {.lex_state = 2022, .external_lex_state = 29}, + [704] = {.lex_state = 2022, .external_lex_state = 29}, [705] = {.lex_state = 1, .external_lex_state = 18}, [706] = {.lex_state = 1, .external_lex_state = 18}, [707] = {.lex_state = 1, .external_lex_state = 18}, [708] = {.lex_state = 1, .external_lex_state = 18}, [709] = {.lex_state = 1, .external_lex_state = 18}, [710] = {.lex_state = 1, .external_lex_state = 18}, - [711] = {.lex_state = 1, .external_lex_state = 18}, - [712] = {.lex_state = 1, .external_lex_state = 18}, + [711] = {.lex_state = 2022, .external_lex_state = 30}, + [712] = {.lex_state = 2022, .external_lex_state = 29}, [713] = {.lex_state = 1, .external_lex_state = 18}, - [714] = {.lex_state = 2022, .external_lex_state = 30}, + [714] = {.lex_state = 1, .external_lex_state = 18}, [715] = {.lex_state = 1, .external_lex_state = 18}, [716] = {.lex_state = 1, .external_lex_state = 18}, [717] = {.lex_state = 1, .external_lex_state = 18}, [718] = {.lex_state = 1, .external_lex_state = 18}, - [719] = {.lex_state = 1, .external_lex_state = 18}, - [720] = {.lex_state = 1, .external_lex_state = 18}, + [719] = {.lex_state = 2022, .external_lex_state = 30}, + [720] = {.lex_state = 2022, .external_lex_state = 29}, [721] = {.lex_state = 1, .external_lex_state = 18}, [722] = {.lex_state = 1, .external_lex_state = 18}, [723] = {.lex_state = 1, .external_lex_state = 18}, - [724] = {.lex_state = 2022, .external_lex_state = 30}, - [725] = {.lex_state = 2022, .external_lex_state = 29}, + [724] = {.lex_state = 1, .external_lex_state = 18}, + [725] = {.lex_state = 2022, .external_lex_state = 15}, [726] = {.lex_state = 2022, .external_lex_state = 30}, [727] = {.lex_state = 2022, .external_lex_state = 29}, - [728] = {.lex_state = 2022, .external_lex_state = 30}, - [729] = {.lex_state = 2022, .external_lex_state = 29}, - [730] = {.lex_state = 2022, .external_lex_state = 30}, + [728] = {.lex_state = 1, .external_lex_state = 18}, + [729] = {.lex_state = 1, .external_lex_state = 18}, + [730] = {.lex_state = 1, .external_lex_state = 18}, [731] = {.lex_state = 1, .external_lex_state = 18}, - [732] = {.lex_state = 1, .external_lex_state = 18}, - [733] = {.lex_state = 1, .external_lex_state = 18}, + [732] = {.lex_state = 2022, .external_lex_state = 30}, + [733] = {.lex_state = 2022, .external_lex_state = 29}, [734] = {.lex_state = 1, .external_lex_state = 18}, - [735] = {.lex_state = 2022, .external_lex_state = 15}, + [735] = {.lex_state = 1, .external_lex_state = 18}, [736] = {.lex_state = 1, .external_lex_state = 18}, [737] = {.lex_state = 1, .external_lex_state = 18}, - [738] = {.lex_state = 1, .external_lex_state = 18}, - [739] = {.lex_state = 1, .external_lex_state = 18}, + [738] = {.lex_state = 2022, .external_lex_state = 30}, + [739] = {.lex_state = 2022, .external_lex_state = 29}, [740] = {.lex_state = 1, .external_lex_state = 18}, - [741] = {.lex_state = 2022, .external_lex_state = 29}, - [742] = {.lex_state = 2022, .external_lex_state = 30}, + [741] = {.lex_state = 1, .external_lex_state = 18}, + [742] = {.lex_state = 1, .external_lex_state = 18}, [743] = {.lex_state = 1, .external_lex_state = 18}, - [744] = {.lex_state = 1, .external_lex_state = 18}, - [745] = {.lex_state = 1, .external_lex_state = 18}, + [744] = {.lex_state = 2022, .external_lex_state = 30}, + [745] = {.lex_state = 2022, .external_lex_state = 29}, [746] = {.lex_state = 1, .external_lex_state = 18}, [747] = {.lex_state = 1, .external_lex_state = 18}, [748] = {.lex_state = 1, .external_lex_state = 18}, [749] = {.lex_state = 1, .external_lex_state = 18}, - [750] = {.lex_state = 1, .external_lex_state = 18}, + [750] = {.lex_state = 2022, .external_lex_state = 30}, [751] = {.lex_state = 2022, .external_lex_state = 29}, - [752] = {.lex_state = 1, .external_lex_state = 18}, - [753] = {.lex_state = 2022, .external_lex_state = 29}, - [754] = {.lex_state = 2022, .external_lex_state = 30}, - [755] = {.lex_state = 2022, .external_lex_state = 29}, - [756] = {.lex_state = 2022, .external_lex_state = 30}, - [757] = {.lex_state = 2022, .external_lex_state = 29}, - [758] = {.lex_state = 2022, .external_lex_state = 30}, + [752] = {.lex_state = 2022, .external_lex_state = 30}, + [753] = {.lex_state = 2022, .external_lex_state = 30}, + [754] = {.lex_state = 1, .external_lex_state = 18}, + [755] = {.lex_state = 1, .external_lex_state = 18}, + [756] = {.lex_state = 1, .external_lex_state = 18}, + [757] = {.lex_state = 1, .external_lex_state = 18}, + [758] = {.lex_state = 2022, .external_lex_state = 15}, [759] = {.lex_state = 1, .external_lex_state = 18}, - [760] = {.lex_state = 1, .external_lex_state = 18}, - [761] = {.lex_state = 1, .external_lex_state = 18}, + [760] = {.lex_state = 2022, .external_lex_state = 30}, + [761] = {.lex_state = 2022, .external_lex_state = 29}, [762] = {.lex_state = 1, .external_lex_state = 18}, [763] = {.lex_state = 1, .external_lex_state = 18}, - [764] = {.lex_state = 2022, .external_lex_state = 29}, + [764] = {.lex_state = 1, .external_lex_state = 18}, [765] = {.lex_state = 1, .external_lex_state = 18}, [766] = {.lex_state = 1, .external_lex_state = 18}, [767] = {.lex_state = 1, .external_lex_state = 18}, - [768] = {.lex_state = 1, .external_lex_state = 18}, - [769] = {.lex_state = 2022, .external_lex_state = 30}, + [768] = {.lex_state = 2022, .external_lex_state = 30}, + [769] = {.lex_state = 2022, .external_lex_state = 29}, [770] = {.lex_state = 1, .external_lex_state = 18}, [771] = {.lex_state = 1, .external_lex_state = 18}, [772] = {.lex_state = 1, .external_lex_state = 18}, [773] = {.lex_state = 1, .external_lex_state = 18}, - [774] = {.lex_state = 2022, .external_lex_state = 29}, - [775] = {.lex_state = 2022, .external_lex_state = 29}, - [776] = {.lex_state = 2022, .external_lex_state = 30}, - [777] = {.lex_state = 2022, .external_lex_state = 30}, + [774] = {.lex_state = 1, .external_lex_state = 18}, + [775] = {.lex_state = 2022, .external_lex_state = 30}, + [776] = {.lex_state = 2022, .external_lex_state = 29}, + [777] = {.lex_state = 1, .external_lex_state = 18}, [778] = {.lex_state = 1, .external_lex_state = 18}, [779] = {.lex_state = 1, .external_lex_state = 18}, [780] = {.lex_state = 1, .external_lex_state = 18}, - [781] = {.lex_state = 1, .external_lex_state = 18}, + [781] = {.lex_state = 2022, .external_lex_state = 30}, [782] = {.lex_state = 1, .external_lex_state = 18}, [783] = {.lex_state = 1, .external_lex_state = 18}, [784] = {.lex_state = 1, .external_lex_state = 18}, [785] = {.lex_state = 1, .external_lex_state = 18}, - [786] = {.lex_state = 1, .external_lex_state = 18}, - [787] = {.lex_state = 2022, .external_lex_state = 15}, + [786] = {.lex_state = 2022, .external_lex_state = 30}, + [787] = {.lex_state = 2022, .external_lex_state = 29}, [788] = {.lex_state = 1, .external_lex_state = 18}, - [789] = {.lex_state = 2022, .external_lex_state = 29}, - [790] = {.lex_state = 2022, .external_lex_state = 30}, - [791] = {.lex_state = 2022, .external_lex_state = 29}, + [789] = {.lex_state = 1, .external_lex_state = 18}, + [790] = {.lex_state = 1, .external_lex_state = 18}, + [791] = {.lex_state = 1, .external_lex_state = 18}, [792] = {.lex_state = 2022, .external_lex_state = 30}, - [793] = {.lex_state = 1, .external_lex_state = 18}, + [793] = {.lex_state = 2022, .external_lex_state = 29}, [794] = {.lex_state = 1, .external_lex_state = 18}, [795] = {.lex_state = 1, .external_lex_state = 18}, - [796] = {.lex_state = 2022, .external_lex_state = 18}, - [797] = {.lex_state = 2022, .external_lex_state = 18}, - [798] = {.lex_state = 2022, .external_lex_state = 18}, + [796] = {.lex_state = 1, .external_lex_state = 18}, + [797] = {.lex_state = 1, .external_lex_state = 18}, + [798] = {.lex_state = 2022, .external_lex_state = 29}, [799] = {.lex_state = 2022, .external_lex_state = 18}, [800] = {.lex_state = 2022, .external_lex_state = 18}, [801] = {.lex_state = 2022, .external_lex_state = 18}, @@ -20328,10 +20389,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [955] = {.lex_state = 2022, .external_lex_state = 18}, [956] = {.lex_state = 2022, .external_lex_state = 18}, [957] = {.lex_state = 2022, .external_lex_state = 18}, - [958] = {.lex_state = 2022, .external_lex_state = 31}, - [959] = {.lex_state = 2022, .external_lex_state = 10}, - [960] = {.lex_state = 2022, .external_lex_state = 10}, - [961] = {.lex_state = 2022, .external_lex_state = 32}, + [958] = {.lex_state = 2022, .external_lex_state = 18}, + [959] = {.lex_state = 2022, .external_lex_state = 18}, + [960] = {.lex_state = 2022, .external_lex_state = 18}, + [961] = {.lex_state = 2022, .external_lex_state = 31}, [962] = {.lex_state = 2022, .external_lex_state = 10}, [963] = {.lex_state = 2022, .external_lex_state = 10}, [964] = {.lex_state = 2022, .external_lex_state = 10}, @@ -20339,10 +20400,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [966] = {.lex_state = 2022, .external_lex_state = 10}, [967] = {.lex_state = 2022, .external_lex_state = 10}, [968] = {.lex_state = 2022, .external_lex_state = 10}, - [969] = {.lex_state = 2022, .external_lex_state = 8}, + [969] = {.lex_state = 2022, .external_lex_state = 10}, [970] = {.lex_state = 2022, .external_lex_state = 10}, [971] = {.lex_state = 2022, .external_lex_state = 10}, - [972] = {.lex_state = 2022, .external_lex_state = 10}, + [972] = {.lex_state = 2022, .external_lex_state = 32}, [973] = {.lex_state = 2022, .external_lex_state = 10}, [974] = {.lex_state = 2022, .external_lex_state = 10}, [975] = {.lex_state = 2022, .external_lex_state = 10}, @@ -20356,14 +20417,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [983] = {.lex_state = 2022, .external_lex_state = 10}, [984] = {.lex_state = 2022, .external_lex_state = 10}, [985] = {.lex_state = 2022, .external_lex_state = 10}, - [986] = {.lex_state = 2022, .external_lex_state = 19}, - [987] = {.lex_state = 2, .external_lex_state = 12}, - [988] = {.lex_state = 2, .external_lex_state = 12}, - [989] = {.lex_state = 2, .external_lex_state = 12}, - [990] = {.lex_state = 2, .external_lex_state = 12}, - [991] = {.lex_state = 2022, .external_lex_state = 10}, - [992] = {.lex_state = 2022, .external_lex_state = 10}, - [993] = {.lex_state = 2022, .external_lex_state = 10}, + [986] = {.lex_state = 2022, .external_lex_state = 10}, + [987] = {.lex_state = 2022, .external_lex_state = 8}, + [988] = {.lex_state = 2022, .external_lex_state = 10}, + [989] = {.lex_state = 2022, .external_lex_state = 10}, + [990] = {.lex_state = 2, .external_lex_state = 11}, + [991] = {.lex_state = 2, .external_lex_state = 11}, + [992] = {.lex_state = 2, .external_lex_state = 11}, + [993] = {.lex_state = 2, .external_lex_state = 11}, [994] = {.lex_state = 2022, .external_lex_state = 10}, [995] = {.lex_state = 2022, .external_lex_state = 10}, [996] = {.lex_state = 2022, .external_lex_state = 10}, @@ -20391,7 +20452,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1018] = {.lex_state = 2022, .external_lex_state = 10}, [1019] = {.lex_state = 2022, .external_lex_state = 10}, [1020] = {.lex_state = 2022, .external_lex_state = 10}, - [1021] = {.lex_state = 2022, .external_lex_state = 19}, + [1021] = {.lex_state = 2022, .external_lex_state = 10}, [1022] = {.lex_state = 2022, .external_lex_state = 10}, [1023] = {.lex_state = 2022, .external_lex_state = 10}, [1024] = {.lex_state = 2022, .external_lex_state = 10}, @@ -20420,10 +20481,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1047] = {.lex_state = 2022, .external_lex_state = 10}, [1048] = {.lex_state = 2022, .external_lex_state = 10}, [1049] = {.lex_state = 2022, .external_lex_state = 10}, - [1050] = {.lex_state = 2, .external_lex_state = 12}, + [1050] = {.lex_state = 2022, .external_lex_state = 10}, [1051] = {.lex_state = 2022, .external_lex_state = 10}, [1052] = {.lex_state = 2022, .external_lex_state = 10}, - [1053] = {.lex_state = 2022, .external_lex_state = 10}, + [1053] = {.lex_state = 2, .external_lex_state = 11}, [1054] = {.lex_state = 2022, .external_lex_state = 10}, [1055] = {.lex_state = 2022, .external_lex_state = 10}, [1056] = {.lex_state = 2022, .external_lex_state = 10}, @@ -20432,7 +20493,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1059] = {.lex_state = 2022, .external_lex_state = 10}, [1060] = {.lex_state = 2022, .external_lex_state = 10}, [1061] = {.lex_state = 2022, .external_lex_state = 10}, - [1062] = {.lex_state = 2022, .external_lex_state = 19}, + [1062] = {.lex_state = 2022, .external_lex_state = 10}, [1063] = {.lex_state = 2022, .external_lex_state = 19}, [1064] = {.lex_state = 2022, .external_lex_state = 19}, [1065] = {.lex_state = 2022, .external_lex_state = 19}, @@ -20453,1059 +20514,1059 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1080] = {.lex_state = 2022, .external_lex_state = 19}, [1081] = {.lex_state = 2022, .external_lex_state = 19}, [1082] = {.lex_state = 2022, .external_lex_state = 19}, - [1083] = {.lex_state = 2022, .external_lex_state = 10}, + [1083] = {.lex_state = 2022, .external_lex_state = 19}, [1084] = {.lex_state = 2022, .external_lex_state = 19}, [1085] = {.lex_state = 2022, .external_lex_state = 19}, - [1086] = {.lex_state = 2, .external_lex_state = 12}, - [1087] = {.lex_state = 2, .external_lex_state = 12}, - [1088] = {.lex_state = 2, .external_lex_state = 12}, - [1089] = {.lex_state = 2, .external_lex_state = 12}, - [1090] = {.lex_state = 2, .external_lex_state = 12}, - [1091] = {.lex_state = 2, .external_lex_state = 12}, - [1092] = {.lex_state = 2, .external_lex_state = 12}, - [1093] = {.lex_state = 2, .external_lex_state = 12}, - [1094] = {.lex_state = 2, .external_lex_state = 12}, - [1095] = {.lex_state = 2, .external_lex_state = 12}, - [1096] = {.lex_state = 2, .external_lex_state = 12}, - [1097] = {.lex_state = 2, .external_lex_state = 12}, - [1098] = {.lex_state = 2, .external_lex_state = 12}, - [1099] = {.lex_state = 2, .external_lex_state = 12}, - [1100] = {.lex_state = 2, .external_lex_state = 12}, - [1101] = {.lex_state = 2, .external_lex_state = 12}, - [1102] = {.lex_state = 2, .external_lex_state = 12}, - [1103] = {.lex_state = 2, .external_lex_state = 12}, - [1104] = {.lex_state = 2, .external_lex_state = 12}, - [1105] = {.lex_state = 2, .external_lex_state = 12}, - [1106] = {.lex_state = 2022, .external_lex_state = 10}, - [1107] = {.lex_state = 2022, .external_lex_state = 26}, - [1108] = {.lex_state = 3, .external_lex_state = 12}, - [1109] = {.lex_state = 3, .external_lex_state = 12}, - [1110] = {.lex_state = 2, .external_lex_state = 12}, - [1111] = {.lex_state = 3, .external_lex_state = 12}, - [1112] = {.lex_state = 3, .external_lex_state = 12}, - [1113] = {.lex_state = 2, .external_lex_state = 12}, - [1114] = {.lex_state = 3, .external_lex_state = 12}, - [1115] = {.lex_state = 3, .external_lex_state = 12}, - [1116] = {.lex_state = 2, .external_lex_state = 12}, - [1117] = {.lex_state = 2, .external_lex_state = 12}, - [1118] = {.lex_state = 3, .external_lex_state = 12}, - [1119] = {.lex_state = 2, .external_lex_state = 12}, - [1120] = {.lex_state = 2, .external_lex_state = 12}, - [1121] = {.lex_state = 2, .external_lex_state = 12}, - [1122] = {.lex_state = 2, .external_lex_state = 12}, - [1123] = {.lex_state = 2, .external_lex_state = 12}, - [1124] = {.lex_state = 2, .external_lex_state = 12}, - [1125] = {.lex_state = 2, .external_lex_state = 12}, - [1126] = {.lex_state = 2022, .external_lex_state = 25}, - [1127] = {.lex_state = 2022, .external_lex_state = 19}, - [1128] = {.lex_state = 2, .external_lex_state = 12}, - [1129] = {.lex_state = 2, .external_lex_state = 12}, - [1130] = {.lex_state = 2022, .external_lex_state = 19}, - [1131] = {.lex_state = 2, .external_lex_state = 12}, - [1132] = {.lex_state = 2022, .external_lex_state = 19}, - [1133] = {.lex_state = 2022, .external_lex_state = 19}, - [1134] = {.lex_state = 1, .external_lex_state = 12}, - [1135] = {.lex_state = 1, .external_lex_state = 12}, - [1136] = {.lex_state = 1, .external_lex_state = 12}, - [1137] = {.lex_state = 1, .external_lex_state = 12}, - [1138] = {.lex_state = 1, .external_lex_state = 12}, - [1139] = {.lex_state = 1, .external_lex_state = 12}, + [1086] = {.lex_state = 2022, .external_lex_state = 10}, + [1087] = {.lex_state = 2022, .external_lex_state = 19}, + [1088] = {.lex_state = 2022, .external_lex_state = 19}, + [1089] = {.lex_state = 2, .external_lex_state = 11}, + [1090] = {.lex_state = 2, .external_lex_state = 11}, + [1091] = {.lex_state = 2, .external_lex_state = 11}, + [1092] = {.lex_state = 2, .external_lex_state = 11}, + [1093] = {.lex_state = 2, .external_lex_state = 11}, + [1094] = {.lex_state = 2, .external_lex_state = 11}, + [1095] = {.lex_state = 2, .external_lex_state = 11}, + [1096] = {.lex_state = 2, .external_lex_state = 11}, + [1097] = {.lex_state = 2, .external_lex_state = 11}, + [1098] = {.lex_state = 2, .external_lex_state = 11}, + [1099] = {.lex_state = 2, .external_lex_state = 11}, + [1100] = {.lex_state = 2, .external_lex_state = 11}, + [1101] = {.lex_state = 2, .external_lex_state = 11}, + [1102] = {.lex_state = 2, .external_lex_state = 11}, + [1103] = {.lex_state = 2, .external_lex_state = 11}, + [1104] = {.lex_state = 2, .external_lex_state = 11}, + [1105] = {.lex_state = 2, .external_lex_state = 11}, + [1106] = {.lex_state = 2, .external_lex_state = 11}, + [1107] = {.lex_state = 2, .external_lex_state = 11}, + [1108] = {.lex_state = 2, .external_lex_state = 11}, + [1109] = {.lex_state = 2022, .external_lex_state = 10}, + [1110] = {.lex_state = 2022, .external_lex_state = 20}, + [1111] = {.lex_state = 2, .external_lex_state = 11}, + [1112] = {.lex_state = 1, .external_lex_state = 11}, + [1113] = {.lex_state = 2, .external_lex_state = 11}, + [1114] = {.lex_state = 2, .external_lex_state = 11}, + [1115] = {.lex_state = 1, .external_lex_state = 11}, + [1116] = {.lex_state = 2022, .external_lex_state = 22}, + [1117] = {.lex_state = 2, .external_lex_state = 11}, + [1118] = {.lex_state = 2022, .external_lex_state = 22}, + [1119] = {.lex_state = 2022, .external_lex_state = 22}, + [1120] = {.lex_state = 2, .external_lex_state = 11}, + [1121] = {.lex_state = 2022, .external_lex_state = 22}, + [1122] = {.lex_state = 2022, .external_lex_state = 22}, + [1123] = {.lex_state = 2, .external_lex_state = 11}, + [1124] = {.lex_state = 2, .external_lex_state = 11}, + [1125] = {.lex_state = 2, .external_lex_state = 11}, + [1126] = {.lex_state = 2, .external_lex_state = 11}, + [1127] = {.lex_state = 2022, .external_lex_state = 22}, + [1128] = {.lex_state = 2, .external_lex_state = 11}, + [1129] = {.lex_state = 2, .external_lex_state = 11}, + [1130] = {.lex_state = 2, .external_lex_state = 11}, + [1131] = {.lex_state = 2022, .external_lex_state = 19}, + [1132] = {.lex_state = 2, .external_lex_state = 11}, + [1133] = {.lex_state = 2, .external_lex_state = 11}, + [1134] = {.lex_state = 2022, .external_lex_state = 22}, + [1135] = {.lex_state = 2022, .external_lex_state = 22}, + [1136] = {.lex_state = 2022, .external_lex_state = 22}, + [1137] = {.lex_state = 2022, .external_lex_state = 19}, + [1138] = {.lex_state = 2, .external_lex_state = 11}, + [1139] = {.lex_state = 2, .external_lex_state = 11}, [1140] = {.lex_state = 2022, .external_lex_state = 19}, - [1141] = {.lex_state = 2022, .external_lex_state = 25}, + [1141] = {.lex_state = 2022, .external_lex_state = 19}, [1142] = {.lex_state = 2022, .external_lex_state = 19}, [1143] = {.lex_state = 2022, .external_lex_state = 19}, - [1144] = {.lex_state = 2022, .external_lex_state = 19}, + [1144] = {.lex_state = 2022, .external_lex_state = 22}, [1145] = {.lex_state = 2022, .external_lex_state = 19}, [1146] = {.lex_state = 2022, .external_lex_state = 19}, - [1147] = {.lex_state = 2022, .external_lex_state = 19}, + [1147] = {.lex_state = 2022, .external_lex_state = 16}, [1148] = {.lex_state = 2022, .external_lex_state = 19}, - [1149] = {.lex_state = 2022, .external_lex_state = 19}, - [1150] = {.lex_state = 2022, .external_lex_state = 19}, - [1151] = {.lex_state = 2022, .external_lex_state = 19}, - [1152] = {.lex_state = 2, .external_lex_state = 12}, - [1153] = {.lex_state = 2022, .external_lex_state = 19}, - [1154] = {.lex_state = 2022, .external_lex_state = 19}, - [1155] = {.lex_state = 2022, .external_lex_state = 13}, + [1149] = {.lex_state = 2022, .external_lex_state = 22}, + [1150] = {.lex_state = 2022, .external_lex_state = 22}, + [1151] = {.lex_state = 2022, .external_lex_state = 22}, + [1152] = {.lex_state = 2022, .external_lex_state = 22}, + [1153] = {.lex_state = 2022, .external_lex_state = 22}, + [1154] = {.lex_state = 2022, .external_lex_state = 22}, + [1155] = {.lex_state = 2022, .external_lex_state = 16}, [1156] = {.lex_state = 2022, .external_lex_state = 19}, [1157] = {.lex_state = 2022, .external_lex_state = 19}, - [1158] = {.lex_state = 2, .external_lex_state = 12}, - [1159] = {.lex_state = 2022, .external_lex_state = 25}, - [1160] = {.lex_state = 2022, .external_lex_state = 17}, - [1161] = {.lex_state = 2022, .external_lex_state = 17}, - [1162] = {.lex_state = 2022, .external_lex_state = 25}, - [1163] = {.lex_state = 2022, .external_lex_state = 25}, - [1164] = {.lex_state = 2022, .external_lex_state = 17}, - [1165] = {.lex_state = 2022, .external_lex_state = 17}, - [1166] = {.lex_state = 2022, .external_lex_state = 17}, - [1167] = {.lex_state = 2022, .external_lex_state = 17}, - [1168] = {.lex_state = 2022, .external_lex_state = 17}, - [1169] = {.lex_state = 2022, .external_lex_state = 17}, - [1170] = {.lex_state = 2022, .external_lex_state = 17}, - [1171] = {.lex_state = 2022, .external_lex_state = 17}, - [1172] = {.lex_state = 2022, .external_lex_state = 17}, - [1173] = {.lex_state = 2022, .external_lex_state = 17}, - [1174] = {.lex_state = 2022, .external_lex_state = 17}, - [1175] = {.lex_state = 2022, .external_lex_state = 25}, - [1176] = {.lex_state = 3, .external_lex_state = 12}, - [1177] = {.lex_state = 2022, .external_lex_state = 25}, - [1178] = {.lex_state = 3, .external_lex_state = 12}, - [1179] = {.lex_state = 2022, .external_lex_state = 25}, - [1180] = {.lex_state = 2, .external_lex_state = 12}, - [1181] = {.lex_state = 2022, .external_lex_state = 19}, - [1182] = {.lex_state = 2022, .external_lex_state = 19}, - [1183] = {.lex_state = 1, .external_lex_state = 12}, - [1184] = {.lex_state = 1, .external_lex_state = 12}, - [1185] = {.lex_state = 1, .external_lex_state = 12}, - [1186] = {.lex_state = 1, .external_lex_state = 12}, - [1187] = {.lex_state = 2022, .external_lex_state = 25}, - [1188] = {.lex_state = 1, .external_lex_state = 12}, - [1189] = {.lex_state = 1, .external_lex_state = 12}, - [1190] = {.lex_state = 1, .external_lex_state = 12}, - [1191] = {.lex_state = 1, .external_lex_state = 12}, - [1192] = {.lex_state = 1, .external_lex_state = 12}, - [1193] = {.lex_state = 1, .external_lex_state = 12}, - [1194] = {.lex_state = 1, .external_lex_state = 12}, - [1195] = {.lex_state = 1, .external_lex_state = 12}, - [1196] = {.lex_state = 1, .external_lex_state = 12}, - [1197] = {.lex_state = 2022, .external_lex_state = 19}, - [1198] = {.lex_state = 2022, .external_lex_state = 19}, - [1199] = {.lex_state = 2022, .external_lex_state = 25}, - [1200] = {.lex_state = 2022, .external_lex_state = 25}, - [1201] = {.lex_state = 2022, .external_lex_state = 19}, - [1202] = {.lex_state = 2022, .external_lex_state = 25}, - [1203] = {.lex_state = 2022, .external_lex_state = 25}, - [1204] = {.lex_state = 2022, .external_lex_state = 25}, - [1205] = {.lex_state = 2022, .external_lex_state = 19}, - [1206] = {.lex_state = 2022, .external_lex_state = 19}, - [1207] = {.lex_state = 2022, .external_lex_state = 19}, - [1208] = {.lex_state = 2022, .external_lex_state = 19}, - [1209] = {.lex_state = 2022, .external_lex_state = 19}, - [1210] = {.lex_state = 2022, .external_lex_state = 19}, - [1211] = {.lex_state = 2022, .external_lex_state = 19}, - [1212] = {.lex_state = 2022, .external_lex_state = 25}, - [1213] = {.lex_state = 3, .external_lex_state = 12}, - [1214] = {.lex_state = 2022, .external_lex_state = 25}, - [1215] = {.lex_state = 2022, .external_lex_state = 19}, - [1216] = {.lex_state = 2022, .external_lex_state = 25}, - [1217] = {.lex_state = 2022, .external_lex_state = 25}, - [1218] = {.lex_state = 2022, .external_lex_state = 19}, - [1219] = {.lex_state = 3, .external_lex_state = 12}, - [1220] = {.lex_state = 2022, .external_lex_state = 13}, - [1221] = {.lex_state = 2022, .external_lex_state = 25}, - [1222] = {.lex_state = 2, .external_lex_state = 12}, - [1223] = {.lex_state = 2022, .external_lex_state = 25}, - [1224] = {.lex_state = 2022, .external_lex_state = 13}, - [1225] = {.lex_state = 1, .external_lex_state = 12}, - [1226] = {.lex_state = 1, .external_lex_state = 12}, - [1227] = {.lex_state = 1, .external_lex_state = 12}, - [1228] = {.lex_state = 1, .external_lex_state = 12}, - [1229] = {.lex_state = 2022, .external_lex_state = 19}, - [1230] = {.lex_state = 1, .external_lex_state = 12}, - [1231] = {.lex_state = 1, .external_lex_state = 12}, - [1232] = {.lex_state = 2022, .external_lex_state = 25}, - [1233] = {.lex_state = 2, .external_lex_state = 12}, - [1234] = {.lex_state = 2022, .external_lex_state = 27}, - [1235] = {.lex_state = 2022, .external_lex_state = 17}, - [1236] = {.lex_state = 2022, .external_lex_state = 17}, - [1237] = {.lex_state = 2022, .external_lex_state = 17}, - [1238] = {.lex_state = 2022, .external_lex_state = 17}, - [1239] = {.lex_state = 2022, .external_lex_state = 27}, - [1240] = {.lex_state = 2022, .external_lex_state = 17}, - [1241] = {.lex_state = 2022, .external_lex_state = 17}, - [1242] = {.lex_state = 2022, .external_lex_state = 27}, + [1158] = {.lex_state = 2022, .external_lex_state = 13}, + [1159] = {.lex_state = 2022, .external_lex_state = 19}, + [1160] = {.lex_state = 2022, .external_lex_state = 16}, + [1161] = {.lex_state = 2022, .external_lex_state = 19}, + [1162] = {.lex_state = 2022, .external_lex_state = 19}, + [1163] = {.lex_state = 2022, .external_lex_state = 19}, + [1164] = {.lex_state = 2022, .external_lex_state = 19}, + [1165] = {.lex_state = 2022, .external_lex_state = 16}, + [1166] = {.lex_state = 2022, .external_lex_state = 24}, + [1167] = {.lex_state = 2022, .external_lex_state = 19}, + [1168] = {.lex_state = 2022, .external_lex_state = 19}, + [1169] = {.lex_state = 2022, .external_lex_state = 19}, + [1170] = {.lex_state = 2022, .external_lex_state = 19}, + [1171] = {.lex_state = 2022, .external_lex_state = 19}, + [1172] = {.lex_state = 2022, .external_lex_state = 24}, + [1173] = {.lex_state = 2022, .external_lex_state = 24}, + [1174] = {.lex_state = 2, .external_lex_state = 11}, + [1175] = {.lex_state = 2022, .external_lex_state = 19}, + [1176] = {.lex_state = 2022, .external_lex_state = 19}, + [1177] = {.lex_state = 2022, .external_lex_state = 22}, + [1178] = {.lex_state = 2022, .external_lex_state = 16}, + [1179] = {.lex_state = 2022, .external_lex_state = 19}, + [1180] = {.lex_state = 2, .external_lex_state = 11}, + [1181] = {.lex_state = 2022, .external_lex_state = 22}, + [1182] = {.lex_state = 2022, .external_lex_state = 24}, + [1183] = {.lex_state = 2022, .external_lex_state = 19}, + [1184] = {.lex_state = 2022, .external_lex_state = 19}, + [1185] = {.lex_state = 2022, .external_lex_state = 19}, + [1186] = {.lex_state = 2022, .external_lex_state = 24}, + [1187] = {.lex_state = 2022, .external_lex_state = 24}, + [1188] = {.lex_state = 2022, .external_lex_state = 16}, + [1189] = {.lex_state = 2022, .external_lex_state = 24}, + [1190] = {.lex_state = 2022, .external_lex_state = 24}, + [1191] = {.lex_state = 2022, .external_lex_state = 24}, + [1192] = {.lex_state = 2022, .external_lex_state = 24}, + [1193] = {.lex_state = 2022, .external_lex_state = 19}, + [1194] = {.lex_state = 2022, .external_lex_state = 19}, + [1195] = {.lex_state = 2022, .external_lex_state = 24}, + [1196] = {.lex_state = 2022, .external_lex_state = 24}, + [1197] = {.lex_state = 2022, .external_lex_state = 24}, + [1198] = {.lex_state = 2022, .external_lex_state = 24}, + [1199] = {.lex_state = 2022, .external_lex_state = 19}, + [1200] = {.lex_state = 2022, .external_lex_state = 24}, + [1201] = {.lex_state = 2022, .external_lex_state = 24}, + [1202] = {.lex_state = 2022, .external_lex_state = 24}, + [1203] = {.lex_state = 2022, .external_lex_state = 24}, + [1204] = {.lex_state = 2022, .external_lex_state = 24}, + [1205] = {.lex_state = 2022, .external_lex_state = 16}, + [1206] = {.lex_state = 2022, .external_lex_state = 24}, + [1207] = {.lex_state = 2022, .external_lex_state = 24}, + [1208] = {.lex_state = 2022, .external_lex_state = 24}, + [1209] = {.lex_state = 2022, .external_lex_state = 24}, + [1210] = {.lex_state = 2022, .external_lex_state = 24}, + [1211] = {.lex_state = 2022, .external_lex_state = 22}, + [1212] = {.lex_state = 2022, .external_lex_state = 24}, + [1213] = {.lex_state = 2022, .external_lex_state = 16}, + [1214] = {.lex_state = 2022, .external_lex_state = 26}, + [1215] = {.lex_state = 2022, .external_lex_state = 26}, + [1216] = {.lex_state = 2022, .external_lex_state = 26}, + [1217] = {.lex_state = 2022, .external_lex_state = 26}, + [1218] = {.lex_state = 2022, .external_lex_state = 26}, + [1219] = {.lex_state = 2022, .external_lex_state = 26}, + [1220] = {.lex_state = 2022, .external_lex_state = 16}, + [1221] = {.lex_state = 2022, .external_lex_state = 26}, + [1222] = {.lex_state = 2, .external_lex_state = 11}, + [1223] = {.lex_state = 2022, .external_lex_state = 26}, + [1224] = {.lex_state = 2022, .external_lex_state = 26}, + [1225] = {.lex_state = 2022, .external_lex_state = 26}, + [1226] = {.lex_state = 2022, .external_lex_state = 26}, + [1227] = {.lex_state = 2, .external_lex_state = 11}, + [1228] = {.lex_state = 2022, .external_lex_state = 26}, + [1229] = {.lex_state = 2022, .external_lex_state = 26}, + [1230] = {.lex_state = 2022, .external_lex_state = 26}, + [1231] = {.lex_state = 2022, .external_lex_state = 26}, + [1232] = {.lex_state = 2022, .external_lex_state = 26}, + [1233] = {.lex_state = 2022, .external_lex_state = 26}, + [1234] = {.lex_state = 2022, .external_lex_state = 26}, + [1235] = {.lex_state = 2022, .external_lex_state = 26}, + [1236] = {.lex_state = 2022, .external_lex_state = 13}, + [1237] = {.lex_state = 2, .external_lex_state = 11}, + [1238] = {.lex_state = 2022, .external_lex_state = 26}, + [1239] = {.lex_state = 2022, .external_lex_state = 19}, + [1240] = {.lex_state = 2022, .external_lex_state = 19}, + [1241] = {.lex_state = 2022, .external_lex_state = 26}, + [1242] = {.lex_state = 2022, .external_lex_state = 26}, [1243] = {.lex_state = 2022, .external_lex_state = 19}, - [1244] = {.lex_state = 2, .external_lex_state = 12}, - [1245] = {.lex_state = 2022, .external_lex_state = 27}, - [1246] = {.lex_state = 2, .external_lex_state = 12}, - [1247] = {.lex_state = 2022, .external_lex_state = 19}, - [1248] = {.lex_state = 2022, .external_lex_state = 27}, - [1249] = {.lex_state = 2022, .external_lex_state = 27}, - [1250] = {.lex_state = 2, .external_lex_state = 12}, - [1251] = {.lex_state = 3, .external_lex_state = 12}, - [1252] = {.lex_state = 2022, .external_lex_state = 19}, - [1253] = {.lex_state = 3, .external_lex_state = 12}, - [1254] = {.lex_state = 2022, .external_lex_state = 19}, - [1255] = {.lex_state = 2022, .external_lex_state = 19}, - [1256] = {.lex_state = 2022, .external_lex_state = 19}, - [1257] = {.lex_state = 2022, .external_lex_state = 19}, - [1258] = {.lex_state = 2022, .external_lex_state = 19}, - [1259] = {.lex_state = 2022, .external_lex_state = 19}, - [1260] = {.lex_state = 2022, .external_lex_state = 19}, - [1261] = {.lex_state = 2022, .external_lex_state = 13}, - [1262] = {.lex_state = 2022, .external_lex_state = 19}, - [1263] = {.lex_state = 2022, .external_lex_state = 19}, + [1244] = {.lex_state = 2022, .external_lex_state = 19}, + [1245] = {.lex_state = 2022, .external_lex_state = 26}, + [1246] = {.lex_state = 2022, .external_lex_state = 26}, + [1247] = {.lex_state = 2022, .external_lex_state = 26}, + [1248] = {.lex_state = 2, .external_lex_state = 33}, + [1249] = {.lex_state = 2022, .external_lex_state = 16}, + [1250] = {.lex_state = 2022, .external_lex_state = 27}, + [1251] = {.lex_state = 2022, .external_lex_state = 27}, + [1252] = {.lex_state = 2022, .external_lex_state = 27}, + [1253] = {.lex_state = 2022, .external_lex_state = 27}, + [1254] = {.lex_state = 2022, .external_lex_state = 27}, + [1255] = {.lex_state = 2022, .external_lex_state = 27}, + [1256] = {.lex_state = 2022, .external_lex_state = 16}, + [1257] = {.lex_state = 2022, .external_lex_state = 27}, + [1258] = {.lex_state = 2022, .external_lex_state = 27}, + [1259] = {.lex_state = 2022, .external_lex_state = 16}, + [1260] = {.lex_state = 2022, .external_lex_state = 16}, + [1261] = {.lex_state = 2022, .external_lex_state = 27}, + [1262] = {.lex_state = 2022, .external_lex_state = 27}, + [1263] = {.lex_state = 2022, .external_lex_state = 27}, [1264] = {.lex_state = 2022, .external_lex_state = 27}, [1265] = {.lex_state = 2022, .external_lex_state = 27}, - [1266] = {.lex_state = 2022, .external_lex_state = 19}, - [1267] = {.lex_state = 2022, .external_lex_state = 19}, - [1268] = {.lex_state = 2022, .external_lex_state = 19}, - [1269] = {.lex_state = 2, .external_lex_state = 12}, - [1270] = {.lex_state = 2022, .external_lex_state = 19}, - [1271] = {.lex_state = 2022, .external_lex_state = 19}, - [1272] = {.lex_state = 2, .external_lex_state = 12}, - [1273] = {.lex_state = 2022, .external_lex_state = 19}, - [1274] = {.lex_state = 2, .external_lex_state = 12}, - [1275] = {.lex_state = 2022, .external_lex_state = 25}, - [1276] = {.lex_state = 2022, .external_lex_state = 26}, - [1277] = {.lex_state = 2022, .external_lex_state = 26}, - [1278] = {.lex_state = 2022, .external_lex_state = 26}, - [1279] = {.lex_state = 2022, .external_lex_state = 26}, + [1266] = {.lex_state = 2022, .external_lex_state = 27}, + [1267] = {.lex_state = 2022, .external_lex_state = 27}, + [1268] = {.lex_state = 2022, .external_lex_state = 27}, + [1269] = {.lex_state = 2022, .external_lex_state = 27}, + [1270] = {.lex_state = 1, .external_lex_state = 11}, + [1271] = {.lex_state = 1, .external_lex_state = 11}, + [1272] = {.lex_state = 1, .external_lex_state = 11}, + [1273] = {.lex_state = 2022, .external_lex_state = 27}, + [1274] = {.lex_state = 2022, .external_lex_state = 27}, + [1275] = {.lex_state = 1, .external_lex_state = 11}, + [1276] = {.lex_state = 1, .external_lex_state = 11}, + [1277] = {.lex_state = 2022, .external_lex_state = 16}, + [1278] = {.lex_state = 2022, .external_lex_state = 27}, + [1279] = {.lex_state = 2022, .external_lex_state = 27}, [1280] = {.lex_state = 2022, .external_lex_state = 27}, [1281] = {.lex_state = 2022, .external_lex_state = 27}, - [1282] = {.lex_state = 2022, .external_lex_state = 26}, - [1283] = {.lex_state = 2022, .external_lex_state = 26}, - [1284] = {.lex_state = 2022, .external_lex_state = 19}, - [1285] = {.lex_state = 2022, .external_lex_state = 26}, - [1286] = {.lex_state = 2022, .external_lex_state = 26}, - [1287] = {.lex_state = 2022, .external_lex_state = 26}, - [1288] = {.lex_state = 2022, .external_lex_state = 26}, - [1289] = {.lex_state = 2022, .external_lex_state = 26}, - [1290] = {.lex_state = 2022, .external_lex_state = 26}, - [1291] = {.lex_state = 2022, .external_lex_state = 26}, - [1292] = {.lex_state = 2022, .external_lex_state = 26}, - [1293] = {.lex_state = 2022, .external_lex_state = 26}, - [1294] = {.lex_state = 2022, .external_lex_state = 26}, - [1295] = {.lex_state = 2022, .external_lex_state = 26}, - [1296] = {.lex_state = 2022, .external_lex_state = 27}, - [1297] = {.lex_state = 2022, .external_lex_state = 27}, - [1298] = {.lex_state = 2022, .external_lex_state = 26}, - [1299] = {.lex_state = 2022, .external_lex_state = 26}, - [1300] = {.lex_state = 2022, .external_lex_state = 19}, - [1301] = {.lex_state = 2022, .external_lex_state = 26}, - [1302] = {.lex_state = 3, .external_lex_state = 12}, - [1303] = {.lex_state = 2022, .external_lex_state = 26}, - [1304] = {.lex_state = 2022, .external_lex_state = 26}, - [1305] = {.lex_state = 2022, .external_lex_state = 26}, - [1306] = {.lex_state = 2022, .external_lex_state = 26}, + [1282] = {.lex_state = 2022, .external_lex_state = 27}, + [1283] = {.lex_state = 2022, .external_lex_state = 27}, + [1284] = {.lex_state = 2022, .external_lex_state = 16}, + [1285] = {.lex_state = 1, .external_lex_state = 11}, + [1286] = {.lex_state = 2022, .external_lex_state = 16}, + [1287] = {.lex_state = 2022, .external_lex_state = 16}, + [1288] = {.lex_state = 2022, .external_lex_state = 16}, + [1289] = {.lex_state = 2022, .external_lex_state = 20}, + [1290] = {.lex_state = 2022, .external_lex_state = 20}, + [1291] = {.lex_state = 2022, .external_lex_state = 16}, + [1292] = {.lex_state = 2022, .external_lex_state = 20}, + [1293] = {.lex_state = 2022, .external_lex_state = 20}, + [1294] = {.lex_state = 2022, .external_lex_state = 20}, + [1295] = {.lex_state = 2022, .external_lex_state = 20}, + [1296] = {.lex_state = 2022, .external_lex_state = 16}, + [1297] = {.lex_state = 2022, .external_lex_state = 20}, + [1298] = {.lex_state = 2022, .external_lex_state = 20}, + [1299] = {.lex_state = 2022, .external_lex_state = 20}, + [1300] = {.lex_state = 2022, .external_lex_state = 20}, + [1301] = {.lex_state = 2022, .external_lex_state = 20}, + [1302] = {.lex_state = 2022, .external_lex_state = 20}, + [1303] = {.lex_state = 2, .external_lex_state = 11}, + [1304] = {.lex_state = 2022, .external_lex_state = 20}, + [1305] = {.lex_state = 2, .external_lex_state = 11}, + [1306] = {.lex_state = 2022, .external_lex_state = 20}, [1307] = {.lex_state = 2022, .external_lex_state = 19}, [1308] = {.lex_state = 2022, .external_lex_state = 19}, - [1309] = {.lex_state = 2, .external_lex_state = 12}, - [1310] = {.lex_state = 2022, .external_lex_state = 28}, - [1311] = {.lex_state = 2022, .external_lex_state = 28}, - [1312] = {.lex_state = 2022, .external_lex_state = 27}, - [1313] = {.lex_state = 2022, .external_lex_state = 27}, - [1314] = {.lex_state = 2022, .external_lex_state = 28}, - [1315] = {.lex_state = 2022, .external_lex_state = 28}, - [1316] = {.lex_state = 2022, .external_lex_state = 28}, - [1317] = {.lex_state = 2022, .external_lex_state = 28}, - [1318] = {.lex_state = 2022, .external_lex_state = 19}, - [1319] = {.lex_state = 2022, .external_lex_state = 28}, - [1320] = {.lex_state = 2022, .external_lex_state = 28}, - [1321] = {.lex_state = 2022, .external_lex_state = 28}, - [1322] = {.lex_state = 2022, .external_lex_state = 28}, - [1323] = {.lex_state = 2022, .external_lex_state = 28}, - [1324] = {.lex_state = 2022, .external_lex_state = 28}, - [1325] = {.lex_state = 2022, .external_lex_state = 28}, - [1326] = {.lex_state = 2022, .external_lex_state = 28}, - [1327] = {.lex_state = 2022, .external_lex_state = 28}, - [1328] = {.lex_state = 2022, .external_lex_state = 27}, - [1329] = {.lex_state = 2022, .external_lex_state = 27}, - [1330] = {.lex_state = 2022, .external_lex_state = 28}, - [1331] = {.lex_state = 2022, .external_lex_state = 28}, - [1332] = {.lex_state = 2022, .external_lex_state = 28}, - [1333] = {.lex_state = 2022, .external_lex_state = 28}, - [1334] = {.lex_state = 2022, .external_lex_state = 19}, - [1335] = {.lex_state = 2022, .external_lex_state = 28}, - [1336] = {.lex_state = 2022, .external_lex_state = 28}, - [1337] = {.lex_state = 2022, .external_lex_state = 28}, - [1338] = {.lex_state = 2022, .external_lex_state = 28}, - [1339] = {.lex_state = 2022, .external_lex_state = 28}, - [1340] = {.lex_state = 2022, .external_lex_state = 28}, - [1341] = {.lex_state = 2, .external_lex_state = 12}, - [1342] = {.lex_state = 2022, .external_lex_state = 20}, - [1343] = {.lex_state = 2022, .external_lex_state = 20}, - [1344] = {.lex_state = 2022, .external_lex_state = 27}, - [1345] = {.lex_state = 2022, .external_lex_state = 27}, - [1346] = {.lex_state = 2022, .external_lex_state = 20}, - [1347] = {.lex_state = 2022, .external_lex_state = 20}, - [1348] = {.lex_state = 2022, .external_lex_state = 20}, - [1349] = {.lex_state = 2022, .external_lex_state = 20}, - [1350] = {.lex_state = 2022, .external_lex_state = 17}, - [1351] = {.lex_state = 2, .external_lex_state = 12}, - [1352] = {.lex_state = 2022, .external_lex_state = 20}, - [1353] = {.lex_state = 2022, .external_lex_state = 20}, - [1354] = {.lex_state = 2022, .external_lex_state = 20}, - [1355] = {.lex_state = 2022, .external_lex_state = 20}, - [1356] = {.lex_state = 2022, .external_lex_state = 20}, - [1357] = {.lex_state = 2022, .external_lex_state = 20}, - [1358] = {.lex_state = 2022, .external_lex_state = 20}, - [1359] = {.lex_state = 2022, .external_lex_state = 20}, - [1360] = {.lex_state = 2022, .external_lex_state = 20}, - [1361] = {.lex_state = 2022, .external_lex_state = 20}, - [1362] = {.lex_state = 2022, .external_lex_state = 20}, - [1363] = {.lex_state = 2022, .external_lex_state = 20}, - [1364] = {.lex_state = 2022, .external_lex_state = 17}, - [1365] = {.lex_state = 2022, .external_lex_state = 20}, - [1366] = {.lex_state = 2022, .external_lex_state = 20}, - [1367] = {.lex_state = 2022, .external_lex_state = 20}, - [1368] = {.lex_state = 2022, .external_lex_state = 20}, - [1369] = {.lex_state = 2022, .external_lex_state = 20}, - [1370] = {.lex_state = 2022, .external_lex_state = 20}, - [1371] = {.lex_state = 2, .external_lex_state = 33}, - [1372] = {.lex_state = 2022, .external_lex_state = 17}, - [1373] = {.lex_state = 2022, .external_lex_state = 21}, - [1374] = {.lex_state = 2022, .external_lex_state = 21}, - [1375] = {.lex_state = 2022, .external_lex_state = 21}, - [1376] = {.lex_state = 2022, .external_lex_state = 21}, - [1377] = {.lex_state = 2022, .external_lex_state = 21}, - [1378] = {.lex_state = 2022, .external_lex_state = 21}, - [1379] = {.lex_state = 2022, .external_lex_state = 17}, - [1380] = {.lex_state = 2022, .external_lex_state = 21}, - [1381] = {.lex_state = 2022, .external_lex_state = 21}, - [1382] = {.lex_state = 2022, .external_lex_state = 21}, - [1383] = {.lex_state = 2022, .external_lex_state = 21}, - [1384] = {.lex_state = 2022, .external_lex_state = 21}, - [1385] = {.lex_state = 2022, .external_lex_state = 21}, - [1386] = {.lex_state = 2022, .external_lex_state = 21}, - [1387] = {.lex_state = 2022, .external_lex_state = 21}, - [1388] = {.lex_state = 2022, .external_lex_state = 21}, - [1389] = {.lex_state = 2022, .external_lex_state = 21}, - [1390] = {.lex_state = 2022, .external_lex_state = 21}, - [1391] = {.lex_state = 2022, .external_lex_state = 21}, - [1392] = {.lex_state = 2022, .external_lex_state = 21}, - [1393] = {.lex_state = 2022, .external_lex_state = 17}, - [1394] = {.lex_state = 2022, .external_lex_state = 21}, - [1395] = {.lex_state = 2022, .external_lex_state = 21}, - [1396] = {.lex_state = 2022, .external_lex_state = 21}, - [1397] = {.lex_state = 2022, .external_lex_state = 21}, - [1398] = {.lex_state = 2022, .external_lex_state = 21}, - [1399] = {.lex_state = 2022, .external_lex_state = 21}, - [1400] = {.lex_state = 2022, .external_lex_state = 17}, - [1401] = {.lex_state = 2022, .external_lex_state = 22}, - [1402] = {.lex_state = 2022, .external_lex_state = 27}, - [1403] = {.lex_state = 2022, .external_lex_state = 19}, - [1404] = {.lex_state = 2022, .external_lex_state = 27}, - [1405] = {.lex_state = 2022, .external_lex_state = 22}, - [1406] = {.lex_state = 2022, .external_lex_state = 27}, - [1407] = {.lex_state = 2022, .external_lex_state = 27}, - [1408] = {.lex_state = 2022, .external_lex_state = 27}, - [1409] = {.lex_state = 2022, .external_lex_state = 27}, - [1410] = {.lex_state = 2022, .external_lex_state = 27}, - [1411] = {.lex_state = 2022, .external_lex_state = 22}, - [1412] = {.lex_state = 2022, .external_lex_state = 22}, - [1413] = {.lex_state = 2022, .external_lex_state = 22}, - [1414] = {.lex_state = 2022, .external_lex_state = 22}, - [1415] = {.lex_state = 2022, .external_lex_state = 19}, - [1416] = {.lex_state = 2022, .external_lex_state = 22}, - [1417] = {.lex_state = 2022, .external_lex_state = 19}, - [1418] = {.lex_state = 2022, .external_lex_state = 23}, - [1419] = {.lex_state = 2022, .external_lex_state = 23}, - [1420] = {.lex_state = 2022, .external_lex_state = 22}, + [1309] = {.lex_state = 2022, .external_lex_state = 20}, + [1310] = {.lex_state = 2022, .external_lex_state = 20}, + [1311] = {.lex_state = 2022, .external_lex_state = 20}, + [1312] = {.lex_state = 2022, .external_lex_state = 20}, + [1313] = {.lex_state = 1, .external_lex_state = 11}, + [1314] = {.lex_state = 2022, .external_lex_state = 20}, + [1315] = {.lex_state = 2022, .external_lex_state = 20}, + [1316] = {.lex_state = 2022, .external_lex_state = 20}, + [1317] = {.lex_state = 2022, .external_lex_state = 19}, + [1318] = {.lex_state = 2022, .external_lex_state = 20}, + [1319] = {.lex_state = 2, .external_lex_state = 11}, + [1320] = {.lex_state = 2022, .external_lex_state = 19}, + [1321] = {.lex_state = 2022, .external_lex_state = 20}, + [1322] = {.lex_state = 2022, .external_lex_state = 20}, + [1323] = {.lex_state = 2022, .external_lex_state = 19}, + [1324] = {.lex_state = 2022, .external_lex_state = 22}, + [1325] = {.lex_state = 1, .external_lex_state = 11}, + [1326] = {.lex_state = 3, .external_lex_state = 11}, + [1327] = {.lex_state = 3, .external_lex_state = 11}, + [1328] = {.lex_state = 3, .external_lex_state = 11}, + [1329] = {.lex_state = 3, .external_lex_state = 11}, + [1330] = {.lex_state = 3, .external_lex_state = 11}, + [1331] = {.lex_state = 3, .external_lex_state = 11}, + [1332] = {.lex_state = 1, .external_lex_state = 11}, + [1333] = {.lex_state = 3, .external_lex_state = 11}, + [1334] = {.lex_state = 3, .external_lex_state = 11}, + [1335] = {.lex_state = 3, .external_lex_state = 11}, + [1336] = {.lex_state = 2022, .external_lex_state = 19}, + [1337] = {.lex_state = 3, .external_lex_state = 11}, + [1338] = {.lex_state = 3, .external_lex_state = 11}, + [1339] = {.lex_state = 2022, .external_lex_state = 19}, + [1340] = {.lex_state = 2022, .external_lex_state = 16}, + [1341] = {.lex_state = 3, .external_lex_state = 11}, + [1342] = {.lex_state = 3, .external_lex_state = 11}, + [1343] = {.lex_state = 3, .external_lex_state = 11}, + [1344] = {.lex_state = 3, .external_lex_state = 11}, + [1345] = {.lex_state = 3, .external_lex_state = 11}, + [1346] = {.lex_state = 3, .external_lex_state = 11}, + [1347] = {.lex_state = 3, .external_lex_state = 11}, + [1348] = {.lex_state = 3, .external_lex_state = 11}, + [1349] = {.lex_state = 2022, .external_lex_state = 19}, + [1350] = {.lex_state = 2022, .external_lex_state = 19}, + [1351] = {.lex_state = 2022, .external_lex_state = 16}, + [1352] = {.lex_state = 2022, .external_lex_state = 19}, + [1353] = {.lex_state = 1, .external_lex_state = 11}, + [1354] = {.lex_state = 2, .external_lex_state = 11}, + [1355] = {.lex_state = 2022, .external_lex_state = 22}, + [1356] = {.lex_state = 2022, .external_lex_state = 19}, + [1357] = {.lex_state = 3, .external_lex_state = 11}, + [1358] = {.lex_state = 3, .external_lex_state = 11}, + [1359] = {.lex_state = 3, .external_lex_state = 11}, + [1360] = {.lex_state = 3, .external_lex_state = 11}, + [1361] = {.lex_state = 3, .external_lex_state = 11}, + [1362] = {.lex_state = 2022, .external_lex_state = 16}, + [1363] = {.lex_state = 2022, .external_lex_state = 19}, + [1364] = {.lex_state = 2022, .external_lex_state = 19}, + [1365] = {.lex_state = 2022, .external_lex_state = 19}, + [1366] = {.lex_state = 2, .external_lex_state = 11}, + [1367] = {.lex_state = 2022, .external_lex_state = 28}, + [1368] = {.lex_state = 2022, .external_lex_state = 28}, + [1369] = {.lex_state = 2022, .external_lex_state = 19}, + [1370] = {.lex_state = 2022, .external_lex_state = 19}, + [1371] = {.lex_state = 2022, .external_lex_state = 28}, + [1372] = {.lex_state = 2022, .external_lex_state = 28}, + [1373] = {.lex_state = 2022, .external_lex_state = 28}, + [1374] = {.lex_state = 2022, .external_lex_state = 28}, + [1375] = {.lex_state = 2, .external_lex_state = 11}, + [1376] = {.lex_state = 2022, .external_lex_state = 28}, + [1377] = {.lex_state = 2022, .external_lex_state = 22}, + [1378] = {.lex_state = 2022, .external_lex_state = 28}, + [1379] = {.lex_state = 2, .external_lex_state = 11}, + [1380] = {.lex_state = 1, .external_lex_state = 11}, + [1381] = {.lex_state = 2022, .external_lex_state = 28}, + [1382] = {.lex_state = 2022, .external_lex_state = 28}, + [1383] = {.lex_state = 1, .external_lex_state = 11}, + [1384] = {.lex_state = 1, .external_lex_state = 11}, + [1385] = {.lex_state = 2022, .external_lex_state = 28}, + [1386] = {.lex_state = 2022, .external_lex_state = 28}, + [1387] = {.lex_state = 2022, .external_lex_state = 28}, + [1388] = {.lex_state = 2022, .external_lex_state = 28}, + [1389] = {.lex_state = 2022, .external_lex_state = 28}, + [1390] = {.lex_state = 2022, .external_lex_state = 28}, + [1391] = {.lex_state = 1, .external_lex_state = 11}, + [1392] = {.lex_state = 1, .external_lex_state = 11}, + [1393] = {.lex_state = 1, .external_lex_state = 11}, + [1394] = {.lex_state = 1, .external_lex_state = 11}, + [1395] = {.lex_state = 2022, .external_lex_state = 28}, + [1396] = {.lex_state = 2022, .external_lex_state = 28}, + [1397] = {.lex_state = 1, .external_lex_state = 11}, + [1398] = {.lex_state = 1, .external_lex_state = 11}, + [1399] = {.lex_state = 2022, .external_lex_state = 28}, + [1400] = {.lex_state = 2022, .external_lex_state = 19}, + [1401] = {.lex_state = 2022, .external_lex_state = 28}, + [1402] = {.lex_state = 2022, .external_lex_state = 28}, + [1403] = {.lex_state = 2022, .external_lex_state = 28}, + [1404] = {.lex_state = 2022, .external_lex_state = 28}, + [1405] = {.lex_state = 2022, .external_lex_state = 28}, + [1406] = {.lex_state = 2022, .external_lex_state = 28}, + [1407] = {.lex_state = 2, .external_lex_state = 11}, + [1408] = {.lex_state = 2022, .external_lex_state = 23}, + [1409] = {.lex_state = 2022, .external_lex_state = 23}, + [1410] = {.lex_state = 2022, .external_lex_state = 23}, + [1411] = {.lex_state = 2022, .external_lex_state = 23}, + [1412] = {.lex_state = 2022, .external_lex_state = 23}, + [1413] = {.lex_state = 2022, .external_lex_state = 23}, + [1414] = {.lex_state = 1, .external_lex_state = 11}, + [1415] = {.lex_state = 1, .external_lex_state = 11}, + [1416] = {.lex_state = 1, .external_lex_state = 11}, + [1417] = {.lex_state = 1, .external_lex_state = 11}, + [1418] = {.lex_state = 2022, .external_lex_state = 19}, + [1419] = {.lex_state = 2022, .external_lex_state = 19}, + [1420] = {.lex_state = 2022, .external_lex_state = 19}, [1421] = {.lex_state = 2022, .external_lex_state = 23}, [1422] = {.lex_state = 2022, .external_lex_state = 23}, [1423] = {.lex_state = 2022, .external_lex_state = 23}, [1424] = {.lex_state = 2022, .external_lex_state = 23}, - [1425] = {.lex_state = 3, .external_lex_state = 12}, - [1426] = {.lex_state = 2022, .external_lex_state = 22}, - [1427] = {.lex_state = 2022, .external_lex_state = 22}, - [1428] = {.lex_state = 2022, .external_lex_state = 22}, - [1429] = {.lex_state = 2022, .external_lex_state = 22}, - [1430] = {.lex_state = 2022, .external_lex_state = 22}, - [1431] = {.lex_state = 2022, .external_lex_state = 22}, + [1425] = {.lex_state = 2022, .external_lex_state = 23}, + [1426] = {.lex_state = 2022, .external_lex_state = 23}, + [1427] = {.lex_state = 2022, .external_lex_state = 23}, + [1428] = {.lex_state = 2022, .external_lex_state = 23}, + [1429] = {.lex_state = 2022, .external_lex_state = 19}, + [1430] = {.lex_state = 2022, .external_lex_state = 23}, + [1431] = {.lex_state = 2022, .external_lex_state = 19}, [1432] = {.lex_state = 2022, .external_lex_state = 23}, [1433] = {.lex_state = 2022, .external_lex_state = 23}, [1434] = {.lex_state = 2022, .external_lex_state = 23}, - [1435] = {.lex_state = 2022, .external_lex_state = 22}, - [1436] = {.lex_state = 2022, .external_lex_state = 23}, + [1435] = {.lex_state = 2022, .external_lex_state = 23}, + [1436] = {.lex_state = 2022, .external_lex_state = 19}, [1437] = {.lex_state = 2022, .external_lex_state = 23}, [1438] = {.lex_state = 2022, .external_lex_state = 23}, [1439] = {.lex_state = 2022, .external_lex_state = 23}, [1440] = {.lex_state = 2022, .external_lex_state = 23}, [1441] = {.lex_state = 2022, .external_lex_state = 23}, [1442] = {.lex_state = 2022, .external_lex_state = 23}, - [1443] = {.lex_state = 2022, .external_lex_state = 23}, - [1444] = {.lex_state = 2022, .external_lex_state = 22}, - [1445] = {.lex_state = 2022, .external_lex_state = 23}, - [1446] = {.lex_state = 2022, .external_lex_state = 23}, - [1447] = {.lex_state = 2022, .external_lex_state = 19}, - [1448] = {.lex_state = 2022, .external_lex_state = 23}, - [1449] = {.lex_state = 2022, .external_lex_state = 23}, - [1450] = {.lex_state = 2022, .external_lex_state = 23}, - [1451] = {.lex_state = 2022, .external_lex_state = 23}, - [1452] = {.lex_state = 2022, .external_lex_state = 23}, - [1453] = {.lex_state = 2022, .external_lex_state = 22}, - [1454] = {.lex_state = 2022, .external_lex_state = 23}, - [1455] = {.lex_state = 2022, .external_lex_state = 19}, - [1456] = {.lex_state = 2022, .external_lex_state = 24}, - [1457] = {.lex_state = 2022, .external_lex_state = 24}, - [1458] = {.lex_state = 2022, .external_lex_state = 24}, - [1459] = {.lex_state = 2022, .external_lex_state = 24}, - [1460] = {.lex_state = 2022, .external_lex_state = 24}, - [1461] = {.lex_state = 2022, .external_lex_state = 24}, - [1462] = {.lex_state = 2022, .external_lex_state = 22}, - [1463] = {.lex_state = 2022, .external_lex_state = 19}, - [1464] = {.lex_state = 2022, .external_lex_state = 24}, - [1465] = {.lex_state = 2022, .external_lex_state = 24}, - [1466] = {.lex_state = 2022, .external_lex_state = 24}, - [1467] = {.lex_state = 2022, .external_lex_state = 24}, - [1468] = {.lex_state = 2022, .external_lex_state = 24}, - [1469] = {.lex_state = 2022, .external_lex_state = 24}, - [1470] = {.lex_state = 2022, .external_lex_state = 24}, - [1471] = {.lex_state = 2022, .external_lex_state = 22}, - [1472] = {.lex_state = 2022, .external_lex_state = 24}, - [1473] = {.lex_state = 2022, .external_lex_state = 24}, - [1474] = {.lex_state = 2022, .external_lex_state = 24}, - [1475] = {.lex_state = 2022, .external_lex_state = 24}, - [1476] = {.lex_state = 2022, .external_lex_state = 24}, - [1477] = {.lex_state = 2022, .external_lex_state = 24}, - [1478] = {.lex_state = 2, .external_lex_state = 12}, - [1479] = {.lex_state = 2022, .external_lex_state = 19}, - [1480] = {.lex_state = 2022, .external_lex_state = 19}, - [1481] = {.lex_state = 2022, .external_lex_state = 24}, - [1482] = {.lex_state = 2022, .external_lex_state = 24}, - [1483] = {.lex_state = 2022, .external_lex_state = 24}, - [1484] = {.lex_state = 2022, .external_lex_state = 24}, - [1485] = {.lex_state = 2022, .external_lex_state = 24}, - [1486] = {.lex_state = 2022, .external_lex_state = 24}, - [1487] = {.lex_state = 2022, .external_lex_state = 19}, - [1488] = {.lex_state = 2, .external_lex_state = 12}, - [1489] = {.lex_state = 2022, .external_lex_state = 22}, - [1490] = {.lex_state = 2022, .external_lex_state = 19}, - [1491] = {.lex_state = 2022, .external_lex_state = 25}, - [1492] = {.lex_state = 2, .external_lex_state = 12}, - [1493] = {.lex_state = 2, .external_lex_state = 12}, - [1494] = {.lex_state = 2, .external_lex_state = 12}, - [1495] = {.lex_state = 2, .external_lex_state = 12}, - [1496] = {.lex_state = 2, .external_lex_state = 12}, - [1497] = {.lex_state = 2, .external_lex_state = 12}, - [1498] = {.lex_state = 2022, .external_lex_state = 22}, - [1499] = {.lex_state = 2, .external_lex_state = 12}, - [1500] = {.lex_state = 2, .external_lex_state = 12}, - [1501] = {.lex_state = 2, .external_lex_state = 12}, - [1502] = {.lex_state = 2022, .external_lex_state = 19}, - [1503] = {.lex_state = 2022, .external_lex_state = 25}, - [1504] = {.lex_state = 2, .external_lex_state = 12}, - [1505] = {.lex_state = 2, .external_lex_state = 12}, - [1506] = {.lex_state = 3, .external_lex_state = 12}, - [1507] = {.lex_state = 2022, .external_lex_state = 22}, - [1508] = {.lex_state = 2, .external_lex_state = 12}, - [1509] = {.lex_state = 2022, .external_lex_state = 25}, - [1510] = {.lex_state = 3, .external_lex_state = 12}, - [1511] = {.lex_state = 2, .external_lex_state = 12}, - [1512] = {.lex_state = 3, .external_lex_state = 12}, - [1513] = {.lex_state = 3, .external_lex_state = 12}, - [1514] = {.lex_state = 2, .external_lex_state = 12}, - [1515] = {.lex_state = 2, .external_lex_state = 12}, - [1516] = {.lex_state = 2022, .external_lex_state = 22}, - [1517] = {.lex_state = 2, .external_lex_state = 12}, - [1518] = {.lex_state = 2, .external_lex_state = 12}, - [1519] = {.lex_state = 2, .external_lex_state = 12}, - [1520] = {.lex_state = 2, .external_lex_state = 12}, - [1521] = {.lex_state = 2, .external_lex_state = 12}, - [1522] = {.lex_state = 2, .external_lex_state = 12}, - [1523] = {.lex_state = 2, .external_lex_state = 12}, - [1524] = {.lex_state = 2, .external_lex_state = 12}, - [1525] = {.lex_state = 2022, .external_lex_state = 22}, - [1526] = {.lex_state = 2, .external_lex_state = 12}, - [1527] = {.lex_state = 2, .external_lex_state = 12}, - [1528] = {.lex_state = 2, .external_lex_state = 12}, - [1529] = {.lex_state = 2, .external_lex_state = 12}, - [1530] = {.lex_state = 2, .external_lex_state = 12}, - [1531] = {.lex_state = 2, .external_lex_state = 12}, - [1532] = {.lex_state = 2, .external_lex_state = 12}, - [1533] = {.lex_state = 2, .external_lex_state = 12}, - [1534] = {.lex_state = 2022, .external_lex_state = 22}, - [1535] = {.lex_state = 3, .external_lex_state = 12}, - [1536] = {.lex_state = 3, .external_lex_state = 12}, - [1537] = {.lex_state = 2, .external_lex_state = 12}, - [1538] = {.lex_state = 2, .external_lex_state = 12}, - [1539] = {.lex_state = 2, .external_lex_state = 12}, - [1540] = {.lex_state = 2, .external_lex_state = 12}, - [1541] = {.lex_state = 2, .external_lex_state = 12}, - [1542] = {.lex_state = 3, .external_lex_state = 12}, - [1543] = {.lex_state = 2022, .external_lex_state = 19}, - [1544] = {.lex_state = 2, .external_lex_state = 12}, - [1545] = {.lex_state = 2, .external_lex_state = 12}, - [1546] = {.lex_state = 3, .external_lex_state = 12}, - [1547] = {.lex_state = 2, .external_lex_state = 12}, - [1548] = {.lex_state = 2, .external_lex_state = 12}, - [1549] = {.lex_state = 3, .external_lex_state = 12}, - [1550] = {.lex_state = 3, .external_lex_state = 12}, - [1551] = {.lex_state = 2022, .external_lex_state = 20}, - [1552] = {.lex_state = 2022, .external_lex_state = 24}, - [1553] = {.lex_state = 2022, .external_lex_state = 20}, - [1554] = {.lex_state = 2022, .external_lex_state = 20}, - [1555] = {.lex_state = 2022, .external_lex_state = 20}, - [1556] = {.lex_state = 2022, .external_lex_state = 20}, - [1557] = {.lex_state = 2022, .external_lex_state = 21}, - [1558] = {.lex_state = 2, .external_lex_state = 18}, - [1559] = {.lex_state = 2022, .external_lex_state = 21}, - [1560] = {.lex_state = 2022, .external_lex_state = 21}, - [1561] = {.lex_state = 2022, .external_lex_state = 21}, - [1562] = {.lex_state = 2022, .external_lex_state = 21}, - [1563] = {.lex_state = 2022, .external_lex_state = 20}, - [1564] = {.lex_state = 2022, .external_lex_state = 20}, - [1565] = {.lex_state = 2022, .external_lex_state = 21}, - [1566] = {.lex_state = 2022, .external_lex_state = 21}, - [1567] = {.lex_state = 2022, .external_lex_state = 21}, - [1568] = {.lex_state = 2022, .external_lex_state = 21}, - [1569] = {.lex_state = 2022, .external_lex_state = 21}, - [1570] = {.lex_state = 2022, .external_lex_state = 21}, - [1571] = {.lex_state = 2022, .external_lex_state = 21}, - [1572] = {.lex_state = 2022, .external_lex_state = 21}, - [1573] = {.lex_state = 2022, .external_lex_state = 21}, - [1574] = {.lex_state = 2022, .external_lex_state = 21}, - [1575] = {.lex_state = 2022, .external_lex_state = 21}, - [1576] = {.lex_state = 2022, .external_lex_state = 21}, - [1577] = {.lex_state = 2022, .external_lex_state = 21}, - [1578] = {.lex_state = 2022, .external_lex_state = 21}, - [1579] = {.lex_state = 2022, .external_lex_state = 21}, - [1580] = {.lex_state = 2022, .external_lex_state = 21}, - [1581] = {.lex_state = 2022, .external_lex_state = 21}, - [1582] = {.lex_state = 2022, .external_lex_state = 21}, - [1583] = {.lex_state = 2022, .external_lex_state = 21}, - [1584] = {.lex_state = 2022, .external_lex_state = 20}, - [1585] = {.lex_state = 2022, .external_lex_state = 20}, - [1586] = {.lex_state = 2022, .external_lex_state = 22}, - [1587] = {.lex_state = 2022, .external_lex_state = 20}, - [1588] = {.lex_state = 2022, .external_lex_state = 20}, - [1589] = {.lex_state = 2022, .external_lex_state = 21}, - [1590] = {.lex_state = 2022, .external_lex_state = 21}, - [1591] = {.lex_state = 2022, .external_lex_state = 21}, - [1592] = {.lex_state = 2022, .external_lex_state = 21}, - [1593] = {.lex_state = 2022, .external_lex_state = 21}, - [1594] = {.lex_state = 2022, .external_lex_state = 21}, - [1595] = {.lex_state = 2022, .external_lex_state = 21}, - [1596] = {.lex_state = 2022, .external_lex_state = 21}, - [1597] = {.lex_state = 2022, .external_lex_state = 21}, - [1598] = {.lex_state = 2022, .external_lex_state = 21}, - [1599] = {.lex_state = 2022, .external_lex_state = 21}, - [1600] = {.lex_state = 2022, .external_lex_state = 21}, - [1601] = {.lex_state = 2022, .external_lex_state = 21}, - [1602] = {.lex_state = 2022, .external_lex_state = 21}, - [1603] = {.lex_state = 2022, .external_lex_state = 21}, - [1604] = {.lex_state = 2022, .external_lex_state = 21}, - [1605] = {.lex_state = 2022, .external_lex_state = 21}, - [1606] = {.lex_state = 2022, .external_lex_state = 20}, - [1607] = {.lex_state = 2022, .external_lex_state = 20}, - [1608] = {.lex_state = 2022, .external_lex_state = 20}, - [1609] = {.lex_state = 2022, .external_lex_state = 20}, - [1610] = {.lex_state = 2022, .external_lex_state = 21}, - [1611] = {.lex_state = 2022, .external_lex_state = 21}, - [1612] = {.lex_state = 2022, .external_lex_state = 21}, - [1613] = {.lex_state = 2022, .external_lex_state = 21}, - [1614] = {.lex_state = 2022, .external_lex_state = 21}, - [1615] = {.lex_state = 2022, .external_lex_state = 21}, - [1616] = {.lex_state = 2022, .external_lex_state = 21}, - [1617] = {.lex_state = 2022, .external_lex_state = 21}, - [1618] = {.lex_state = 2022, .external_lex_state = 21}, - [1619] = {.lex_state = 2022, .external_lex_state = 21}, - [1620] = {.lex_state = 2022, .external_lex_state = 20}, - [1621] = {.lex_state = 2022, .external_lex_state = 21}, - [1622] = {.lex_state = 2022, .external_lex_state = 21}, - [1623] = {.lex_state = 2022, .external_lex_state = 21}, - [1624] = {.lex_state = 2022, .external_lex_state = 21}, - [1625] = {.lex_state = 2022, .external_lex_state = 21}, - [1626] = {.lex_state = 2022, .external_lex_state = 21}, - [1627] = {.lex_state = 2022, .external_lex_state = 21}, - [1628] = {.lex_state = 2022, .external_lex_state = 22}, - [1629] = {.lex_state = 2022, .external_lex_state = 17}, - [1630] = {.lex_state = 2022, .external_lex_state = 22}, - [1631] = {.lex_state = 2022, .external_lex_state = 22}, - [1632] = {.lex_state = 2022, .external_lex_state = 22}, - [1633] = {.lex_state = 2022, .external_lex_state = 22}, - [1634] = {.lex_state = 2022, .external_lex_state = 17}, - [1635] = {.lex_state = 2022, .external_lex_state = 21}, - [1636] = {.lex_state = 2022, .external_lex_state = 21}, - [1637] = {.lex_state = 2022, .external_lex_state = 22}, - [1638] = {.lex_state = 2022, .external_lex_state = 17}, - [1639] = {.lex_state = 2022, .external_lex_state = 22}, - [1640] = {.lex_state = 2022, .external_lex_state = 17}, - [1641] = {.lex_state = 2022, .external_lex_state = 22}, - [1642] = {.lex_state = 2022, .external_lex_state = 22}, - [1643] = {.lex_state = 2022, .external_lex_state = 17}, - [1644] = {.lex_state = 2022, .external_lex_state = 17}, - [1645] = {.lex_state = 2022, .external_lex_state = 22}, - [1646] = {.lex_state = 2022, .external_lex_state = 22}, - [1647] = {.lex_state = 2022, .external_lex_state = 22}, - [1648] = {.lex_state = 2022, .external_lex_state = 22}, - [1649] = {.lex_state = 2022, .external_lex_state = 22}, - [1650] = {.lex_state = 2022, .external_lex_state = 22}, - [1651] = {.lex_state = 2022, .external_lex_state = 22}, - [1652] = {.lex_state = 2022, .external_lex_state = 22}, - [1653] = {.lex_state = 2022, .external_lex_state = 22}, - [1654] = {.lex_state = 2022, .external_lex_state = 22}, - [1655] = {.lex_state = 2022, .external_lex_state = 22}, - [1656] = {.lex_state = 2022, .external_lex_state = 22}, - [1657] = {.lex_state = 2022, .external_lex_state = 17}, - [1658] = {.lex_state = 2022, .external_lex_state = 22}, - [1659] = {.lex_state = 2022, .external_lex_state = 17}, - [1660] = {.lex_state = 2022, .external_lex_state = 17}, - [1661] = {.lex_state = 2022, .external_lex_state = 22}, - [1662] = {.lex_state = 2022, .external_lex_state = 22}, - [1663] = {.lex_state = 2022, .external_lex_state = 21}, - [1664] = {.lex_state = 2022, .external_lex_state = 21}, - [1665] = {.lex_state = 3, .external_lex_state = 12}, - [1666] = {.lex_state = 2022, .external_lex_state = 17}, - [1667] = {.lex_state = 2022, .external_lex_state = 21}, - [1668] = {.lex_state = 2022, .external_lex_state = 21}, - [1669] = {.lex_state = 2022, .external_lex_state = 22}, - [1670] = {.lex_state = 2022, .external_lex_state = 22}, - [1671] = {.lex_state = 2022, .external_lex_state = 22}, - [1672] = {.lex_state = 2022, .external_lex_state = 17}, - [1673] = {.lex_state = 2022, .external_lex_state = 22}, - [1674] = {.lex_state = 2022, .external_lex_state = 22}, - [1675] = {.lex_state = 2022, .external_lex_state = 17}, - [1676] = {.lex_state = 2022, .external_lex_state = 22}, - [1677] = {.lex_state = 2022, .external_lex_state = 22}, - [1678] = {.lex_state = 2022, .external_lex_state = 17}, - [1679] = {.lex_state = 2022, .external_lex_state = 22}, - [1680] = {.lex_state = 2022, .external_lex_state = 22}, - [1681] = {.lex_state = 2022, .external_lex_state = 17}, - [1682] = {.lex_state = 2022, .external_lex_state = 22}, - [1683] = {.lex_state = 2022, .external_lex_state = 22}, - [1684] = {.lex_state = 2022, .external_lex_state = 22}, - [1685] = {.lex_state = 2022, .external_lex_state = 22}, - [1686] = {.lex_state = 2022, .external_lex_state = 22}, - [1687] = {.lex_state = 2022, .external_lex_state = 22}, - [1688] = {.lex_state = 2022, .external_lex_state = 22}, - [1689] = {.lex_state = 2022, .external_lex_state = 17}, - [1690] = {.lex_state = 2022, .external_lex_state = 22}, - [1691] = {.lex_state = 2022, .external_lex_state = 21}, - [1692] = {.lex_state = 2022, .external_lex_state = 21}, - [1693] = {.lex_state = 2022, .external_lex_state = 21}, - [1694] = {.lex_state = 2022, .external_lex_state = 21}, - [1695] = {.lex_state = 2022, .external_lex_state = 22}, - [1696] = {.lex_state = 2022, .external_lex_state = 22}, - [1697] = {.lex_state = 2022, .external_lex_state = 22}, - [1698] = {.lex_state = 2022, .external_lex_state = 22}, - [1699] = {.lex_state = 2022, .external_lex_state = 22}, - [1700] = {.lex_state = 2022, .external_lex_state = 22}, - [1701] = {.lex_state = 2022, .external_lex_state = 22}, - [1702] = {.lex_state = 2022, .external_lex_state = 22}, - [1703] = {.lex_state = 2022, .external_lex_state = 22}, - [1704] = {.lex_state = 2022, .external_lex_state = 22}, - [1705] = {.lex_state = 2022, .external_lex_state = 22}, - [1706] = {.lex_state = 2022, .external_lex_state = 22}, - [1707] = {.lex_state = 2022, .external_lex_state = 22}, - [1708] = {.lex_state = 2022, .external_lex_state = 22}, - [1709] = {.lex_state = 2022, .external_lex_state = 22}, - [1710] = {.lex_state = 2022, .external_lex_state = 22}, - [1711] = {.lex_state = 2022, .external_lex_state = 22}, - [1712] = {.lex_state = 2022, .external_lex_state = 22}, - [1713] = {.lex_state = 3, .external_lex_state = 12}, - [1714] = {.lex_state = 2022, .external_lex_state = 17}, - [1715] = {.lex_state = 2022, .external_lex_state = 17}, - [1716] = {.lex_state = 3, .external_lex_state = 12}, - [1717] = {.lex_state = 3, .external_lex_state = 12}, - [1718] = {.lex_state = 3, .external_lex_state = 12}, - [1719] = {.lex_state = 3, .external_lex_state = 12}, - [1720] = {.lex_state = 2022, .external_lex_state = 17}, - [1721] = {.lex_state = 2022, .external_lex_state = 22}, - [1722] = {.lex_state = 2022, .external_lex_state = 17}, - [1723] = {.lex_state = 2022, .external_lex_state = 22}, - [1724] = {.lex_state = 3, .external_lex_state = 12}, - [1725] = {.lex_state = 2022, .external_lex_state = 17}, - [1726] = {.lex_state = 2022, .external_lex_state = 17}, - [1727] = {.lex_state = 3, .external_lex_state = 12}, - [1728] = {.lex_state = 3, .external_lex_state = 12}, - [1729] = {.lex_state = 3, .external_lex_state = 12}, - [1730] = {.lex_state = 3, .external_lex_state = 12}, - [1731] = {.lex_state = 3, .external_lex_state = 12}, - [1732] = {.lex_state = 3, .external_lex_state = 12}, - [1733] = {.lex_state = 3, .external_lex_state = 12}, - [1734] = {.lex_state = 3, .external_lex_state = 12}, - [1735] = {.lex_state = 3, .external_lex_state = 12}, - [1736] = {.lex_state = 3, .external_lex_state = 12}, - [1737] = {.lex_state = 3, .external_lex_state = 12}, - [1738] = {.lex_state = 3, .external_lex_state = 12}, - [1739] = {.lex_state = 3, .external_lex_state = 12}, - [1740] = {.lex_state = 3, .external_lex_state = 12}, - [1741] = {.lex_state = 3, .external_lex_state = 12}, - [1742] = {.lex_state = 3, .external_lex_state = 12}, - [1743] = {.lex_state = 1, .external_lex_state = 12}, - [1744] = {.lex_state = 3, .external_lex_state = 12}, - [1745] = {.lex_state = 3, .external_lex_state = 12}, - [1746] = {.lex_state = 2022, .external_lex_state = 22}, - [1747] = {.lex_state = 2022, .external_lex_state = 22}, - [1748] = {.lex_state = 2022, .external_lex_state = 25}, - [1749] = {.lex_state = 2022, .external_lex_state = 22}, - [1750] = {.lex_state = 2022, .external_lex_state = 22}, - [1751] = {.lex_state = 3, .external_lex_state = 12}, - [1752] = {.lex_state = 3, .external_lex_state = 12}, - [1753] = {.lex_state = 3, .external_lex_state = 12}, - [1754] = {.lex_state = 3, .external_lex_state = 12}, - [1755] = {.lex_state = 3, .external_lex_state = 12}, - [1756] = {.lex_state = 3, .external_lex_state = 12}, - [1757] = {.lex_state = 3, .external_lex_state = 12}, - [1758] = {.lex_state = 3, .external_lex_state = 12}, - [1759] = {.lex_state = 3, .external_lex_state = 12}, - [1760] = {.lex_state = 3, .external_lex_state = 12}, - [1761] = {.lex_state = 3, .external_lex_state = 12}, - [1762] = {.lex_state = 3, .external_lex_state = 12}, - [1763] = {.lex_state = 3, .external_lex_state = 12}, - [1764] = {.lex_state = 3, .external_lex_state = 12}, - [1765] = {.lex_state = 3, .external_lex_state = 12}, - [1766] = {.lex_state = 3, .external_lex_state = 12}, - [1767] = {.lex_state = 3, .external_lex_state = 12}, - [1768] = {.lex_state = 2022, .external_lex_state = 22}, - [1769] = {.lex_state = 2022, .external_lex_state = 22}, - [1770] = {.lex_state = 2022, .external_lex_state = 22}, - [1771] = {.lex_state = 2022, .external_lex_state = 22}, - [1772] = {.lex_state = 3, .external_lex_state = 12}, - [1773] = {.lex_state = 3, .external_lex_state = 12}, - [1774] = {.lex_state = 3, .external_lex_state = 12}, - [1775] = {.lex_state = 3, .external_lex_state = 12}, - [1776] = {.lex_state = 3, .external_lex_state = 12}, - [1777] = {.lex_state = 3, .external_lex_state = 12}, - [1778] = {.lex_state = 3, .external_lex_state = 12}, - [1779] = {.lex_state = 3, .external_lex_state = 12}, - [1780] = {.lex_state = 3, .external_lex_state = 12}, - [1781] = {.lex_state = 3, .external_lex_state = 12}, - [1782] = {.lex_state = 3, .external_lex_state = 12}, - [1783] = {.lex_state = 3, .external_lex_state = 12}, - [1784] = {.lex_state = 3, .external_lex_state = 12}, - [1785] = {.lex_state = 3, .external_lex_state = 12}, - [1786] = {.lex_state = 3, .external_lex_state = 12}, - [1787] = {.lex_state = 3, .external_lex_state = 12}, - [1788] = {.lex_state = 3, .external_lex_state = 12}, - [1789] = {.lex_state = 3, .external_lex_state = 12}, - [1790] = {.lex_state = 2022, .external_lex_state = 25}, - [1791] = {.lex_state = 2022, .external_lex_state = 25}, - [1792] = {.lex_state = 2022, .external_lex_state = 25}, - [1793] = {.lex_state = 2022, .external_lex_state = 25}, - [1794] = {.lex_state = 2022, .external_lex_state = 25}, - [1795] = {.lex_state = 3, .external_lex_state = 12}, - [1796] = {.lex_state = 3, .external_lex_state = 12}, - [1797] = {.lex_state = 2022, .external_lex_state = 25}, - [1798] = {.lex_state = 2022, .external_lex_state = 25}, - [1799] = {.lex_state = 2022, .external_lex_state = 25}, - [1800] = {.lex_state = 2022, .external_lex_state = 25}, - [1801] = {.lex_state = 2022, .external_lex_state = 25}, - [1802] = {.lex_state = 2022, .external_lex_state = 25}, - [1803] = {.lex_state = 2022, .external_lex_state = 25}, - [1804] = {.lex_state = 2022, .external_lex_state = 25}, - [1805] = {.lex_state = 2022, .external_lex_state = 25}, - [1806] = {.lex_state = 2022, .external_lex_state = 25}, - [1807] = {.lex_state = 2022, .external_lex_state = 25}, - [1808] = {.lex_state = 2022, .external_lex_state = 25}, - [1809] = {.lex_state = 2022, .external_lex_state = 25}, - [1810] = {.lex_state = 2022, .external_lex_state = 25}, - [1811] = {.lex_state = 2022, .external_lex_state = 25}, - [1812] = {.lex_state = 2022, .external_lex_state = 25}, - [1813] = {.lex_state = 2022, .external_lex_state = 25}, - [1814] = {.lex_state = 2022, .external_lex_state = 25}, - [1815] = {.lex_state = 2022, .external_lex_state = 25}, - [1816] = {.lex_state = 3, .external_lex_state = 12}, - [1817] = {.lex_state = 3, .external_lex_state = 12}, - [1818] = {.lex_state = 2022, .external_lex_state = 27}, - [1819] = {.lex_state = 3, .external_lex_state = 12}, - [1820] = {.lex_state = 3, .external_lex_state = 12}, - [1821] = {.lex_state = 2022, .external_lex_state = 25}, - [1822] = {.lex_state = 2022, .external_lex_state = 25}, - [1823] = {.lex_state = 2022, .external_lex_state = 25}, - [1824] = {.lex_state = 2022, .external_lex_state = 25}, - [1825] = {.lex_state = 2022, .external_lex_state = 25}, - [1826] = {.lex_state = 2022, .external_lex_state = 25}, - [1827] = {.lex_state = 2022, .external_lex_state = 25}, - [1828] = {.lex_state = 2022, .external_lex_state = 25}, - [1829] = {.lex_state = 2022, .external_lex_state = 25}, - [1830] = {.lex_state = 2022, .external_lex_state = 25}, - [1831] = {.lex_state = 2022, .external_lex_state = 25}, - [1832] = {.lex_state = 2022, .external_lex_state = 25}, - [1833] = {.lex_state = 2022, .external_lex_state = 25}, - [1834] = {.lex_state = 2022, .external_lex_state = 25}, - [1835] = {.lex_state = 2022, .external_lex_state = 25}, - [1836] = {.lex_state = 2022, .external_lex_state = 25}, - [1837] = {.lex_state = 2022, .external_lex_state = 17}, - [1838] = {.lex_state = 2022, .external_lex_state = 25}, - [1839] = {.lex_state = 3, .external_lex_state = 12}, - [1840] = {.lex_state = 3, .external_lex_state = 12}, - [1841] = {.lex_state = 3, .external_lex_state = 12}, - [1842] = {.lex_state = 3, .external_lex_state = 12}, - [1843] = {.lex_state = 2022, .external_lex_state = 25}, - [1844] = {.lex_state = 2022, .external_lex_state = 25}, - [1845] = {.lex_state = 2022, .external_lex_state = 25}, - [1846] = {.lex_state = 2022, .external_lex_state = 25}, - [1847] = {.lex_state = 2022, .external_lex_state = 25}, - [1848] = {.lex_state = 2022, .external_lex_state = 25}, - [1849] = {.lex_state = 2022, .external_lex_state = 25}, - [1850] = {.lex_state = 2022, .external_lex_state = 25}, - [1851] = {.lex_state = 2022, .external_lex_state = 25}, - [1852] = {.lex_state = 2022, .external_lex_state = 25}, - [1853] = {.lex_state = 2022, .external_lex_state = 25}, - [1854] = {.lex_state = 2022, .external_lex_state = 25}, - [1855] = {.lex_state = 2022, .external_lex_state = 25}, - [1856] = {.lex_state = 2022, .external_lex_state = 25}, - [1857] = {.lex_state = 2022, .external_lex_state = 25}, - [1858] = {.lex_state = 2022, .external_lex_state = 25}, - [1859] = {.lex_state = 2022, .external_lex_state = 25}, - [1860] = {.lex_state = 2022, .external_lex_state = 25}, - [1861] = {.lex_state = 2022, .external_lex_state = 27}, - [1862] = {.lex_state = 2022, .external_lex_state = 17}, - [1863] = {.lex_state = 2022, .external_lex_state = 17}, - [1864] = {.lex_state = 2022, .external_lex_state = 17}, - [1865] = {.lex_state = 2022, .external_lex_state = 17}, - [1866] = {.lex_state = 2022, .external_lex_state = 27}, - [1867] = {.lex_state = 2022, .external_lex_state = 27}, - [1868] = {.lex_state = 2022, .external_lex_state = 27}, - [1869] = {.lex_state = 2022, .external_lex_state = 27}, - [1870] = {.lex_state = 2022, .external_lex_state = 17}, - [1871] = {.lex_state = 2022, .external_lex_state = 25}, - [1872] = {.lex_state = 2022, .external_lex_state = 17}, - [1873] = {.lex_state = 2022, .external_lex_state = 25}, - [1874] = {.lex_state = 2022, .external_lex_state = 27}, - [1875] = {.lex_state = 2022, .external_lex_state = 17}, - [1876] = {.lex_state = 2022, .external_lex_state = 17}, - [1877] = {.lex_state = 2022, .external_lex_state = 27}, - [1878] = {.lex_state = 2022, .external_lex_state = 17}, - [1879] = {.lex_state = 2022, .external_lex_state = 27}, - [1880] = {.lex_state = 2022, .external_lex_state = 17}, - [1881] = {.lex_state = 2022, .external_lex_state = 27}, - [1882] = {.lex_state = 2022, .external_lex_state = 17}, - [1883] = {.lex_state = 2022, .external_lex_state = 17}, - [1884] = {.lex_state = 2022, .external_lex_state = 27}, - [1885] = {.lex_state = 2022, .external_lex_state = 27}, - [1886] = {.lex_state = 2022, .external_lex_state = 27}, - [1887] = {.lex_state = 2022, .external_lex_state = 27}, - [1888] = {.lex_state = 2022, .external_lex_state = 27}, - [1889] = {.lex_state = 2022, .external_lex_state = 27}, - [1890] = {.lex_state = 2022, .external_lex_state = 27}, - [1891] = {.lex_state = 2022, .external_lex_state = 27}, - [1892] = {.lex_state = 2022, .external_lex_state = 27}, - [1893] = {.lex_state = 2022, .external_lex_state = 27}, - [1894] = {.lex_state = 2022, .external_lex_state = 27}, - [1895] = {.lex_state = 2022, .external_lex_state = 27}, - [1896] = {.lex_state = 2022, .external_lex_state = 17}, - [1897] = {.lex_state = 2022, .external_lex_state = 27}, - [1898] = {.lex_state = 2022, .external_lex_state = 17}, - [1899] = {.lex_state = 2022, .external_lex_state = 17}, - [1900] = {.lex_state = 2022, .external_lex_state = 27}, - [1901] = {.lex_state = 2022, .external_lex_state = 27}, - [1902] = {.lex_state = 2022, .external_lex_state = 25}, - [1903] = {.lex_state = 2022, .external_lex_state = 25}, + [1443] = {.lex_state = 2022, .external_lex_state = 19}, + [1444] = {.lex_state = 2022, .external_lex_state = 25}, + [1445] = {.lex_state = 2022, .external_lex_state = 25}, + [1446] = {.lex_state = 2022, .external_lex_state = 25}, + [1447] = {.lex_state = 2022, .external_lex_state = 25}, + [1448] = {.lex_state = 2022, .external_lex_state = 25}, + [1449] = {.lex_state = 2022, .external_lex_state = 25}, + [1450] = {.lex_state = 2022, .external_lex_state = 19}, + [1451] = {.lex_state = 2022, .external_lex_state = 25}, + [1452] = {.lex_state = 2022, .external_lex_state = 25}, + [1453] = {.lex_state = 2022, .external_lex_state = 25}, + [1454] = {.lex_state = 2022, .external_lex_state = 25}, + [1455] = {.lex_state = 2022, .external_lex_state = 25}, + [1456] = {.lex_state = 2022, .external_lex_state = 25}, + [1457] = {.lex_state = 2022, .external_lex_state = 25}, + [1458] = {.lex_state = 2022, .external_lex_state = 25}, + [1459] = {.lex_state = 2022, .external_lex_state = 25}, + [1460] = {.lex_state = 2022, .external_lex_state = 25}, + [1461] = {.lex_state = 2022, .external_lex_state = 25}, + [1462] = {.lex_state = 2022, .external_lex_state = 25}, + [1463] = {.lex_state = 2022, .external_lex_state = 25}, + [1464] = {.lex_state = 2022, .external_lex_state = 19}, + [1465] = {.lex_state = 2022, .external_lex_state = 25}, + [1466] = {.lex_state = 2022, .external_lex_state = 25}, + [1467] = {.lex_state = 2022, .external_lex_state = 25}, + [1468] = {.lex_state = 2022, .external_lex_state = 25}, + [1469] = {.lex_state = 2022, .external_lex_state = 25}, + [1470] = {.lex_state = 2022, .external_lex_state = 25}, + [1471] = {.lex_state = 2022, .external_lex_state = 19}, + [1472] = {.lex_state = 2022, .external_lex_state = 21}, + [1473] = {.lex_state = 2022, .external_lex_state = 21}, + [1474] = {.lex_state = 2022, .external_lex_state = 21}, + [1475] = {.lex_state = 2022, .external_lex_state = 21}, + [1476] = {.lex_state = 2022, .external_lex_state = 21}, + [1477] = {.lex_state = 2022, .external_lex_state = 21}, + [1478] = {.lex_state = 2022, .external_lex_state = 19}, + [1479] = {.lex_state = 2022, .external_lex_state = 21}, + [1480] = {.lex_state = 2022, .external_lex_state = 21}, + [1481] = {.lex_state = 2022, .external_lex_state = 21}, + [1482] = {.lex_state = 2022, .external_lex_state = 21}, + [1483] = {.lex_state = 2022, .external_lex_state = 21}, + [1484] = {.lex_state = 2022, .external_lex_state = 21}, + [1485] = {.lex_state = 2022, .external_lex_state = 21}, + [1486] = {.lex_state = 2022, .external_lex_state = 21}, + [1487] = {.lex_state = 2022, .external_lex_state = 21}, + [1488] = {.lex_state = 2022, .external_lex_state = 21}, + [1489] = {.lex_state = 2022, .external_lex_state = 21}, + [1490] = {.lex_state = 2022, .external_lex_state = 21}, + [1491] = {.lex_state = 2022, .external_lex_state = 21}, + [1492] = {.lex_state = 2, .external_lex_state = 11}, + [1493] = {.lex_state = 2022, .external_lex_state = 19}, + [1494] = {.lex_state = 2022, .external_lex_state = 21}, + [1495] = {.lex_state = 2022, .external_lex_state = 21}, + [1496] = {.lex_state = 2022, .external_lex_state = 21}, + [1497] = {.lex_state = 2022, .external_lex_state = 21}, + [1498] = {.lex_state = 2022, .external_lex_state = 16}, + [1499] = {.lex_state = 2022, .external_lex_state = 21}, + [1500] = {.lex_state = 2022, .external_lex_state = 21}, + [1501] = {.lex_state = 2, .external_lex_state = 11}, + [1502] = {.lex_state = 2022, .external_lex_state = 16}, + [1503] = {.lex_state = 2022, .external_lex_state = 22}, + [1504] = {.lex_state = 2, .external_lex_state = 11}, + [1505] = {.lex_state = 2, .external_lex_state = 11}, + [1506] = {.lex_state = 2, .external_lex_state = 11}, + [1507] = {.lex_state = 2, .external_lex_state = 11}, + [1508] = {.lex_state = 2, .external_lex_state = 11}, + [1509] = {.lex_state = 2, .external_lex_state = 11}, + [1510] = {.lex_state = 2, .external_lex_state = 11}, + [1511] = {.lex_state = 2, .external_lex_state = 11}, + [1512] = {.lex_state = 2, .external_lex_state = 11}, + [1513] = {.lex_state = 2022, .external_lex_state = 19}, + [1514] = {.lex_state = 2022, .external_lex_state = 22}, + [1515] = {.lex_state = 2, .external_lex_state = 11}, + [1516] = {.lex_state = 2, .external_lex_state = 11}, + [1517] = {.lex_state = 2, .external_lex_state = 11}, + [1518] = {.lex_state = 2, .external_lex_state = 11}, + [1519] = {.lex_state = 2022, .external_lex_state = 22}, + [1520] = {.lex_state = 2022, .external_lex_state = 19}, + [1521] = {.lex_state = 2, .external_lex_state = 11}, + [1522] = {.lex_state = 2022, .external_lex_state = 19}, + [1523] = {.lex_state = 2022, .external_lex_state = 13}, + [1524] = {.lex_state = 2, .external_lex_state = 11}, + [1525] = {.lex_state = 2022, .external_lex_state = 19}, + [1526] = {.lex_state = 2, .external_lex_state = 11}, + [1527] = {.lex_state = 2, .external_lex_state = 11}, + [1528] = {.lex_state = 2, .external_lex_state = 11}, + [1529] = {.lex_state = 2, .external_lex_state = 11}, + [1530] = {.lex_state = 2, .external_lex_state = 11}, + [1531] = {.lex_state = 2, .external_lex_state = 11}, + [1532] = {.lex_state = 2, .external_lex_state = 11}, + [1533] = {.lex_state = 2, .external_lex_state = 11}, + [1534] = {.lex_state = 2, .external_lex_state = 11}, + [1535] = {.lex_state = 2, .external_lex_state = 11}, + [1536] = {.lex_state = 2, .external_lex_state = 11}, + [1537] = {.lex_state = 2022, .external_lex_state = 19}, + [1538] = {.lex_state = 2, .external_lex_state = 11}, + [1539] = {.lex_state = 2, .external_lex_state = 11}, + [1540] = {.lex_state = 2, .external_lex_state = 11}, + [1541] = {.lex_state = 2, .external_lex_state = 11}, + [1542] = {.lex_state = 2, .external_lex_state = 11}, + [1543] = {.lex_state = 2, .external_lex_state = 11}, + [1544] = {.lex_state = 2022, .external_lex_state = 19}, + [1545] = {.lex_state = 2, .external_lex_state = 11}, + [1546] = {.lex_state = 2, .external_lex_state = 11}, + [1547] = {.lex_state = 2, .external_lex_state = 11}, + [1548] = {.lex_state = 2, .external_lex_state = 11}, + [1549] = {.lex_state = 2, .external_lex_state = 11}, + [1550] = {.lex_state = 2022, .external_lex_state = 19}, + [1551] = {.lex_state = 2, .external_lex_state = 11}, + [1552] = {.lex_state = 2, .external_lex_state = 11}, + [1553] = {.lex_state = 2022, .external_lex_state = 13}, + [1554] = {.lex_state = 3, .external_lex_state = 11}, + [1555] = {.lex_state = 2022, .external_lex_state = 21}, + [1556] = {.lex_state = 2022, .external_lex_state = 26}, + [1557] = {.lex_state = 2022, .external_lex_state = 26}, + [1558] = {.lex_state = 2022, .external_lex_state = 26}, + [1559] = {.lex_state = 2022, .external_lex_state = 26}, + [1560] = {.lex_state = 2022, .external_lex_state = 26}, + [1561] = {.lex_state = 2022, .external_lex_state = 26}, + [1562] = {.lex_state = 2022, .external_lex_state = 26}, + [1563] = {.lex_state = 2022, .external_lex_state = 26}, + [1564] = {.lex_state = 2022, .external_lex_state = 26}, + [1565] = {.lex_state = 2022, .external_lex_state = 26}, + [1566] = {.lex_state = 2022, .external_lex_state = 27}, + [1567] = {.lex_state = 2, .external_lex_state = 18}, + [1568] = {.lex_state = 2022, .external_lex_state = 27}, + [1569] = {.lex_state = 2022, .external_lex_state = 27}, + [1570] = {.lex_state = 2022, .external_lex_state = 27}, + [1571] = {.lex_state = 2022, .external_lex_state = 27}, + [1572] = {.lex_state = 2022, .external_lex_state = 26}, + [1573] = {.lex_state = 2022, .external_lex_state = 26}, + [1574] = {.lex_state = 2022, .external_lex_state = 27}, + [1575] = {.lex_state = 2022, .external_lex_state = 27}, + [1576] = {.lex_state = 2022, .external_lex_state = 27}, + [1577] = {.lex_state = 2022, .external_lex_state = 27}, + [1578] = {.lex_state = 2022, .external_lex_state = 27}, + [1579] = {.lex_state = 2022, .external_lex_state = 27}, + [1580] = {.lex_state = 2022, .external_lex_state = 27}, + [1581] = {.lex_state = 2022, .external_lex_state = 27}, + [1582] = {.lex_state = 2022, .external_lex_state = 27}, + [1583] = {.lex_state = 2022, .external_lex_state = 27}, + [1584] = {.lex_state = 2022, .external_lex_state = 27}, + [1585] = {.lex_state = 2022, .external_lex_state = 27}, + [1586] = {.lex_state = 2022, .external_lex_state = 27}, + [1587] = {.lex_state = 2022, .external_lex_state = 27}, + [1588] = {.lex_state = 2022, .external_lex_state = 27}, + [1589] = {.lex_state = 2022, .external_lex_state = 27}, + [1590] = {.lex_state = 2022, .external_lex_state = 27}, + [1591] = {.lex_state = 2022, .external_lex_state = 27}, + [1592] = {.lex_state = 2022, .external_lex_state = 27}, + [1593] = {.lex_state = 2022, .external_lex_state = 26}, + [1594] = {.lex_state = 2022, .external_lex_state = 26}, + [1595] = {.lex_state = 2022, .external_lex_state = 20}, + [1596] = {.lex_state = 2022, .external_lex_state = 26}, + [1597] = {.lex_state = 2022, .external_lex_state = 26}, + [1598] = {.lex_state = 2022, .external_lex_state = 27}, + [1599] = {.lex_state = 2022, .external_lex_state = 27}, + [1600] = {.lex_state = 2022, .external_lex_state = 27}, + [1601] = {.lex_state = 2022, .external_lex_state = 27}, + [1602] = {.lex_state = 2022, .external_lex_state = 27}, + [1603] = {.lex_state = 2022, .external_lex_state = 27}, + [1604] = {.lex_state = 2022, .external_lex_state = 27}, + [1605] = {.lex_state = 2022, .external_lex_state = 27}, + [1606] = {.lex_state = 2022, .external_lex_state = 27}, + [1607] = {.lex_state = 2022, .external_lex_state = 27}, + [1608] = {.lex_state = 2022, .external_lex_state = 27}, + [1609] = {.lex_state = 2022, .external_lex_state = 27}, + [1610] = {.lex_state = 2022, .external_lex_state = 27}, + [1611] = {.lex_state = 2022, .external_lex_state = 27}, + [1612] = {.lex_state = 2022, .external_lex_state = 27}, + [1613] = {.lex_state = 2022, .external_lex_state = 27}, + [1614] = {.lex_state = 2022, .external_lex_state = 27}, + [1615] = {.lex_state = 2022, .external_lex_state = 26}, + [1616] = {.lex_state = 2022, .external_lex_state = 26}, + [1617] = {.lex_state = 2022, .external_lex_state = 26}, + [1618] = {.lex_state = 2022, .external_lex_state = 26}, + [1619] = {.lex_state = 2022, .external_lex_state = 27}, + [1620] = {.lex_state = 2022, .external_lex_state = 27}, + [1621] = {.lex_state = 2022, .external_lex_state = 27}, + [1622] = {.lex_state = 2022, .external_lex_state = 27}, + [1623] = {.lex_state = 2022, .external_lex_state = 27}, + [1624] = {.lex_state = 2022, .external_lex_state = 27}, + [1625] = {.lex_state = 2022, .external_lex_state = 27}, + [1626] = {.lex_state = 2022, .external_lex_state = 27}, + [1627] = {.lex_state = 2022, .external_lex_state = 27}, + [1628] = {.lex_state = 2022, .external_lex_state = 27}, + [1629] = {.lex_state = 2022, .external_lex_state = 26}, + [1630] = {.lex_state = 2022, .external_lex_state = 27}, + [1631] = {.lex_state = 2022, .external_lex_state = 27}, + [1632] = {.lex_state = 2022, .external_lex_state = 27}, + [1633] = {.lex_state = 2022, .external_lex_state = 27}, + [1634] = {.lex_state = 2022, .external_lex_state = 27}, + [1635] = {.lex_state = 2022, .external_lex_state = 27}, + [1636] = {.lex_state = 2022, .external_lex_state = 27}, + [1637] = {.lex_state = 2022, .external_lex_state = 20}, + [1638] = {.lex_state = 2022, .external_lex_state = 20}, + [1639] = {.lex_state = 2022, .external_lex_state = 20}, + [1640] = {.lex_state = 2022, .external_lex_state = 20}, + [1641] = {.lex_state = 2022, .external_lex_state = 20}, + [1642] = {.lex_state = 2022, .external_lex_state = 16}, + [1643] = {.lex_state = 2022, .external_lex_state = 27}, + [1644] = {.lex_state = 2022, .external_lex_state = 27}, + [1645] = {.lex_state = 2022, .external_lex_state = 16}, + [1646] = {.lex_state = 2022, .external_lex_state = 20}, + [1647] = {.lex_state = 2022, .external_lex_state = 20}, + [1648] = {.lex_state = 2022, .external_lex_state = 16}, + [1649] = {.lex_state = 2022, .external_lex_state = 20}, + [1650] = {.lex_state = 2022, .external_lex_state = 16}, + [1651] = {.lex_state = 2022, .external_lex_state = 20}, + [1652] = {.lex_state = 2022, .external_lex_state = 20}, + [1653] = {.lex_state = 2022, .external_lex_state = 20}, + [1654] = {.lex_state = 2022, .external_lex_state = 20}, + [1655] = {.lex_state = 2022, .external_lex_state = 20}, + [1656] = {.lex_state = 2022, .external_lex_state = 20}, + [1657] = {.lex_state = 2022, .external_lex_state = 20}, + [1658] = {.lex_state = 2022, .external_lex_state = 20}, + [1659] = {.lex_state = 2022, .external_lex_state = 20}, + [1660] = {.lex_state = 2022, .external_lex_state = 20}, + [1661] = {.lex_state = 2022, .external_lex_state = 20}, + [1662] = {.lex_state = 2022, .external_lex_state = 20}, + [1663] = {.lex_state = 2022, .external_lex_state = 20}, + [1664] = {.lex_state = 2022, .external_lex_state = 16}, + [1665] = {.lex_state = 2022, .external_lex_state = 16}, + [1666] = {.lex_state = 2022, .external_lex_state = 20}, + [1667] = {.lex_state = 2022, .external_lex_state = 16}, + [1668] = {.lex_state = 2022, .external_lex_state = 20}, + [1669] = {.lex_state = 2022, .external_lex_state = 20}, + [1670] = {.lex_state = 2022, .external_lex_state = 27}, + [1671] = {.lex_state = 2022, .external_lex_state = 27}, + [1672] = {.lex_state = 3, .external_lex_state = 11}, + [1673] = {.lex_state = 2022, .external_lex_state = 16}, + [1674] = {.lex_state = 2022, .external_lex_state = 27}, + [1675] = {.lex_state = 2022, .external_lex_state = 27}, + [1676] = {.lex_state = 2022, .external_lex_state = 20}, + [1677] = {.lex_state = 2022, .external_lex_state = 20}, + [1678] = {.lex_state = 2022, .external_lex_state = 20}, + [1679] = {.lex_state = 2022, .external_lex_state = 16}, + [1680] = {.lex_state = 2022, .external_lex_state = 20}, + [1681] = {.lex_state = 2022, .external_lex_state = 20}, + [1682] = {.lex_state = 2022, .external_lex_state = 16}, + [1683] = {.lex_state = 2022, .external_lex_state = 20}, + [1684] = {.lex_state = 2022, .external_lex_state = 20}, + [1685] = {.lex_state = 2022, .external_lex_state = 16}, + [1686] = {.lex_state = 2022, .external_lex_state = 20}, + [1687] = {.lex_state = 2022, .external_lex_state = 20}, + [1688] = {.lex_state = 2022, .external_lex_state = 16}, + [1689] = {.lex_state = 2022, .external_lex_state = 20}, + [1690] = {.lex_state = 2022, .external_lex_state = 20}, + [1691] = {.lex_state = 2022, .external_lex_state = 20}, + [1692] = {.lex_state = 2022, .external_lex_state = 20}, + [1693] = {.lex_state = 2022, .external_lex_state = 20}, + [1694] = {.lex_state = 2022, .external_lex_state = 16}, + [1695] = {.lex_state = 2022, .external_lex_state = 20}, + [1696] = {.lex_state = 2022, .external_lex_state = 20}, + [1697] = {.lex_state = 2022, .external_lex_state = 16}, + [1698] = {.lex_state = 2022, .external_lex_state = 20}, + [1699] = {.lex_state = 2022, .external_lex_state = 27}, + [1700] = {.lex_state = 2022, .external_lex_state = 27}, + [1701] = {.lex_state = 2022, .external_lex_state = 27}, + [1702] = {.lex_state = 2022, .external_lex_state = 27}, + [1703] = {.lex_state = 2022, .external_lex_state = 20}, + [1704] = {.lex_state = 2022, .external_lex_state = 20}, + [1705] = {.lex_state = 2022, .external_lex_state = 20}, + [1706] = {.lex_state = 2022, .external_lex_state = 20}, + [1707] = {.lex_state = 2022, .external_lex_state = 20}, + [1708] = {.lex_state = 2022, .external_lex_state = 20}, + [1709] = {.lex_state = 2022, .external_lex_state = 20}, + [1710] = {.lex_state = 2022, .external_lex_state = 20}, + [1711] = {.lex_state = 2022, .external_lex_state = 20}, + [1712] = {.lex_state = 2022, .external_lex_state = 20}, + [1713] = {.lex_state = 2022, .external_lex_state = 20}, + [1714] = {.lex_state = 2022, .external_lex_state = 20}, + [1715] = {.lex_state = 2022, .external_lex_state = 20}, + [1716] = {.lex_state = 2022, .external_lex_state = 20}, + [1717] = {.lex_state = 2022, .external_lex_state = 20}, + [1718] = {.lex_state = 2022, .external_lex_state = 20}, + [1719] = {.lex_state = 2022, .external_lex_state = 20}, + [1720] = {.lex_state = 2022, .external_lex_state = 20}, + [1721] = {.lex_state = 3, .external_lex_state = 11}, + [1722] = {.lex_state = 2022, .external_lex_state = 16}, + [1723] = {.lex_state = 2022, .external_lex_state = 16}, + [1724] = {.lex_state = 3, .external_lex_state = 11}, + [1725] = {.lex_state = 3, .external_lex_state = 11}, + [1726] = {.lex_state = 3, .external_lex_state = 11}, + [1727] = {.lex_state = 3, .external_lex_state = 11}, + [1728] = {.lex_state = 2022, .external_lex_state = 16}, + [1729] = {.lex_state = 2022, .external_lex_state = 20}, + [1730] = {.lex_state = 2022, .external_lex_state = 20}, + [1731] = {.lex_state = 2022, .external_lex_state = 16}, + [1732] = {.lex_state = 3, .external_lex_state = 11}, + [1733] = {.lex_state = 2022, .external_lex_state = 16}, + [1734] = {.lex_state = 3, .external_lex_state = 11}, + [1735] = {.lex_state = 2022, .external_lex_state = 16}, + [1736] = {.lex_state = 2022, .external_lex_state = 16}, + [1737] = {.lex_state = 3, .external_lex_state = 11}, + [1738] = {.lex_state = 3, .external_lex_state = 11}, + [1739] = {.lex_state = 3, .external_lex_state = 11}, + [1740] = {.lex_state = 3, .external_lex_state = 11}, + [1741] = {.lex_state = 3, .external_lex_state = 11}, + [1742] = {.lex_state = 3, .external_lex_state = 11}, + [1743] = {.lex_state = 3, .external_lex_state = 11}, + [1744] = {.lex_state = 3, .external_lex_state = 11}, + [1745] = {.lex_state = 3, .external_lex_state = 11}, + [1746] = {.lex_state = 3, .external_lex_state = 11}, + [1747] = {.lex_state = 3, .external_lex_state = 11}, + [1748] = {.lex_state = 3, .external_lex_state = 11}, + [1749] = {.lex_state = 3, .external_lex_state = 11}, + [1750] = {.lex_state = 3, .external_lex_state = 11}, + [1751] = {.lex_state = 3, .external_lex_state = 11}, + [1752] = {.lex_state = 3, .external_lex_state = 11}, + [1753] = {.lex_state = 3, .external_lex_state = 11}, + [1754] = {.lex_state = 2022, .external_lex_state = 20}, + [1755] = {.lex_state = 2022, .external_lex_state = 20}, + [1756] = {.lex_state = 2022, .external_lex_state = 28}, + [1757] = {.lex_state = 2022, .external_lex_state = 20}, + [1758] = {.lex_state = 2022, .external_lex_state = 20}, + [1759] = {.lex_state = 3, .external_lex_state = 11}, + [1760] = {.lex_state = 3, .external_lex_state = 11}, + [1761] = {.lex_state = 3, .external_lex_state = 11}, + [1762] = {.lex_state = 1, .external_lex_state = 11}, + [1763] = {.lex_state = 3, .external_lex_state = 11}, + [1764] = {.lex_state = 3, .external_lex_state = 11}, + [1765] = {.lex_state = 3, .external_lex_state = 11}, + [1766] = {.lex_state = 3, .external_lex_state = 11}, + [1767] = {.lex_state = 3, .external_lex_state = 11}, + [1768] = {.lex_state = 3, .external_lex_state = 11}, + [1769] = {.lex_state = 3, .external_lex_state = 11}, + [1770] = {.lex_state = 3, .external_lex_state = 11}, + [1771] = {.lex_state = 3, .external_lex_state = 11}, + [1772] = {.lex_state = 3, .external_lex_state = 11}, + [1773] = {.lex_state = 3, .external_lex_state = 11}, + [1774] = {.lex_state = 3, .external_lex_state = 11}, + [1775] = {.lex_state = 3, .external_lex_state = 11}, + [1776] = {.lex_state = 3, .external_lex_state = 11}, + [1777] = {.lex_state = 2022, .external_lex_state = 20}, + [1778] = {.lex_state = 2022, .external_lex_state = 20}, + [1779] = {.lex_state = 2022, .external_lex_state = 20}, + [1780] = {.lex_state = 2022, .external_lex_state = 20}, + [1781] = {.lex_state = 3, .external_lex_state = 11}, + [1782] = {.lex_state = 3, .external_lex_state = 11}, + [1783] = {.lex_state = 3, .external_lex_state = 11}, + [1784] = {.lex_state = 3, .external_lex_state = 11}, + [1785] = {.lex_state = 3, .external_lex_state = 11}, + [1786] = {.lex_state = 3, .external_lex_state = 11}, + [1787] = {.lex_state = 3, .external_lex_state = 11}, + [1788] = {.lex_state = 3, .external_lex_state = 11}, + [1789] = {.lex_state = 3, .external_lex_state = 11}, + [1790] = {.lex_state = 3, .external_lex_state = 11}, + [1791] = {.lex_state = 3, .external_lex_state = 11}, + [1792] = {.lex_state = 3, .external_lex_state = 11}, + [1793] = {.lex_state = 3, .external_lex_state = 11}, + [1794] = {.lex_state = 3, .external_lex_state = 11}, + [1795] = {.lex_state = 3, .external_lex_state = 11}, + [1796] = {.lex_state = 3, .external_lex_state = 11}, + [1797] = {.lex_state = 3, .external_lex_state = 11}, + [1798] = {.lex_state = 3, .external_lex_state = 11}, + [1799] = {.lex_state = 2022, .external_lex_state = 28}, + [1800] = {.lex_state = 2022, .external_lex_state = 28}, + [1801] = {.lex_state = 2022, .external_lex_state = 28}, + [1802] = {.lex_state = 2022, .external_lex_state = 28}, + [1803] = {.lex_state = 2022, .external_lex_state = 28}, + [1804] = {.lex_state = 3, .external_lex_state = 11}, + [1805] = {.lex_state = 3, .external_lex_state = 11}, + [1806] = {.lex_state = 2022, .external_lex_state = 28}, + [1807] = {.lex_state = 2022, .external_lex_state = 28}, + [1808] = {.lex_state = 2022, .external_lex_state = 28}, + [1809] = {.lex_state = 2022, .external_lex_state = 28}, + [1810] = {.lex_state = 2022, .external_lex_state = 28}, + [1811] = {.lex_state = 2022, .external_lex_state = 28}, + [1812] = {.lex_state = 2022, .external_lex_state = 28}, + [1813] = {.lex_state = 2022, .external_lex_state = 28}, + [1814] = {.lex_state = 2022, .external_lex_state = 28}, + [1815] = {.lex_state = 2022, .external_lex_state = 28}, + [1816] = {.lex_state = 2022, .external_lex_state = 28}, + [1817] = {.lex_state = 2022, .external_lex_state = 28}, + [1818] = {.lex_state = 2022, .external_lex_state = 28}, + [1819] = {.lex_state = 2022, .external_lex_state = 28}, + [1820] = {.lex_state = 2022, .external_lex_state = 28}, + [1821] = {.lex_state = 2022, .external_lex_state = 28}, + [1822] = {.lex_state = 2022, .external_lex_state = 28}, + [1823] = {.lex_state = 2022, .external_lex_state = 28}, + [1824] = {.lex_state = 2022, .external_lex_state = 28}, + [1825] = {.lex_state = 3, .external_lex_state = 11}, + [1826] = {.lex_state = 3, .external_lex_state = 11}, + [1827] = {.lex_state = 2022, .external_lex_state = 23}, + [1828] = {.lex_state = 3, .external_lex_state = 11}, + [1829] = {.lex_state = 3, .external_lex_state = 11}, + [1830] = {.lex_state = 2022, .external_lex_state = 28}, + [1831] = {.lex_state = 2022, .external_lex_state = 28}, + [1832] = {.lex_state = 2022, .external_lex_state = 28}, + [1833] = {.lex_state = 2022, .external_lex_state = 28}, + [1834] = {.lex_state = 2022, .external_lex_state = 28}, + [1835] = {.lex_state = 2022, .external_lex_state = 28}, + [1836] = {.lex_state = 2022, .external_lex_state = 28}, + [1837] = {.lex_state = 2022, .external_lex_state = 28}, + [1838] = {.lex_state = 2022, .external_lex_state = 28}, + [1839] = {.lex_state = 2022, .external_lex_state = 28}, + [1840] = {.lex_state = 2022, .external_lex_state = 28}, + [1841] = {.lex_state = 2022, .external_lex_state = 28}, + [1842] = {.lex_state = 2022, .external_lex_state = 28}, + [1843] = {.lex_state = 2022, .external_lex_state = 28}, + [1844] = {.lex_state = 2022, .external_lex_state = 28}, + [1845] = {.lex_state = 2022, .external_lex_state = 28}, + [1846] = {.lex_state = 2022, .external_lex_state = 28}, + [1847] = {.lex_state = 3, .external_lex_state = 11}, + [1848] = {.lex_state = 3, .external_lex_state = 11}, + [1849] = {.lex_state = 3, .external_lex_state = 11}, + [1850] = {.lex_state = 3, .external_lex_state = 11}, + [1851] = {.lex_state = 2022, .external_lex_state = 28}, + [1852] = {.lex_state = 2022, .external_lex_state = 28}, + [1853] = {.lex_state = 2022, .external_lex_state = 28}, + [1854] = {.lex_state = 2022, .external_lex_state = 28}, + [1855] = {.lex_state = 2022, .external_lex_state = 28}, + [1856] = {.lex_state = 2022, .external_lex_state = 28}, + [1857] = {.lex_state = 2022, .external_lex_state = 28}, + [1858] = {.lex_state = 2022, .external_lex_state = 28}, + [1859] = {.lex_state = 2022, .external_lex_state = 28}, + [1860] = {.lex_state = 2022, .external_lex_state = 28}, + [1861] = {.lex_state = 2022, .external_lex_state = 28}, + [1862] = {.lex_state = 2022, .external_lex_state = 28}, + [1863] = {.lex_state = 2022, .external_lex_state = 28}, + [1864] = {.lex_state = 2022, .external_lex_state = 28}, + [1865] = {.lex_state = 2022, .external_lex_state = 28}, + [1866] = {.lex_state = 2022, .external_lex_state = 28}, + [1867] = {.lex_state = 2022, .external_lex_state = 28}, + [1868] = {.lex_state = 2022, .external_lex_state = 28}, + [1869] = {.lex_state = 2022, .external_lex_state = 23}, + [1870] = {.lex_state = 2022, .external_lex_state = 16}, + [1871] = {.lex_state = 2022, .external_lex_state = 16}, + [1872] = {.lex_state = 2022, .external_lex_state = 16}, + [1873] = {.lex_state = 2022, .external_lex_state = 23}, + [1874] = {.lex_state = 2022, .external_lex_state = 23}, + [1875] = {.lex_state = 2022, .external_lex_state = 23}, + [1876] = {.lex_state = 2022, .external_lex_state = 23}, + [1877] = {.lex_state = 2022, .external_lex_state = 16}, + [1878] = {.lex_state = 2022, .external_lex_state = 28}, + [1879] = {.lex_state = 2022, .external_lex_state = 16}, + [1880] = {.lex_state = 2022, .external_lex_state = 28}, + [1881] = {.lex_state = 2022, .external_lex_state = 23}, + [1882] = {.lex_state = 2022, .external_lex_state = 16}, + [1883] = {.lex_state = 2022, .external_lex_state = 16}, + [1884] = {.lex_state = 2022, .external_lex_state = 23}, + [1885] = {.lex_state = 2022, .external_lex_state = 16}, + [1886] = {.lex_state = 2022, .external_lex_state = 23}, + [1887] = {.lex_state = 2022, .external_lex_state = 16}, + [1888] = {.lex_state = 2022, .external_lex_state = 23}, + [1889] = {.lex_state = 2022, .external_lex_state = 16}, + [1890] = {.lex_state = 2022, .external_lex_state = 23}, + [1891] = {.lex_state = 2022, .external_lex_state = 23}, + [1892] = {.lex_state = 2022, .external_lex_state = 23}, + [1893] = {.lex_state = 2022, .external_lex_state = 23}, + [1894] = {.lex_state = 2022, .external_lex_state = 23}, + [1895] = {.lex_state = 2022, .external_lex_state = 23}, + [1896] = {.lex_state = 2022, .external_lex_state = 23}, + [1897] = {.lex_state = 2022, .external_lex_state = 23}, + [1898] = {.lex_state = 2022, .external_lex_state = 23}, + [1899] = {.lex_state = 2022, .external_lex_state = 23}, + [1900] = {.lex_state = 2022, .external_lex_state = 23}, + [1901] = {.lex_state = 2022, .external_lex_state = 23}, + [1902] = {.lex_state = 2022, .external_lex_state = 16}, + [1903] = {.lex_state = 2022, .external_lex_state = 16}, [1904] = {.lex_state = 2022, .external_lex_state = 23}, - [1905] = {.lex_state = 2022, .external_lex_state = 25}, - [1906] = {.lex_state = 2022, .external_lex_state = 25}, - [1907] = {.lex_state = 2022, .external_lex_state = 27}, - [1908] = {.lex_state = 2022, .external_lex_state = 27}, - [1909] = {.lex_state = 2022, .external_lex_state = 27}, - [1910] = {.lex_state = 2022, .external_lex_state = 17}, - [1911] = {.lex_state = 2022, .external_lex_state = 27}, - [1912] = {.lex_state = 2022, .external_lex_state = 27}, - [1913] = {.lex_state = 2022, .external_lex_state = 27}, - [1914] = {.lex_state = 2022, .external_lex_state = 27}, - [1915] = {.lex_state = 2022, .external_lex_state = 27}, - [1916] = {.lex_state = 2022, .external_lex_state = 27}, - [1917] = {.lex_state = 2022, .external_lex_state = 27}, - [1918] = {.lex_state = 2022, .external_lex_state = 27}, - [1919] = {.lex_state = 2022, .external_lex_state = 27}, - [1920] = {.lex_state = 2022, .external_lex_state = 27}, - [1921] = {.lex_state = 2022, .external_lex_state = 27}, - [1922] = {.lex_state = 2022, .external_lex_state = 17}, - [1923] = {.lex_state = 2022, .external_lex_state = 27}, - [1924] = {.lex_state = 2022, .external_lex_state = 27}, - [1925] = {.lex_state = 2022, .external_lex_state = 17}, - [1926] = {.lex_state = 2022, .external_lex_state = 27}, - [1927] = {.lex_state = 2022, .external_lex_state = 25}, - [1928] = {.lex_state = 2022, .external_lex_state = 25}, - [1929] = {.lex_state = 2022, .external_lex_state = 25}, - [1930] = {.lex_state = 2022, .external_lex_state = 25}, - [1931] = {.lex_state = 2022, .external_lex_state = 27}, - [1932] = {.lex_state = 2022, .external_lex_state = 27}, - [1933] = {.lex_state = 2022, .external_lex_state = 27}, - [1934] = {.lex_state = 2022, .external_lex_state = 27}, - [1935] = {.lex_state = 2022, .external_lex_state = 27}, - [1936] = {.lex_state = 2022, .external_lex_state = 27}, - [1937] = {.lex_state = 2022, .external_lex_state = 27}, - [1938] = {.lex_state = 2022, .external_lex_state = 27}, - [1939] = {.lex_state = 2022, .external_lex_state = 27}, - [1940] = {.lex_state = 2022, .external_lex_state = 27}, - [1941] = {.lex_state = 2022, .external_lex_state = 27}, - [1942] = {.lex_state = 2022, .external_lex_state = 27}, - [1943] = {.lex_state = 2022, .external_lex_state = 27}, - [1944] = {.lex_state = 2022, .external_lex_state = 27}, - [1945] = {.lex_state = 2022, .external_lex_state = 27}, - [1946] = {.lex_state = 2022, .external_lex_state = 27}, - [1947] = {.lex_state = 2022, .external_lex_state = 27}, - [1948] = {.lex_state = 2022, .external_lex_state = 27}, + [1905] = {.lex_state = 2022, .external_lex_state = 16}, + [1906] = {.lex_state = 2022, .external_lex_state = 16}, + [1907] = {.lex_state = 2022, .external_lex_state = 23}, + [1908] = {.lex_state = 2022, .external_lex_state = 23}, + [1909] = {.lex_state = 2022, .external_lex_state = 28}, + [1910] = {.lex_state = 2022, .external_lex_state = 28}, + [1911] = {.lex_state = 2022, .external_lex_state = 25}, + [1912] = {.lex_state = 2022, .external_lex_state = 28}, + [1913] = {.lex_state = 2022, .external_lex_state = 28}, + [1914] = {.lex_state = 2022, .external_lex_state = 23}, + [1915] = {.lex_state = 2022, .external_lex_state = 23}, + [1916] = {.lex_state = 2022, .external_lex_state = 23}, + [1917] = {.lex_state = 2022, .external_lex_state = 16}, + [1918] = {.lex_state = 2022, .external_lex_state = 23}, + [1919] = {.lex_state = 2022, .external_lex_state = 23}, + [1920] = {.lex_state = 2022, .external_lex_state = 16}, + [1921] = {.lex_state = 2022, .external_lex_state = 23}, + [1922] = {.lex_state = 2022, .external_lex_state = 23}, + [1923] = {.lex_state = 2022, .external_lex_state = 23}, + [1924] = {.lex_state = 2022, .external_lex_state = 23}, + [1925] = {.lex_state = 2022, .external_lex_state = 16}, + [1926] = {.lex_state = 2022, .external_lex_state = 23}, + [1927] = {.lex_state = 2022, .external_lex_state = 23}, + [1928] = {.lex_state = 2022, .external_lex_state = 23}, + [1929] = {.lex_state = 2022, .external_lex_state = 23}, + [1930] = {.lex_state = 2022, .external_lex_state = 23}, + [1931] = {.lex_state = 2022, .external_lex_state = 23}, + [1932] = {.lex_state = 2022, .external_lex_state = 23}, + [1933] = {.lex_state = 2022, .external_lex_state = 23}, + [1934] = {.lex_state = 2022, .external_lex_state = 28}, + [1935] = {.lex_state = 2022, .external_lex_state = 28}, + [1936] = {.lex_state = 2022, .external_lex_state = 28}, + [1937] = {.lex_state = 2022, .external_lex_state = 28}, + [1938] = {.lex_state = 2022, .external_lex_state = 23}, + [1939] = {.lex_state = 2022, .external_lex_state = 23}, + [1940] = {.lex_state = 2022, .external_lex_state = 23}, + [1941] = {.lex_state = 2022, .external_lex_state = 23}, + [1942] = {.lex_state = 2022, .external_lex_state = 23}, + [1943] = {.lex_state = 2022, .external_lex_state = 23}, + [1944] = {.lex_state = 2022, .external_lex_state = 23}, + [1945] = {.lex_state = 2022, .external_lex_state = 23}, + [1946] = {.lex_state = 2022, .external_lex_state = 23}, + [1947] = {.lex_state = 2022, .external_lex_state = 23}, + [1948] = {.lex_state = 2022, .external_lex_state = 23}, [1949] = {.lex_state = 2022, .external_lex_state = 23}, [1950] = {.lex_state = 2022, .external_lex_state = 23}, [1951] = {.lex_state = 2022, .external_lex_state = 23}, [1952] = {.lex_state = 2022, .external_lex_state = 23}, [1953] = {.lex_state = 2022, .external_lex_state = 23}, - [1954] = {.lex_state = 2022, .external_lex_state = 27}, - [1955] = {.lex_state = 2022, .external_lex_state = 27}, - [1956] = {.lex_state = 2022, .external_lex_state = 23}, - [1957] = {.lex_state = 2022, .external_lex_state = 17}, - [1958] = {.lex_state = 2022, .external_lex_state = 23}, - [1959] = {.lex_state = 2022, .external_lex_state = 23}, - [1960] = {.lex_state = 2022, .external_lex_state = 23}, - [1961] = {.lex_state = 2022, .external_lex_state = 23}, - [1962] = {.lex_state = 2022, .external_lex_state = 23}, + [1954] = {.lex_state = 2022, .external_lex_state = 23}, + [1955] = {.lex_state = 2022, .external_lex_state = 23}, + [1956] = {.lex_state = 2022, .external_lex_state = 25}, + [1957] = {.lex_state = 2022, .external_lex_state = 16}, + [1958] = {.lex_state = 2022, .external_lex_state = 16}, + [1959] = {.lex_state = 2022, .external_lex_state = 25}, + [1960] = {.lex_state = 2022, .external_lex_state = 25}, + [1961] = {.lex_state = 2022, .external_lex_state = 25}, + [1962] = {.lex_state = 2022, .external_lex_state = 25}, [1963] = {.lex_state = 2022, .external_lex_state = 23}, [1964] = {.lex_state = 2022, .external_lex_state = 23}, - [1965] = {.lex_state = 2022, .external_lex_state = 23}, - [1966] = {.lex_state = 2022, .external_lex_state = 23}, - [1967] = {.lex_state = 2022, .external_lex_state = 23}, - [1968] = {.lex_state = 2022, .external_lex_state = 23}, - [1969] = {.lex_state = 2022, .external_lex_state = 23}, - [1970] = {.lex_state = 2022, .external_lex_state = 23}, - [1971] = {.lex_state = 2022, .external_lex_state = 23}, - [1972] = {.lex_state = 2022, .external_lex_state = 23}, - [1973] = {.lex_state = 2022, .external_lex_state = 23}, - [1974] = {.lex_state = 2022, .external_lex_state = 23}, - [1975] = {.lex_state = 2022, .external_lex_state = 23}, - [1976] = {.lex_state = 2022, .external_lex_state = 27}, - [1977] = {.lex_state = 2022, .external_lex_state = 27}, - [1978] = {.lex_state = 2022, .external_lex_state = 24}, - [1979] = {.lex_state = 2022, .external_lex_state = 27}, - [1980] = {.lex_state = 2022, .external_lex_state = 27}, - [1981] = {.lex_state = 2022, .external_lex_state = 23}, - [1982] = {.lex_state = 2022, .external_lex_state = 23}, - [1983] = {.lex_state = 2022, .external_lex_state = 23}, - [1984] = {.lex_state = 2022, .external_lex_state = 23}, + [1965] = {.lex_state = 2022, .external_lex_state = 25}, + [1966] = {.lex_state = 2022, .external_lex_state = 25}, + [1967] = {.lex_state = 2022, .external_lex_state = 25}, + [1968] = {.lex_state = 2022, .external_lex_state = 25}, + [1969] = {.lex_state = 2022, .external_lex_state = 25}, + [1970] = {.lex_state = 2022, .external_lex_state = 25}, + [1971] = {.lex_state = 2022, .external_lex_state = 25}, + [1972] = {.lex_state = 2022, .external_lex_state = 25}, + [1973] = {.lex_state = 2022, .external_lex_state = 25}, + [1974] = {.lex_state = 2022, .external_lex_state = 25}, + [1975] = {.lex_state = 2022, .external_lex_state = 25}, + [1976] = {.lex_state = 2022, .external_lex_state = 25}, + [1977] = {.lex_state = 2022, .external_lex_state = 25}, + [1978] = {.lex_state = 2022, .external_lex_state = 25}, + [1979] = {.lex_state = 2022, .external_lex_state = 25}, + [1980] = {.lex_state = 2022, .external_lex_state = 25}, + [1981] = {.lex_state = 2022, .external_lex_state = 16}, + [1982] = {.lex_state = 2022, .external_lex_state = 25}, + [1983] = {.lex_state = 2022, .external_lex_state = 25}, + [1984] = {.lex_state = 2022, .external_lex_state = 25}, [1985] = {.lex_state = 2022, .external_lex_state = 23}, [1986] = {.lex_state = 2022, .external_lex_state = 23}, - [1987] = {.lex_state = 2022, .external_lex_state = 23}, + [1987] = {.lex_state = 2022, .external_lex_state = 21}, [1988] = {.lex_state = 2022, .external_lex_state = 23}, [1989] = {.lex_state = 2022, .external_lex_state = 23}, - [1990] = {.lex_state = 2022, .external_lex_state = 23}, - [1991] = {.lex_state = 2022, .external_lex_state = 23}, - [1992] = {.lex_state = 2022, .external_lex_state = 23}, - [1993] = {.lex_state = 2022, .external_lex_state = 23}, - [1994] = {.lex_state = 2022, .external_lex_state = 23}, - [1995] = {.lex_state = 2022, .external_lex_state = 23}, - [1996] = {.lex_state = 2022, .external_lex_state = 23}, - [1997] = {.lex_state = 2022, .external_lex_state = 23}, - [1998] = {.lex_state = 2022, .external_lex_state = 27}, - [1999] = {.lex_state = 2022, .external_lex_state = 27}, - [2000] = {.lex_state = 2022, .external_lex_state = 27}, - [2001] = {.lex_state = 2022, .external_lex_state = 27}, - [2002] = {.lex_state = 2022, .external_lex_state = 23}, - [2003] = {.lex_state = 2022, .external_lex_state = 23}, - [2004] = {.lex_state = 2022, .external_lex_state = 23}, - [2005] = {.lex_state = 2022, .external_lex_state = 23}, - [2006] = {.lex_state = 2022, .external_lex_state = 23}, + [1990] = {.lex_state = 2022, .external_lex_state = 25}, + [1991] = {.lex_state = 2022, .external_lex_state = 25}, + [1992] = {.lex_state = 2022, .external_lex_state = 25}, + [1993] = {.lex_state = 2022, .external_lex_state = 25}, + [1994] = {.lex_state = 2022, .external_lex_state = 25}, + [1995] = {.lex_state = 2022, .external_lex_state = 25}, + [1996] = {.lex_state = 2022, .external_lex_state = 25}, + [1997] = {.lex_state = 2022, .external_lex_state = 25}, + [1998] = {.lex_state = 2022, .external_lex_state = 25}, + [1999] = {.lex_state = 2022, .external_lex_state = 25}, + [2000] = {.lex_state = 2022, .external_lex_state = 25}, + [2001] = {.lex_state = 2022, .external_lex_state = 25}, + [2002] = {.lex_state = 2022, .external_lex_state = 25}, + [2003] = {.lex_state = 2022, .external_lex_state = 25}, + [2004] = {.lex_state = 2022, .external_lex_state = 25}, + [2005] = {.lex_state = 2022, .external_lex_state = 25}, + [2006] = {.lex_state = 2022, .external_lex_state = 25}, [2007] = {.lex_state = 2022, .external_lex_state = 23}, [2008] = {.lex_state = 2022, .external_lex_state = 23}, [2009] = {.lex_state = 2022, .external_lex_state = 23}, [2010] = {.lex_state = 2022, .external_lex_state = 23}, - [2011] = {.lex_state = 2022, .external_lex_state = 23}, - [2012] = {.lex_state = 2022, .external_lex_state = 23}, - [2013] = {.lex_state = 2022, .external_lex_state = 23}, - [2014] = {.lex_state = 2022, .external_lex_state = 23}, - [2015] = {.lex_state = 2022, .external_lex_state = 23}, - [2016] = {.lex_state = 2022, .external_lex_state = 23}, - [2017] = {.lex_state = 2022, .external_lex_state = 23}, - [2018] = {.lex_state = 2022, .external_lex_state = 23}, - [2019] = {.lex_state = 2022, .external_lex_state = 23}, - [2020] = {.lex_state = 2022, .external_lex_state = 24}, - [2021] = {.lex_state = 2022, .external_lex_state = 17}, - [2022] = {.lex_state = 2022, .external_lex_state = 24}, - [2023] = {.lex_state = 2022, .external_lex_state = 24}, - [2024] = {.lex_state = 2022, .external_lex_state = 24}, - [2025] = {.lex_state = 2022, .external_lex_state = 24}, - [2026] = {.lex_state = 2022, .external_lex_state = 17}, - [2027] = {.lex_state = 2022, .external_lex_state = 17}, - [2028] = {.lex_state = 2022, .external_lex_state = 23}, - [2029] = {.lex_state = 2022, .external_lex_state = 17}, - [2030] = {.lex_state = 2022, .external_lex_state = 23}, - [2031] = {.lex_state = 2022, .external_lex_state = 17}, - [2032] = {.lex_state = 2022, .external_lex_state = 24}, - [2033] = {.lex_state = 2022, .external_lex_state = 17}, - [2034] = {.lex_state = 2022, .external_lex_state = 17}, - [2035] = {.lex_state = 2022, .external_lex_state = 24}, - [2036] = {.lex_state = 2022, .external_lex_state = 17}, - [2037] = {.lex_state = 2022, .external_lex_state = 17}, - [2038] = {.lex_state = 2022, .external_lex_state = 24}, - [2039] = {.lex_state = 2022, .external_lex_state = 17}, - [2040] = {.lex_state = 2022, .external_lex_state = 17}, - [2041] = {.lex_state = 2022, .external_lex_state = 24}, - [2042] = {.lex_state = 2022, .external_lex_state = 24}, - [2043] = {.lex_state = 2022, .external_lex_state = 24}, - [2044] = {.lex_state = 2022, .external_lex_state = 24}, - [2045] = {.lex_state = 2022, .external_lex_state = 24}, - [2046] = {.lex_state = 2022, .external_lex_state = 24}, - [2047] = {.lex_state = 2022, .external_lex_state = 24}, - [2048] = {.lex_state = 2022, .external_lex_state = 24}, - [2049] = {.lex_state = 2022, .external_lex_state = 24}, - [2050] = {.lex_state = 2022, .external_lex_state = 24}, - [2051] = {.lex_state = 2022, .external_lex_state = 24}, - [2052] = {.lex_state = 2022, .external_lex_state = 24}, - [2053] = {.lex_state = 2022, .external_lex_state = 24}, - [2054] = {.lex_state = 2022, .external_lex_state = 24}, - [2055] = {.lex_state = 2022, .external_lex_state = 24}, - [2056] = {.lex_state = 2022, .external_lex_state = 24}, - [2057] = {.lex_state = 2022, .external_lex_state = 23}, - [2058] = {.lex_state = 2022, .external_lex_state = 23}, - [2059] = {.lex_state = 2022, .external_lex_state = 23}, - [2060] = {.lex_state = 2022, .external_lex_state = 23}, - [2061] = {.lex_state = 2022, .external_lex_state = 24}, - [2062] = {.lex_state = 2022, .external_lex_state = 24}, - [2063] = {.lex_state = 2022, .external_lex_state = 24}, - [2064] = {.lex_state = 2022, .external_lex_state = 24}, - [2065] = {.lex_state = 2022, .external_lex_state = 24}, - [2066] = {.lex_state = 2022, .external_lex_state = 24}, - [2067] = {.lex_state = 2022, .external_lex_state = 24}, - [2068] = {.lex_state = 2022, .external_lex_state = 24}, - [2069] = {.lex_state = 2022, .external_lex_state = 24}, - [2070] = {.lex_state = 2022, .external_lex_state = 24}, - [2071] = {.lex_state = 2022, .external_lex_state = 24}, - [2072] = {.lex_state = 2022, .external_lex_state = 24}, - [2073] = {.lex_state = 2022, .external_lex_state = 24}, - [2074] = {.lex_state = 2022, .external_lex_state = 24}, - [2075] = {.lex_state = 2022, .external_lex_state = 24}, - [2076] = {.lex_state = 2022, .external_lex_state = 24}, - [2077] = {.lex_state = 2022, .external_lex_state = 24}, - [2078] = {.lex_state = 2022, .external_lex_state = 23}, - [2079] = {.lex_state = 2022, .external_lex_state = 23}, - [2080] = {.lex_state = 2022, .external_lex_state = 23}, - [2081] = {.lex_state = 2022, .external_lex_state = 23}, - [2082] = {.lex_state = 2022, .external_lex_state = 24}, - [2083] = {.lex_state = 2022, .external_lex_state = 24}, - [2084] = {.lex_state = 2022, .external_lex_state = 24}, - [2085] = {.lex_state = 2022, .external_lex_state = 24}, - [2086] = {.lex_state = 2022, .external_lex_state = 24}, - [2087] = {.lex_state = 2022, .external_lex_state = 24}, - [2088] = {.lex_state = 2022, .external_lex_state = 24}, - [2089] = {.lex_state = 2022, .external_lex_state = 24}, - [2090] = {.lex_state = 2022, .external_lex_state = 24}, - [2091] = {.lex_state = 2022, .external_lex_state = 24}, - [2092] = {.lex_state = 2022, .external_lex_state = 24}, - [2093] = {.lex_state = 2022, .external_lex_state = 24}, - [2094] = {.lex_state = 2022, .external_lex_state = 24}, - [2095] = {.lex_state = 2022, .external_lex_state = 24}, - [2096] = {.lex_state = 2022, .external_lex_state = 24}, - [2097] = {.lex_state = 2022, .external_lex_state = 24}, - [2098] = {.lex_state = 2022, .external_lex_state = 24}, - [2099] = {.lex_state = 2022, .external_lex_state = 17}, - [2100] = {.lex_state = 2022, .external_lex_state = 17}, - [2101] = {.lex_state = 2022, .external_lex_state = 17}, - [2102] = {.lex_state = 2022, .external_lex_state = 17}, - [2103] = {.lex_state = 2022, .external_lex_state = 24}, - [2104] = {.lex_state = 2022, .external_lex_state = 24}, - [2105] = {.lex_state = 2022, .external_lex_state = 17}, - [2106] = {.lex_state = 2022, .external_lex_state = 17}, - [2107] = {.lex_state = 2022, .external_lex_state = 17}, - [2108] = {.lex_state = 1, .external_lex_state = 12}, - [2109] = {.lex_state = 2022, .external_lex_state = 24}, - [2110] = {.lex_state = 2022, .external_lex_state = 24}, - [2111] = {.lex_state = 2022, .external_lex_state = 24}, - [2112] = {.lex_state = 2022, .external_lex_state = 24}, - [2113] = {.lex_state = 2022, .external_lex_state = 24}, - [2114] = {.lex_state = 2022, .external_lex_state = 24}, - [2115] = {.lex_state = 2022, .external_lex_state = 24}, - [2116] = {.lex_state = 2022, .external_lex_state = 24}, - [2117] = {.lex_state = 1, .external_lex_state = 12}, - [2118] = {.lex_state = 1, .external_lex_state = 12}, - [2119] = {.lex_state = 1, .external_lex_state = 12}, - [2120] = {.lex_state = 1, .external_lex_state = 12}, - [2121] = {.lex_state = 2022, .external_lex_state = 15}, - [2122] = {.lex_state = 2022, .external_lex_state = 15}, - [2123] = {.lex_state = 2022, .external_lex_state = 15}, - [2124] = {.lex_state = 2022, .external_lex_state = 15}, - [2125] = {.lex_state = 2022, .external_lex_state = 15}, - [2126] = {.lex_state = 2022, .external_lex_state = 15}, - [2127] = {.lex_state = 2022, .external_lex_state = 15}, + [2011] = {.lex_state = 2022, .external_lex_state = 25}, + [2012] = {.lex_state = 2022, .external_lex_state = 25}, + [2013] = {.lex_state = 2022, .external_lex_state = 25}, + [2014] = {.lex_state = 2022, .external_lex_state = 25}, + [2015] = {.lex_state = 2022, .external_lex_state = 25}, + [2016] = {.lex_state = 2022, .external_lex_state = 25}, + [2017] = {.lex_state = 2022, .external_lex_state = 25}, + [2018] = {.lex_state = 2022, .external_lex_state = 25}, + [2019] = {.lex_state = 2022, .external_lex_state = 25}, + [2020] = {.lex_state = 2022, .external_lex_state = 25}, + [2021] = {.lex_state = 2022, .external_lex_state = 25}, + [2022] = {.lex_state = 2022, .external_lex_state = 25}, + [2023] = {.lex_state = 2022, .external_lex_state = 25}, + [2024] = {.lex_state = 2022, .external_lex_state = 25}, + [2025] = {.lex_state = 2022, .external_lex_state = 25}, + [2026] = {.lex_state = 2022, .external_lex_state = 25}, + [2027] = {.lex_state = 2022, .external_lex_state = 25}, + [2028] = {.lex_state = 2022, .external_lex_state = 25}, + [2029] = {.lex_state = 2022, .external_lex_state = 21}, + [2030] = {.lex_state = 2022, .external_lex_state = 21}, + [2031] = {.lex_state = 2022, .external_lex_state = 21}, + [2032] = {.lex_state = 2022, .external_lex_state = 21}, + [2033] = {.lex_state = 2022, .external_lex_state = 21}, + [2034] = {.lex_state = 2022, .external_lex_state = 25}, + [2035] = {.lex_state = 2022, .external_lex_state = 25}, + [2036] = {.lex_state = 2022, .external_lex_state = 16}, + [2037] = {.lex_state = 2022, .external_lex_state = 21}, + [2038] = {.lex_state = 2022, .external_lex_state = 16}, + [2039] = {.lex_state = 2022, .external_lex_state = 16}, + [2040] = {.lex_state = 2022, .external_lex_state = 21}, + [2041] = {.lex_state = 2022, .external_lex_state = 16}, + [2042] = {.lex_state = 2022, .external_lex_state = 16}, + [2043] = {.lex_state = 2022, .external_lex_state = 21}, + [2044] = {.lex_state = 2022, .external_lex_state = 16}, + [2045] = {.lex_state = 2022, .external_lex_state = 16}, + [2046] = {.lex_state = 2022, .external_lex_state = 21}, + [2047] = {.lex_state = 2022, .external_lex_state = 16}, + [2048] = {.lex_state = 2022, .external_lex_state = 16}, + [2049] = {.lex_state = 2022, .external_lex_state = 21}, + [2050] = {.lex_state = 2022, .external_lex_state = 21}, + [2051] = {.lex_state = 2022, .external_lex_state = 21}, + [2052] = {.lex_state = 2022, .external_lex_state = 21}, + [2053] = {.lex_state = 2022, .external_lex_state = 21}, + [2054] = {.lex_state = 2022, .external_lex_state = 21}, + [2055] = {.lex_state = 2022, .external_lex_state = 21}, + [2056] = {.lex_state = 2022, .external_lex_state = 21}, + [2057] = {.lex_state = 2022, .external_lex_state = 21}, + [2058] = {.lex_state = 2022, .external_lex_state = 21}, + [2059] = {.lex_state = 2022, .external_lex_state = 21}, + [2060] = {.lex_state = 2022, .external_lex_state = 21}, + [2061] = {.lex_state = 2022, .external_lex_state = 16}, + [2062] = {.lex_state = 2022, .external_lex_state = 16}, + [2063] = {.lex_state = 2022, .external_lex_state = 21}, + [2064] = {.lex_state = 2022, .external_lex_state = 21}, + [2065] = {.lex_state = 2022, .external_lex_state = 21}, + [2066] = {.lex_state = 2022, .external_lex_state = 25}, + [2067] = {.lex_state = 2022, .external_lex_state = 25}, + [2068] = {.lex_state = 2022, .external_lex_state = 25}, + [2069] = {.lex_state = 2022, .external_lex_state = 25}, + [2070] = {.lex_state = 2022, .external_lex_state = 21}, + [2071] = {.lex_state = 2022, .external_lex_state = 21}, + [2072] = {.lex_state = 2022, .external_lex_state = 21}, + [2073] = {.lex_state = 2022, .external_lex_state = 21}, + [2074] = {.lex_state = 2022, .external_lex_state = 21}, + [2075] = {.lex_state = 2022, .external_lex_state = 21}, + [2076] = {.lex_state = 2022, .external_lex_state = 21}, + [2077] = {.lex_state = 2022, .external_lex_state = 21}, + [2078] = {.lex_state = 2022, .external_lex_state = 21}, + [2079] = {.lex_state = 2022, .external_lex_state = 21}, + [2080] = {.lex_state = 2022, .external_lex_state = 21}, + [2081] = {.lex_state = 2022, .external_lex_state = 21}, + [2082] = {.lex_state = 2022, .external_lex_state = 21}, + [2083] = {.lex_state = 2022, .external_lex_state = 21}, + [2084] = {.lex_state = 2022, .external_lex_state = 21}, + [2085] = {.lex_state = 2022, .external_lex_state = 21}, + [2086] = {.lex_state = 2022, .external_lex_state = 25}, + [2087] = {.lex_state = 2022, .external_lex_state = 25}, + [2088] = {.lex_state = 2022, .external_lex_state = 25}, + [2089] = {.lex_state = 2022, .external_lex_state = 25}, + [2090] = {.lex_state = 2022, .external_lex_state = 21}, + [2091] = {.lex_state = 2022, .external_lex_state = 21}, + [2092] = {.lex_state = 2022, .external_lex_state = 21}, + [2093] = {.lex_state = 2022, .external_lex_state = 21}, + [2094] = {.lex_state = 2022, .external_lex_state = 21}, + [2095] = {.lex_state = 2022, .external_lex_state = 21}, + [2096] = {.lex_state = 2022, .external_lex_state = 21}, + [2097] = {.lex_state = 2022, .external_lex_state = 21}, + [2098] = {.lex_state = 2022, .external_lex_state = 21}, + [2099] = {.lex_state = 2022, .external_lex_state = 21}, + [2100] = {.lex_state = 2022, .external_lex_state = 21}, + [2101] = {.lex_state = 2022, .external_lex_state = 21}, + [2102] = {.lex_state = 2022, .external_lex_state = 21}, + [2103] = {.lex_state = 2022, .external_lex_state = 21}, + [2104] = {.lex_state = 2022, .external_lex_state = 21}, + [2105] = {.lex_state = 2022, .external_lex_state = 21}, + [2106] = {.lex_state = 2022, .external_lex_state = 21}, + [2107] = {.lex_state = 2022, .external_lex_state = 21}, + [2108] = {.lex_state = 2022, .external_lex_state = 16}, + [2109] = {.lex_state = 2022, .external_lex_state = 16}, + [2110] = {.lex_state = 2022, .external_lex_state = 16}, + [2111] = {.lex_state = 2022, .external_lex_state = 21}, + [2112] = {.lex_state = 2022, .external_lex_state = 16}, + [2113] = {.lex_state = 2022, .external_lex_state = 21}, + [2114] = {.lex_state = 2022, .external_lex_state = 16}, + [2115] = {.lex_state = 2022, .external_lex_state = 16}, + [2116] = {.lex_state = 2022, .external_lex_state = 16}, + [2117] = {.lex_state = 1, .external_lex_state = 11}, + [2118] = {.lex_state = 2022, .external_lex_state = 21}, + [2119] = {.lex_state = 2022, .external_lex_state = 21}, + [2120] = {.lex_state = 2022, .external_lex_state = 21}, + [2121] = {.lex_state = 2022, .external_lex_state = 21}, + [2122] = {.lex_state = 2022, .external_lex_state = 21}, + [2123] = {.lex_state = 2022, .external_lex_state = 21}, + [2124] = {.lex_state = 2022, .external_lex_state = 21}, + [2125] = {.lex_state = 2022, .external_lex_state = 21}, + [2126] = {.lex_state = 1, .external_lex_state = 11}, + [2127] = {.lex_state = 1, .external_lex_state = 11}, [2128] = {.lex_state = 2022, .external_lex_state = 15}, [2129] = {.lex_state = 2022, .external_lex_state = 15}, [2130] = {.lex_state = 2022, .external_lex_state = 15}, [2131] = {.lex_state = 2022, .external_lex_state = 15}, [2132] = {.lex_state = 2022, .external_lex_state = 15}, [2133] = {.lex_state = 2022, .external_lex_state = 15}, - [2134] = {.lex_state = 2022, .external_lex_state = 15}, - [2135] = {.lex_state = 2022, .external_lex_state = 15}, + [2134] = {.lex_state = 1, .external_lex_state = 11}, + [2135] = {.lex_state = 1, .external_lex_state = 11}, [2136] = {.lex_state = 2022, .external_lex_state = 15}, [2137] = {.lex_state = 2022, .external_lex_state = 15}, [2138] = {.lex_state = 2022, .external_lex_state = 15}, @@ -21516,291 +21577,291 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2143] = {.lex_state = 2022, .external_lex_state = 15}, [2144] = {.lex_state = 2022, .external_lex_state = 15}, [2145] = {.lex_state = 2022, .external_lex_state = 15}, - [2146] = {.lex_state = 2022, .external_lex_state = 17}, - [2147] = {.lex_state = 1, .external_lex_state = 12}, - [2148] = {.lex_state = 1, .external_lex_state = 12}, - [2149] = {.lex_state = 1, .external_lex_state = 12}, - [2150] = {.lex_state = 1, .external_lex_state = 12}, - [2151] = {.lex_state = 1, .external_lex_state = 12}, - [2152] = {.lex_state = 1, .external_lex_state = 12}, - [2153] = {.lex_state = 1, .external_lex_state = 12}, - [2154] = {.lex_state = 1, .external_lex_state = 12}, - [2155] = {.lex_state = 1, .external_lex_state = 12}, - [2156] = {.lex_state = 1, .external_lex_state = 12}, - [2157] = {.lex_state = 1, .external_lex_state = 12}, - [2158] = {.lex_state = 1, .external_lex_state = 12}, - [2159] = {.lex_state = 1, .external_lex_state = 12}, - [2160] = {.lex_state = 1, .external_lex_state = 12}, - [2161] = {.lex_state = 1, .external_lex_state = 12}, - [2162] = {.lex_state = 1, .external_lex_state = 12}, - [2163] = {.lex_state = 1, .external_lex_state = 12}, - [2164] = {.lex_state = 1, .external_lex_state = 12}, - [2165] = {.lex_state = 1, .external_lex_state = 12}, - [2166] = {.lex_state = 2022, .external_lex_state = 26}, - [2167] = {.lex_state = 2022, .external_lex_state = 17}, - [2168] = {.lex_state = 2022, .external_lex_state = 17}, - [2169] = {.lex_state = 1, .external_lex_state = 12}, - [2170] = {.lex_state = 1, .external_lex_state = 12}, - [2171] = {.lex_state = 1, .external_lex_state = 12}, - [2172] = {.lex_state = 1, .external_lex_state = 12}, - [2173] = {.lex_state = 1, .external_lex_state = 12}, - [2174] = {.lex_state = 1, .external_lex_state = 12}, - [2175] = {.lex_state = 1, .external_lex_state = 12}, - [2176] = {.lex_state = 1, .external_lex_state = 12}, - [2177] = {.lex_state = 1, .external_lex_state = 12}, - [2178] = {.lex_state = 1, .external_lex_state = 12}, - [2179] = {.lex_state = 1, .external_lex_state = 12}, - [2180] = {.lex_state = 1, .external_lex_state = 12}, - [2181] = {.lex_state = 1, .external_lex_state = 12}, - [2182] = {.lex_state = 1, .external_lex_state = 12}, - [2183] = {.lex_state = 1, .external_lex_state = 12}, - [2184] = {.lex_state = 1, .external_lex_state = 12}, - [2185] = {.lex_state = 1, .external_lex_state = 12}, - [2186] = {.lex_state = 2022, .external_lex_state = 17}, - [2187] = {.lex_state = 2022, .external_lex_state = 17}, - [2188] = {.lex_state = 1, .external_lex_state = 12}, - [2189] = {.lex_state = 1, .external_lex_state = 12}, - [2190] = {.lex_state = 1, .external_lex_state = 12}, - [2191] = {.lex_state = 1, .external_lex_state = 12}, - [2192] = {.lex_state = 1, .external_lex_state = 12}, - [2193] = {.lex_state = 1, .external_lex_state = 12}, - [2194] = {.lex_state = 1, .external_lex_state = 12}, - [2195] = {.lex_state = 1, .external_lex_state = 12}, - [2196] = {.lex_state = 1, .external_lex_state = 12}, - [2197] = {.lex_state = 1, .external_lex_state = 12}, - [2198] = {.lex_state = 1, .external_lex_state = 12}, - [2199] = {.lex_state = 1, .external_lex_state = 12}, - [2200] = {.lex_state = 1, .external_lex_state = 12}, - [2201] = {.lex_state = 1, .external_lex_state = 12}, - [2202] = {.lex_state = 1, .external_lex_state = 12}, - [2203] = {.lex_state = 1, .external_lex_state = 12}, - [2204] = {.lex_state = 1, .external_lex_state = 12}, - [2205] = {.lex_state = 1, .external_lex_state = 12}, - [2206] = {.lex_state = 1, .external_lex_state = 33}, - [2207] = {.lex_state = 2022, .external_lex_state = 26}, - [2208] = {.lex_state = 2022, .external_lex_state = 26}, - [2209] = {.lex_state = 2022, .external_lex_state = 26}, - [2210] = {.lex_state = 2022, .external_lex_state = 26}, - [2211] = {.lex_state = 2022, .external_lex_state = 26}, - [2212] = {.lex_state = 1, .external_lex_state = 12}, - [2213] = {.lex_state = 1, .external_lex_state = 12}, - [2214] = {.lex_state = 2022, .external_lex_state = 17}, - [2215] = {.lex_state = 2022, .external_lex_state = 26}, - [2216] = {.lex_state = 2022, .external_lex_state = 26}, - [2217] = {.lex_state = 2022, .external_lex_state = 26}, - [2218] = {.lex_state = 2022, .external_lex_state = 26}, - [2219] = {.lex_state = 2022, .external_lex_state = 26}, - [2220] = {.lex_state = 2022, .external_lex_state = 26}, - [2221] = {.lex_state = 2022, .external_lex_state = 26}, - [2222] = {.lex_state = 2022, .external_lex_state = 26}, - [2223] = {.lex_state = 2022, .external_lex_state = 26}, - [2224] = {.lex_state = 2022, .external_lex_state = 26}, - [2225] = {.lex_state = 2022, .external_lex_state = 26}, - [2226] = {.lex_state = 2022, .external_lex_state = 26}, - [2227] = {.lex_state = 2022, .external_lex_state = 26}, - [2228] = {.lex_state = 2022, .external_lex_state = 26}, - [2229] = {.lex_state = 2022, .external_lex_state = 26}, - [2230] = {.lex_state = 2022, .external_lex_state = 26}, - [2231] = {.lex_state = 2022, .external_lex_state = 26}, - [2232] = {.lex_state = 2022, .external_lex_state = 26}, - [2233] = {.lex_state = 2022, .external_lex_state = 26}, - [2234] = {.lex_state = 1, .external_lex_state = 12}, - [2235] = {.lex_state = 1, .external_lex_state = 12}, - [2236] = {.lex_state = 2022, .external_lex_state = 28}, - [2237] = {.lex_state = 1, .external_lex_state = 12}, - [2238] = {.lex_state = 1, .external_lex_state = 12}, - [2239] = {.lex_state = 2022, .external_lex_state = 26}, - [2240] = {.lex_state = 2022, .external_lex_state = 26}, - [2241] = {.lex_state = 2022, .external_lex_state = 26}, - [2242] = {.lex_state = 2022, .external_lex_state = 26}, - [2243] = {.lex_state = 2022, .external_lex_state = 26}, - [2244] = {.lex_state = 2022, .external_lex_state = 26}, - [2245] = {.lex_state = 2022, .external_lex_state = 26}, - [2246] = {.lex_state = 2022, .external_lex_state = 26}, - [2247] = {.lex_state = 2022, .external_lex_state = 26}, - [2248] = {.lex_state = 2022, .external_lex_state = 26}, - [2249] = {.lex_state = 2022, .external_lex_state = 26}, - [2250] = {.lex_state = 2022, .external_lex_state = 26}, - [2251] = {.lex_state = 2022, .external_lex_state = 26}, - [2252] = {.lex_state = 2022, .external_lex_state = 26}, - [2253] = {.lex_state = 2022, .external_lex_state = 26}, - [2254] = {.lex_state = 2022, .external_lex_state = 26}, - [2255] = {.lex_state = 2022, .external_lex_state = 26}, - [2256] = {.lex_state = 1, .external_lex_state = 12}, - [2257] = {.lex_state = 1, .external_lex_state = 12}, - [2258] = {.lex_state = 1, .external_lex_state = 12}, - [2259] = {.lex_state = 1, .external_lex_state = 12}, - [2260] = {.lex_state = 2022, .external_lex_state = 26}, - [2261] = {.lex_state = 2022, .external_lex_state = 26}, - [2262] = {.lex_state = 2022, .external_lex_state = 26}, - [2263] = {.lex_state = 2022, .external_lex_state = 26}, - [2264] = {.lex_state = 2022, .external_lex_state = 26}, - [2265] = {.lex_state = 2022, .external_lex_state = 26}, - [2266] = {.lex_state = 2022, .external_lex_state = 26}, - [2267] = {.lex_state = 2022, .external_lex_state = 26}, - [2268] = {.lex_state = 2022, .external_lex_state = 26}, - [2269] = {.lex_state = 2022, .external_lex_state = 26}, - [2270] = {.lex_state = 2022, .external_lex_state = 26}, - [2271] = {.lex_state = 2022, .external_lex_state = 26}, - [2272] = {.lex_state = 2022, .external_lex_state = 26}, - [2273] = {.lex_state = 2022, .external_lex_state = 26}, - [2274] = {.lex_state = 2022, .external_lex_state = 26}, - [2275] = {.lex_state = 2022, .external_lex_state = 26}, - [2276] = {.lex_state = 2022, .external_lex_state = 26}, - [2277] = {.lex_state = 2022, .external_lex_state = 26}, - [2278] = {.lex_state = 2022, .external_lex_state = 28}, - [2279] = {.lex_state = 2022, .external_lex_state = 28}, - [2280] = {.lex_state = 2022, .external_lex_state = 28}, - [2281] = {.lex_state = 2022, .external_lex_state = 28}, - [2282] = {.lex_state = 2022, .external_lex_state = 28}, - [2283] = {.lex_state = 2022, .external_lex_state = 26}, - [2284] = {.lex_state = 2022, .external_lex_state = 26}, - [2285] = {.lex_state = 2022, .external_lex_state = 28}, - [2286] = {.lex_state = 2022, .external_lex_state = 28}, - [2287] = {.lex_state = 2022, .external_lex_state = 28}, - [2288] = {.lex_state = 2022, .external_lex_state = 28}, - [2289] = {.lex_state = 2022, .external_lex_state = 28}, - [2290] = {.lex_state = 2022, .external_lex_state = 28}, - [2291] = {.lex_state = 2022, .external_lex_state = 28}, - [2292] = {.lex_state = 2022, .external_lex_state = 28}, - [2293] = {.lex_state = 2022, .external_lex_state = 28}, - [2294] = {.lex_state = 2022, .external_lex_state = 28}, - [2295] = {.lex_state = 2022, .external_lex_state = 28}, - [2296] = {.lex_state = 2022, .external_lex_state = 28}, - [2297] = {.lex_state = 2022, .external_lex_state = 28}, - [2298] = {.lex_state = 2022, .external_lex_state = 28}, - [2299] = {.lex_state = 2022, .external_lex_state = 28}, - [2300] = {.lex_state = 2022, .external_lex_state = 28}, - [2301] = {.lex_state = 2022, .external_lex_state = 28}, - [2302] = {.lex_state = 2022, .external_lex_state = 28}, - [2303] = {.lex_state = 2022, .external_lex_state = 28}, - [2304] = {.lex_state = 2022, .external_lex_state = 26}, - [2305] = {.lex_state = 2022, .external_lex_state = 26}, - [2306] = {.lex_state = 2022, .external_lex_state = 20}, - [2307] = {.lex_state = 2022, .external_lex_state = 26}, - [2308] = {.lex_state = 2022, .external_lex_state = 26}, - [2309] = {.lex_state = 2022, .external_lex_state = 28}, - [2310] = {.lex_state = 2022, .external_lex_state = 28}, - [2311] = {.lex_state = 2022, .external_lex_state = 28}, - [2312] = {.lex_state = 2022, .external_lex_state = 28}, - [2313] = {.lex_state = 2022, .external_lex_state = 28}, - [2314] = {.lex_state = 2022, .external_lex_state = 17}, - [2315] = {.lex_state = 2022, .external_lex_state = 28}, - [2316] = {.lex_state = 2022, .external_lex_state = 28}, - [2317] = {.lex_state = 2022, .external_lex_state = 17}, - [2318] = {.lex_state = 2022, .external_lex_state = 28}, - [2319] = {.lex_state = 2022, .external_lex_state = 28}, - [2320] = {.lex_state = 2022, .external_lex_state = 28}, - [2321] = {.lex_state = 2022, .external_lex_state = 28}, - [2322] = {.lex_state = 2022, .external_lex_state = 28}, - [2323] = {.lex_state = 2022, .external_lex_state = 28}, - [2324] = {.lex_state = 2022, .external_lex_state = 28}, - [2325] = {.lex_state = 2022, .external_lex_state = 28}, - [2326] = {.lex_state = 2022, .external_lex_state = 28}, - [2327] = {.lex_state = 2022, .external_lex_state = 17}, - [2328] = {.lex_state = 2022, .external_lex_state = 28}, - [2329] = {.lex_state = 2022, .external_lex_state = 26}, - [2330] = {.lex_state = 2022, .external_lex_state = 26}, - [2331] = {.lex_state = 2022, .external_lex_state = 26}, - [2332] = {.lex_state = 2022, .external_lex_state = 26}, - [2333] = {.lex_state = 2022, .external_lex_state = 28}, - [2334] = {.lex_state = 2022, .external_lex_state = 28}, - [2335] = {.lex_state = 2022, .external_lex_state = 28}, - [2336] = {.lex_state = 2022, .external_lex_state = 28}, - [2337] = {.lex_state = 2022, .external_lex_state = 28}, - [2338] = {.lex_state = 2022, .external_lex_state = 28}, - [2339] = {.lex_state = 2022, .external_lex_state = 28}, - [2340] = {.lex_state = 2022, .external_lex_state = 28}, - [2341] = {.lex_state = 2022, .external_lex_state = 28}, - [2342] = {.lex_state = 2022, .external_lex_state = 28}, - [2343] = {.lex_state = 2022, .external_lex_state = 28}, - [2344] = {.lex_state = 2022, .external_lex_state = 28}, - [2345] = {.lex_state = 2022, .external_lex_state = 28}, - [2346] = {.lex_state = 2022, .external_lex_state = 28}, - [2347] = {.lex_state = 2022, .external_lex_state = 28}, - [2348] = {.lex_state = 2022, .external_lex_state = 28}, - [2349] = {.lex_state = 2022, .external_lex_state = 28}, - [2350] = {.lex_state = 2022, .external_lex_state = 28}, - [2351] = {.lex_state = 2022, .external_lex_state = 20}, - [2352] = {.lex_state = 2022, .external_lex_state = 17}, - [2353] = {.lex_state = 2022, .external_lex_state = 17}, - [2354] = {.lex_state = 2022, .external_lex_state = 20}, - [2355] = {.lex_state = 2022, .external_lex_state = 20}, - [2356] = {.lex_state = 2022, .external_lex_state = 20}, - [2357] = {.lex_state = 2022, .external_lex_state = 20}, - [2358] = {.lex_state = 2022, .external_lex_state = 28}, - [2359] = {.lex_state = 2022, .external_lex_state = 28}, - [2360] = {.lex_state = 2022, .external_lex_state = 20}, - [2361] = {.lex_state = 2022, .external_lex_state = 20}, - [2362] = {.lex_state = 2022, .external_lex_state = 20}, - [2363] = {.lex_state = 2022, .external_lex_state = 20}, - [2364] = {.lex_state = 2022, .external_lex_state = 20}, - [2365] = {.lex_state = 2022, .external_lex_state = 20}, - [2366] = {.lex_state = 2022, .external_lex_state = 20}, - [2367] = {.lex_state = 2022, .external_lex_state = 20}, - [2368] = {.lex_state = 2022, .external_lex_state = 20}, - [2369] = {.lex_state = 2022, .external_lex_state = 20}, - [2370] = {.lex_state = 2022, .external_lex_state = 20}, - [2371] = {.lex_state = 2022, .external_lex_state = 20}, - [2372] = {.lex_state = 2022, .external_lex_state = 20}, - [2373] = {.lex_state = 2022, .external_lex_state = 20}, - [2374] = {.lex_state = 2022, .external_lex_state = 20}, - [2375] = {.lex_state = 2022, .external_lex_state = 20}, - [2376] = {.lex_state = 2022, .external_lex_state = 20}, - [2377] = {.lex_state = 2022, .external_lex_state = 20}, - [2378] = {.lex_state = 2022, .external_lex_state = 20}, - [2379] = {.lex_state = 2022, .external_lex_state = 28}, - [2380] = {.lex_state = 2022, .external_lex_state = 28}, - [2381] = {.lex_state = 2022, .external_lex_state = 21}, - [2382] = {.lex_state = 2022, .external_lex_state = 28}, - [2383] = {.lex_state = 2022, .external_lex_state = 28}, - [2384] = {.lex_state = 2022, .external_lex_state = 20}, - [2385] = {.lex_state = 2022, .external_lex_state = 20}, - [2386] = {.lex_state = 2022, .external_lex_state = 20}, - [2387] = {.lex_state = 2022, .external_lex_state = 20}, - [2388] = {.lex_state = 2022, .external_lex_state = 20}, - [2389] = {.lex_state = 2022, .external_lex_state = 20}, - [2390] = {.lex_state = 2022, .external_lex_state = 20}, - [2391] = {.lex_state = 2022, .external_lex_state = 20}, - [2392] = {.lex_state = 2022, .external_lex_state = 20}, - [2393] = {.lex_state = 2022, .external_lex_state = 20}, - [2394] = {.lex_state = 2022, .external_lex_state = 20}, - [2395] = {.lex_state = 2022, .external_lex_state = 20}, - [2396] = {.lex_state = 2022, .external_lex_state = 20}, - [2397] = {.lex_state = 2022, .external_lex_state = 20}, - [2398] = {.lex_state = 2022, .external_lex_state = 20}, - [2399] = {.lex_state = 2022, .external_lex_state = 20}, - [2400] = {.lex_state = 2022, .external_lex_state = 20}, - [2401] = {.lex_state = 2022, .external_lex_state = 20}, - [2402] = {.lex_state = 2022, .external_lex_state = 28}, - [2403] = {.lex_state = 2022, .external_lex_state = 28}, - [2404] = {.lex_state = 2022, .external_lex_state = 28}, - [2405] = {.lex_state = 2022, .external_lex_state = 28}, - [2406] = {.lex_state = 2022, .external_lex_state = 20}, - [2407] = {.lex_state = 2022, .external_lex_state = 20}, - [2408] = {.lex_state = 2022, .external_lex_state = 20}, - [2409] = {.lex_state = 2022, .external_lex_state = 20}, - [2410] = {.lex_state = 2022, .external_lex_state = 20}, - [2411] = {.lex_state = 2022, .external_lex_state = 20}, - [2412] = {.lex_state = 2022, .external_lex_state = 20}, - [2413] = {.lex_state = 2022, .external_lex_state = 20}, - [2414] = {.lex_state = 2022, .external_lex_state = 20}, - [2415] = {.lex_state = 2022, .external_lex_state = 20}, - [2416] = {.lex_state = 2022, .external_lex_state = 20}, - [2417] = {.lex_state = 2022, .external_lex_state = 20}, - [2418] = {.lex_state = 2022, .external_lex_state = 21}, - [2419] = {.lex_state = 2022, .external_lex_state = 15}, - [2420] = {.lex_state = 2022, .external_lex_state = 15}, - [2421] = {.lex_state = 2022, .external_lex_state = 15}, + [2146] = {.lex_state = 2022, .external_lex_state = 15}, + [2147] = {.lex_state = 2022, .external_lex_state = 15}, + [2148] = {.lex_state = 2022, .external_lex_state = 15}, + [2149] = {.lex_state = 2022, .external_lex_state = 15}, + [2150] = {.lex_state = 2022, .external_lex_state = 15}, + [2151] = {.lex_state = 2022, .external_lex_state = 15}, + [2152] = {.lex_state = 2022, .external_lex_state = 15}, + [2153] = {.lex_state = 2022, .external_lex_state = 15}, + [2154] = {.lex_state = 2022, .external_lex_state = 15}, + [2155] = {.lex_state = 2022, .external_lex_state = 16}, + [2156] = {.lex_state = 1, .external_lex_state = 11}, + [2157] = {.lex_state = 1, .external_lex_state = 11}, + [2158] = {.lex_state = 1, .external_lex_state = 11}, + [2159] = {.lex_state = 1, .external_lex_state = 11}, + [2160] = {.lex_state = 1, .external_lex_state = 11}, + [2161] = {.lex_state = 1, .external_lex_state = 11}, + [2162] = {.lex_state = 1, .external_lex_state = 11}, + [2163] = {.lex_state = 1, .external_lex_state = 11}, + [2164] = {.lex_state = 1, .external_lex_state = 11}, + [2165] = {.lex_state = 1, .external_lex_state = 11}, + [2166] = {.lex_state = 1, .external_lex_state = 11}, + [2167] = {.lex_state = 1, .external_lex_state = 11}, + [2168] = {.lex_state = 1, .external_lex_state = 11}, + [2169] = {.lex_state = 1, .external_lex_state = 11}, + [2170] = {.lex_state = 1, .external_lex_state = 11}, + [2171] = {.lex_state = 1, .external_lex_state = 11}, + [2172] = {.lex_state = 1, .external_lex_state = 11}, + [2173] = {.lex_state = 1, .external_lex_state = 11}, + [2174] = {.lex_state = 1, .external_lex_state = 11}, + [2175] = {.lex_state = 2022, .external_lex_state = 22}, + [2176] = {.lex_state = 2022, .external_lex_state = 16}, + [2177] = {.lex_state = 2022, .external_lex_state = 16}, + [2178] = {.lex_state = 1, .external_lex_state = 11}, + [2179] = {.lex_state = 1, .external_lex_state = 11}, + [2180] = {.lex_state = 1, .external_lex_state = 11}, + [2181] = {.lex_state = 1, .external_lex_state = 11}, + [2182] = {.lex_state = 1, .external_lex_state = 11}, + [2183] = {.lex_state = 1, .external_lex_state = 11}, + [2184] = {.lex_state = 1, .external_lex_state = 11}, + [2185] = {.lex_state = 1, .external_lex_state = 11}, + [2186] = {.lex_state = 1, .external_lex_state = 11}, + [2187] = {.lex_state = 1, .external_lex_state = 11}, + [2188] = {.lex_state = 1, .external_lex_state = 11}, + [2189] = {.lex_state = 1, .external_lex_state = 11}, + [2190] = {.lex_state = 1, .external_lex_state = 11}, + [2191] = {.lex_state = 1, .external_lex_state = 11}, + [2192] = {.lex_state = 1, .external_lex_state = 11}, + [2193] = {.lex_state = 1, .external_lex_state = 11}, + [2194] = {.lex_state = 1, .external_lex_state = 11}, + [2195] = {.lex_state = 2022, .external_lex_state = 16}, + [2196] = {.lex_state = 2022, .external_lex_state = 16}, + [2197] = {.lex_state = 1, .external_lex_state = 11}, + [2198] = {.lex_state = 1, .external_lex_state = 11}, + [2199] = {.lex_state = 1, .external_lex_state = 11}, + [2200] = {.lex_state = 1, .external_lex_state = 11}, + [2201] = {.lex_state = 1, .external_lex_state = 11}, + [2202] = {.lex_state = 1, .external_lex_state = 11}, + [2203] = {.lex_state = 1, .external_lex_state = 11}, + [2204] = {.lex_state = 1, .external_lex_state = 11}, + [2205] = {.lex_state = 1, .external_lex_state = 11}, + [2206] = {.lex_state = 1, .external_lex_state = 11}, + [2207] = {.lex_state = 1, .external_lex_state = 11}, + [2208] = {.lex_state = 1, .external_lex_state = 11}, + [2209] = {.lex_state = 1, .external_lex_state = 11}, + [2210] = {.lex_state = 1, .external_lex_state = 11}, + [2211] = {.lex_state = 1, .external_lex_state = 11}, + [2212] = {.lex_state = 1, .external_lex_state = 11}, + [2213] = {.lex_state = 1, .external_lex_state = 11}, + [2214] = {.lex_state = 1, .external_lex_state = 11}, + [2215] = {.lex_state = 1, .external_lex_state = 33}, + [2216] = {.lex_state = 2022, .external_lex_state = 22}, + [2217] = {.lex_state = 2022, .external_lex_state = 22}, + [2218] = {.lex_state = 2022, .external_lex_state = 22}, + [2219] = {.lex_state = 2022, .external_lex_state = 22}, + [2220] = {.lex_state = 2022, .external_lex_state = 22}, + [2221] = {.lex_state = 1, .external_lex_state = 11}, + [2222] = {.lex_state = 1, .external_lex_state = 11}, + [2223] = {.lex_state = 2022, .external_lex_state = 22}, + [2224] = {.lex_state = 2022, .external_lex_state = 16}, + [2225] = {.lex_state = 2022, .external_lex_state = 22}, + [2226] = {.lex_state = 2022, .external_lex_state = 22}, + [2227] = {.lex_state = 2022, .external_lex_state = 22}, + [2228] = {.lex_state = 2022, .external_lex_state = 22}, + [2229] = {.lex_state = 2022, .external_lex_state = 22}, + [2230] = {.lex_state = 2022, .external_lex_state = 22}, + [2231] = {.lex_state = 2022, .external_lex_state = 22}, + [2232] = {.lex_state = 2022, .external_lex_state = 22}, + [2233] = {.lex_state = 2022, .external_lex_state = 22}, + [2234] = {.lex_state = 2022, .external_lex_state = 22}, + [2235] = {.lex_state = 2022, .external_lex_state = 22}, + [2236] = {.lex_state = 2022, .external_lex_state = 22}, + [2237] = {.lex_state = 2022, .external_lex_state = 22}, + [2238] = {.lex_state = 2022, .external_lex_state = 22}, + [2239] = {.lex_state = 2022, .external_lex_state = 22}, + [2240] = {.lex_state = 2022, .external_lex_state = 22}, + [2241] = {.lex_state = 2022, .external_lex_state = 22}, + [2242] = {.lex_state = 2022, .external_lex_state = 22}, + [2243] = {.lex_state = 1, .external_lex_state = 11}, + [2244] = {.lex_state = 1, .external_lex_state = 11}, + [2245] = {.lex_state = 2022, .external_lex_state = 24}, + [2246] = {.lex_state = 1, .external_lex_state = 11}, + [2247] = {.lex_state = 1, .external_lex_state = 11}, + [2248] = {.lex_state = 2022, .external_lex_state = 22}, + [2249] = {.lex_state = 2022, .external_lex_state = 22}, + [2250] = {.lex_state = 2022, .external_lex_state = 22}, + [2251] = {.lex_state = 2022, .external_lex_state = 22}, + [2252] = {.lex_state = 2022, .external_lex_state = 22}, + [2253] = {.lex_state = 2022, .external_lex_state = 22}, + [2254] = {.lex_state = 2022, .external_lex_state = 22}, + [2255] = {.lex_state = 2022, .external_lex_state = 22}, + [2256] = {.lex_state = 2022, .external_lex_state = 22}, + [2257] = {.lex_state = 2022, .external_lex_state = 22}, + [2258] = {.lex_state = 2022, .external_lex_state = 22}, + [2259] = {.lex_state = 2022, .external_lex_state = 22}, + [2260] = {.lex_state = 2022, .external_lex_state = 22}, + [2261] = {.lex_state = 2022, .external_lex_state = 22}, + [2262] = {.lex_state = 2022, .external_lex_state = 22}, + [2263] = {.lex_state = 2022, .external_lex_state = 22}, + [2264] = {.lex_state = 2022, .external_lex_state = 22}, + [2265] = {.lex_state = 1, .external_lex_state = 11}, + [2266] = {.lex_state = 1, .external_lex_state = 11}, + [2267] = {.lex_state = 1, .external_lex_state = 11}, + [2268] = {.lex_state = 1, .external_lex_state = 11}, + [2269] = {.lex_state = 2022, .external_lex_state = 22}, + [2270] = {.lex_state = 2022, .external_lex_state = 22}, + [2271] = {.lex_state = 2022, .external_lex_state = 22}, + [2272] = {.lex_state = 2022, .external_lex_state = 22}, + [2273] = {.lex_state = 2022, .external_lex_state = 22}, + [2274] = {.lex_state = 2022, .external_lex_state = 22}, + [2275] = {.lex_state = 2022, .external_lex_state = 22}, + [2276] = {.lex_state = 2022, .external_lex_state = 22}, + [2277] = {.lex_state = 2022, .external_lex_state = 22}, + [2278] = {.lex_state = 2022, .external_lex_state = 22}, + [2279] = {.lex_state = 2022, .external_lex_state = 22}, + [2280] = {.lex_state = 2022, .external_lex_state = 22}, + [2281] = {.lex_state = 2022, .external_lex_state = 22}, + [2282] = {.lex_state = 2022, .external_lex_state = 22}, + [2283] = {.lex_state = 2022, .external_lex_state = 22}, + [2284] = {.lex_state = 2022, .external_lex_state = 22}, + [2285] = {.lex_state = 2022, .external_lex_state = 22}, + [2286] = {.lex_state = 2022, .external_lex_state = 22}, + [2287] = {.lex_state = 2022, .external_lex_state = 24}, + [2288] = {.lex_state = 2022, .external_lex_state = 24}, + [2289] = {.lex_state = 2022, .external_lex_state = 24}, + [2290] = {.lex_state = 2022, .external_lex_state = 24}, + [2291] = {.lex_state = 2022, .external_lex_state = 24}, + [2292] = {.lex_state = 2022, .external_lex_state = 22}, + [2293] = {.lex_state = 2022, .external_lex_state = 22}, + [2294] = {.lex_state = 2022, .external_lex_state = 24}, + [2295] = {.lex_state = 2022, .external_lex_state = 24}, + [2296] = {.lex_state = 2022, .external_lex_state = 24}, + [2297] = {.lex_state = 2022, .external_lex_state = 24}, + [2298] = {.lex_state = 2022, .external_lex_state = 24}, + [2299] = {.lex_state = 2022, .external_lex_state = 24}, + [2300] = {.lex_state = 2022, .external_lex_state = 24}, + [2301] = {.lex_state = 2022, .external_lex_state = 24}, + [2302] = {.lex_state = 2022, .external_lex_state = 24}, + [2303] = {.lex_state = 2022, .external_lex_state = 24}, + [2304] = {.lex_state = 2022, .external_lex_state = 24}, + [2305] = {.lex_state = 2022, .external_lex_state = 24}, + [2306] = {.lex_state = 2022, .external_lex_state = 24}, + [2307] = {.lex_state = 2022, .external_lex_state = 24}, + [2308] = {.lex_state = 2022, .external_lex_state = 24}, + [2309] = {.lex_state = 2022, .external_lex_state = 24}, + [2310] = {.lex_state = 2022, .external_lex_state = 24}, + [2311] = {.lex_state = 2022, .external_lex_state = 24}, + [2312] = {.lex_state = 2022, .external_lex_state = 24}, + [2313] = {.lex_state = 2022, .external_lex_state = 22}, + [2314] = {.lex_state = 2022, .external_lex_state = 22}, + [2315] = {.lex_state = 2022, .external_lex_state = 26}, + [2316] = {.lex_state = 2022, .external_lex_state = 22}, + [2317] = {.lex_state = 2022, .external_lex_state = 22}, + [2318] = {.lex_state = 2022, .external_lex_state = 24}, + [2319] = {.lex_state = 2022, .external_lex_state = 24}, + [2320] = {.lex_state = 2022, .external_lex_state = 24}, + [2321] = {.lex_state = 2022, .external_lex_state = 24}, + [2322] = {.lex_state = 2022, .external_lex_state = 24}, + [2323] = {.lex_state = 2022, .external_lex_state = 24}, + [2324] = {.lex_state = 2022, .external_lex_state = 24}, + [2325] = {.lex_state = 2022, .external_lex_state = 24}, + [2326] = {.lex_state = 2022, .external_lex_state = 24}, + [2327] = {.lex_state = 2022, .external_lex_state = 16}, + [2328] = {.lex_state = 2022, .external_lex_state = 24}, + [2329] = {.lex_state = 2022, .external_lex_state = 24}, + [2330] = {.lex_state = 2022, .external_lex_state = 24}, + [2331] = {.lex_state = 2022, .external_lex_state = 24}, + [2332] = {.lex_state = 2022, .external_lex_state = 24}, + [2333] = {.lex_state = 2022, .external_lex_state = 16}, + [2334] = {.lex_state = 2022, .external_lex_state = 24}, + [2335] = {.lex_state = 2022, .external_lex_state = 24}, + [2336] = {.lex_state = 2022, .external_lex_state = 24}, + [2337] = {.lex_state = 2022, .external_lex_state = 22}, + [2338] = {.lex_state = 2022, .external_lex_state = 22}, + [2339] = {.lex_state = 2022, .external_lex_state = 22}, + [2340] = {.lex_state = 2022, .external_lex_state = 22}, + [2341] = {.lex_state = 2022, .external_lex_state = 24}, + [2342] = {.lex_state = 2022, .external_lex_state = 24}, + [2343] = {.lex_state = 2022, .external_lex_state = 24}, + [2344] = {.lex_state = 2022, .external_lex_state = 24}, + [2345] = {.lex_state = 2022, .external_lex_state = 24}, + [2346] = {.lex_state = 2022, .external_lex_state = 24}, + [2347] = {.lex_state = 2022, .external_lex_state = 24}, + [2348] = {.lex_state = 2022, .external_lex_state = 24}, + [2349] = {.lex_state = 2022, .external_lex_state = 24}, + [2350] = {.lex_state = 2022, .external_lex_state = 24}, + [2351] = {.lex_state = 2022, .external_lex_state = 24}, + [2352] = {.lex_state = 2022, .external_lex_state = 24}, + [2353] = {.lex_state = 2022, .external_lex_state = 24}, + [2354] = {.lex_state = 2022, .external_lex_state = 24}, + [2355] = {.lex_state = 2022, .external_lex_state = 24}, + [2356] = {.lex_state = 2022, .external_lex_state = 24}, + [2357] = {.lex_state = 2022, .external_lex_state = 24}, + [2358] = {.lex_state = 2022, .external_lex_state = 24}, + [2359] = {.lex_state = 2022, .external_lex_state = 26}, + [2360] = {.lex_state = 2022, .external_lex_state = 16}, + [2361] = {.lex_state = 2022, .external_lex_state = 16}, + [2362] = {.lex_state = 2022, .external_lex_state = 26}, + [2363] = {.lex_state = 2022, .external_lex_state = 26}, + [2364] = {.lex_state = 2022, .external_lex_state = 26}, + [2365] = {.lex_state = 2022, .external_lex_state = 26}, + [2366] = {.lex_state = 2022, .external_lex_state = 16}, + [2367] = {.lex_state = 2022, .external_lex_state = 24}, + [2368] = {.lex_state = 2022, .external_lex_state = 24}, + [2369] = {.lex_state = 2022, .external_lex_state = 26}, + [2370] = {.lex_state = 2022, .external_lex_state = 26}, + [2371] = {.lex_state = 2022, .external_lex_state = 26}, + [2372] = {.lex_state = 2022, .external_lex_state = 26}, + [2373] = {.lex_state = 2022, .external_lex_state = 26}, + [2374] = {.lex_state = 2022, .external_lex_state = 26}, + [2375] = {.lex_state = 2022, .external_lex_state = 26}, + [2376] = {.lex_state = 2022, .external_lex_state = 26}, + [2377] = {.lex_state = 2022, .external_lex_state = 26}, + [2378] = {.lex_state = 2022, .external_lex_state = 26}, + [2379] = {.lex_state = 2022, .external_lex_state = 26}, + [2380] = {.lex_state = 2022, .external_lex_state = 26}, + [2381] = {.lex_state = 2022, .external_lex_state = 26}, + [2382] = {.lex_state = 2022, .external_lex_state = 26}, + [2383] = {.lex_state = 2022, .external_lex_state = 26}, + [2384] = {.lex_state = 2022, .external_lex_state = 26}, + [2385] = {.lex_state = 2022, .external_lex_state = 26}, + [2386] = {.lex_state = 2022, .external_lex_state = 26}, + [2387] = {.lex_state = 2022, .external_lex_state = 26}, + [2388] = {.lex_state = 2022, .external_lex_state = 24}, + [2389] = {.lex_state = 2022, .external_lex_state = 24}, + [2390] = {.lex_state = 2022, .external_lex_state = 27}, + [2391] = {.lex_state = 2022, .external_lex_state = 24}, + [2392] = {.lex_state = 2022, .external_lex_state = 24}, + [2393] = {.lex_state = 2022, .external_lex_state = 26}, + [2394] = {.lex_state = 2022, .external_lex_state = 26}, + [2395] = {.lex_state = 2022, .external_lex_state = 26}, + [2396] = {.lex_state = 2022, .external_lex_state = 26}, + [2397] = {.lex_state = 2022, .external_lex_state = 26}, + [2398] = {.lex_state = 2022, .external_lex_state = 26}, + [2399] = {.lex_state = 2022, .external_lex_state = 26}, + [2400] = {.lex_state = 2022, .external_lex_state = 26}, + [2401] = {.lex_state = 2022, .external_lex_state = 26}, + [2402] = {.lex_state = 2022, .external_lex_state = 26}, + [2403] = {.lex_state = 2022, .external_lex_state = 26}, + [2404] = {.lex_state = 2022, .external_lex_state = 26}, + [2405] = {.lex_state = 2022, .external_lex_state = 26}, + [2406] = {.lex_state = 2022, .external_lex_state = 26}, + [2407] = {.lex_state = 2022, .external_lex_state = 26}, + [2408] = {.lex_state = 2022, .external_lex_state = 26}, + [2409] = {.lex_state = 2022, .external_lex_state = 26}, + [2410] = {.lex_state = 2022, .external_lex_state = 26}, + [2411] = {.lex_state = 2022, .external_lex_state = 24}, + [2412] = {.lex_state = 2022, .external_lex_state = 24}, + [2413] = {.lex_state = 2022, .external_lex_state = 24}, + [2414] = {.lex_state = 2022, .external_lex_state = 24}, + [2415] = {.lex_state = 2022, .external_lex_state = 26}, + [2416] = {.lex_state = 2022, .external_lex_state = 26}, + [2417] = {.lex_state = 2022, .external_lex_state = 26}, + [2418] = {.lex_state = 2022, .external_lex_state = 26}, + [2419] = {.lex_state = 2022, .external_lex_state = 26}, + [2420] = {.lex_state = 2022, .external_lex_state = 26}, + [2421] = {.lex_state = 2022, .external_lex_state = 27}, [2422] = {.lex_state = 2022, .external_lex_state = 15}, [2423] = {.lex_state = 2022, .external_lex_state = 15}, [2424] = {.lex_state = 2022, .external_lex_state = 15}, - [2425] = {.lex_state = 2022, .external_lex_state = 16}, - [2426] = {.lex_state = 2022, .external_lex_state = 15}, + [2425] = {.lex_state = 2022, .external_lex_state = 15}, + [2426] = {.lex_state = 1, .external_lex_state = 18}, [2427] = {.lex_state = 2022, .external_lex_state = 15}, [2428] = {.lex_state = 2022, .external_lex_state = 15}, [2429] = {.lex_state = 2022, .external_lex_state = 15}, - [2430] = {.lex_state = 2022, .external_lex_state = 16}, + [2430] = {.lex_state = 2022, .external_lex_state = 15}, [2431] = {.lex_state = 2022, .external_lex_state = 15}, [2432] = {.lex_state = 2022, .external_lex_state = 15}, [2433] = {.lex_state = 2022, .external_lex_state = 15}, @@ -21811,9 +21872,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2438] = {.lex_state = 2022, .external_lex_state = 15}, [2439] = {.lex_state = 2022, .external_lex_state = 15}, [2440] = {.lex_state = 2022, .external_lex_state = 15}, - [2441] = {.lex_state = 2022, .external_lex_state = 15}, + [2441] = {.lex_state = 2022, .external_lex_state = 17}, [2442] = {.lex_state = 2022, .external_lex_state = 15}, - [2443] = {.lex_state = 2022, .external_lex_state = 15}, + [2443] = {.lex_state = 2022, .external_lex_state = 17}, [2444] = {.lex_state = 2022, .external_lex_state = 15}, [2445] = {.lex_state = 2022, .external_lex_state = 15}, [2446] = {.lex_state = 2022, .external_lex_state = 15}, @@ -21829,9 +21890,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2456] = {.lex_state = 2022, .external_lex_state = 15}, [2457] = {.lex_state = 2022, .external_lex_state = 15}, [2458] = {.lex_state = 2022, .external_lex_state = 15}, - [2459] = {.lex_state = 1, .external_lex_state = 18}, + [2459] = {.lex_state = 2022, .external_lex_state = 15}, [2460] = {.lex_state = 2022, .external_lex_state = 15}, - [2461] = {.lex_state = 2022, .external_lex_state = 15}, + [2461] = {.lex_state = 2022, .external_lex_state = 17}, [2462] = {.lex_state = 2022, .external_lex_state = 15}, [2463] = {.lex_state = 2022, .external_lex_state = 15}, [2464] = {.lex_state = 2022, .external_lex_state = 15}, @@ -21841,20 +21902,20 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2468] = {.lex_state = 2022, .external_lex_state = 15}, [2469] = {.lex_state = 2022, .external_lex_state = 15}, [2470] = {.lex_state = 2022, .external_lex_state = 15}, - [2471] = {.lex_state = 2022, .external_lex_state = 16}, + [2471] = {.lex_state = 2022, .external_lex_state = 15}, [2472] = {.lex_state = 2022, .external_lex_state = 15}, [2473] = {.lex_state = 2022, .external_lex_state = 15}, [2474] = {.lex_state = 2022, .external_lex_state = 15}, [2475] = {.lex_state = 2022, .external_lex_state = 15}, [2476] = {.lex_state = 2022, .external_lex_state = 15}, [2477] = {.lex_state = 2022, .external_lex_state = 15}, - [2478] = {.lex_state = 2022, .external_lex_state = 33}, - [2479] = {.lex_state = 2, .external_lex_state = 18}, - [2480] = {.lex_state = 2, .external_lex_state = 18}, + [2478] = {.lex_state = 2022, .external_lex_state = 15}, + [2479] = {.lex_state = 2022, .external_lex_state = 15}, + [2480] = {.lex_state = 2022, .external_lex_state = 15}, [2481] = {.lex_state = 2022, .external_lex_state = 15}, [2482] = {.lex_state = 2022, .external_lex_state = 15}, [2483] = {.lex_state = 2022, .external_lex_state = 15}, - [2484] = {.lex_state = 2022, .external_lex_state = 15}, + [2484] = {.lex_state = 2022, .external_lex_state = 17}, [2485] = {.lex_state = 2022, .external_lex_state = 15}, [2486] = {.lex_state = 2022, .external_lex_state = 15}, [2487] = {.lex_state = 2022, .external_lex_state = 15}, @@ -21862,1960 +21923,1960 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2489] = {.lex_state = 2022, .external_lex_state = 15}, [2490] = {.lex_state = 2022, .external_lex_state = 15}, [2491] = {.lex_state = 2022, .external_lex_state = 15}, - [2492] = {.lex_state = 2022, .external_lex_state = 15}, - [2493] = {.lex_state = 2022, .external_lex_state = 15}, - [2494] = {.lex_state = 2022, .external_lex_state = 15}, - [2495] = {.lex_state = 2022, .external_lex_state = 16}, + [2492] = {.lex_state = 2022, .external_lex_state = 33}, + [2493] = {.lex_state = 2, .external_lex_state = 18}, + [2494] = {.lex_state = 2, .external_lex_state = 18}, + [2495] = {.lex_state = 2022, .external_lex_state = 15}, [2496] = {.lex_state = 2022, .external_lex_state = 15}, - [2497] = {.lex_state = 1, .external_lex_state = 18}, - [2498] = {.lex_state = 2022, .external_lex_state = 18}, - [2499] = {.lex_state = 1, .external_lex_state = 18}, - [2500] = {.lex_state = 0, .external_lex_state = 34}, - [2501] = {.lex_state = 0, .external_lex_state = 34}, - [2502] = {.lex_state = 0, .external_lex_state = 34}, + [2497] = {.lex_state = 2022, .external_lex_state = 15}, + [2498] = {.lex_state = 2022, .external_lex_state = 15}, + [2499] = {.lex_state = 2022, .external_lex_state = 15}, + [2500] = {.lex_state = 1, .external_lex_state = 18}, + [2501] = {.lex_state = 2022, .external_lex_state = 18}, + [2502] = {.lex_state = 1, .external_lex_state = 18}, [2503] = {.lex_state = 0, .external_lex_state = 34}, [2504] = {.lex_state = 0, .external_lex_state = 34}, - [2505] = {.lex_state = 5, .external_lex_state = 35}, - [2506] = {.lex_state = 5, .external_lex_state = 35}, - [2507] = {.lex_state = 5, .external_lex_state = 35}, + [2505] = {.lex_state = 0, .external_lex_state = 34}, + [2506] = {.lex_state = 0, .external_lex_state = 34}, + [2507] = {.lex_state = 0, .external_lex_state = 34}, [2508] = {.lex_state = 5, .external_lex_state = 35}, [2509] = {.lex_state = 5, .external_lex_state = 35}, [2510] = {.lex_state = 5, .external_lex_state = 35}, - [2511] = {.lex_state = 6, .external_lex_state = 36}, + [2511] = {.lex_state = 5, .external_lex_state = 35}, [2512] = {.lex_state = 5, .external_lex_state = 35}, [2513] = {.lex_state = 5, .external_lex_state = 35}, [2514] = {.lex_state = 5, .external_lex_state = 35}, [2515] = {.lex_state = 5, .external_lex_state = 35}, [2516] = {.lex_state = 5, .external_lex_state = 35}, [2517] = {.lex_state = 5, .external_lex_state = 35}, - [2518] = {.lex_state = 6, .external_lex_state = 36}, + [2518] = {.lex_state = 5, .external_lex_state = 35}, [2519] = {.lex_state = 5, .external_lex_state = 35}, [2520] = {.lex_state = 5, .external_lex_state = 35}, [2521] = {.lex_state = 5, .external_lex_state = 35}, - [2522] = {.lex_state = 5, .external_lex_state = 35}, + [2522] = {.lex_state = 6, .external_lex_state = 36}, [2523] = {.lex_state = 5, .external_lex_state = 35}, - [2524] = {.lex_state = 6, .external_lex_state = 37}, - [2525] = {.lex_state = 6, .external_lex_state = 37}, - [2526] = {.lex_state = 6, .external_lex_state = 38}, - [2527] = {.lex_state = 6, .external_lex_state = 38}, + [2524] = {.lex_state = 5, .external_lex_state = 35}, + [2525] = {.lex_state = 6, .external_lex_state = 36}, + [2526] = {.lex_state = 5, .external_lex_state = 35}, + [2527] = {.lex_state = 6, .external_lex_state = 37}, [2528] = {.lex_state = 6, .external_lex_state = 37}, [2529] = {.lex_state = 6, .external_lex_state = 38}, - [2530] = {.lex_state = 6, .external_lex_state = 37}, - [2531] = {.lex_state = 6, .external_lex_state = 38}, - [2532] = {.lex_state = 6, .external_lex_state = 37}, + [2530] = {.lex_state = 6, .external_lex_state = 38}, + [2531] = {.lex_state = 6, .external_lex_state = 37}, + [2532] = {.lex_state = 6, .external_lex_state = 38}, [2533] = {.lex_state = 6, .external_lex_state = 37}, - [2534] = {.lex_state = 6, .external_lex_state = 38}, - [2535] = {.lex_state = 6, .external_lex_state = 37}, - [2536] = {.lex_state = 6, .external_lex_state = 38}, - [2537] = {.lex_state = 6, .external_lex_state = 37}, - [2538] = {.lex_state = 6, .external_lex_state = 38}, + [2534] = {.lex_state = 6, .external_lex_state = 37}, + [2535] = {.lex_state = 6, .external_lex_state = 38}, + [2536] = {.lex_state = 6, .external_lex_state = 37}, + [2537] = {.lex_state = 6, .external_lex_state = 38}, + [2538] = {.lex_state = 6, .external_lex_state = 37}, [2539] = {.lex_state = 6, .external_lex_state = 38}, - [2540] = {.lex_state = 6, .external_lex_state = 38}, + [2540] = {.lex_state = 6, .external_lex_state = 37}, [2541] = {.lex_state = 6, .external_lex_state = 38}, - [2542] = {.lex_state = 6, .external_lex_state = 38}, + [2542] = {.lex_state = 6, .external_lex_state = 37}, [2543] = {.lex_state = 6, .external_lex_state = 38}, - [2544] = {.lex_state = 6, .external_lex_state = 38}, + [2544] = {.lex_state = 6, .external_lex_state = 37}, [2545] = {.lex_state = 6, .external_lex_state = 38}, - [2546] = {.lex_state = 6, .external_lex_state = 38}, + [2546] = {.lex_state = 6, .external_lex_state = 37}, [2547] = {.lex_state = 6, .external_lex_state = 38}, - [2548] = {.lex_state = 6, .external_lex_state = 38}, - [2549] = {.lex_state = 6, .external_lex_state = 37}, - [2550] = {.lex_state = 6, .external_lex_state = 38}, - [2551] = {.lex_state = 6, .external_lex_state = 37}, - [2552] = {.lex_state = 6, .external_lex_state = 38}, - [2553] = {.lex_state = 6, .external_lex_state = 37}, - [2554] = {.lex_state = 6, .external_lex_state = 37}, - [2555] = {.lex_state = 6, .external_lex_state = 37}, + [2548] = {.lex_state = 6, .external_lex_state = 37}, + [2549] = {.lex_state = 6, .external_lex_state = 38}, + [2550] = {.lex_state = 6, .external_lex_state = 37}, + [2551] = {.lex_state = 6, .external_lex_state = 38}, + [2552] = {.lex_state = 6, .external_lex_state = 37}, + [2553] = {.lex_state = 6, .external_lex_state = 38}, + [2554] = {.lex_state = 6, .external_lex_state = 38}, + [2555] = {.lex_state = 6, .external_lex_state = 38}, [2556] = {.lex_state = 6, .external_lex_state = 37}, - [2557] = {.lex_state = 6, .external_lex_state = 37}, - [2558] = {.lex_state = 6, .external_lex_state = 38}, - [2559] = {.lex_state = 6, .external_lex_state = 37}, - [2560] = {.lex_state = 6, .external_lex_state = 38}, + [2557] = {.lex_state = 6, .external_lex_state = 38}, + [2558] = {.lex_state = 6, .external_lex_state = 37}, + [2559] = {.lex_state = 6, .external_lex_state = 38}, + [2560] = {.lex_state = 6, .external_lex_state = 37}, [2561] = {.lex_state = 6, .external_lex_state = 38}, [2562] = {.lex_state = 6, .external_lex_state = 37}, [2563] = {.lex_state = 6, .external_lex_state = 38}, - [2564] = {.lex_state = 6, .external_lex_state = 38}, - [2565] = {.lex_state = 6, .external_lex_state = 38}, - [2566] = {.lex_state = 6, .external_lex_state = 37}, + [2564] = {.lex_state = 6, .external_lex_state = 37}, + [2565] = {.lex_state = 6, .external_lex_state = 37}, + [2566] = {.lex_state = 6, .external_lex_state = 38}, [2567] = {.lex_state = 6, .external_lex_state = 37}, [2568] = {.lex_state = 6, .external_lex_state = 38}, - [2569] = {.lex_state = 6, .external_lex_state = 38}, + [2569] = {.lex_state = 6, .external_lex_state = 37}, [2570] = {.lex_state = 6, .external_lex_state = 37}, [2571] = {.lex_state = 6, .external_lex_state = 38}, - [2572] = {.lex_state = 6, .external_lex_state = 38}, - [2573] = {.lex_state = 6, .external_lex_state = 37}, - [2574] = {.lex_state = 6, .external_lex_state = 38}, + [2572] = {.lex_state = 6, .external_lex_state = 37}, + [2573] = {.lex_state = 6, .external_lex_state = 38}, + [2574] = {.lex_state = 6, .external_lex_state = 37}, [2575] = {.lex_state = 6, .external_lex_state = 37}, [2576] = {.lex_state = 6, .external_lex_state = 37}, - [2577] = {.lex_state = 6, .external_lex_state = 38}, + [2577] = {.lex_state = 6, .external_lex_state = 37}, [2578] = {.lex_state = 6, .external_lex_state = 37}, - [2579] = {.lex_state = 6, .external_lex_state = 38}, - [2580] = {.lex_state = 6, .external_lex_state = 38}, + [2579] = {.lex_state = 6, .external_lex_state = 37}, + [2580] = {.lex_state = 6, .external_lex_state = 37}, [2581] = {.lex_state = 6, .external_lex_state = 37}, [2582] = {.lex_state = 6, .external_lex_state = 37}, [2583] = {.lex_state = 6, .external_lex_state = 38}, - [2584] = {.lex_state = 6, .external_lex_state = 37}, - [2585] = {.lex_state = 6, .external_lex_state = 37}, - [2586] = {.lex_state = 6, .external_lex_state = 38}, - [2587] = {.lex_state = 6, .external_lex_state = 37}, + [2584] = {.lex_state = 6, .external_lex_state = 38}, + [2585] = {.lex_state = 6, .external_lex_state = 38}, + [2586] = {.lex_state = 6, .external_lex_state = 37}, + [2587] = {.lex_state = 6, .external_lex_state = 38}, [2588] = {.lex_state = 6, .external_lex_state = 37}, [2589] = {.lex_state = 6, .external_lex_state = 38}, - [2590] = {.lex_state = 6, .external_lex_state = 37}, - [2591] = {.lex_state = 6, .external_lex_state = 38}, - [2592] = {.lex_state = 6, .external_lex_state = 38}, - [2593] = {.lex_state = 6, .external_lex_state = 37}, - [2594] = {.lex_state = 6, .external_lex_state = 38}, - [2595] = {.lex_state = 6, .external_lex_state = 38}, - [2596] = {.lex_state = 5, .external_lex_state = 39}, - [2597] = {.lex_state = 5, .external_lex_state = 39}, - [2598] = {.lex_state = 5, .external_lex_state = 39}, + [2590] = {.lex_state = 6, .external_lex_state = 38}, + [2591] = {.lex_state = 6, .external_lex_state = 37}, + [2592] = {.lex_state = 6, .external_lex_state = 37}, + [2593] = {.lex_state = 6, .external_lex_state = 38}, + [2594] = {.lex_state = 6, .external_lex_state = 37}, + [2595] = {.lex_state = 6, .external_lex_state = 37}, + [2596] = {.lex_state = 6, .external_lex_state = 38}, + [2597] = {.lex_state = 6, .external_lex_state = 37}, + [2598] = {.lex_state = 6, .external_lex_state = 38}, [2599] = {.lex_state = 5, .external_lex_state = 39}, - [2600] = {.lex_state = 5, .external_lex_state = 35}, - [2601] = {.lex_state = 5, .external_lex_state = 39}, + [2600] = {.lex_state = 5, .external_lex_state = 39}, + [2601] = {.lex_state = 5, .external_lex_state = 35}, [2602] = {.lex_state = 5, .external_lex_state = 39}, [2603] = {.lex_state = 5, .external_lex_state = 35}, [2604] = {.lex_state = 5, .external_lex_state = 39}, [2605] = {.lex_state = 5, .external_lex_state = 35}, [2606] = {.lex_state = 5, .external_lex_state = 35}, [2607] = {.lex_state = 5, .external_lex_state = 39}, - [2608] = {.lex_state = 5, .external_lex_state = 35}, + [2608] = {.lex_state = 5, .external_lex_state = 39}, [2609] = {.lex_state = 5, .external_lex_state = 35}, - [2610] = {.lex_state = 5, .external_lex_state = 39}, + [2610] = {.lex_state = 5, .external_lex_state = 35}, [2611] = {.lex_state = 5, .external_lex_state = 35}, [2612] = {.lex_state = 5, .external_lex_state = 39}, - [2613] = {.lex_state = 5, .external_lex_state = 39}, - [2614] = {.lex_state = 5, .external_lex_state = 35}, - [2615] = {.lex_state = 5, .external_lex_state = 35}, + [2613] = {.lex_state = 5, .external_lex_state = 35}, + [2614] = {.lex_state = 5, .external_lex_state = 39}, + [2615] = {.lex_state = 5, .external_lex_state = 39}, [2616] = {.lex_state = 5, .external_lex_state = 35}, [2617] = {.lex_state = 5, .external_lex_state = 39}, [2618] = {.lex_state = 5, .external_lex_state = 39}, [2619] = {.lex_state = 5, .external_lex_state = 39}, [2620] = {.lex_state = 5, .external_lex_state = 35}, [2621] = {.lex_state = 5, .external_lex_state = 35}, - [2622] = {.lex_state = 5, .external_lex_state = 35}, - [2623] = {.lex_state = 5, .external_lex_state = 39}, + [2622] = {.lex_state = 5, .external_lex_state = 39}, + [2623] = {.lex_state = 5, .external_lex_state = 35}, [2624] = {.lex_state = 5, .external_lex_state = 35}, - [2625] = {.lex_state = 5, .external_lex_state = 35}, + [2625] = {.lex_state = 5, .external_lex_state = 39}, [2626] = {.lex_state = 5, .external_lex_state = 39}, [2627] = {.lex_state = 5, .external_lex_state = 39}, [2628] = {.lex_state = 5, .external_lex_state = 35}, [2629] = {.lex_state = 5, .external_lex_state = 35}, [2630] = {.lex_state = 5, .external_lex_state = 39}, - [2631] = {.lex_state = 5, .external_lex_state = 39}, - [2632] = {.lex_state = 5, .external_lex_state = 39}, - [2633] = {.lex_state = 5, .external_lex_state = 39}, + [2631] = {.lex_state = 5, .external_lex_state = 35}, + [2632] = {.lex_state = 5, .external_lex_state = 35}, + [2633] = {.lex_state = 6, .external_lex_state = 40}, [2634] = {.lex_state = 5, .external_lex_state = 39}, - [2635] = {.lex_state = 6, .external_lex_state = 40}, + [2635] = {.lex_state = 5, .external_lex_state = 39}, [2636] = {.lex_state = 5, .external_lex_state = 39}, [2637] = {.lex_state = 5, .external_lex_state = 39}, [2638] = {.lex_state = 5, .external_lex_state = 39}, [2639] = {.lex_state = 6, .external_lex_state = 40}, [2640] = {.lex_state = 5, .external_lex_state = 39}, - [2641] = {.lex_state = 5, .external_lex_state = 39}, + [2641] = {.lex_state = 6, .external_lex_state = 40}, [2642] = {.lex_state = 5, .external_lex_state = 39}, [2643] = {.lex_state = 5, .external_lex_state = 39}, - [2644] = {.lex_state = 6, .external_lex_state = 40}, + [2644] = {.lex_state = 5, .external_lex_state = 39}, [2645] = {.lex_state = 5, .external_lex_state = 39}, [2646] = {.lex_state = 5, .external_lex_state = 39}, [2647] = {.lex_state = 5, .external_lex_state = 39}, [2648] = {.lex_state = 5, .external_lex_state = 39}, [2649] = {.lex_state = 5, .external_lex_state = 39}, - [2650] = {.lex_state = 6, .external_lex_state = 41}, - [2651] = {.lex_state = 6, .external_lex_state = 42}, + [2650] = {.lex_state = 5, .external_lex_state = 39}, + [2651] = {.lex_state = 5, .external_lex_state = 39}, [2652] = {.lex_state = 5, .external_lex_state = 39}, - [2653] = {.lex_state = 6, .external_lex_state = 43}, - [2654] = {.lex_state = 6, .external_lex_state = 44}, - [2655] = {.lex_state = 8, .external_lex_state = 45}, - [2656] = {.lex_state = 6, .external_lex_state = 38}, - [2657] = {.lex_state = 8, .external_lex_state = 45}, - [2658] = {.lex_state = 2022, .external_lex_state = 46}, - [2659] = {.lex_state = 6, .external_lex_state = 37}, + [2653] = {.lex_state = 6, .external_lex_state = 41}, + [2654] = {.lex_state = 6, .external_lex_state = 42}, + [2655] = {.lex_state = 6, .external_lex_state = 43}, + [2656] = {.lex_state = 5, .external_lex_state = 39}, + [2657] = {.lex_state = 6, .external_lex_state = 44}, + [2658] = {.lex_state = 2022, .external_lex_state = 45}, + [2659] = {.lex_state = 8, .external_lex_state = 46}, [2660] = {.lex_state = 5, .external_lex_state = 35}, - [2661] = {.lex_state = 8, .external_lex_state = 45}, - [2662] = {.lex_state = 6, .external_lex_state = 37}, - [2663] = {.lex_state = 8, .external_lex_state = 45}, - [2664] = {.lex_state = 6, .external_lex_state = 38}, - [2665] = {.lex_state = 8, .external_lex_state = 45}, - [2666] = {.lex_state = 8, .external_lex_state = 45}, - [2667] = {.lex_state = 8, .external_lex_state = 45}, - [2668] = {.lex_state = 6, .external_lex_state = 38}, - [2669] = {.lex_state = 8, .external_lex_state = 45}, - [2670] = {.lex_state = 8, .external_lex_state = 45}, + [2661] = {.lex_state = 8, .external_lex_state = 46}, + [2662] = {.lex_state = 5, .external_lex_state = 35}, + [2663] = {.lex_state = 8, .external_lex_state = 46}, + [2664] = {.lex_state = 8, .external_lex_state = 46}, + [2665] = {.lex_state = 8, .external_lex_state = 46}, + [2666] = {.lex_state = 6, .external_lex_state = 37}, + [2667] = {.lex_state = 8, .external_lex_state = 46}, + [2668] = {.lex_state = 2022, .external_lex_state = 45}, + [2669] = {.lex_state = 8, .external_lex_state = 46}, + [2670] = {.lex_state = 8, .external_lex_state = 46}, [2671] = {.lex_state = 6, .external_lex_state = 37}, - [2672] = {.lex_state = 8, .external_lex_state = 45}, - [2673] = {.lex_state = 6, .external_lex_state = 38}, - [2674] = {.lex_state = 8, .external_lex_state = 45}, - [2675] = {.lex_state = 2022, .external_lex_state = 46}, - [2676] = {.lex_state = 8, .external_lex_state = 45}, - [2677] = {.lex_state = 8, .external_lex_state = 45}, - [2678] = {.lex_state = 8, .external_lex_state = 45}, - [2679] = {.lex_state = 2022, .external_lex_state = 46}, - [2680] = {.lex_state = 2022, .external_lex_state = 46}, - [2681] = {.lex_state = 6, .external_lex_state = 37}, - [2682] = {.lex_state = 5, .external_lex_state = 35}, - [2683] = {.lex_state = 8, .external_lex_state = 45}, - [2684] = {.lex_state = 8, .external_lex_state = 45}, - [2685] = {.lex_state = 6, .external_lex_state = 36}, - [2686] = {.lex_state = 6, .external_lex_state = 38}, - [2687] = {.lex_state = 6, .external_lex_state = 47}, - [2688] = {.lex_state = 6, .external_lex_state = 37}, - [2689] = {.lex_state = 5, .external_lex_state = 48}, - [2690] = {.lex_state = 8, .external_lex_state = 45}, - [2691] = {.lex_state = 8, .external_lex_state = 45}, - [2692] = {.lex_state = 5, .external_lex_state = 39}, - [2693] = {.lex_state = 8, .external_lex_state = 45}, - [2694] = {.lex_state = 8, .external_lex_state = 45}, - [2695] = {.lex_state = 8, .external_lex_state = 45}, - [2696] = {.lex_state = 2022, .external_lex_state = 39}, - [2697] = {.lex_state = 8, .external_lex_state = 45}, - [2698] = {.lex_state = 6, .external_lex_state = 40}, - [2699] = {.lex_state = 2022, .external_lex_state = 39}, - [2700] = {.lex_state = 8, .external_lex_state = 45}, - [2701] = {.lex_state = 8, .external_lex_state = 45}, - [2702] = {.lex_state = 2022, .external_lex_state = 39}, - [2703] = {.lex_state = 6, .external_lex_state = 40}, - [2704] = {.lex_state = 8, .external_lex_state = 45}, - [2705] = {.lex_state = 8, .external_lex_state = 45}, - [2706] = {.lex_state = 8, .external_lex_state = 45}, - [2707] = {.lex_state = 8, .external_lex_state = 45}, - [2708] = {.lex_state = 8, .external_lex_state = 45}, - [2709] = {.lex_state = 8, .external_lex_state = 45}, - [2710] = {.lex_state = 8, .external_lex_state = 45}, - [2711] = {.lex_state = 6, .external_lex_state = 40}, - [2712] = {.lex_state = 8, .external_lex_state = 45}, - [2713] = {.lex_state = 8, .external_lex_state = 45}, - [2714] = {.lex_state = 8, .external_lex_state = 45}, - [2715] = {.lex_state = 6, .external_lex_state = 40}, - [2716] = {.lex_state = 8, .external_lex_state = 45}, - [2717] = {.lex_state = 8, .external_lex_state = 45}, - [2718] = {.lex_state = 8, .external_lex_state = 45}, - [2719] = {.lex_state = 8, .external_lex_state = 45}, - [2720] = {.lex_state = 8, .external_lex_state = 45}, - [2721] = {.lex_state = 8, .external_lex_state = 45}, - [2722] = {.lex_state = 8, .external_lex_state = 45}, - [2723] = {.lex_state = 8, .external_lex_state = 45}, - [2724] = {.lex_state = 8, .external_lex_state = 45}, - [2725] = {.lex_state = 8, .external_lex_state = 45}, - [2726] = {.lex_state = 8, .external_lex_state = 45}, - [2727] = {.lex_state = 2022, .external_lex_state = 39}, - [2728] = {.lex_state = 5, .external_lex_state = 35}, - [2729] = {.lex_state = 8, .external_lex_state = 45}, - [2730] = {.lex_state = 5, .external_lex_state = 49}, - [2731] = {.lex_state = 5, .external_lex_state = 49}, - [2732] = {.lex_state = 8, .external_lex_state = 45}, - [2733] = {.lex_state = 8, .external_lex_state = 45}, - [2734] = {.lex_state = 8, .external_lex_state = 45}, - [2735] = {.lex_state = 8, .external_lex_state = 45}, - [2736] = {.lex_state = 8, .external_lex_state = 45}, - [2737] = {.lex_state = 8, .external_lex_state = 45}, - [2738] = {.lex_state = 5, .external_lex_state = 49}, - [2739] = {.lex_state = 5, .external_lex_state = 35}, - [2740] = {.lex_state = 8, .external_lex_state = 45}, - [2741] = {.lex_state = 8, .external_lex_state = 45}, - [2742] = {.lex_state = 8, .external_lex_state = 45}, - [2743] = {.lex_state = 8, .external_lex_state = 45}, - [2744] = {.lex_state = 8, .external_lex_state = 45}, - [2745] = {.lex_state = 8, .external_lex_state = 45}, - [2746] = {.lex_state = 8, .external_lex_state = 45}, - [2747] = {.lex_state = 8, .external_lex_state = 45}, - [2748] = {.lex_state = 5, .external_lex_state = 35}, - [2749] = {.lex_state = 8, .external_lex_state = 45}, - [2750] = {.lex_state = 8, .external_lex_state = 45}, + [2672] = {.lex_state = 8, .external_lex_state = 46}, + [2673] = {.lex_state = 6, .external_lex_state = 37}, + [2674] = {.lex_state = 8, .external_lex_state = 46}, + [2675] = {.lex_state = 8, .external_lex_state = 46}, + [2676] = {.lex_state = 6, .external_lex_state = 38}, + [2677] = {.lex_state = 8, .external_lex_state = 46}, + [2678] = {.lex_state = 8, .external_lex_state = 46}, + [2679] = {.lex_state = 2022, .external_lex_state = 45}, + [2680] = {.lex_state = 6, .external_lex_state = 38}, + [2681] = {.lex_state = 8, .external_lex_state = 46}, + [2682] = {.lex_state = 6, .external_lex_state = 38}, + [2683] = {.lex_state = 8, .external_lex_state = 46}, + [2684] = {.lex_state = 8, .external_lex_state = 46}, + [2685] = {.lex_state = 6, .external_lex_state = 38}, + [2686] = {.lex_state = 6, .external_lex_state = 37}, + [2687] = {.lex_state = 2022, .external_lex_state = 45}, + [2688] = {.lex_state = 6, .external_lex_state = 36}, + [2689] = {.lex_state = 6, .external_lex_state = 38}, + [2690] = {.lex_state = 5, .external_lex_state = 47}, + [2691] = {.lex_state = 6, .external_lex_state = 48}, + [2692] = {.lex_state = 6, .external_lex_state = 37}, + [2693] = {.lex_state = 8, .external_lex_state = 46}, + [2694] = {.lex_state = 8, .external_lex_state = 46}, + [2695] = {.lex_state = 8, .external_lex_state = 46}, + [2696] = {.lex_state = 8, .external_lex_state = 46}, + [2697] = {.lex_state = 8, .external_lex_state = 46}, + [2698] = {.lex_state = 8, .external_lex_state = 46}, + [2699] = {.lex_state = 8, .external_lex_state = 46}, + [2700] = {.lex_state = 8, .external_lex_state = 46}, + [2701] = {.lex_state = 8, .external_lex_state = 46}, + [2702] = {.lex_state = 8, .external_lex_state = 46}, + [2703] = {.lex_state = 8, .external_lex_state = 46}, + [2704] = {.lex_state = 8, .external_lex_state = 46}, + [2705] = {.lex_state = 5, .external_lex_state = 35}, + [2706] = {.lex_state = 8, .external_lex_state = 46}, + [2707] = {.lex_state = 2022, .external_lex_state = 39}, + [2708] = {.lex_state = 5, .external_lex_state = 35}, + [2709] = {.lex_state = 8, .external_lex_state = 46}, + [2710] = {.lex_state = 8, .external_lex_state = 46}, + [2711] = {.lex_state = 8, .external_lex_state = 46}, + [2712] = {.lex_state = 8, .external_lex_state = 46}, + [2713] = {.lex_state = 8, .external_lex_state = 46}, + [2714] = {.lex_state = 8, .external_lex_state = 46}, + [2715] = {.lex_state = 8, .external_lex_state = 46}, + [2716] = {.lex_state = 8, .external_lex_state = 46}, + [2717] = {.lex_state = 8, .external_lex_state = 46}, + [2718] = {.lex_state = 5, .external_lex_state = 49}, + [2719] = {.lex_state = 8, .external_lex_state = 46}, + [2720] = {.lex_state = 8, .external_lex_state = 46}, + [2721] = {.lex_state = 8, .external_lex_state = 46}, + [2722] = {.lex_state = 8, .external_lex_state = 46}, + [2723] = {.lex_state = 8, .external_lex_state = 46}, + [2724] = {.lex_state = 8, .external_lex_state = 46}, + [2725] = {.lex_state = 5, .external_lex_state = 49}, + [2726] = {.lex_state = 5, .external_lex_state = 39}, + [2727] = {.lex_state = 8, .external_lex_state = 46}, + [2728] = {.lex_state = 6, .external_lex_state = 40}, + [2729] = {.lex_state = 2022, .external_lex_state = 39}, + [2730] = {.lex_state = 8, .external_lex_state = 46}, + [2731] = {.lex_state = 6, .external_lex_state = 40}, + [2732] = {.lex_state = 8, .external_lex_state = 46}, + [2733] = {.lex_state = 5, .external_lex_state = 49}, + [2734] = {.lex_state = 8, .external_lex_state = 46}, + [2735] = {.lex_state = 5, .external_lex_state = 39}, + [2736] = {.lex_state = 8, .external_lex_state = 46}, + [2737] = {.lex_state = 8, .external_lex_state = 46}, + [2738] = {.lex_state = 6, .external_lex_state = 40}, + [2739] = {.lex_state = 8, .external_lex_state = 46}, + [2740] = {.lex_state = 2022, .external_lex_state = 39}, + [2741] = {.lex_state = 8, .external_lex_state = 46}, + [2742] = {.lex_state = 5, .external_lex_state = 35}, + [2743] = {.lex_state = 8, .external_lex_state = 46}, + [2744] = {.lex_state = 8, .external_lex_state = 46}, + [2745] = {.lex_state = 8, .external_lex_state = 46}, + [2746] = {.lex_state = 2022, .external_lex_state = 39}, + [2747] = {.lex_state = 8, .external_lex_state = 46}, + [2748] = {.lex_state = 2022, .external_lex_state = 39}, + [2749] = {.lex_state = 8, .external_lex_state = 46}, + [2750] = {.lex_state = 8, .external_lex_state = 46}, [2751] = {.lex_state = 5, .external_lex_state = 49}, - [2752] = {.lex_state = 8, .external_lex_state = 45}, - [2753] = {.lex_state = 8, .external_lex_state = 45}, - [2754] = {.lex_state = 5, .external_lex_state = 39}, - [2755] = {.lex_state = 2022, .external_lex_state = 39}, - [2756] = {.lex_state = 5, .external_lex_state = 50}, - [2757] = {.lex_state = 5, .external_lex_state = 51}, - [2758] = {.lex_state = 5, .external_lex_state = 52}, - [2759] = {.lex_state = 5, .external_lex_state = 52}, - [2760] = {.lex_state = 6, .external_lex_state = 40}, - [2761] = {.lex_state = 5, .external_lex_state = 52}, - [2762] = {.lex_state = 5, .external_lex_state = 50}, - [2763] = {.lex_state = 5, .external_lex_state = 50}, - [2764] = {.lex_state = 2020, .external_lex_state = 53}, - [2765] = {.lex_state = 11, .external_lex_state = 39}, - [2766] = {.lex_state = 2022, .external_lex_state = 54}, - [2767] = {.lex_state = 2022, .external_lex_state = 54}, - [2768] = {.lex_state = 11, .external_lex_state = 39}, - [2769] = {.lex_state = 5, .external_lex_state = 49}, - [2770] = {.lex_state = 11, .external_lex_state = 39}, - [2771] = {.lex_state = 5, .external_lex_state = 39}, - [2772] = {.lex_state = 2020, .external_lex_state = 53}, - [2773] = {.lex_state = 2022, .external_lex_state = 55}, - [2774] = {.lex_state = 2022, .external_lex_state = 54}, - [2775] = {.lex_state = 2020, .external_lex_state = 53}, - [2776] = {.lex_state = 5, .external_lex_state = 49}, - [2777] = {.lex_state = 5, .external_lex_state = 39}, - [2778] = {.lex_state = 8, .external_lex_state = 56}, - [2779] = {.lex_state = 2022, .external_lex_state = 57}, - [2780] = {.lex_state = 2022, .external_lex_state = 57}, - [2781] = {.lex_state = 2020, .external_lex_state = 53}, - [2782] = {.lex_state = 2020, .external_lex_state = 53}, - [2783] = {.lex_state = 2022, .external_lex_state = 54}, - [2784] = {.lex_state = 2020, .external_lex_state = 53}, - [2785] = {.lex_state = 2020, .external_lex_state = 53}, - [2786] = {.lex_state = 11, .external_lex_state = 39}, - [2787] = {.lex_state = 0, .external_lex_state = 34}, - [2788] = {.lex_state = 2022, .external_lex_state = 54}, - [2789] = {.lex_state = 5, .external_lex_state = 49}, - [2790] = {.lex_state = 2020, .external_lex_state = 53}, - [2791] = {.lex_state = 2022, .external_lex_state = 57}, - [2792] = {.lex_state = 2020, .external_lex_state = 53}, - [2793] = {.lex_state = 2022, .external_lex_state = 57}, - [2794] = {.lex_state = 8, .external_lex_state = 45}, - [2795] = {.lex_state = 5, .external_lex_state = 39}, - [2796] = {.lex_state = 2022, .external_lex_state = 54}, - [2797] = {.lex_state = 0, .external_lex_state = 49}, - [2798] = {.lex_state = 7, .external_lex_state = 58}, - [2799] = {.lex_state = 372, .external_lex_state = 59}, - [2800] = {.lex_state = 11, .external_lex_state = 60}, - [2801] = {.lex_state = 10, .external_lex_state = 58}, - [2802] = {.lex_state = 7, .external_lex_state = 58}, - [2803] = {.lex_state = 7, .external_lex_state = 58}, + [2752] = {.lex_state = 8, .external_lex_state = 46}, + [2753] = {.lex_state = 8, .external_lex_state = 46}, + [2754] = {.lex_state = 8, .external_lex_state = 46}, + [2755] = {.lex_state = 8, .external_lex_state = 46}, + [2756] = {.lex_state = 8, .external_lex_state = 46}, + [2757] = {.lex_state = 8, .external_lex_state = 46}, + [2758] = {.lex_state = 6, .external_lex_state = 40}, + [2759] = {.lex_state = 5, .external_lex_state = 50}, + [2760] = {.lex_state = 5, .external_lex_state = 50}, + [2761] = {.lex_state = 5, .external_lex_state = 50}, + [2762] = {.lex_state = 5, .external_lex_state = 51}, + [2763] = {.lex_state = 5, .external_lex_state = 52}, + [2764] = {.lex_state = 5, .external_lex_state = 51}, + [2765] = {.lex_state = 6, .external_lex_state = 40}, + [2766] = {.lex_state = 5, .external_lex_state = 51}, + [2767] = {.lex_state = 0, .external_lex_state = 34}, + [2768] = {.lex_state = 2022, .external_lex_state = 53}, + [2769] = {.lex_state = 11, .external_lex_state = 39}, + [2770] = {.lex_state = 2022, .external_lex_state = 54}, + [2771] = {.lex_state = 2022, .external_lex_state = 53}, + [2772] = {.lex_state = 2022, .external_lex_state = 55}, + [2773] = {.lex_state = 2020, .external_lex_state = 56}, + [2774] = {.lex_state = 8, .external_lex_state = 46}, + [2775] = {.lex_state = 2020, .external_lex_state = 56}, + [2776] = {.lex_state = 2020, .external_lex_state = 56}, + [2777] = {.lex_state = 8, .external_lex_state = 57}, + [2778] = {.lex_state = 2022, .external_lex_state = 55}, + [2779] = {.lex_state = 5, .external_lex_state = 39}, + [2780] = {.lex_state = 2020, .external_lex_state = 56}, + [2781] = {.lex_state = 2020, .external_lex_state = 56}, + [2782] = {.lex_state = 11, .external_lex_state = 39}, + [2783] = {.lex_state = 2020, .external_lex_state = 56}, + [2784] = {.lex_state = 5, .external_lex_state = 49}, + [2785] = {.lex_state = 2022, .external_lex_state = 55}, + [2786] = {.lex_state = 2022, .external_lex_state = 55}, + [2787] = {.lex_state = 5, .external_lex_state = 39}, + [2788] = {.lex_state = 2020, .external_lex_state = 56}, + [2789] = {.lex_state = 2022, .external_lex_state = 55}, + [2790] = {.lex_state = 2022, .external_lex_state = 53}, + [2791] = {.lex_state = 5, .external_lex_state = 39}, + [2792] = {.lex_state = 5, .external_lex_state = 49}, + [2793] = {.lex_state = 2022, .external_lex_state = 53}, + [2794] = {.lex_state = 5, .external_lex_state = 49}, + [2795] = {.lex_state = 11, .external_lex_state = 39}, + [2796] = {.lex_state = 2020, .external_lex_state = 56}, + [2797] = {.lex_state = 11, .external_lex_state = 39}, + [2798] = {.lex_state = 2020, .external_lex_state = 56}, + [2799] = {.lex_state = 2022, .external_lex_state = 55}, + [2800] = {.lex_state = 7, .external_lex_state = 58}, + [2801] = {.lex_state = 2022, .external_lex_state = 55}, + [2802] = {.lex_state = 5}, + [2803] = {.lex_state = 11, .external_lex_state = 55}, [2804] = {.lex_state = 372, .external_lex_state = 59}, - [2805] = {.lex_state = 8, .external_lex_state = 45}, - [2806] = {.lex_state = 372, .external_lex_state = 59}, - [2807] = {.lex_state = 0, .external_lex_state = 49}, - [2808] = {.lex_state = 5, .external_lex_state = 61}, - [2809] = {.lex_state = 2020, .external_lex_state = 53}, - [2810] = {.lex_state = 372, .external_lex_state = 59}, - [2811] = {.lex_state = 11, .external_lex_state = 54}, - [2812] = {.lex_state = 2022, .external_lex_state = 54}, - [2813] = {.lex_state = 5}, - [2814] = {.lex_state = 5, .external_lex_state = 61}, - [2815] = {.lex_state = 11, .external_lex_state = 51}, - [2816] = {.lex_state = 372, .external_lex_state = 59}, - [2817] = {.lex_state = 2022, .external_lex_state = 54}, - [2818] = {.lex_state = 7, .external_lex_state = 58}, - [2819] = {.lex_state = 0, .external_lex_state = 49}, + [2805] = {.lex_state = 2022, .external_lex_state = 55}, + [2806] = {.lex_state = 2022, .external_lex_state = 55}, + [2807] = {.lex_state = 2022, .external_lex_state = 55}, + [2808] = {.lex_state = 2022, .external_lex_state = 55}, + [2809] = {.lex_state = 2020, .external_lex_state = 56}, + [2810] = {.lex_state = 11, .external_lex_state = 60}, + [2811] = {.lex_state = 2022, .external_lex_state = 55}, + [2812] = {.lex_state = 8, .external_lex_state = 46}, + [2813] = {.lex_state = 2022, .external_lex_state = 55}, + [2814] = {.lex_state = 372, .external_lex_state = 59}, + [2815] = {.lex_state = 2022, .external_lex_state = 55}, + [2816] = {.lex_state = 2022, .external_lex_state = 55}, + [2817] = {.lex_state = 2022, .external_lex_state = 55}, + [2818] = {.lex_state = 2022, .external_lex_state = 55}, + [2819] = {.lex_state = 2022, .external_lex_state = 55}, [2820] = {.lex_state = 372, .external_lex_state = 59}, - [2821] = {.lex_state = 11, .external_lex_state = 54}, - [2822] = {.lex_state = 2022, .external_lex_state = 54}, - [2823] = {.lex_state = 372, .external_lex_state = 59}, - [2824] = {.lex_state = 2022, .external_lex_state = 54}, - [2825] = {.lex_state = 10, .external_lex_state = 58}, - [2826] = {.lex_state = 2022, .external_lex_state = 54}, - [2827] = {.lex_state = 2022, .external_lex_state = 54}, - [2828] = {.lex_state = 2022, .external_lex_state = 54}, - [2829] = {.lex_state = 372, .external_lex_state = 59}, - [2830] = {.lex_state = 5, .external_lex_state = 49}, - [2831] = {.lex_state = 2022, .external_lex_state = 54}, - [2832] = {.lex_state = 0, .external_lex_state = 49}, + [2821] = {.lex_state = 2022, .external_lex_state = 55}, + [2822] = {.lex_state = 372, .external_lex_state = 59}, + [2823] = {.lex_state = 2022, .external_lex_state = 55}, + [2824] = {.lex_state = 5, .external_lex_state = 61}, + [2825] = {.lex_state = 372, .external_lex_state = 59}, + [2826] = {.lex_state = 2022, .external_lex_state = 55}, + [2827] = {.lex_state = 2022, .external_lex_state = 55}, + [2828] = {.lex_state = 2022, .external_lex_state = 55}, + [2829] = {.lex_state = 2022, .external_lex_state = 55}, + [2830] = {.lex_state = 5, .external_lex_state = 61}, + [2831] = {.lex_state = 11, .external_lex_state = 60}, + [2832] = {.lex_state = 372, .external_lex_state = 62}, [2833] = {.lex_state = 372, .external_lex_state = 59}, - [2834] = {.lex_state = 2022, .external_lex_state = 54}, - [2835] = {.lex_state = 2020, .external_lex_state = 53}, - [2836] = {.lex_state = 5, .external_lex_state = 62}, - [2837] = {.lex_state = 372, .external_lex_state = 59}, - [2838] = {.lex_state = 372, .external_lex_state = 59}, - [2839] = {.lex_state = 372, .external_lex_state = 59}, - [2840] = {.lex_state = 2022, .external_lex_state = 54}, - [2841] = {.lex_state = 372, .external_lex_state = 59}, - [2842] = {.lex_state = 7, .external_lex_state = 58}, - [2843] = {.lex_state = 2022, .external_lex_state = 57}, - [2844] = {.lex_state = 372, .external_lex_state = 59}, - [2845] = {.lex_state = 10, .external_lex_state = 58}, - [2846] = {.lex_state = 8, .external_lex_state = 45}, - [2847] = {.lex_state = 372, .external_lex_state = 59}, - [2848] = {.lex_state = 8, .external_lex_state = 45}, + [2834] = {.lex_state = 2022, .external_lex_state = 55}, + [2835] = {.lex_state = 372, .external_lex_state = 59}, + [2836] = {.lex_state = 2022, .external_lex_state = 55}, + [2837] = {.lex_state = 2022, .external_lex_state = 55}, + [2838] = {.lex_state = 2022, .external_lex_state = 55}, + [2839] = {.lex_state = 2022, .external_lex_state = 55}, + [2840] = {.lex_state = 2022, .external_lex_state = 55}, + [2841] = {.lex_state = 2022, .external_lex_state = 55}, + [2842] = {.lex_state = 2020, .external_lex_state = 56}, + [2843] = {.lex_state = 2022, .external_lex_state = 55}, + [2844] = {.lex_state = 2022, .external_lex_state = 55}, + [2845] = {.lex_state = 2022, .external_lex_state = 55}, + [2846] = {.lex_state = 2022, .external_lex_state = 55}, + [2847] = {.lex_state = 2022, .external_lex_state = 55}, + [2848] = {.lex_state = 2022, .external_lex_state = 55}, [2849] = {.lex_state = 0, .external_lex_state = 49}, [2850] = {.lex_state = 372, .external_lex_state = 59}, - [2851] = {.lex_state = 11, .external_lex_state = 60}, - [2852] = {.lex_state = 2022, .external_lex_state = 54}, - [2853] = {.lex_state = 2022, .external_lex_state = 54}, - [2854] = {.lex_state = 2022, .external_lex_state = 54}, - [2855] = {.lex_state = 2022, .external_lex_state = 54}, - [2856] = {.lex_state = 11, .external_lex_state = 60}, - [2857] = {.lex_state = 5}, - [2858] = {.lex_state = 2022, .external_lex_state = 54}, - [2859] = {.lex_state = 2022, .external_lex_state = 54}, - [2860] = {.lex_state = 2022, .external_lex_state = 54}, - [2861] = {.lex_state = 2022, .external_lex_state = 54}, - [2862] = {.lex_state = 2022, .external_lex_state = 54}, - [2863] = {.lex_state = 2022, .external_lex_state = 54}, - [2864] = {.lex_state = 2022, .external_lex_state = 54}, - [2865] = {.lex_state = 2022, .external_lex_state = 54}, - [2866] = {.lex_state = 2022, .external_lex_state = 54}, - [2867] = {.lex_state = 2022, .external_lex_state = 54}, - [2868] = {.lex_state = 2022, .external_lex_state = 54}, - [2869] = {.lex_state = 2022, .external_lex_state = 54}, - [2870] = {.lex_state = 2022, .external_lex_state = 54}, - [2871] = {.lex_state = 2022, .external_lex_state = 54}, - [2872] = {.lex_state = 372, .external_lex_state = 59}, - [2873] = {.lex_state = 2022, .external_lex_state = 54}, - [2874] = {.lex_state = 2022, .external_lex_state = 54}, - [2875] = {.lex_state = 2022, .external_lex_state = 54}, - [2876] = {.lex_state = 2022, .external_lex_state = 54}, - [2877] = {.lex_state = 2022, .external_lex_state = 54}, - [2878] = {.lex_state = 0, .external_lex_state = 49}, - [2879] = {.lex_state = 2022, .external_lex_state = 54}, - [2880] = {.lex_state = 2022, .external_lex_state = 54}, - [2881] = {.lex_state = 2022, .external_lex_state = 54}, - [2882] = {.lex_state = 2022, .external_lex_state = 54}, - [2883] = {.lex_state = 5, .external_lex_state = 49}, - [2884] = {.lex_state = 2022, .external_lex_state = 54}, - [2885] = {.lex_state = 2022, .external_lex_state = 54}, - [2886] = {.lex_state = 2022, .external_lex_state = 54}, - [2887] = {.lex_state = 2022, .external_lex_state = 54}, - [2888] = {.lex_state = 2022, .external_lex_state = 54}, - [2889] = {.lex_state = 2022, .external_lex_state = 54}, - [2890] = {.lex_state = 2022, .external_lex_state = 54}, - [2891] = {.lex_state = 2022, .external_lex_state = 54}, - [2892] = {.lex_state = 5, .external_lex_state = 61}, - [2893] = {.lex_state = 2022, .external_lex_state = 54}, - [2894] = {.lex_state = 2022, .external_lex_state = 54}, - [2895] = {.lex_state = 2022, .external_lex_state = 54}, - [2896] = {.lex_state = 2022, .external_lex_state = 54}, - [2897] = {.lex_state = 5, .external_lex_state = 49}, - [2898] = {.lex_state = 372, .external_lex_state = 63}, - [2899] = {.lex_state = 2022, .external_lex_state = 54}, - [2900] = {.lex_state = 2022, .external_lex_state = 54}, - [2901] = {.lex_state = 2022, .external_lex_state = 54}, - [2902] = {.lex_state = 2022, .external_lex_state = 54}, - [2903] = {.lex_state = 2022, .external_lex_state = 54}, - [2904] = {.lex_state = 2022, .external_lex_state = 54}, - [2905] = {.lex_state = 2022, .external_lex_state = 54}, - [2906] = {.lex_state = 2022, .external_lex_state = 54}, - [2907] = {.lex_state = 7, .external_lex_state = 58}, - [2908] = {.lex_state = 2022, .external_lex_state = 54}, - [2909] = {.lex_state = 2022, .external_lex_state = 54}, - [2910] = {.lex_state = 2022, .external_lex_state = 54}, - [2911] = {.lex_state = 2022, .external_lex_state = 54}, - [2912] = {.lex_state = 10, .external_lex_state = 58}, - [2913] = {.lex_state = 2022, .external_lex_state = 54}, - [2914] = {.lex_state = 2022, .external_lex_state = 54}, - [2915] = {.lex_state = 2022, .external_lex_state = 54}, - [2916] = {.lex_state = 2022, .external_lex_state = 54}, - [2917] = {.lex_state = 2022, .external_lex_state = 54}, - [2918] = {.lex_state = 7, .external_lex_state = 58}, - [2919] = {.lex_state = 10, .external_lex_state = 58}, - [2920] = {.lex_state = 2022, .external_lex_state = 54}, - [2921] = {.lex_state = 2022, .external_lex_state = 54}, - [2922] = {.lex_state = 2022, .external_lex_state = 54}, - [2923] = {.lex_state = 2022, .external_lex_state = 54}, - [2924] = {.lex_state = 2022, .external_lex_state = 54}, - [2925] = {.lex_state = 2022, .external_lex_state = 54}, - [2926] = {.lex_state = 2022, .external_lex_state = 54}, - [2927] = {.lex_state = 2022, .external_lex_state = 54}, - [2928] = {.lex_state = 2022, .external_lex_state = 54}, - [2929] = {.lex_state = 2022, .external_lex_state = 54}, - [2930] = {.lex_state = 2022, .external_lex_state = 54}, - [2931] = {.lex_state = 2022, .external_lex_state = 54}, - [2932] = {.lex_state = 2022, .external_lex_state = 54}, - [2933] = {.lex_state = 2022, .external_lex_state = 54}, - [2934] = {.lex_state = 3, .external_lex_state = 54}, - [2935] = {.lex_state = 2, .external_lex_state = 54}, - [2936] = {.lex_state = 372, .external_lex_state = 54}, - [2937] = {.lex_state = 5, .external_lex_state = 50}, - [2938] = {.lex_state = 11, .external_lex_state = 60}, - [2939] = {.lex_state = 5, .external_lex_state = 54}, - [2940] = {.lex_state = 3, .external_lex_state = 54}, - [2941] = {.lex_state = 2022, .external_lex_state = 39}, - [2942] = {.lex_state = 3, .external_lex_state = 54}, - [2943] = {.lex_state = 2022, .external_lex_state = 54}, - [2944] = {.lex_state = 2022, .external_lex_state = 54}, - [2945] = {.lex_state = 5, .external_lex_state = 64}, - [2946] = {.lex_state = 2022, .external_lex_state = 54}, - [2947] = {.lex_state = 2022, .external_lex_state = 54}, - [2948] = {.lex_state = 2022, .external_lex_state = 54}, - [2949] = {.lex_state = 3, .external_lex_state = 54}, - [2950] = {.lex_state = 372, .external_lex_state = 54}, - [2951] = {.lex_state = 3, .external_lex_state = 54}, - [2952] = {.lex_state = 11, .external_lex_state = 60}, - [2953] = {.lex_state = 2022, .external_lex_state = 52}, - [2954] = {.lex_state = 2022, .external_lex_state = 52}, - [2955] = {.lex_state = 8, .external_lex_state = 45}, - [2956] = {.lex_state = 2022, .external_lex_state = 52}, - [2957] = {.lex_state = 2022, .external_lex_state = 54}, - [2958] = {.lex_state = 2022, .external_lex_state = 54}, - [2959] = {.lex_state = 2022, .external_lex_state = 54}, - [2960] = {.lex_state = 2022, .external_lex_state = 54}, - [2961] = {.lex_state = 2022, .external_lex_state = 54}, - [2962] = {.lex_state = 372, .external_lex_state = 54}, - [2963] = {.lex_state = 2022, .external_lex_state = 52}, - [2964] = {.lex_state = 2022, .external_lex_state = 54}, - [2965] = {.lex_state = 8, .external_lex_state = 45}, - [2966] = {.lex_state = 5, .external_lex_state = 50}, - [2967] = {.lex_state = 2022, .external_lex_state = 54}, - [2968] = {.lex_state = 3, .external_lex_state = 54}, - [2969] = {.lex_state = 2022, .external_lex_state = 54}, - [2970] = {.lex_state = 2022, .external_lex_state = 54}, - [2971] = {.lex_state = 2022, .external_lex_state = 54}, - [2972] = {.lex_state = 372, .external_lex_state = 54}, - [2973] = {.lex_state = 372, .external_lex_state = 54}, - [2974] = {.lex_state = 8, .external_lex_state = 45}, - [2975] = {.lex_state = 3, .external_lex_state = 54}, - [2976] = {.lex_state = 2022, .external_lex_state = 54}, - [2977] = {.lex_state = 3, .external_lex_state = 54}, - [2978] = {.lex_state = 2022, .external_lex_state = 54}, - [2979] = {.lex_state = 2022, .external_lex_state = 54}, - [2980] = {.lex_state = 2022, .external_lex_state = 54}, - [2981] = {.lex_state = 372, .external_lex_state = 54}, - [2982] = {.lex_state = 5, .external_lex_state = 50}, - [2983] = {.lex_state = 0, .external_lex_state = 65}, - [2984] = {.lex_state = 3, .external_lex_state = 54}, - [2985] = {.lex_state = 3, .external_lex_state = 54}, - [2986] = {.lex_state = 2022, .external_lex_state = 52}, - [2987] = {.lex_state = 2022, .external_lex_state = 54}, - [2988] = {.lex_state = 2022, .external_lex_state = 52}, - [2989] = {.lex_state = 2022, .external_lex_state = 54}, - [2990] = {.lex_state = 2022, .external_lex_state = 54}, - [2991] = {.lex_state = 2022, .external_lex_state = 54}, - [2992] = {.lex_state = 372, .external_lex_state = 54}, - [2993] = {.lex_state = 0, .external_lex_state = 65}, - [2994] = {.lex_state = 3, .external_lex_state = 54}, - [2995] = {.lex_state = 3, .external_lex_state = 54}, - [2996] = {.lex_state = 2022, .external_lex_state = 54}, - [2997] = {.lex_state = 2, .external_lex_state = 54}, - [2998] = {.lex_state = 2022, .external_lex_state = 54}, - [2999] = {.lex_state = 2022, .external_lex_state = 54}, - [3000] = {.lex_state = 2022, .external_lex_state = 54}, - [3001] = {.lex_state = 372, .external_lex_state = 54}, - [3002] = {.lex_state = 3, .external_lex_state = 54}, - [3003] = {.lex_state = 2022, .external_lex_state = 52}, - [3004] = {.lex_state = 2022, .external_lex_state = 52}, - [3005] = {.lex_state = 3, .external_lex_state = 54}, - [3006] = {.lex_state = 372, .external_lex_state = 59}, - [3007] = {.lex_state = 2022, .external_lex_state = 54}, - [3008] = {.lex_state = 2022, .external_lex_state = 54}, - [3009] = {.lex_state = 2022, .external_lex_state = 54}, - [3010] = {.lex_state = 2022, .external_lex_state = 54}, - [3011] = {.lex_state = 2022, .external_lex_state = 54}, - [3012] = {.lex_state = 372, .external_lex_state = 54}, - [3013] = {.lex_state = 3, .external_lex_state = 54}, - [3014] = {.lex_state = 0, .external_lex_state = 49}, - [3015] = {.lex_state = 3, .external_lex_state = 54}, - [3016] = {.lex_state = 2022, .external_lex_state = 52}, - [3017] = {.lex_state = 2022, .external_lex_state = 54}, - [3018] = {.lex_state = 3, .external_lex_state = 54}, - [3019] = {.lex_state = 2022, .external_lex_state = 54}, - [3020] = {.lex_state = 2022, .external_lex_state = 54}, - [3021] = {.lex_state = 2022, .external_lex_state = 54}, - [3022] = {.lex_state = 372, .external_lex_state = 54}, - [3023] = {.lex_state = 3, .external_lex_state = 54}, - [3024] = {.lex_state = 11, .external_lex_state = 39}, - [3025] = {.lex_state = 2022, .external_lex_state = 52}, - [3026] = {.lex_state = 2022, .external_lex_state = 54}, - [3027] = {.lex_state = 2022, .external_lex_state = 52}, - [3028] = {.lex_state = 2022, .external_lex_state = 54}, - [3029] = {.lex_state = 2022, .external_lex_state = 52}, - [3030] = {.lex_state = 2022, .external_lex_state = 54}, - [3031] = {.lex_state = 372, .external_lex_state = 54}, - [3032] = {.lex_state = 0, .external_lex_state = 65}, - [3033] = {.lex_state = 2020, .external_lex_state = 66}, - [3034] = {.lex_state = 3, .external_lex_state = 54}, - [3035] = {.lex_state = 2022, .external_lex_state = 39}, - [3036] = {.lex_state = 3, .external_lex_state = 54}, - [3037] = {.lex_state = 2022, .external_lex_state = 54}, - [3038] = {.lex_state = 5}, - [3039] = {.lex_state = 2022, .external_lex_state = 54}, - [3040] = {.lex_state = 2022, .external_lex_state = 54}, - [3041] = {.lex_state = 2022, .external_lex_state = 54}, - [3042] = {.lex_state = 372, .external_lex_state = 54}, - [3043] = {.lex_state = 3, .external_lex_state = 54}, - [3044] = {.lex_state = 5}, - [3045] = {.lex_state = 2022, .external_lex_state = 52}, - [3046] = {.lex_state = 2022, .external_lex_state = 52}, - [3047] = {.lex_state = 8, .external_lex_state = 45}, - [3048] = {.lex_state = 2022, .external_lex_state = 52}, - [3049] = {.lex_state = 3, .external_lex_state = 54}, - [3050] = {.lex_state = 2022, .external_lex_state = 54}, - [3051] = {.lex_state = 2022, .external_lex_state = 54}, - [3052] = {.lex_state = 2022, .external_lex_state = 54}, - [3053] = {.lex_state = 2022, .external_lex_state = 54}, - [3054] = {.lex_state = 2022, .external_lex_state = 54}, - [3055] = {.lex_state = 372, .external_lex_state = 54}, - [3056] = {.lex_state = 5, .external_lex_state = 50}, - [3057] = {.lex_state = 11, .external_lex_state = 39}, - [3058] = {.lex_state = 5, .external_lex_state = 54}, - [3059] = {.lex_state = 3, .external_lex_state = 54}, - [3060] = {.lex_state = 2022, .external_lex_state = 54}, - [3061] = {.lex_state = 5}, - [3062] = {.lex_state = 2022, .external_lex_state = 54}, - [3063] = {.lex_state = 2022, .external_lex_state = 54}, - [3064] = {.lex_state = 2022, .external_lex_state = 54}, - [3065] = {.lex_state = 372, .external_lex_state = 54}, - [3066] = {.lex_state = 11, .external_lex_state = 60}, - [3067] = {.lex_state = 3, .external_lex_state = 54}, - [3068] = {.lex_state = 2022, .external_lex_state = 52}, - [3069] = {.lex_state = 2022, .external_lex_state = 57}, - [3070] = {.lex_state = 11, .external_lex_state = 61}, - [3071] = {.lex_state = 2022, .external_lex_state = 54}, - [3072] = {.lex_state = 2022, .external_lex_state = 57}, - [3073] = {.lex_state = 2022, .external_lex_state = 54}, - [3074] = {.lex_state = 2022, .external_lex_state = 54}, - [3075] = {.lex_state = 2022, .external_lex_state = 54}, - [3076] = {.lex_state = 372, .external_lex_state = 54}, - [3077] = {.lex_state = 2022, .external_lex_state = 52}, - [3078] = {.lex_state = 3, .external_lex_state = 54}, - [3079] = {.lex_state = 3, .external_lex_state = 54}, - [3080] = {.lex_state = 3, .external_lex_state = 54}, - [3081] = {.lex_state = 2, .external_lex_state = 54}, - [3082] = {.lex_state = 2022, .external_lex_state = 54}, - [3083] = {.lex_state = 11, .external_lex_state = 39}, - [3084] = {.lex_state = 2022, .external_lex_state = 54}, - [3085] = {.lex_state = 2022, .external_lex_state = 54}, - [3086] = {.lex_state = 2022, .external_lex_state = 54}, - [3087] = {.lex_state = 372, .external_lex_state = 54}, - [3088] = {.lex_state = 3, .external_lex_state = 54}, - [3089] = {.lex_state = 3, .external_lex_state = 54}, - [3090] = {.lex_state = 3, .external_lex_state = 54}, - [3091] = {.lex_state = 11, .external_lex_state = 67}, - [3092] = {.lex_state = 2022, .external_lex_state = 54}, - [3093] = {.lex_state = 2022, .external_lex_state = 54}, - [3094] = {.lex_state = 3, .external_lex_state = 54}, - [3095] = {.lex_state = 2022, .external_lex_state = 54}, - [3096] = {.lex_state = 2022, .external_lex_state = 54}, - [3097] = {.lex_state = 2022, .external_lex_state = 54}, - [3098] = {.lex_state = 3, .external_lex_state = 54}, - [3099] = {.lex_state = 5, .external_lex_state = 68}, - [3100] = {.lex_state = 2022, .external_lex_state = 54}, - [3101] = {.lex_state = 2022, .external_lex_state = 54}, - [3102] = {.lex_state = 3, .external_lex_state = 54}, - [3103] = {.lex_state = 3, .external_lex_state = 54}, - [3104] = {.lex_state = 2022, .external_lex_state = 54}, - [3105] = {.lex_state = 2022, .external_lex_state = 54}, - [3106] = {.lex_state = 5, .external_lex_state = 54}, - [3107] = {.lex_state = 3, .external_lex_state = 54}, - [3108] = {.lex_state = 2022, .external_lex_state = 54}, - [3109] = {.lex_state = 2022, .external_lex_state = 54}, - [3110] = {.lex_state = 11, .external_lex_state = 61}, - [3111] = {.lex_state = 2022, .external_lex_state = 54}, - [3112] = {.lex_state = 2022, .external_lex_state = 54}, - [3113] = {.lex_state = 2022, .external_lex_state = 54}, - [3114] = {.lex_state = 2022, .external_lex_state = 54}, - [3115] = {.lex_state = 2022, .external_lex_state = 69}, - [3116] = {.lex_state = 2022, .external_lex_state = 39}, - [3117] = {.lex_state = 10, .external_lex_state = 58}, - [3118] = {.lex_state = 0, .external_lex_state = 52}, - [3119] = {.lex_state = 10, .external_lex_state = 58}, - [3120] = {.lex_state = 5, .external_lex_state = 54}, - [3121] = {.lex_state = 10, .external_lex_state = 58}, - [3122] = {.lex_state = 2022, .external_lex_state = 70}, - [3123] = {.lex_state = 0, .external_lex_state = 71}, - [3124] = {.lex_state = 11, .external_lex_state = 54}, - [3125] = {.lex_state = 5, .external_lex_state = 54}, - [3126] = {.lex_state = 5, .external_lex_state = 54}, - [3127] = {.lex_state = 11, .external_lex_state = 54}, - [3128] = {.lex_state = 2022, .external_lex_state = 39}, - [3129] = {.lex_state = 5, .external_lex_state = 54}, - [3130] = {.lex_state = 2022, .external_lex_state = 39}, - [3131] = {.lex_state = 2022, .external_lex_state = 39}, - [3132] = {.lex_state = 11, .external_lex_state = 54}, - [3133] = {.lex_state = 0, .external_lex_state = 71}, - [3134] = {.lex_state = 0, .external_lex_state = 72}, - [3135] = {.lex_state = 0, .external_lex_state = 73}, - [3136] = {.lex_state = 372, .external_lex_state = 59}, - [3137] = {.lex_state = 5, .external_lex_state = 54}, - [3138] = {.lex_state = 0, .external_lex_state = 74}, - [3139] = {.lex_state = 0, .external_lex_state = 75}, - [3140] = {.lex_state = 0, .external_lex_state = 76}, - [3141] = {.lex_state = 5, .external_lex_state = 54}, - [3142] = {.lex_state = 372, .external_lex_state = 59}, - [3143] = {.lex_state = 5, .external_lex_state = 54}, - [3144] = {.lex_state = 5, .external_lex_state = 61}, - [3145] = {.lex_state = 5, .external_lex_state = 54}, - [3146] = {.lex_state = 5}, - [3147] = {.lex_state = 1, .external_lex_state = 54}, - [3148] = {.lex_state = 5, .external_lex_state = 50}, - [3149] = {.lex_state = 2022, .external_lex_state = 39}, - [3150] = {.lex_state = 5, .external_lex_state = 54}, - [3151] = {.lex_state = 0, .external_lex_state = 52}, - [3152] = {.lex_state = 372, .external_lex_state = 59}, - [3153] = {.lex_state = 0, .external_lex_state = 77}, - [3154] = {.lex_state = 11}, - [3155] = {.lex_state = 0, .external_lex_state = 78}, - [3156] = {.lex_state = 2022, .external_lex_state = 54}, - [3157] = {.lex_state = 5, .external_lex_state = 54}, - [3158] = {.lex_state = 5, .external_lex_state = 61}, - [3159] = {.lex_state = 5, .external_lex_state = 54}, - [3160] = {.lex_state = 0, .external_lex_state = 79}, - [3161] = {.lex_state = 5, .external_lex_state = 54}, - [3162] = {.lex_state = 5, .external_lex_state = 54}, - [3163] = {.lex_state = 5, .external_lex_state = 54}, - [3164] = {.lex_state = 2022, .external_lex_state = 39}, - [3165] = {.lex_state = 5, .external_lex_state = 54}, - [3166] = {.lex_state = 0, .external_lex_state = 77}, - [3167] = {.lex_state = 0, .external_lex_state = 78}, - [3168] = {.lex_state = 5, .external_lex_state = 54}, - [3169] = {.lex_state = 5, .external_lex_state = 54}, - [3170] = {.lex_state = 0, .external_lex_state = 52}, - [3171] = {.lex_state = 0, .external_lex_state = 52}, - [3172] = {.lex_state = 5, .external_lex_state = 54}, - [3173] = {.lex_state = 2022, .external_lex_state = 54}, - [3174] = {.lex_state = 0, .external_lex_state = 52}, - [3175] = {.lex_state = 0, .external_lex_state = 76}, - [3176] = {.lex_state = 5, .external_lex_state = 54}, - [3177] = {.lex_state = 0, .external_lex_state = 52}, - [3178] = {.lex_state = 0, .external_lex_state = 52}, - [3179] = {.lex_state = 0, .external_lex_state = 52}, - [3180] = {.lex_state = 5, .external_lex_state = 54}, - [3181] = {.lex_state = 5, .external_lex_state = 61}, - [3182] = {.lex_state = 5, .external_lex_state = 54}, - [3183] = {.lex_state = 0, .external_lex_state = 52}, - [3184] = {.lex_state = 0, .external_lex_state = 73}, - [3185] = {.lex_state = 372, .external_lex_state = 59}, - [3186] = {.lex_state = 0, .external_lex_state = 75}, - [3187] = {.lex_state = 0, .external_lex_state = 52}, - [3188] = {.lex_state = 2022, .external_lex_state = 54}, - [3189] = {.lex_state = 2020, .external_lex_state = 53}, - [3190] = {.lex_state = 1, .external_lex_state = 54}, - [3191] = {.lex_state = 1, .external_lex_state = 54}, - [3192] = {.lex_state = 5, .external_lex_state = 54}, - [3193] = {.lex_state = 5, .external_lex_state = 54}, - [3194] = {.lex_state = 0, .external_lex_state = 80}, - [3195] = {.lex_state = 5, .external_lex_state = 54}, - [3196] = {.lex_state = 5, .external_lex_state = 54}, - [3197] = {.lex_state = 0, .external_lex_state = 78}, - [3198] = {.lex_state = 0, .external_lex_state = 72}, - [3199] = {.lex_state = 0, .external_lex_state = 79}, - [3200] = {.lex_state = 2022, .external_lex_state = 54}, - [3201] = {.lex_state = 0, .external_lex_state = 81}, - [3202] = {.lex_state = 0, .external_lex_state = 74}, - [3203] = {.lex_state = 0, .external_lex_state = 73}, - [3204] = {.lex_state = 0, .external_lex_state = 52}, - [3205] = {.lex_state = 5, .external_lex_state = 54}, - [3206] = {.lex_state = 5, .external_lex_state = 54}, - [3207] = {.lex_state = 2022, .external_lex_state = 39}, - [3208] = {.lex_state = 5, .external_lex_state = 54}, - [3209] = {.lex_state = 0, .external_lex_state = 71}, - [3210] = {.lex_state = 0, .external_lex_state = 76}, - [3211] = {.lex_state = 0, .external_lex_state = 52}, - [3212] = {.lex_state = 2022, .external_lex_state = 54}, - [3213] = {.lex_state = 0, .external_lex_state = 72}, - [3214] = {.lex_state = 5, .external_lex_state = 54}, - [3215] = {.lex_state = 11, .external_lex_state = 82}, - [3216] = {.lex_state = 0, .external_lex_state = 74}, - [3217] = {.lex_state = 0, .external_lex_state = 77}, + [2851] = {.lex_state = 2022, .external_lex_state = 53}, + [2852] = {.lex_state = 0, .external_lex_state = 49}, + [2853] = {.lex_state = 5, .external_lex_state = 63}, + [2854] = {.lex_state = 2022, .external_lex_state = 55}, + [2855] = {.lex_state = 2022, .external_lex_state = 55}, + [2856] = {.lex_state = 2022, .external_lex_state = 55}, + [2857] = {.lex_state = 2022, .external_lex_state = 55}, + [2858] = {.lex_state = 2022, .external_lex_state = 55}, + [2859] = {.lex_state = 372, .external_lex_state = 59}, + [2860] = {.lex_state = 372, .external_lex_state = 59}, + [2861] = {.lex_state = 8, .external_lex_state = 46}, + [2862] = {.lex_state = 11, .external_lex_state = 60}, + [2863] = {.lex_state = 7, .external_lex_state = 58}, + [2864] = {.lex_state = 2022, .external_lex_state = 55}, + [2865] = {.lex_state = 7, .external_lex_state = 58}, + [2866] = {.lex_state = 2022, .external_lex_state = 55}, + [2867] = {.lex_state = 2022, .external_lex_state = 55}, + [2868] = {.lex_state = 2022, .external_lex_state = 55}, + [2869] = {.lex_state = 2022, .external_lex_state = 55}, + [2870] = {.lex_state = 5, .external_lex_state = 49}, + [2871] = {.lex_state = 2022, .external_lex_state = 55}, + [2872] = {.lex_state = 2022, .external_lex_state = 55}, + [2873] = {.lex_state = 10, .external_lex_state = 58}, + [2874] = {.lex_state = 7, .external_lex_state = 58}, + [2875] = {.lex_state = 2022, .external_lex_state = 55}, + [2876] = {.lex_state = 2022, .external_lex_state = 55}, + [2877] = {.lex_state = 2022, .external_lex_state = 55}, + [2878] = {.lex_state = 2022, .external_lex_state = 55}, + [2879] = {.lex_state = 372, .external_lex_state = 59}, + [2880] = {.lex_state = 2022, .external_lex_state = 55}, + [2881] = {.lex_state = 7, .external_lex_state = 58}, + [2882] = {.lex_state = 10, .external_lex_state = 58}, + [2883] = {.lex_state = 2022, .external_lex_state = 55}, + [2884] = {.lex_state = 2022, .external_lex_state = 55}, + [2885] = {.lex_state = 5, .external_lex_state = 61}, + [2886] = {.lex_state = 2022, .external_lex_state = 55}, + [2887] = {.lex_state = 2022, .external_lex_state = 55}, + [2888] = {.lex_state = 2022, .external_lex_state = 55}, + [2889] = {.lex_state = 2022, .external_lex_state = 55}, + [2890] = {.lex_state = 7, .external_lex_state = 58}, + [2891] = {.lex_state = 7, .external_lex_state = 58}, + [2892] = {.lex_state = 10, .external_lex_state = 58}, + [2893] = {.lex_state = 2022, .external_lex_state = 55}, + [2894] = {.lex_state = 5, .external_lex_state = 49}, + [2895] = {.lex_state = 2022, .external_lex_state = 55}, + [2896] = {.lex_state = 2022, .external_lex_state = 55}, + [2897] = {.lex_state = 2022, .external_lex_state = 55}, + [2898] = {.lex_state = 2022, .external_lex_state = 55}, + [2899] = {.lex_state = 372, .external_lex_state = 59}, + [2900] = {.lex_state = 2022, .external_lex_state = 55}, + [2901] = {.lex_state = 11, .external_lex_state = 52}, + [2902] = {.lex_state = 372, .external_lex_state = 59}, + [2903] = {.lex_state = 5}, + [2904] = {.lex_state = 0, .external_lex_state = 49}, + [2905] = {.lex_state = 372, .external_lex_state = 59}, + [2906] = {.lex_state = 2022, .external_lex_state = 55}, + [2907] = {.lex_state = 0, .external_lex_state = 49}, + [2908] = {.lex_state = 2022, .external_lex_state = 55}, + [2909] = {.lex_state = 2022, .external_lex_state = 55}, + [2910] = {.lex_state = 2022, .external_lex_state = 55}, + [2911] = {.lex_state = 2022, .external_lex_state = 55}, + [2912] = {.lex_state = 372, .external_lex_state = 59}, + [2913] = {.lex_state = 0, .external_lex_state = 49}, + [2914] = {.lex_state = 8, .external_lex_state = 46}, + [2915] = {.lex_state = 11, .external_lex_state = 55}, + [2916] = {.lex_state = 10, .external_lex_state = 58}, + [2917] = {.lex_state = 372, .external_lex_state = 59}, + [2918] = {.lex_state = 10, .external_lex_state = 58}, + [2919] = {.lex_state = 2022, .external_lex_state = 55}, + [2920] = {.lex_state = 5, .external_lex_state = 49}, + [2921] = {.lex_state = 2022, .external_lex_state = 55}, + [2922] = {.lex_state = 2022, .external_lex_state = 55}, + [2923] = {.lex_state = 2022, .external_lex_state = 55}, + [2924] = {.lex_state = 2022, .external_lex_state = 55}, + [2925] = {.lex_state = 2022, .external_lex_state = 55}, + [2926] = {.lex_state = 2022, .external_lex_state = 55}, + [2927] = {.lex_state = 2022, .external_lex_state = 55}, + [2928] = {.lex_state = 2022, .external_lex_state = 55}, + [2929] = {.lex_state = 2022, .external_lex_state = 55}, + [2930] = {.lex_state = 2022, .external_lex_state = 55}, + [2931] = {.lex_state = 2022, .external_lex_state = 55}, + [2932] = {.lex_state = 2022, .external_lex_state = 55}, + [2933] = {.lex_state = 372, .external_lex_state = 59}, + [2934] = {.lex_state = 0, .external_lex_state = 49}, + [2935] = {.lex_state = 2022, .external_lex_state = 55}, + [2936] = {.lex_state = 2022, .external_lex_state = 55}, + [2937] = {.lex_state = 11, .external_lex_state = 60}, + [2938] = {.lex_state = 2022, .external_lex_state = 50}, + [2939] = {.lex_state = 2, .external_lex_state = 55}, + [2940] = {.lex_state = 11, .external_lex_state = 39}, + [2941] = {.lex_state = 2022, .external_lex_state = 50}, + [2942] = {.lex_state = 3, .external_lex_state = 55}, + [2943] = {.lex_state = 3, .external_lex_state = 55}, + [2944] = {.lex_state = 2, .external_lex_state = 55}, + [2945] = {.lex_state = 5, .external_lex_state = 51}, + [2946] = {.lex_state = 5, .external_lex_state = 64}, + [2947] = {.lex_state = 2022, .external_lex_state = 55}, + [2948] = {.lex_state = 3, .external_lex_state = 55}, + [2949] = {.lex_state = 2022, .external_lex_state = 39}, + [2950] = {.lex_state = 3, .external_lex_state = 55}, + [2951] = {.lex_state = 2022, .external_lex_state = 39}, + [2952] = {.lex_state = 11, .external_lex_state = 39}, + [2953] = {.lex_state = 3, .external_lex_state = 55}, + [2954] = {.lex_state = 3, .external_lex_state = 55}, + [2955] = {.lex_state = 2022, .external_lex_state = 55}, + [2956] = {.lex_state = 2, .external_lex_state = 55}, + [2957] = {.lex_state = 8, .external_lex_state = 46}, + [2958] = {.lex_state = 2022, .external_lex_state = 50}, + [2959] = {.lex_state = 8, .external_lex_state = 46}, + [2960] = {.lex_state = 11, .external_lex_state = 61}, + [2961] = {.lex_state = 3, .external_lex_state = 55}, + [2962] = {.lex_state = 8, .external_lex_state = 46}, + [2963] = {.lex_state = 11, .external_lex_state = 39}, + [2964] = {.lex_state = 3, .external_lex_state = 55}, + [2965] = {.lex_state = 5, .external_lex_state = 51}, + [2966] = {.lex_state = 5, .external_lex_state = 55}, + [2967] = {.lex_state = 0, .external_lex_state = 65}, + [2968] = {.lex_state = 3, .external_lex_state = 55}, + [2969] = {.lex_state = 0, .external_lex_state = 65}, + [2970] = {.lex_state = 3, .external_lex_state = 55}, + [2971] = {.lex_state = 3, .external_lex_state = 55}, + [2972] = {.lex_state = 2022, .external_lex_state = 50}, + [2973] = {.lex_state = 2022, .external_lex_state = 50}, + [2974] = {.lex_state = 3, .external_lex_state = 55}, + [2975] = {.lex_state = 3, .external_lex_state = 55}, + [2976] = {.lex_state = 3, .external_lex_state = 55}, + [2977] = {.lex_state = 2022, .external_lex_state = 55}, + [2978] = {.lex_state = 0, .external_lex_state = 49}, + [2979] = {.lex_state = 2022, .external_lex_state = 50}, + [2980] = {.lex_state = 5, .external_lex_state = 66}, + [2981] = {.lex_state = 3, .external_lex_state = 55}, + [2982] = {.lex_state = 2022, .external_lex_state = 50}, + [2983] = {.lex_state = 3, .external_lex_state = 55}, + [2984] = {.lex_state = 11, .external_lex_state = 61}, + [2985] = {.lex_state = 2022, .external_lex_state = 53}, + [2986] = {.lex_state = 3, .external_lex_state = 55}, + [2987] = {.lex_state = 2022, .external_lex_state = 53}, + [2988] = {.lex_state = 3, .external_lex_state = 55}, + [2989] = {.lex_state = 2022, .external_lex_state = 50}, + [2990] = {.lex_state = 3, .external_lex_state = 55}, + [2991] = {.lex_state = 3, .external_lex_state = 55}, + [2992] = {.lex_state = 11, .external_lex_state = 67}, + [2993] = {.lex_state = 5}, + [2994] = {.lex_state = 5}, + [2995] = {.lex_state = 0, .external_lex_state = 65}, + [2996] = {.lex_state = 3, .external_lex_state = 55}, + [2997] = {.lex_state = 3, .external_lex_state = 55}, + [2998] = {.lex_state = 5, .external_lex_state = 51}, + [2999] = {.lex_state = 5}, + [3000] = {.lex_state = 2020, .external_lex_state = 68}, + [3001] = {.lex_state = 3, .external_lex_state = 55}, + [3002] = {.lex_state = 3, .external_lex_state = 55}, + [3003] = {.lex_state = 2022, .external_lex_state = 50}, + [3004] = {.lex_state = 3, .external_lex_state = 55}, + [3005] = {.lex_state = 3, .external_lex_state = 55}, + [3006] = {.lex_state = 3, .external_lex_state = 55}, + [3007] = {.lex_state = 3, .external_lex_state = 55}, + [3008] = {.lex_state = 5, .external_lex_state = 51}, + [3009] = {.lex_state = 2022, .external_lex_state = 50}, + [3010] = {.lex_state = 2022, .external_lex_state = 50}, + [3011] = {.lex_state = 3, .external_lex_state = 55}, + [3012] = {.lex_state = 3, .external_lex_state = 55}, + [3013] = {.lex_state = 3, .external_lex_state = 55}, + [3014] = {.lex_state = 372, .external_lex_state = 55}, + [3015] = {.lex_state = 11, .external_lex_state = 60}, + [3016] = {.lex_state = 5, .external_lex_state = 55}, + [3017] = {.lex_state = 2022, .external_lex_state = 55}, + [3018] = {.lex_state = 2022, .external_lex_state = 55}, + [3019] = {.lex_state = 2022, .external_lex_state = 55}, + [3020] = {.lex_state = 2022, .external_lex_state = 55}, + [3021] = {.lex_state = 372, .external_lex_state = 55}, + [3022] = {.lex_state = 2022, .external_lex_state = 50}, + [3023] = {.lex_state = 2022, .external_lex_state = 50}, + [3024] = {.lex_state = 11, .external_lex_state = 60}, + [3025] = {.lex_state = 372, .external_lex_state = 59}, + [3026] = {.lex_state = 2022, .external_lex_state = 55}, + [3027] = {.lex_state = 2022, .external_lex_state = 55}, + [3028] = {.lex_state = 2022, .external_lex_state = 55}, + [3029] = {.lex_state = 2022, .external_lex_state = 55}, + [3030] = {.lex_state = 372, .external_lex_state = 55}, + [3031] = {.lex_state = 2022, .external_lex_state = 55}, + [3032] = {.lex_state = 2022, .external_lex_state = 50}, + [3033] = {.lex_state = 2022, .external_lex_state = 55}, + [3034] = {.lex_state = 2022, .external_lex_state = 55}, + [3035] = {.lex_state = 372, .external_lex_state = 55}, + [3036] = {.lex_state = 2022, .external_lex_state = 50}, + [3037] = {.lex_state = 2022, .external_lex_state = 55}, + [3038] = {.lex_state = 2022, .external_lex_state = 55}, + [3039] = {.lex_state = 2022, .external_lex_state = 55}, + [3040] = {.lex_state = 2022, .external_lex_state = 55}, + [3041] = {.lex_state = 372, .external_lex_state = 55}, + [3042] = {.lex_state = 2022, .external_lex_state = 50}, + [3043] = {.lex_state = 3, .external_lex_state = 55}, + [3044] = {.lex_state = 2022, .external_lex_state = 55}, + [3045] = {.lex_state = 2022, .external_lex_state = 55}, + [3046] = {.lex_state = 2022, .external_lex_state = 55}, + [3047] = {.lex_state = 2022, .external_lex_state = 55}, + [3048] = {.lex_state = 372, .external_lex_state = 55}, + [3049] = {.lex_state = 2022, .external_lex_state = 55}, + [3050] = {.lex_state = 2022, .external_lex_state = 55}, + [3051] = {.lex_state = 2022, .external_lex_state = 55}, + [3052] = {.lex_state = 2022, .external_lex_state = 55}, + [3053] = {.lex_state = 2022, .external_lex_state = 55}, + [3054] = {.lex_state = 372, .external_lex_state = 55}, + [3055] = {.lex_state = 2022, .external_lex_state = 55}, + [3056] = {.lex_state = 2022, .external_lex_state = 50}, + [3057] = {.lex_state = 2022, .external_lex_state = 55}, + [3058] = {.lex_state = 2022, .external_lex_state = 55}, + [3059] = {.lex_state = 5, .external_lex_state = 55}, + [3060] = {.lex_state = 2022, .external_lex_state = 55}, + [3061] = {.lex_state = 2022, .external_lex_state = 55}, + [3062] = {.lex_state = 2022, .external_lex_state = 55}, + [3063] = {.lex_state = 372, .external_lex_state = 55}, + [3064] = {.lex_state = 372, .external_lex_state = 55}, + [3065] = {.lex_state = 2022, .external_lex_state = 55}, + [3066] = {.lex_state = 2022, .external_lex_state = 55}, + [3067] = {.lex_state = 2022, .external_lex_state = 55}, + [3068] = {.lex_state = 2022, .external_lex_state = 55}, + [3069] = {.lex_state = 372, .external_lex_state = 55}, + [3070] = {.lex_state = 3, .external_lex_state = 55}, + [3071] = {.lex_state = 2022, .external_lex_state = 55}, + [3072] = {.lex_state = 2022, .external_lex_state = 55}, + [3073] = {.lex_state = 2022, .external_lex_state = 55}, + [3074] = {.lex_state = 2022, .external_lex_state = 55}, + [3075] = {.lex_state = 372, .external_lex_state = 55}, + [3076] = {.lex_state = 2022, .external_lex_state = 55}, + [3077] = {.lex_state = 2022, .external_lex_state = 55}, + [3078] = {.lex_state = 2022, .external_lex_state = 55}, + [3079] = {.lex_state = 2022, .external_lex_state = 55}, + [3080] = {.lex_state = 372, .external_lex_state = 55}, + [3081] = {.lex_state = 2022, .external_lex_state = 55}, + [3082] = {.lex_state = 2022, .external_lex_state = 55}, + [3083] = {.lex_state = 2022, .external_lex_state = 55}, + [3084] = {.lex_state = 2022, .external_lex_state = 55}, + [3085] = {.lex_state = 372, .external_lex_state = 55}, + [3086] = {.lex_state = 2022, .external_lex_state = 55}, + [3087] = {.lex_state = 2022, .external_lex_state = 55}, + [3088] = {.lex_state = 2022, .external_lex_state = 55}, + [3089] = {.lex_state = 2022, .external_lex_state = 55}, + [3090] = {.lex_state = 372, .external_lex_state = 55}, + [3091] = {.lex_state = 3, .external_lex_state = 55}, + [3092] = {.lex_state = 2022, .external_lex_state = 55}, + [3093] = {.lex_state = 2022, .external_lex_state = 55}, + [3094] = {.lex_state = 2022, .external_lex_state = 55}, + [3095] = {.lex_state = 2022, .external_lex_state = 55}, + [3096] = {.lex_state = 372, .external_lex_state = 55}, + [3097] = {.lex_state = 2022, .external_lex_state = 55}, + [3098] = {.lex_state = 2022, .external_lex_state = 55}, + [3099] = {.lex_state = 2022, .external_lex_state = 55}, + [3100] = {.lex_state = 2022, .external_lex_state = 55}, + [3101] = {.lex_state = 372, .external_lex_state = 55}, + [3102] = {.lex_state = 3, .external_lex_state = 55}, + [3103] = {.lex_state = 8, .external_lex_state = 46}, + [3104] = {.lex_state = 2022, .external_lex_state = 55}, + [3105] = {.lex_state = 2022, .external_lex_state = 55}, + [3106] = {.lex_state = 2022, .external_lex_state = 55}, + [3107] = {.lex_state = 2022, .external_lex_state = 55}, + [3108] = {.lex_state = 2022, .external_lex_state = 55}, + [3109] = {.lex_state = 2022, .external_lex_state = 55}, + [3110] = {.lex_state = 2022, .external_lex_state = 55}, + [3111] = {.lex_state = 2022, .external_lex_state = 55}, + [3112] = {.lex_state = 2022, .external_lex_state = 55}, + [3113] = {.lex_state = 2022, .external_lex_state = 55}, + [3114] = {.lex_state = 2022, .external_lex_state = 55}, + [3115] = {.lex_state = 2022, .external_lex_state = 55}, + [3116] = {.lex_state = 2022, .external_lex_state = 55}, + [3117] = {.lex_state = 5, .external_lex_state = 55}, + [3118] = {.lex_state = 5, .external_lex_state = 55}, + [3119] = {.lex_state = 2022, .external_lex_state = 39}, + [3120] = {.lex_state = 0, .external_lex_state = 69}, + [3121] = {.lex_state = 0, .external_lex_state = 70}, + [3122] = {.lex_state = 5, .external_lex_state = 55}, + [3123] = {.lex_state = 5, .external_lex_state = 55}, + [3124] = {.lex_state = 0, .external_lex_state = 50}, + [3125] = {.lex_state = 7, .external_lex_state = 58}, + [3126] = {.lex_state = 7, .external_lex_state = 58}, + [3127] = {.lex_state = 7, .external_lex_state = 58}, + [3128] = {.lex_state = 2022, .external_lex_state = 71}, + [3129] = {.lex_state = 10, .external_lex_state = 58}, + [3130] = {.lex_state = 10, .external_lex_state = 58}, + [3131] = {.lex_state = 10, .external_lex_state = 58}, + [3132] = {.lex_state = 11, .external_lex_state = 72}, + [3133] = {.lex_state = 5, .external_lex_state = 51}, + [3134] = {.lex_state = 2022, .external_lex_state = 73}, + [3135] = {.lex_state = 11, .external_lex_state = 55}, + [3136] = {.lex_state = 5, .external_lex_state = 55}, + [3137] = {.lex_state = 11, .external_lex_state = 55}, + [3138] = {.lex_state = 5, .external_lex_state = 55}, + [3139] = {.lex_state = 11, .external_lex_state = 55}, + [3140] = {.lex_state = 5}, + [3141] = {.lex_state = 0, .external_lex_state = 74}, + [3142] = {.lex_state = 0, .external_lex_state = 75}, + [3143] = {.lex_state = 372, .external_lex_state = 59}, + [3144] = {.lex_state = 2022, .external_lex_state = 39}, + [3145] = {.lex_state = 0, .external_lex_state = 76}, + [3146] = {.lex_state = 2022, .external_lex_state = 39}, + [3147] = {.lex_state = 2022, .external_lex_state = 55}, + [3148] = {.lex_state = 5, .external_lex_state = 55}, + [3149] = {.lex_state = 0, .external_lex_state = 77}, + [3150] = {.lex_state = 2022, .external_lex_state = 39}, + [3151] = {.lex_state = 5, .external_lex_state = 55}, + [3152] = {.lex_state = 0, .external_lex_state = 74}, + [3153] = {.lex_state = 0, .external_lex_state = 69}, + [3154] = {.lex_state = 0, .external_lex_state = 50}, + [3155] = {.lex_state = 5, .external_lex_state = 55}, + [3156] = {.lex_state = 0, .external_lex_state = 78}, + [3157] = {.lex_state = 5, .external_lex_state = 55}, + [3158] = {.lex_state = 1, .external_lex_state = 55}, + [3159] = {.lex_state = 0, .external_lex_state = 79}, + [3160] = {.lex_state = 0, .external_lex_state = 78}, + [3161] = {.lex_state = 5, .external_lex_state = 55}, + [3162] = {.lex_state = 372, .external_lex_state = 59}, + [3163] = {.lex_state = 2022, .external_lex_state = 55}, + [3164] = {.lex_state = 5, .external_lex_state = 55}, + [3165] = {.lex_state = 5, .external_lex_state = 55}, + [3166] = {.lex_state = 5, .external_lex_state = 55}, + [3167] = {.lex_state = 5, .external_lex_state = 55}, + [3168] = {.lex_state = 11}, + [3169] = {.lex_state = 5, .external_lex_state = 55}, + [3170] = {.lex_state = 5, .external_lex_state = 55}, + [3171] = {.lex_state = 0, .external_lex_state = 50}, + [3172] = {.lex_state = 5, .external_lex_state = 55}, + [3173] = {.lex_state = 5, .external_lex_state = 55}, + [3174] = {.lex_state = 0, .external_lex_state = 74}, + [3175] = {.lex_state = 2022, .external_lex_state = 55}, + [3176] = {.lex_state = 0, .external_lex_state = 70}, + [3177] = {.lex_state = 0, .external_lex_state = 80}, + [3178] = {.lex_state = 2022, .external_lex_state = 55}, + [3179] = {.lex_state = 0, .external_lex_state = 50}, + [3180] = {.lex_state = 2020, .external_lex_state = 56}, + [3181] = {.lex_state = 5, .external_lex_state = 55}, + [3182] = {.lex_state = 0, .external_lex_state = 50}, + [3183] = {.lex_state = 372, .external_lex_state = 59}, + [3184] = {.lex_state = 0, .external_lex_state = 81}, + [3185] = {.lex_state = 0, .external_lex_state = 50}, + [3186] = {.lex_state = 0, .external_lex_state = 69}, + [3187] = {.lex_state = 2022, .external_lex_state = 55}, + [3188] = {.lex_state = 5, .external_lex_state = 61}, + [3189] = {.lex_state = 5, .external_lex_state = 55}, + [3190] = {.lex_state = 0, .external_lex_state = 78}, + [3191] = {.lex_state = 2022, .external_lex_state = 55}, + [3192] = {.lex_state = 5, .external_lex_state = 55}, + [3193] = {.lex_state = 0, .external_lex_state = 82}, + [3194] = {.lex_state = 0, .external_lex_state = 50}, + [3195] = {.lex_state = 0, .external_lex_state = 50}, + [3196] = {.lex_state = 0, .external_lex_state = 70}, + [3197] = {.lex_state = 2022, .external_lex_state = 39}, + [3198] = {.lex_state = 5, .external_lex_state = 61}, + [3199] = {.lex_state = 0, .external_lex_state = 50}, + [3200] = {.lex_state = 0, .external_lex_state = 82}, + [3201] = {.lex_state = 2022, .external_lex_state = 55}, + [3202] = {.lex_state = 0, .external_lex_state = 50}, + [3203] = {.lex_state = 5, .external_lex_state = 55}, + [3204] = {.lex_state = 372, .external_lex_state = 59}, + [3205] = {.lex_state = 2022, .external_lex_state = 55}, + [3206] = {.lex_state = 5, .external_lex_state = 55}, + [3207] = {.lex_state = 1, .external_lex_state = 55}, + [3208] = {.lex_state = 5, .external_lex_state = 55}, + [3209] = {.lex_state = 0, .external_lex_state = 80}, + [3210] = {.lex_state = 0, .external_lex_state = 80}, + [3211] = {.lex_state = 1, .external_lex_state = 55}, + [3212] = {.lex_state = 0, .external_lex_state = 75}, + [3213] = {.lex_state = 5, .external_lex_state = 55}, + [3214] = {.lex_state = 5, .external_lex_state = 55}, + [3215] = {.lex_state = 0, .external_lex_state = 82}, + [3216] = {.lex_state = 0, .external_lex_state = 81}, + [3217] = {.lex_state = 2022, .external_lex_state = 39}, [3218] = {.lex_state = 0, .external_lex_state = 75}, - [3219] = {.lex_state = 5, .external_lex_state = 54}, - [3220] = {.lex_state = 0, .external_lex_state = 79}, - [3221] = {.lex_state = 0, .external_lex_state = 52}, - [3222] = {.lex_state = 5, .external_lex_state = 54}, - [3223] = {.lex_state = 2022, .external_lex_state = 54}, - [3224] = {.lex_state = 5, .external_lex_state = 54}, - [3225] = {.lex_state = 0, .external_lex_state = 52}, - [3226] = {.lex_state = 5, .external_lex_state = 54}, - [3227] = {.lex_state = 7, .external_lex_state = 58}, - [3228] = {.lex_state = 7, .external_lex_state = 58}, - [3229] = {.lex_state = 7, .external_lex_state = 58}, - [3230] = {.lex_state = 11}, - [3231] = {.lex_state = 11, .external_lex_state = 82}, - [3232] = {.lex_state = 11}, - [3233] = {.lex_state = 11, .external_lex_state = 82}, - [3234] = {.lex_state = 2022, .external_lex_state = 54}, - [3235] = {.lex_state = 2022, .external_lex_state = 54}, - [3236] = {.lex_state = 2022, .external_lex_state = 54}, - [3237] = {.lex_state = 2022, .external_lex_state = 54}, - [3238] = {.lex_state = 2022, .external_lex_state = 54}, - [3239] = {.lex_state = 2022, .external_lex_state = 54}, - [3240] = {.lex_state = 2022, .external_lex_state = 54}, - [3241] = {.lex_state = 2022, .external_lex_state = 54}, - [3242] = {.lex_state = 2022, .external_lex_state = 54}, - [3243] = {.lex_state = 2022, .external_lex_state = 54}, - [3244] = {.lex_state = 2022, .external_lex_state = 54}, - [3245] = {.lex_state = 2022, .external_lex_state = 54}, - [3246] = {.lex_state = 2022, .external_lex_state = 54}, - [3247] = {.lex_state = 2022, .external_lex_state = 54}, - [3248] = {.lex_state = 2022, .external_lex_state = 54}, - [3249] = {.lex_state = 2022, .external_lex_state = 54}, - [3250] = {.lex_state = 2022, .external_lex_state = 54}, - [3251] = {.lex_state = 2022, .external_lex_state = 54}, - [3252] = {.lex_state = 2022, .external_lex_state = 54}, - [3253] = {.lex_state = 2022, .external_lex_state = 54}, - [3254] = {.lex_state = 2022, .external_lex_state = 54}, - [3255] = {.lex_state = 2022, .external_lex_state = 54}, - [3256] = {.lex_state = 2022, .external_lex_state = 54}, - [3257] = {.lex_state = 2022, .external_lex_state = 54}, - [3258] = {.lex_state = 2022, .external_lex_state = 54}, - [3259] = {.lex_state = 2022, .external_lex_state = 54}, - [3260] = {.lex_state = 2022, .external_lex_state = 54}, - [3261] = {.lex_state = 2022, .external_lex_state = 54}, - [3262] = {.lex_state = 2022, .external_lex_state = 54}, - [3263] = {.lex_state = 2022, .external_lex_state = 54}, - [3264] = {.lex_state = 2022, .external_lex_state = 54}, - [3265] = {.lex_state = 2022, .external_lex_state = 54}, - [3266] = {.lex_state = 2022, .external_lex_state = 54}, - [3267] = {.lex_state = 2022, .external_lex_state = 39}, - [3268] = {.lex_state = 0, .external_lex_state = 83}, - [3269] = {.lex_state = 0, .external_lex_state = 84}, - [3270] = {.lex_state = 0, .external_lex_state = 83}, - [3271] = {.lex_state = 0, .external_lex_state = 85}, - [3272] = {.lex_state = 0, .external_lex_state = 84}, - [3273] = {.lex_state = 0, .external_lex_state = 84}, + [3219] = {.lex_state = 5, .external_lex_state = 55}, + [3220] = {.lex_state = 0, .external_lex_state = 81}, + [3221] = {.lex_state = 5, .external_lex_state = 55}, + [3222] = {.lex_state = 5, .external_lex_state = 55}, + [3223] = {.lex_state = 0, .external_lex_state = 79}, + [3224] = {.lex_state = 0, .external_lex_state = 79}, + [3225] = {.lex_state = 2022, .external_lex_state = 39}, + [3226] = {.lex_state = 0, .external_lex_state = 50}, + [3227] = {.lex_state = 0, .external_lex_state = 50}, + [3228] = {.lex_state = 0, .external_lex_state = 50}, + [3229] = {.lex_state = 5, .external_lex_state = 61}, + [3230] = {.lex_state = 5, .external_lex_state = 55}, + [3231] = {.lex_state = 2022, .external_lex_state = 39}, + [3232] = {.lex_state = 5, .external_lex_state = 55}, + [3233] = {.lex_state = 11}, + [3234] = {.lex_state = 11, .external_lex_state = 72}, + [3235] = {.lex_state = 0, .external_lex_state = 50}, + [3236] = {.lex_state = 11}, + [3237] = {.lex_state = 11, .external_lex_state = 72}, + [3238] = {.lex_state = 2022, .external_lex_state = 55}, + [3239] = {.lex_state = 2022, .external_lex_state = 55}, + [3240] = {.lex_state = 2022, .external_lex_state = 55}, + [3241] = {.lex_state = 2022, .external_lex_state = 55}, + [3242] = {.lex_state = 2022, .external_lex_state = 55}, + [3243] = {.lex_state = 2022, .external_lex_state = 55}, + [3244] = {.lex_state = 2022, .external_lex_state = 55}, + [3245] = {.lex_state = 2022, .external_lex_state = 55}, + [3246] = {.lex_state = 2022, .external_lex_state = 55}, + [3247] = {.lex_state = 2022, .external_lex_state = 55}, + [3248] = {.lex_state = 2022, .external_lex_state = 55}, + [3249] = {.lex_state = 2022, .external_lex_state = 55}, + [3250] = {.lex_state = 2022, .external_lex_state = 55}, + [3251] = {.lex_state = 2022, .external_lex_state = 55}, + [3252] = {.lex_state = 2022, .external_lex_state = 55}, + [3253] = {.lex_state = 2022, .external_lex_state = 55}, + [3254] = {.lex_state = 2022, .external_lex_state = 55}, + [3255] = {.lex_state = 2022, .external_lex_state = 55}, + [3256] = {.lex_state = 2022, .external_lex_state = 55}, + [3257] = {.lex_state = 2022, .external_lex_state = 55}, + [3258] = {.lex_state = 2022, .external_lex_state = 55}, + [3259] = {.lex_state = 2022, .external_lex_state = 55}, + [3260] = {.lex_state = 2022, .external_lex_state = 55}, + [3261] = {.lex_state = 2022, .external_lex_state = 55}, + [3262] = {.lex_state = 2022, .external_lex_state = 55}, + [3263] = {.lex_state = 2022, .external_lex_state = 55}, + [3264] = {.lex_state = 2022, .external_lex_state = 55}, + [3265] = {.lex_state = 2022, .external_lex_state = 55}, + [3266] = {.lex_state = 2022, .external_lex_state = 55}, + [3267] = {.lex_state = 2022, .external_lex_state = 55}, + [3268] = {.lex_state = 2022, .external_lex_state = 55}, + [3269] = {.lex_state = 2022, .external_lex_state = 55}, + [3270] = {.lex_state = 5, .external_lex_state = 55}, + [3271] = {.lex_state = 0, .external_lex_state = 83}, + [3272] = {.lex_state = 2}, + [3273] = {.lex_state = 2}, [3274] = {.lex_state = 0, .external_lex_state = 84}, - [3275] = {.lex_state = 0, .external_lex_state = 84}, - [3276] = {.lex_state = 0, .external_lex_state = 84}, + [3275] = {.lex_state = 2}, + [3276] = {.lex_state = 0, .external_lex_state = 83}, [3277] = {.lex_state = 0, .external_lex_state = 84}, - [3278] = {.lex_state = 0, .external_lex_state = 83}, + [3278] = {.lex_state = 2}, [3279] = {.lex_state = 2}, - [3280] = {.lex_state = 2022, .external_lex_state = 86}, - [3281] = {.lex_state = 2022, .external_lex_state = 86}, - [3282] = {.lex_state = 2}, - [3283] = {.lex_state = 0, .external_lex_state = 84}, - [3284] = {.lex_state = 0, .external_lex_state = 84}, - [3285] = {.lex_state = 0, .external_lex_state = 85}, - [3286] = {.lex_state = 2}, - [3287] = {.lex_state = 0, .external_lex_state = 84}, + [3280] = {.lex_state = 2}, + [3281] = {.lex_state = 0, .external_lex_state = 85}, + [3282] = {.lex_state = 3, .external_lex_state = 63}, + [3283] = {.lex_state = 0, .external_lex_state = 83}, + [3284] = {.lex_state = 0, .external_lex_state = 85}, + [3285] = {.lex_state = 0, .external_lex_state = 83}, + [3286] = {.lex_state = 0, .external_lex_state = 85}, + [3287] = {.lex_state = 0, .external_lex_state = 86}, [3288] = {.lex_state = 0, .external_lex_state = 85}, - [3289] = {.lex_state = 0, .external_lex_state = 49}, - [3290] = {.lex_state = 0, .external_lex_state = 83}, - [3291] = {.lex_state = 0, .external_lex_state = 84}, + [3289] = {.lex_state = 0, .external_lex_state = 85}, + [3290] = {.lex_state = 2}, + [3291] = {.lex_state = 0, .external_lex_state = 85}, [3292] = {.lex_state = 0, .external_lex_state = 85}, - [3293] = {.lex_state = 0, .external_lex_state = 83}, - [3294] = {.lex_state = 0, .external_lex_state = 84}, + [3293] = {.lex_state = 0, .external_lex_state = 85}, + [3294] = {.lex_state = 0, .external_lex_state = 85}, [3295] = {.lex_state = 2}, - [3296] = {.lex_state = 369, .external_lex_state = 58}, - [3297] = {.lex_state = 0, .external_lex_state = 84}, - [3298] = {.lex_state = 0, .external_lex_state = 84}, + [3296] = {.lex_state = 2}, + [3297] = {.lex_state = 0, .external_lex_state = 85}, + [3298] = {.lex_state = 0, .external_lex_state = 85}, [3299] = {.lex_state = 2}, [3300] = {.lex_state = 2}, - [3301] = {.lex_state = 0, .external_lex_state = 84}, - [3302] = {.lex_state = 0, .external_lex_state = 84}, - [3303] = {.lex_state = 0, .external_lex_state = 84}, - [3304] = {.lex_state = 0, .external_lex_state = 84}, - [3305] = {.lex_state = 0, .external_lex_state = 84}, - [3306] = {.lex_state = 0, .external_lex_state = 84}, - [3307] = {.lex_state = 1983, .external_lex_state = 62}, - [3308] = {.lex_state = 0, .external_lex_state = 83}, - [3309] = {.lex_state = 0, .external_lex_state = 85}, - [3310] = {.lex_state = 0, .external_lex_state = 84}, - [3311] = {.lex_state = 0, .external_lex_state = 87}, - [3312] = {.lex_state = 0, .external_lex_state = 87}, - [3313] = {.lex_state = 0, .external_lex_state = 84}, - [3314] = {.lex_state = 0, .external_lex_state = 87}, - [3315] = {.lex_state = 0, .external_lex_state = 84}, - [3316] = {.lex_state = 2022, .external_lex_state = 61}, - [3317] = {.lex_state = 0, .external_lex_state = 83}, - [3318] = {.lex_state = 2}, - [3319] = {.lex_state = 2}, - [3320] = {.lex_state = 0, .external_lex_state = 84}, - [3321] = {.lex_state = 2022, .external_lex_state = 86}, - [3322] = {.lex_state = 0, .external_lex_state = 85}, - [3323] = {.lex_state = 2022, .external_lex_state = 86}, - [3324] = {.lex_state = 0, .external_lex_state = 87}, - [3325] = {.lex_state = 0, .external_lex_state = 87}, - [3326] = {.lex_state = 0, .external_lex_state = 88}, - [3327] = {.lex_state = 0, .external_lex_state = 87}, - [3328] = {.lex_state = 0, .external_lex_state = 83}, - [3329] = {.lex_state = 0, .external_lex_state = 85}, - [3330] = {.lex_state = 0, .external_lex_state = 83}, - [3331] = {.lex_state = 0, .external_lex_state = 84}, - [3332] = {.lex_state = 0, .external_lex_state = 84}, - [3333] = {.lex_state = 0, .external_lex_state = 84}, - [3334] = {.lex_state = 2}, - [3335] = {.lex_state = 2}, - [3336] = {.lex_state = 2}, - [3337] = {.lex_state = 0, .external_lex_state = 84}, - [3338] = {.lex_state = 0, .external_lex_state = 84}, - [3339] = {.lex_state = 0, .external_lex_state = 87}, - [3340] = {.lex_state = 0, .external_lex_state = 87}, - [3341] = {.lex_state = 0, .external_lex_state = 84}, - [3342] = {.lex_state = 0, .external_lex_state = 84}, - [3343] = {.lex_state = 2}, - [3344] = {.lex_state = 2}, + [3301] = {.lex_state = 0, .external_lex_state = 83}, + [3302] = {.lex_state = 0, .external_lex_state = 86}, + [3303] = {.lex_state = 0, .external_lex_state = 86}, + [3304] = {.lex_state = 0, .external_lex_state = 39}, + [3305] = {.lex_state = 369, .external_lex_state = 58}, + [3306] = {.lex_state = 0, .external_lex_state = 83}, + [3307] = {.lex_state = 0, .external_lex_state = 84}, + [3308] = {.lex_state = 0, .external_lex_state = 86}, + [3309] = {.lex_state = 2, .external_lex_state = 55}, + [3310] = {.lex_state = 0, .external_lex_state = 85}, + [3311] = {.lex_state = 369, .external_lex_state = 58}, + [3312] = {.lex_state = 368, .external_lex_state = 58}, + [3313] = {.lex_state = 0, .external_lex_state = 86}, + [3314] = {.lex_state = 0, .external_lex_state = 86}, + [3315] = {.lex_state = 0, .external_lex_state = 83}, + [3316] = {.lex_state = 0, .external_lex_state = 85}, + [3317] = {.lex_state = 0, .external_lex_state = 86}, + [3318] = {.lex_state = 0, .external_lex_state = 86}, + [3319] = {.lex_state = 0, .external_lex_state = 86}, + [3320] = {.lex_state = 0, .external_lex_state = 86}, + [3321] = {.lex_state = 0, .external_lex_state = 86}, + [3322] = {.lex_state = 0, .external_lex_state = 86}, + [3323] = {.lex_state = 2}, + [3324] = {.lex_state = 2}, + [3325] = {.lex_state = 2}, + [3326] = {.lex_state = 2}, + [3327] = {.lex_state = 2022, .external_lex_state = 87}, + [3328] = {.lex_state = 0, .external_lex_state = 86}, + [3329] = {.lex_state = 0, .external_lex_state = 86}, + [3330] = {.lex_state = 0, .external_lex_state = 86}, + [3331] = {.lex_state = 2}, + [3332] = {.lex_state = 0, .external_lex_state = 83}, + [3333] = {.lex_state = 0, .external_lex_state = 86}, + [3334] = {.lex_state = 0, .external_lex_state = 85}, + [3335] = {.lex_state = 0, .external_lex_state = 83}, + [3336] = {.lex_state = 0, .external_lex_state = 86}, + [3337] = {.lex_state = 0, .external_lex_state = 85}, + [3338] = {.lex_state = 0, .external_lex_state = 85}, + [3339] = {.lex_state = 0, .external_lex_state = 83}, + [3340] = {.lex_state = 0, .external_lex_state = 86}, + [3341] = {.lex_state = 369, .external_lex_state = 58}, + [3342] = {.lex_state = 0, .external_lex_state = 86}, + [3343] = {.lex_state = 0, .external_lex_state = 86}, + [3344] = {.lex_state = 0, .external_lex_state = 86}, [3345] = {.lex_state = 2}, - [3346] = {.lex_state = 0, .external_lex_state = 85}, - [3347] = {.lex_state = 2}, - [3348] = {.lex_state = 0, .external_lex_state = 87}, - [3349] = {.lex_state = 0, .external_lex_state = 83}, - [3350] = {.lex_state = 0, .external_lex_state = 85}, - [3351] = {.lex_state = 0, .external_lex_state = 84}, - [3352] = {.lex_state = 0, .external_lex_state = 83}, - [3353] = {.lex_state = 0, .external_lex_state = 84}, - [3354] = {.lex_state = 2}, - [3355] = {.lex_state = 2}, - [3356] = {.lex_state = 0, .external_lex_state = 85}, - [3357] = {.lex_state = 0, .external_lex_state = 84}, - [3358] = {.lex_state = 2022, .external_lex_state = 86}, - [3359] = {.lex_state = 0, .external_lex_state = 83}, - [3360] = {.lex_state = 0, .external_lex_state = 85}, - [3361] = {.lex_state = 3, .external_lex_state = 54}, - [3362] = {.lex_state = 0, .external_lex_state = 87}, - [3363] = {.lex_state = 0, .external_lex_state = 83}, - [3364] = {.lex_state = 2}, - [3365] = {.lex_state = 0, .external_lex_state = 85}, - [3366] = {.lex_state = 0, .external_lex_state = 83}, - [3367] = {.lex_state = 0, .external_lex_state = 84}, - [3368] = {.lex_state = 0, .external_lex_state = 84}, - [3369] = {.lex_state = 2022, .external_lex_state = 86}, - [3370] = {.lex_state = 0, .external_lex_state = 87}, - [3371] = {.lex_state = 0, .external_lex_state = 87}, - [3372] = {.lex_state = 2022, .external_lex_state = 83}, - [3373] = {.lex_state = 2}, - [3374] = {.lex_state = 2}, - [3375] = {.lex_state = 0, .external_lex_state = 87}, - [3376] = {.lex_state = 0, .external_lex_state = 84}, - [3377] = {.lex_state = 0, .external_lex_state = 89}, - [3378] = {.lex_state = 2}, - [3379] = {.lex_state = 0, .external_lex_state = 85}, - [3380] = {.lex_state = 2}, - [3381] = {.lex_state = 0, .external_lex_state = 84}, - [3382] = {.lex_state = 2}, - [3383] = {.lex_state = 369, .external_lex_state = 58}, - [3384] = {.lex_state = 3, .external_lex_state = 62}, - [3385] = {.lex_state = 0, .external_lex_state = 83}, - [3386] = {.lex_state = 0, .external_lex_state = 85}, - [3387] = {.lex_state = 2}, - [3388] = {.lex_state = 2}, - [3389] = {.lex_state = 0, .external_lex_state = 87}, - [3390] = {.lex_state = 2022, .external_lex_state = 86}, - [3391] = {.lex_state = 0, .external_lex_state = 87}, - [3392] = {.lex_state = 0, .external_lex_state = 87}, - [3393] = {.lex_state = 0, .external_lex_state = 85}, - [3394] = {.lex_state = 2}, - [3395] = {.lex_state = 0, .external_lex_state = 83}, - [3396] = {.lex_state = 0, .external_lex_state = 85}, - [3397] = {.lex_state = 0, .external_lex_state = 83}, - [3398] = {.lex_state = 0, .external_lex_state = 84}, - [3399] = {.lex_state = 2022, .external_lex_state = 54}, - [3400] = {.lex_state = 0, .external_lex_state = 84}, - [3401] = {.lex_state = 0, .external_lex_state = 84}, - [3402] = {.lex_state = 2}, - [3403] = {.lex_state = 0, .external_lex_state = 84}, + [3346] = {.lex_state = 0, .external_lex_state = 86}, + [3347] = {.lex_state = 0, .external_lex_state = 86}, + [3348] = {.lex_state = 0, .external_lex_state = 86}, + [3349] = {.lex_state = 0, .external_lex_state = 86}, + [3350] = {.lex_state = 0, .external_lex_state = 86}, + [3351] = {.lex_state = 0, .external_lex_state = 86}, + [3352] = {.lex_state = 0, .external_lex_state = 86}, + [3353] = {.lex_state = 0, .external_lex_state = 85}, + [3354] = {.lex_state = 0, .external_lex_state = 86}, + [3355] = {.lex_state = 2022, .external_lex_state = 55}, + [3356] = {.lex_state = 0, .external_lex_state = 83}, + [3357] = {.lex_state = 2}, + [3358] = {.lex_state = 0, .external_lex_state = 85}, + [3359] = {.lex_state = 0, .external_lex_state = 85}, + [3360] = {.lex_state = 2}, + [3361] = {.lex_state = 0, .external_lex_state = 83}, + [3362] = {.lex_state = 2}, + [3363] = {.lex_state = 0, .external_lex_state = 65}, + [3364] = {.lex_state = 2022, .external_lex_state = 87}, + [3365] = {.lex_state = 0, .external_lex_state = 86}, + [3366] = {.lex_state = 0, .external_lex_state = 85}, + [3367] = {.lex_state = 0, .external_lex_state = 86}, + [3368] = {.lex_state = 0, .external_lex_state = 83}, + [3369] = {.lex_state = 2022, .external_lex_state = 87}, + [3370] = {.lex_state = 2}, + [3371] = {.lex_state = 2}, + [3372] = {.lex_state = 0, .external_lex_state = 86}, + [3373] = {.lex_state = 0, .external_lex_state = 88}, + [3374] = {.lex_state = 0, .external_lex_state = 86}, + [3375] = {.lex_state = 0, .external_lex_state = 86}, + [3376] = {.lex_state = 0, .external_lex_state = 86}, + [3377] = {.lex_state = 0, .external_lex_state = 85}, + [3378] = {.lex_state = 0, .external_lex_state = 86}, + [3379] = {.lex_state = 0, .external_lex_state = 83}, + [3380] = {.lex_state = 0, .external_lex_state = 85}, + [3381] = {.lex_state = 0, .external_lex_state = 83}, + [3382] = {.lex_state = 0, .external_lex_state = 85}, + [3383] = {.lex_state = 0, .external_lex_state = 86}, + [3384] = {.lex_state = 0, .external_lex_state = 86}, + [3385] = {.lex_state = 0, .external_lex_state = 86}, + [3386] = {.lex_state = 0, .external_lex_state = 86}, + [3387] = {.lex_state = 0, .external_lex_state = 86}, + [3388] = {.lex_state = 0, .external_lex_state = 86}, + [3389] = {.lex_state = 0, .external_lex_state = 86}, + [3390] = {.lex_state = 0, .external_lex_state = 86}, + [3391] = {.lex_state = 2}, + [3392] = {.lex_state = 0, .external_lex_state = 86}, + [3393] = {.lex_state = 0, .external_lex_state = 83}, + [3394] = {.lex_state = 2022, .external_lex_state = 85}, + [3395] = {.lex_state = 0, .external_lex_state = 85}, + [3396] = {.lex_state = 0, .external_lex_state = 86}, + [3397] = {.lex_state = 1983, .external_lex_state = 63}, + [3398] = {.lex_state = 2}, + [3399] = {.lex_state = 0, .external_lex_state = 83}, + [3400] = {.lex_state = 0, .external_lex_state = 85}, + [3401] = {.lex_state = 2}, + [3402] = {.lex_state = 2022, .external_lex_state = 61}, + [3403] = {.lex_state = 2}, [3404] = {.lex_state = 2}, - [3405] = {.lex_state = 0, .external_lex_state = 87}, + [3405] = {.lex_state = 0, .external_lex_state = 86}, [3406] = {.lex_state = 2}, [3407] = {.lex_state = 2}, - [3408] = {.lex_state = 2}, - [3409] = {.lex_state = 2}, - [3410] = {.lex_state = 2}, - [3411] = {.lex_state = 0, .external_lex_state = 84}, - [3412] = {.lex_state = 0, .external_lex_state = 84}, - [3413] = {.lex_state = 2022, .external_lex_state = 54}, - [3414] = {.lex_state = 0, .external_lex_state = 85}, - [3415] = {.lex_state = 0, .external_lex_state = 83}, - [3416] = {.lex_state = 2}, - [3417] = {.lex_state = 2}, - [3418] = {.lex_state = 0, .external_lex_state = 85}, - [3419] = {.lex_state = 0, .external_lex_state = 85}, - [3420] = {.lex_state = 0, .external_lex_state = 83}, - [3421] = {.lex_state = 0, .external_lex_state = 85}, - [3422] = {.lex_state = 0, .external_lex_state = 83}, - [3423] = {.lex_state = 0, .external_lex_state = 83}, - [3424] = {.lex_state = 0, .external_lex_state = 84}, - [3425] = {.lex_state = 2022, .external_lex_state = 85}, - [3426] = {.lex_state = 2022, .external_lex_state = 85}, - [3427] = {.lex_state = 0, .external_lex_state = 85}, - [3428] = {.lex_state = 0, .external_lex_state = 84}, + [3408] = {.lex_state = 0, .external_lex_state = 84}, + [3409] = {.lex_state = 2022, .external_lex_state = 87}, + [3410] = {.lex_state = 0, .external_lex_state = 86}, + [3411] = {.lex_state = 0, .external_lex_state = 86}, + [3412] = {.lex_state = 0, .external_lex_state = 83}, + [3413] = {.lex_state = 0, .external_lex_state = 85}, + [3414] = {.lex_state = 0, .external_lex_state = 83}, + [3415] = {.lex_state = 2}, + [3416] = {.lex_state = 0, .external_lex_state = 84}, + [3417] = {.lex_state = 2022, .external_lex_state = 83}, + [3418] = {.lex_state = 2022, .external_lex_state = 83}, + [3419] = {.lex_state = 2}, + [3420] = {.lex_state = 0, .external_lex_state = 86}, + [3421] = {.lex_state = 2}, + [3422] = {.lex_state = 2}, + [3423] = {.lex_state = 2022, .external_lex_state = 87}, + [3424] = {.lex_state = 2}, + [3425] = {.lex_state = 2}, + [3426] = {.lex_state = 2}, + [3427] = {.lex_state = 0, .external_lex_state = 86}, + [3428] = {.lex_state = 0, .external_lex_state = 86}, [3429] = {.lex_state = 0, .external_lex_state = 84}, - [3430] = {.lex_state = 368, .external_lex_state = 58}, - [3431] = {.lex_state = 0, .external_lex_state = 85}, - [3432] = {.lex_state = 2022, .external_lex_state = 85}, - [3433] = {.lex_state = 0, .external_lex_state = 84}, - [3434] = {.lex_state = 0, .external_lex_state = 85}, - [3435] = {.lex_state = 0, .external_lex_state = 84}, - [3436] = {.lex_state = 0, .external_lex_state = 83}, - [3437] = {.lex_state = 2022, .external_lex_state = 83}, - [3438] = {.lex_state = 2022, .external_lex_state = 83}, - [3439] = {.lex_state = 0, .external_lex_state = 83}, - [3440] = {.lex_state = 0, .external_lex_state = 85}, - [3441] = {.lex_state = 0, .external_lex_state = 83}, - [3442] = {.lex_state = 2}, - [3443] = {.lex_state = 2}, + [3430] = {.lex_state = 0, .external_lex_state = 84}, + [3431] = {.lex_state = 0, .external_lex_state = 86}, + [3432] = {.lex_state = 2022, .external_lex_state = 89}, + [3433] = {.lex_state = 0, .external_lex_state = 86}, + [3434] = {.lex_state = 2022, .external_lex_state = 87}, + [3435] = {.lex_state = 2}, + [3436] = {.lex_state = 0, .external_lex_state = 84}, + [3437] = {.lex_state = 0, .external_lex_state = 83}, + [3438] = {.lex_state = 0, .external_lex_state = 84}, + [3439] = {.lex_state = 0, .external_lex_state = 84}, + [3440] = {.lex_state = 0, .external_lex_state = 84}, + [3441] = {.lex_state = 2}, + [3442] = {.lex_state = 0, .external_lex_state = 85}, + [3443] = {.lex_state = 0, .external_lex_state = 83}, [3444] = {.lex_state = 2}, - [3445] = {.lex_state = 2022, .external_lex_state = 86}, - [3446] = {.lex_state = 0, .external_lex_state = 84}, - [3447] = {.lex_state = 0, .external_lex_state = 84}, - [3448] = {.lex_state = 2}, - [3449] = {.lex_state = 2022, .external_lex_state = 83}, - [3450] = {.lex_state = 0, .external_lex_state = 84}, - [3451] = {.lex_state = 2}, + [3445] = {.lex_state = 0, .external_lex_state = 85}, + [3446] = {.lex_state = 0, .external_lex_state = 86}, + [3447] = {.lex_state = 0, .external_lex_state = 86}, + [3448] = {.lex_state = 0, .external_lex_state = 86}, + [3449] = {.lex_state = 0, .external_lex_state = 84}, + [3450] = {.lex_state = 0, .external_lex_state = 86}, + [3451] = {.lex_state = 0, .external_lex_state = 49}, [3452] = {.lex_state = 2}, [3453] = {.lex_state = 2}, - [3454] = {.lex_state = 2}, - [3455] = {.lex_state = 2022, .external_lex_state = 85}, - [3456] = {.lex_state = 0, .external_lex_state = 84}, - [3457] = {.lex_state = 2022, .external_lex_state = 90}, - [3458] = {.lex_state = 0, .external_lex_state = 84}, - [3459] = {.lex_state = 0, .external_lex_state = 85}, - [3460] = {.lex_state = 0, .external_lex_state = 85}, - [3461] = {.lex_state = 0, .external_lex_state = 83}, - [3462] = {.lex_state = 2}, - [3463] = {.lex_state = 0, .external_lex_state = 83}, + [3454] = {.lex_state = 0, .external_lex_state = 86}, + [3455] = {.lex_state = 0, .external_lex_state = 84}, + [3456] = {.lex_state = 0, .external_lex_state = 86}, + [3457] = {.lex_state = 2022, .external_lex_state = 87}, + [3458] = {.lex_state = 2}, + [3459] = {.lex_state = 2}, + [3460] = {.lex_state = 2022, .external_lex_state = 83}, + [3461] = {.lex_state = 0, .external_lex_state = 86}, + [3462] = {.lex_state = 0, .external_lex_state = 83}, + [3463] = {.lex_state = 2}, [3464] = {.lex_state = 0, .external_lex_state = 85}, - [3465] = {.lex_state = 0, .external_lex_state = 84}, - [3466] = {.lex_state = 2}, - [3467] = {.lex_state = 0, .external_lex_state = 84}, - [3468] = {.lex_state = 0, .external_lex_state = 84}, - [3469] = {.lex_state = 2}, - [3470] = {.lex_state = 0, .external_lex_state = 84}, - [3471] = {.lex_state = 2}, - [3472] = {.lex_state = 0, .external_lex_state = 85}, + [3465] = {.lex_state = 2022, .external_lex_state = 85}, + [3466] = {.lex_state = 0, .external_lex_state = 83}, + [3467] = {.lex_state = 0, .external_lex_state = 86}, + [3468] = {.lex_state = 0, .external_lex_state = 85}, + [3469] = {.lex_state = 5, .external_lex_state = 55}, + [3470] = {.lex_state = 2022, .external_lex_state = 55}, + [3471] = {.lex_state = 2022, .external_lex_state = 87}, + [3472] = {.lex_state = 2022, .external_lex_state = 83}, [3473] = {.lex_state = 2}, - [3474] = {.lex_state = 0, .external_lex_state = 83}, - [3475] = {.lex_state = 0, .external_lex_state = 85}, - [3476] = {.lex_state = 2}, + [3474] = {.lex_state = 2022, .external_lex_state = 61}, + [3475] = {.lex_state = 0, .external_lex_state = 86}, + [3476] = {.lex_state = 368, .external_lex_state = 58}, [3477] = {.lex_state = 0, .external_lex_state = 83}, [3478] = {.lex_state = 2}, - [3479] = {.lex_state = 0, .external_lex_state = 84}, - [3480] = {.lex_state = 0, .external_lex_state = 84}, + [3479] = {.lex_state = 2}, + [3480] = {.lex_state = 0, .external_lex_state = 86}, [3481] = {.lex_state = 2}, - [3482] = {.lex_state = 2}, + [3482] = {.lex_state = 0, .external_lex_state = 85}, [3483] = {.lex_state = 2}, [3484] = {.lex_state = 2}, - [3485] = {.lex_state = 2}, - [3486] = {.lex_state = 5, .external_lex_state = 54}, - [3487] = {.lex_state = 0, .external_lex_state = 84}, - [3488] = {.lex_state = 0, .external_lex_state = 85}, - [3489] = {.lex_state = 0, .external_lex_state = 83}, - [3490] = {.lex_state = 0, .external_lex_state = 85}, - [3491] = {.lex_state = 0, .external_lex_state = 83}, - [3492] = {.lex_state = 2}, - [3493] = {.lex_state = 0, .external_lex_state = 39}, - [3494] = {.lex_state = 0, .external_lex_state = 83}, - [3495] = {.lex_state = 0, .external_lex_state = 84}, - [3496] = {.lex_state = 0, .external_lex_state = 83}, - [3497] = {.lex_state = 0, .external_lex_state = 83}, + [3485] = {.lex_state = 2022, .external_lex_state = 85}, + [3486] = {.lex_state = 0, .external_lex_state = 83}, + [3487] = {.lex_state = 0, .external_lex_state = 83}, + [3488] = {.lex_state = 0, .external_lex_state = 90}, + [3489] = {.lex_state = 2022, .external_lex_state = 87}, + [3490] = {.lex_state = 0, .external_lex_state = 83}, + [3491] = {.lex_state = 0, .external_lex_state = 84}, + [3492] = {.lex_state = 0, .external_lex_state = 86}, + [3493] = {.lex_state = 0, .external_lex_state = 85}, + [3494] = {.lex_state = 2}, + [3495] = {.lex_state = 2}, + [3496] = {.lex_state = 0, .external_lex_state = 85}, + [3497] = {.lex_state = 3, .external_lex_state = 55}, [3498] = {.lex_state = 0, .external_lex_state = 83}, - [3499] = {.lex_state = 0, .external_lex_state = 83}, - [3500] = {.lex_state = 0, .external_lex_state = 84}, - [3501] = {.lex_state = 2}, - [3502] = {.lex_state = 0, .external_lex_state = 83}, - [3503] = {.lex_state = 0, .external_lex_state = 83}, - [3504] = {.lex_state = 2022, .external_lex_state = 54}, - [3505] = {.lex_state = 0, .external_lex_state = 83}, - [3506] = {.lex_state = 0, .external_lex_state = 83}, - [3507] = {.lex_state = 2}, + [3499] = {.lex_state = 0, .external_lex_state = 85}, + [3500] = {.lex_state = 0, .external_lex_state = 83}, + [3501] = {.lex_state = 0, .external_lex_state = 85}, + [3502] = {.lex_state = 0, .external_lex_state = 86}, + [3503] = {.lex_state = 2}, + [3504] = {.lex_state = 2}, + [3505] = {.lex_state = 0, .external_lex_state = 85}, + [3506] = {.lex_state = 2}, + [3507] = {.lex_state = 0, .external_lex_state = 86}, [3508] = {.lex_state = 2}, - [3509] = {.lex_state = 0, .external_lex_state = 87}, - [3510] = {.lex_state = 0, .external_lex_state = 65}, - [3511] = {.lex_state = 0, .external_lex_state = 84}, - [3512] = {.lex_state = 2022, .external_lex_state = 61}, - [3513] = {.lex_state = 2, .external_lex_state = 54}, + [3509] = {.lex_state = 0, .external_lex_state = 86}, + [3510] = {.lex_state = 2}, + [3511] = {.lex_state = 2}, + [3512] = {.lex_state = 2}, + [3513] = {.lex_state = 2022, .external_lex_state = 85}, [3514] = {.lex_state = 2}, - [3515] = {.lex_state = 0, .external_lex_state = 84}, + [3515] = {.lex_state = 2}, [3516] = {.lex_state = 2}, [3517] = {.lex_state = 2}, - [3518] = {.lex_state = 0, .external_lex_state = 84}, - [3519] = {.lex_state = 2}, - [3520] = {.lex_state = 2}, + [3518] = {.lex_state = 2}, + [3519] = {.lex_state = 2022, .external_lex_state = 55}, + [3520] = {.lex_state = 0, .external_lex_state = 83}, [3521] = {.lex_state = 0, .external_lex_state = 85}, - [3522] = {.lex_state = 2022, .external_lex_state = 86}, - [3523] = {.lex_state = 369, .external_lex_state = 58}, - [3524] = {.lex_state = 368, .external_lex_state = 58}, - [3525] = {.lex_state = 0, .external_lex_state = 84}, - [3526] = {.lex_state = 0, .external_lex_state = 83}, - [3527] = {.lex_state = 0, .external_lex_state = 61}, - [3528] = {.lex_state = 1, .external_lex_state = 54}, - [3529] = {.lex_state = 1983}, - [3530] = {.lex_state = 0, .external_lex_state = 78}, - [3531] = {.lex_state = 2022, .external_lex_state = 54}, - [3532] = {.lex_state = 2022, .external_lex_state = 54}, - [3533] = {.lex_state = 0, .external_lex_state = 91}, - [3534] = {.lex_state = 0, .external_lex_state = 92}, - [3535] = {.lex_state = 5}, - [3536] = {.lex_state = 0, .external_lex_state = 86}, - [3537] = {.lex_state = 2022, .external_lex_state = 50}, - [3538] = {.lex_state = 0, .external_lex_state = 93}, - [3539] = {.lex_state = 0, .external_lex_state = 75}, - [3540] = {.lex_state = 0, .external_lex_state = 86}, - [3541] = {.lex_state = 2022, .external_lex_state = 61}, - [3542] = {.lex_state = 0, .external_lex_state = 94}, - [3543] = {.lex_state = 0, .external_lex_state = 87}, - [3544] = {.lex_state = 0, .external_lex_state = 71}, - [3545] = {.lex_state = 0, .external_lex_state = 72}, - [3546] = {.lex_state = 2022, .external_lex_state = 54}, - [3547] = {.lex_state = 2022, .external_lex_state = 54}, - [3548] = {.lex_state = 0, .external_lex_state = 61}, - [3549] = {.lex_state = 0, .external_lex_state = 84}, - [3550] = {.lex_state = 0, .external_lex_state = 60}, - [3551] = {.lex_state = 0, .external_lex_state = 86}, - [3552] = {.lex_state = 2022, .external_lex_state = 50}, - [3553] = {.lex_state = 2022, .external_lex_state = 54}, - [3554] = {.lex_state = 0, .external_lex_state = 60}, - [3555] = {.lex_state = 2022, .external_lex_state = 54}, - [3556] = {.lex_state = 0, .external_lex_state = 60}, - [3557] = {.lex_state = 2022, .external_lex_state = 54}, - [3558] = {.lex_state = 2022, .external_lex_state = 54}, + [3522] = {.lex_state = 0, .external_lex_state = 83}, + [3523] = {.lex_state = 0, .external_lex_state = 85}, + [3524] = {.lex_state = 0, .external_lex_state = 86}, + [3525] = {.lex_state = 0, .external_lex_state = 86}, + [3526] = {.lex_state = 0, .external_lex_state = 85}, + [3527] = {.lex_state = 0, .external_lex_state = 84}, + [3528] = {.lex_state = 0, .external_lex_state = 84}, + [3529] = {.lex_state = 0, .external_lex_state = 83}, + [3530] = {.lex_state = 0, .external_lex_state = 84}, + [3531] = {.lex_state = 0, .external_lex_state = 84}, + [3532] = {.lex_state = 0, .external_lex_state = 85}, + [3533] = {.lex_state = 2022}, + [3534] = {.lex_state = 0, .external_lex_state = 61}, + [3535] = {.lex_state = 2022, .external_lex_state = 55}, + [3536] = {.lex_state = 2022, .external_lex_state = 55}, + [3537] = {.lex_state = 2022, .external_lex_state = 55}, + [3538] = {.lex_state = 2022, .external_lex_state = 55}, + [3539] = {.lex_state = 0, .external_lex_state = 61}, + [3540] = {.lex_state = 2022, .external_lex_state = 55}, + [3541] = {.lex_state = 2022, .external_lex_state = 55}, + [3542] = {.lex_state = 0, .external_lex_state = 87}, + [3543] = {.lex_state = 2022, .external_lex_state = 51}, + [3544] = {.lex_state = 2022}, + [3545] = {.lex_state = 5, .external_lex_state = 55}, + [3546] = {.lex_state = 2022, .external_lex_state = 55}, + [3547] = {.lex_state = 0, .external_lex_state = 60}, + [3548] = {.lex_state = 0, .external_lex_state = 78}, + [3549] = {.lex_state = 2022, .external_lex_state = 51}, + [3550] = {.lex_state = 0, .external_lex_state = 91}, + [3551] = {.lex_state = 0, .external_lex_state = 60}, + [3552] = {.lex_state = 0, .external_lex_state = 87}, + [3553] = {.lex_state = 0, .external_lex_state = 92}, + [3554] = {.lex_state = 2022, .external_lex_state = 51}, + [3555] = {.lex_state = 2022}, + [3556] = {.lex_state = 0, .external_lex_state = 84}, + [3557] = {.lex_state = 0, .external_lex_state = 85}, + [3558] = {.lex_state = 0, .external_lex_state = 87}, [3559] = {.lex_state = 0, .external_lex_state = 83}, - [3560] = {.lex_state = 2022, .external_lex_state = 50}, - [3561] = {.lex_state = 2022, .external_lex_state = 54}, - [3562] = {.lex_state = 0, .external_lex_state = 85}, - [3563] = {.lex_state = 3}, - [3564] = {.lex_state = 0, .external_lex_state = 73}, - [3565] = {.lex_state = 0, .external_lex_state = 76}, - [3566] = {.lex_state = 2022, .external_lex_state = 54}, - [3567] = {.lex_state = 2022, .external_lex_state = 54}, - [3568] = {.lex_state = 2022}, - [3569] = {.lex_state = 0, .external_lex_state = 86}, - [3570] = {.lex_state = 2022, .external_lex_state = 54}, - [3571] = {.lex_state = 2022, .external_lex_state = 54}, - [3572] = {.lex_state = 0, .external_lex_state = 92}, - [3573] = {.lex_state = 2022, .external_lex_state = 50}, - [3574] = {.lex_state = 0, .external_lex_state = 84}, + [3560] = {.lex_state = 0, .external_lex_state = 93}, + [3561] = {.lex_state = 2022, .external_lex_state = 51}, + [3562] = {.lex_state = 0, .external_lex_state = 87}, + [3563] = {.lex_state = 2022, .external_lex_state = 51}, + [3564] = {.lex_state = 0, .external_lex_state = 61}, + [3565] = {.lex_state = 0, .external_lex_state = 87}, + [3566] = {.lex_state = 0, .external_lex_state = 94}, + [3567] = {.lex_state = 0, .external_lex_state = 74}, + [3568] = {.lex_state = 0, .external_lex_state = 91}, + [3569] = {.lex_state = 0, .external_lex_state = 93}, + [3570] = {.lex_state = 0, .external_lex_state = 91}, + [3571] = {.lex_state = 2022, .external_lex_state = 55}, + [3572] = {.lex_state = 2022, .external_lex_state = 51}, + [3573] = {.lex_state = 0, .external_lex_state = 60}, + [3574] = {.lex_state = 0, .external_lex_state = 91}, [3575] = {.lex_state = 0, .external_lex_state = 60}, [3576] = {.lex_state = 0, .external_lex_state = 60}, [3577] = {.lex_state = 0, .external_lex_state = 60}, [3578] = {.lex_state = 0, .external_lex_state = 60}, [3579] = {.lex_state = 0, .external_lex_state = 60}, [3580] = {.lex_state = 0, .external_lex_state = 60}, - [3581] = {.lex_state = 2022}, + [3581] = {.lex_state = 0, .external_lex_state = 91}, [3582] = {.lex_state = 2022}, [3583] = {.lex_state = 2022}, - [3584] = {.lex_state = 0, .external_lex_state = 91}, - [3585] = {.lex_state = 2022, .external_lex_state = 54}, - [3586] = {.lex_state = 2022, .external_lex_state = 54}, - [3587] = {.lex_state = 0, .external_lex_state = 60}, + [3584] = {.lex_state = 2022}, + [3585] = {.lex_state = 2022, .external_lex_state = 61}, + [3586] = {.lex_state = 5}, + [3587] = {.lex_state = 0, .external_lex_state = 87}, [3588] = {.lex_state = 0, .external_lex_state = 60}, [3589] = {.lex_state = 0, .external_lex_state = 60}, - [3590] = {.lex_state = 2022, .external_lex_state = 50}, - [3591] = {.lex_state = 2022, .external_lex_state = 50}, - [3592] = {.lex_state = 0, .external_lex_state = 60}, - [3593] = {.lex_state = 0, .external_lex_state = 60}, + [3590] = {.lex_state = 0, .external_lex_state = 60}, + [3591] = {.lex_state = 2022, .external_lex_state = 55}, + [3592] = {.lex_state = 0, .external_lex_state = 91}, + [3593] = {.lex_state = 0, .external_lex_state = 87}, [3594] = {.lex_state = 0, .external_lex_state = 60}, - [3595] = {.lex_state = 2022}, - [3596] = {.lex_state = 2022}, - [3597] = {.lex_state = 2022}, - [3598] = {.lex_state = 2022}, - [3599] = {.lex_state = 2022, .external_lex_state = 54}, - [3600] = {.lex_state = 0, .external_lex_state = 74}, + [3595] = {.lex_state = 0, .external_lex_state = 60}, + [3596] = {.lex_state = 0, .external_lex_state = 60}, + [3597] = {.lex_state = 0, .external_lex_state = 86}, + [3598] = {.lex_state = 0, .external_lex_state = 80}, + [3599] = {.lex_state = 2022, .external_lex_state = 51}, + [3600] = {.lex_state = 2022}, [3601] = {.lex_state = 2022}, [3602] = {.lex_state = 2022}, - [3603] = {.lex_state = 2022, .external_lex_state = 54}, - [3604] = {.lex_state = 2022}, - [3605] = {.lex_state = 2022, .external_lex_state = 54}, - [3606] = {.lex_state = 5}, - [3607] = {.lex_state = 2022}, + [3603] = {.lex_state = 2022, .external_lex_state = 51}, + [3604] = {.lex_state = 2022, .external_lex_state = 55}, + [3605] = {.lex_state = 2022, .external_lex_state = 55}, + [3606] = {.lex_state = 2022, .external_lex_state = 55}, + [3607] = {.lex_state = 5}, [3608] = {.lex_state = 2022}, - [3609] = {.lex_state = 2022}, - [3610] = {.lex_state = 0, .external_lex_state = 87}, - [3611] = {.lex_state = 2022, .external_lex_state = 54}, - [3612] = {.lex_state = 0, .external_lex_state = 91}, - [3613] = {.lex_state = 0, .external_lex_state = 60}, + [3609] = {.lex_state = 2022, .external_lex_state = 55}, + [3610] = {.lex_state = 2022}, + [3611] = {.lex_state = 2022}, + [3612] = {.lex_state = 2022}, + [3613] = {.lex_state = 2022}, [3614] = {.lex_state = 2022}, - [3615] = {.lex_state = 2022}, - [3616] = {.lex_state = 2022}, - [3617] = {.lex_state = 0, .external_lex_state = 60}, - [3618] = {.lex_state = 2022, .external_lex_state = 54}, - [3619] = {.lex_state = 5, .external_lex_state = 54}, - [3620] = {.lex_state = 2022}, - [3621] = {.lex_state = 2022}, + [3615] = {.lex_state = 2022, .external_lex_state = 55}, + [3616] = {.lex_state = 0, .external_lex_state = 84}, + [3617] = {.lex_state = 2022}, + [3618] = {.lex_state = 2022}, + [3619] = {.lex_state = 2022}, + [3620] = {.lex_state = 2022, .external_lex_state = 55}, + [3621] = {.lex_state = 2022, .external_lex_state = 55}, [3622] = {.lex_state = 2022}, - [3623] = {.lex_state = 0, .external_lex_state = 60}, - [3624] = {.lex_state = 0, .external_lex_state = 91}, - [3625] = {.lex_state = 2022}, + [3623] = {.lex_state = 2022}, + [3624] = {.lex_state = 2022}, + [3625] = {.lex_state = 0, .external_lex_state = 60}, [3626] = {.lex_state = 2022}, [3627] = {.lex_state = 2022}, [3628] = {.lex_state = 2022}, - [3629] = {.lex_state = 2022}, - [3630] = {.lex_state = 0, .external_lex_state = 86}, + [3629] = {.lex_state = 0, .external_lex_state = 60}, + [3630] = {.lex_state = 2022}, [3631] = {.lex_state = 2022}, - [3632] = {.lex_state = 2022}, + [3632] = {.lex_state = 0, .external_lex_state = 95}, [3633] = {.lex_state = 2022}, - [3634] = {.lex_state = 2022}, - [3635] = {.lex_state = 0, .external_lex_state = 91}, - [3636] = {.lex_state = 0, .external_lex_state = 61}, - [3637] = {.lex_state = 5}, - [3638] = {.lex_state = 0, .external_lex_state = 84}, + [3634] = {.lex_state = 1, .external_lex_state = 55}, + [3635] = {.lex_state = 2022, .external_lex_state = 55}, + [3636] = {.lex_state = 2022, .external_lex_state = 51}, + [3637] = {.lex_state = 2022}, + [3638] = {.lex_state = 2022}, [3639] = {.lex_state = 2022}, - [3640] = {.lex_state = 2022}, - [3641] = {.lex_state = 2022}, - [3642] = {.lex_state = 0, .external_lex_state = 79}, + [3640] = {.lex_state = 0, .external_lex_state = 79}, + [3641] = {.lex_state = 0, .external_lex_state = 86}, + [3642] = {.lex_state = 2022}, [3643] = {.lex_state = 2022}, [3644] = {.lex_state = 2022}, - [3645] = {.lex_state = 2022}, - [3646] = {.lex_state = 2022, .external_lex_state = 50}, - [3647] = {.lex_state = 2022, .external_lex_state = 50}, - [3648] = {.lex_state = 0, .external_lex_state = 91}, - [3649] = {.lex_state = 2022}, - [3650] = {.lex_state = 2022}, + [3645] = {.lex_state = 0, .external_lex_state = 82}, + [3646] = {.lex_state = 0, .external_lex_state = 81}, + [3647] = {.lex_state = 2022}, + [3648] = {.lex_state = 2022}, + [3649] = {.lex_state = 2022, .external_lex_state = 55}, + [3650] = {.lex_state = 1983}, [3651] = {.lex_state = 2022}, - [3652] = {.lex_state = 0, .external_lex_state = 91}, - [3653] = {.lex_state = 2022}, + [3652] = {.lex_state = 0, .external_lex_state = 75}, + [3653] = {.lex_state = 0, .external_lex_state = 91}, [3654] = {.lex_state = 2022}, [3655] = {.lex_state = 2022}, - [3656] = {.lex_state = 0, .external_lex_state = 91}, - [3657] = {.lex_state = 0, .external_lex_state = 95}, + [3656] = {.lex_state = 0, .external_lex_state = 86}, + [3657] = {.lex_state = 2022}, [3658] = {.lex_state = 2022}, [3659] = {.lex_state = 2022}, - [3660] = {.lex_state = 2022}, - [3661] = {.lex_state = 0, .external_lex_state = 86}, + [3660] = {.lex_state = 0, .external_lex_state = 91}, + [3661] = {.lex_state = 0, .external_lex_state = 87}, [3662] = {.lex_state = 2022}, [3663] = {.lex_state = 2022}, - [3664] = {.lex_state = 0, .external_lex_state = 86}, - [3665] = {.lex_state = 2022}, - [3666] = {.lex_state = 2022, .external_lex_state = 50}, - [3667] = {.lex_state = 0, .external_lex_state = 86}, - [3668] = {.lex_state = 0, .external_lex_state = 91}, - [3669] = {.lex_state = 0, .external_lex_state = 77}, - [3670] = {.lex_state = 2022}, - [3671] = {.lex_state = 5}, - [3672] = {.lex_state = 2022}, - [3673] = {.lex_state = 2022}, - [3674] = {.lex_state = 1}, - [3675] = {.lex_state = 1}, - [3676] = {.lex_state = 1}, - [3677] = {.lex_state = 1}, - [3678] = {.lex_state = 3}, - [3679] = {.lex_state = 1}, - [3680] = {.lex_state = 1}, - [3681] = {.lex_state = 5}, - [3682] = {.lex_state = 3}, - [3683] = {.lex_state = 0, .external_lex_state = 96}, - [3684] = {.lex_state = 5}, - [3685] = {.lex_state = 2022}, - [3686] = {.lex_state = 2022}, - [3687] = {.lex_state = 2022}, - [3688] = {.lex_state = 2022}, - [3689] = {.lex_state = 0, .external_lex_state = 96}, - [3690] = {.lex_state = 0, .external_lex_state = 96}, - [3691] = {.lex_state = 3}, - [3692] = {.lex_state = 5}, - [3693] = {.lex_state = 5}, - [3694] = {.lex_state = 0, .external_lex_state = 97}, - [3695] = {.lex_state = 0, .external_lex_state = 96}, + [3664] = {.lex_state = 2022}, + [3665] = {.lex_state = 5}, + [3666] = {.lex_state = 0, .external_lex_state = 91}, + [3667] = {.lex_state = 2022}, + [3668] = {.lex_state = 2022}, + [3669] = {.lex_state = 2022}, + [3670] = {.lex_state = 0, .external_lex_state = 60}, + [3671] = {.lex_state = 0, .external_lex_state = 70}, + [3672] = {.lex_state = 0, .external_lex_state = 69}, + [3673] = {.lex_state = 3}, + [3674] = {.lex_state = 2022, .external_lex_state = 55}, + [3675] = {.lex_state = 2022, .external_lex_state = 55}, + [3676] = {.lex_state = 2022}, + [3677] = {.lex_state = 0, .external_lex_state = 96}, + [3678] = {.lex_state = 2022}, + [3679] = {.lex_state = 2022}, + [3680] = {.lex_state = 2022}, + [3681] = {.lex_state = 2012}, + [3682] = {.lex_state = 2022}, + [3683] = {.lex_state = 2022}, + [3684] = {.lex_state = 2012}, + [3685] = {.lex_state = 1}, + [3686] = {.lex_state = 1}, + [3687] = {.lex_state = 1}, + [3688] = {.lex_state = 1}, + [3689] = {.lex_state = 3}, + [3690] = {.lex_state = 0, .external_lex_state = 97}, + [3691] = {.lex_state = 0, .external_lex_state = 98}, + [3692] = {.lex_state = 0, .external_lex_state = 99}, + [3693] = {.lex_state = 0, .external_lex_state = 100}, + [3694] = {.lex_state = 3}, + [3695] = {.lex_state = 2016}, [3696] = {.lex_state = 2022}, [3697] = {.lex_state = 2022}, - [3698] = {.lex_state = 5}, - [3699] = {.lex_state = 5}, - [3700] = {.lex_state = 2022}, - [3701] = {.lex_state = 2022}, - [3702] = {.lex_state = 5}, - [3703] = {.lex_state = 2012}, - [3704] = {.lex_state = 2022}, + [3698] = {.lex_state = 2022}, + [3699] = {.lex_state = 2022}, + [3700] = {.lex_state = 5}, + [3701] = {.lex_state = 1}, + [3702] = {.lex_state = 3}, + [3703] = {.lex_state = 5}, + [3704] = {.lex_state = 5}, [3705] = {.lex_state = 2022}, - [3706] = {.lex_state = 3}, - [3707] = {.lex_state = 5}, - [3708] = {.lex_state = 0, .external_lex_state = 96}, - [3709] = {.lex_state = 2012}, - [3710] = {.lex_state = 2012}, - [3711] = {.lex_state = 5}, - [3712] = {.lex_state = 0, .external_lex_state = 97}, - [3713] = {.lex_state = 2012}, - [3714] = {.lex_state = 0, .external_lex_state = 97}, - [3715] = {.lex_state = 2012}, - [3716] = {.lex_state = 1}, - [3717] = {.lex_state = 0, .external_lex_state = 97}, - [3718] = {.lex_state = 1}, - [3719] = {.lex_state = 0, .external_lex_state = 96}, - [3720] = {.lex_state = 1}, - [3721] = {.lex_state = 0, .external_lex_state = 96}, + [3706] = {.lex_state = 0, .external_lex_state = 92}, + [3707] = {.lex_state = 1983}, + [3708] = {.lex_state = 0}, + [3709] = {.lex_state = 5}, + [3710] = {.lex_state = 5}, + [3711] = {.lex_state = 1}, + [3712] = {.lex_state = 2022}, + [3713] = {.lex_state = 5}, + [3714] = {.lex_state = 2022}, + [3715] = {.lex_state = 2022}, + [3716] = {.lex_state = 0, .external_lex_state = 101}, + [3717] = {.lex_state = 2022}, + [3718] = {.lex_state = 2022}, + [3719] = {.lex_state = 1}, + [3720] = {.lex_state = 2012}, + [3721] = {.lex_state = 2012}, [3722] = {.lex_state = 1}, - [3723] = {.lex_state = 5}, - [3724] = {.lex_state = 0, .external_lex_state = 98}, - [3725] = {.lex_state = 0, .external_lex_state = 99}, - [3726] = {.lex_state = 2022}, - [3727] = {.lex_state = 2022}, - [3728] = {.lex_state = 0, .external_lex_state = 100}, - [3729] = {.lex_state = 0, .external_lex_state = 101}, - [3730] = {.lex_state = 0, .external_lex_state = 102}, - [3731] = {.lex_state = 5}, - [3732] = {.lex_state = 0, .external_lex_state = 103}, - [3733] = {.lex_state = 0, .external_lex_state = 104}, - [3734] = {.lex_state = 0, .external_lex_state = 105}, - [3735] = {.lex_state = 0, .external_lex_state = 106}, - [3736] = {.lex_state = 5}, - [3737] = {.lex_state = 0, .external_lex_state = 97}, - [3738] = {.lex_state = 5}, + [3723] = {.lex_state = 2022}, + [3724] = {.lex_state = 1}, + [3725] = {.lex_state = 1}, + [3726] = {.lex_state = 1}, + [3727] = {.lex_state = 1}, + [3728] = {.lex_state = 0, .external_lex_state = 102}, + [3729] = {.lex_state = 1}, + [3730] = {.lex_state = 1}, + [3731] = {.lex_state = 1}, + [3732] = {.lex_state = 2022}, + [3733] = {.lex_state = 1}, + [3734] = {.lex_state = 1}, + [3735] = {.lex_state = 0, .external_lex_state = 103}, + [3736] = {.lex_state = 0, .external_lex_state = 104}, + [3737] = {.lex_state = 2022}, + [3738] = {.lex_state = 2022}, [3739] = {.lex_state = 0, .external_lex_state = 96}, [3740] = {.lex_state = 0, .external_lex_state = 105}, - [3741] = {.lex_state = 5}, - [3742] = {.lex_state = 2022}, - [3743] = {.lex_state = 2022}, - [3744] = {.lex_state = 2022}, - [3745] = {.lex_state = 1}, - [3746] = {.lex_state = 2022}, - [3747] = {.lex_state = 2022}, + [3741] = {.lex_state = 0, .external_lex_state = 101}, + [3742] = {.lex_state = 3}, + [3743] = {.lex_state = 0, .external_lex_state = 97}, + [3744] = {.lex_state = 0, .external_lex_state = 98}, + [3745] = {.lex_state = 0, .external_lex_state = 99}, + [3746] = {.lex_state = 0, .external_lex_state = 100}, + [3747] = {.lex_state = 3}, [3748] = {.lex_state = 1}, - [3749] = {.lex_state = 1}, - [3750] = {.lex_state = 1}, - [3751] = {.lex_state = 1}, + [3749] = {.lex_state = 0, .external_lex_state = 102}, + [3750] = {.lex_state = 0, .external_lex_state = 102}, + [3751] = {.lex_state = 0, .external_lex_state = 51}, [3752] = {.lex_state = 1}, - [3753] = {.lex_state = 3}, + [3753] = {.lex_state = 2022}, [3754] = {.lex_state = 2022}, - [3755] = {.lex_state = 5}, - [3756] = {.lex_state = 0, .external_lex_state = 100}, - [3757] = {.lex_state = 1}, - [3758] = {.lex_state = 0, .external_lex_state = 96}, + [3755] = {.lex_state = 2022}, + [3756] = {.lex_state = 0, .external_lex_state = 60}, + [3757] = {.lex_state = 2022}, + [3758] = {.lex_state = 2022}, [3759] = {.lex_state = 1}, - [3760] = {.lex_state = 2022}, - [3761] = {.lex_state = 2022}, - [3762] = {.lex_state = 2022}, - [3763] = {.lex_state = 2022}, - [3764] = {.lex_state = 0, .external_lex_state = 50}, - [3765] = {.lex_state = 5}, - [3766] = {.lex_state = 3}, - [3767] = {.lex_state = 5}, - [3768] = {.lex_state = 3}, - [3769] = {.lex_state = 0, .external_lex_state = 96}, - [3770] = {.lex_state = 2012}, - [3771] = {.lex_state = 2012}, - [3772] = {.lex_state = 2012}, - [3773] = {.lex_state = 5}, - [3774] = {.lex_state = 5}, - [3775] = {.lex_state = 2012}, - [3776] = {.lex_state = 5}, - [3777] = {.lex_state = 5}, - [3778] = {.lex_state = 3}, + [3760] = {.lex_state = 1}, + [3761] = {.lex_state = 1}, + [3762] = {.lex_state = 1}, + [3763] = {.lex_state = 1}, + [3764] = {.lex_state = 3}, + [3765] = {.lex_state = 0, .external_lex_state = 103}, + [3766] = {.lex_state = 2022}, + [3767] = {.lex_state = 1}, + [3768] = {.lex_state = 2022}, + [3769] = {.lex_state = 2022}, + [3770] = {.lex_state = 2022}, + [3771] = {.lex_state = 2022}, + [3772] = {.lex_state = 2022}, + [3773] = {.lex_state = 2022}, + [3774] = {.lex_state = 2022}, + [3775] = {.lex_state = 0, .external_lex_state = 102}, + [3776] = {.lex_state = 1}, + [3777] = {.lex_state = 3}, + [3778] = {.lex_state = 5}, [3779] = {.lex_state = 5}, [3780] = {.lex_state = 1}, - [3781] = {.lex_state = 0}, - [3782] = {.lex_state = 0, .external_lex_state = 96}, - [3783] = {.lex_state = 0, .external_lex_state = 98}, - [3784] = {.lex_state = 2012}, - [3785] = {.lex_state = 2012}, - [3786] = {.lex_state = 1}, - [3787] = {.lex_state = 0, .external_lex_state = 99}, - [3788] = {.lex_state = 1}, - [3789] = {.lex_state = 2022}, - [3790] = {.lex_state = 1}, - [3791] = {.lex_state = 1}, - [3792] = {.lex_state = 0, .external_lex_state = 50}, - [3793] = {.lex_state = 1}, - [3794] = {.lex_state = 1}, - [3795] = {.lex_state = 1}, - [3796] = {.lex_state = 2022}, - [3797] = {.lex_state = 1}, - [3798] = {.lex_state = 0, .external_lex_state = 98}, - [3799] = {.lex_state = 0, .external_lex_state = 98}, - [3800] = {.lex_state = 0, .external_lex_state = 99}, - [3801] = {.lex_state = 2022}, - [3802] = {.lex_state = 2022}, - [3803] = {.lex_state = 0, .external_lex_state = 100}, - [3804] = {.lex_state = 0, .external_lex_state = 101}, - [3805] = {.lex_state = 0, .external_lex_state = 102}, - [3806] = {.lex_state = 0, .external_lex_state = 99}, - [3807] = {.lex_state = 0, .external_lex_state = 103}, - [3808] = {.lex_state = 0, .external_lex_state = 104}, - [3809] = {.lex_state = 0, .external_lex_state = 105}, - [3810] = {.lex_state = 0, .external_lex_state = 106}, - [3811] = {.lex_state = 2022}, + [3781] = {.lex_state = 0, .external_lex_state = 104}, + [3782] = {.lex_state = 5}, + [3783] = {.lex_state = 3}, + [3784] = {.lex_state = 5}, + [3785] = {.lex_state = 5}, + [3786] = {.lex_state = 5}, + [3787] = {.lex_state = 5}, + [3788] = {.lex_state = 5}, + [3789] = {.lex_state = 1}, + [3790] = {.lex_state = 5}, + [3791] = {.lex_state = 0, .external_lex_state = 103}, + [3792] = {.lex_state = 2022}, + [3793] = {.lex_state = 0, .external_lex_state = 104}, + [3794] = {.lex_state = 2022}, + [3795] = {.lex_state = 2012}, + [3796] = {.lex_state = 2012}, + [3797] = {.lex_state = 2022}, + [3798] = {.lex_state = 1}, + [3799] = {.lex_state = 0, .external_lex_state = 96}, + [3800] = {.lex_state = 0, .external_lex_state = 105}, + [3801] = {.lex_state = 0, .external_lex_state = 101}, + [3802] = {.lex_state = 1}, + [3803] = {.lex_state = 2022}, + [3804] = {.lex_state = 1}, + [3805] = {.lex_state = 0, .external_lex_state = 97}, + [3806] = {.lex_state = 1}, + [3807] = {.lex_state = 0, .external_lex_state = 98}, + [3808] = {.lex_state = 1}, + [3809] = {.lex_state = 0, .external_lex_state = 99}, + [3810] = {.lex_state = 0, .external_lex_state = 103}, + [3811] = {.lex_state = 0, .external_lex_state = 104}, [3812] = {.lex_state = 2022}, - [3813] = {.lex_state = 0, .external_lex_state = 96}, - [3814] = {.lex_state = 0, .external_lex_state = 100}, - [3815] = {.lex_state = 1}, + [3813] = {.lex_state = 2022}, + [3814] = {.lex_state = 0, .external_lex_state = 96}, + [3815] = {.lex_state = 0, .external_lex_state = 105}, [3816] = {.lex_state = 0, .external_lex_state = 101}, [3817] = {.lex_state = 2022}, - [3818] = {.lex_state = 2022}, - [3819] = {.lex_state = 2022}, - [3820] = {.lex_state = 0, .external_lex_state = 102}, - [3821] = {.lex_state = 2022}, - [3822] = {.lex_state = 2022}, - [3823] = {.lex_state = 0, .external_lex_state = 100}, - [3824] = {.lex_state = 1}, - [3825] = {.lex_state = 1}, - [3826] = {.lex_state = 1}, - [3827] = {.lex_state = 1}, - [3828] = {.lex_state = 3}, - [3829] = {.lex_state = 0, .external_lex_state = 103}, - [3830] = {.lex_state = 0, .external_lex_state = 104}, - [3831] = {.lex_state = 0, .external_lex_state = 105}, - [3832] = {.lex_state = 0, .external_lex_state = 106}, - [3833] = {.lex_state = 0, .external_lex_state = 106}, - [3834] = {.lex_state = 0, .external_lex_state = 101}, - [3835] = {.lex_state = 2022}, - [3836] = {.lex_state = 2022}, - [3837] = {.lex_state = 2022}, - [3838] = {.lex_state = 2022}, - [3839] = {.lex_state = 2012}, - [3840] = {.lex_state = 0, .external_lex_state = 102}, - [3841] = {.lex_state = 3}, + [3818] = {.lex_state = 0, .external_lex_state = 97}, + [3819] = {.lex_state = 0, .external_lex_state = 98}, + [3820] = {.lex_state = 0, .external_lex_state = 99}, + [3821] = {.lex_state = 0, .external_lex_state = 100}, + [3822] = {.lex_state = 0, .external_lex_state = 100}, + [3823] = {.lex_state = 5}, + [3824] = {.lex_state = 5}, + [3825] = {.lex_state = 0, .external_lex_state = 96}, + [3826] = {.lex_state = 0, .external_lex_state = 105}, + [3827] = {.lex_state = 5}, + [3828] = {.lex_state = 2022}, + [3829] = {.lex_state = 2022}, + [3830] = {.lex_state = 2022}, + [3831] = {.lex_state = 0, .external_lex_state = 101}, + [3832] = {.lex_state = 2022}, + [3833] = {.lex_state = 2022}, + [3834] = {.lex_state = 0, .external_lex_state = 97}, + [3835] = {.lex_state = 1}, + [3836] = {.lex_state = 1}, + [3837] = {.lex_state = 1}, + [3838] = {.lex_state = 1}, + [3839] = {.lex_state = 3}, + [3840] = {.lex_state = 0, .external_lex_state = 97}, + [3841] = {.lex_state = 0, .external_lex_state = 98}, [3842] = {.lex_state = 5}, - [3843] = {.lex_state = 0, .external_lex_state = 96}, - [3844] = {.lex_state = 0, .external_lex_state = 103}, - [3845] = {.lex_state = 2022}, + [3843] = {.lex_state = 0, .external_lex_state = 106}, + [3844] = {.lex_state = 0, .external_lex_state = 99}, + [3845] = {.lex_state = 0, .external_lex_state = 100}, [3846] = {.lex_state = 2022}, [3847] = {.lex_state = 2022}, - [3848] = {.lex_state = 5}, - [3849] = {.lex_state = 5}, - [3850] = {.lex_state = 0, .external_lex_state = 104}, + [3848] = {.lex_state = 2022}, + [3849] = {.lex_state = 2022}, + [3850] = {.lex_state = 0, .external_lex_state = 99}, [3851] = {.lex_state = 2022}, - [3852] = {.lex_state = 5}, - [3853] = {.lex_state = 2022}, - [3854] = {.lex_state = 5}, - [3855] = {.lex_state = 0, .external_lex_state = 96}, - [3856] = {.lex_state = 1}, - [3857] = {.lex_state = 1}, - [3858] = {.lex_state = 1}, - [3859] = {.lex_state = 2012}, - [3860] = {.lex_state = 2012}, - [3861] = {.lex_state = 1983}, - [3862] = {.lex_state = 2012}, - [3863] = {.lex_state = 2022}, - [3864] = {.lex_state = 2022}, - [3865] = {.lex_state = 1}, - [3866] = {.lex_state = 1}, - [3867] = {.lex_state = 1}, + [3852] = {.lex_state = 3}, + [3853] = {.lex_state = 5}, + [3854] = {.lex_state = 2012}, + [3855] = {.lex_state = 2022}, + [3856] = {.lex_state = 2012}, + [3857] = {.lex_state = 2022}, + [3858] = {.lex_state = 0, .external_lex_state = 106}, + [3859] = {.lex_state = 5}, + [3860] = {.lex_state = 5}, + [3861] = {.lex_state = 2022}, + [3862] = {.lex_state = 2022}, + [3863] = {.lex_state = 5}, + [3864] = {.lex_state = 1}, + [3865] = {.lex_state = 2022}, + [3866] = {.lex_state = 3}, + [3867] = {.lex_state = 0, .external_lex_state = 102}, [3868] = {.lex_state = 1}, - [3869] = {.lex_state = 3}, - [3870] = {.lex_state = 1}, - [3871] = {.lex_state = 0, .external_lex_state = 96}, - [3872] = {.lex_state = 1}, - [3873] = {.lex_state = 0, .external_lex_state = 105}, - [3874] = {.lex_state = 0, .external_lex_state = 98}, - [3875] = {.lex_state = 0, .external_lex_state = 99}, - [3876] = {.lex_state = 2022}, - [3877] = {.lex_state = 2022}, - [3878] = {.lex_state = 0, .external_lex_state = 100}, - [3879] = {.lex_state = 0, .external_lex_state = 101}, - [3880] = {.lex_state = 0, .external_lex_state = 102}, - [3881] = {.lex_state = 2022}, - [3882] = {.lex_state = 0, .external_lex_state = 103}, - [3883] = {.lex_state = 0, .external_lex_state = 104}, - [3884] = {.lex_state = 0, .external_lex_state = 105}, - [3885] = {.lex_state = 0, .external_lex_state = 106}, - [3886] = {.lex_state = 1}, - [3887] = {.lex_state = 0, .external_lex_state = 106}, + [3869] = {.lex_state = 1}, + [3870] = {.lex_state = 2012}, + [3871] = {.lex_state = 2012}, + [3872] = {.lex_state = 11}, + [3873] = {.lex_state = 0, .external_lex_state = 106}, + [3874] = {.lex_state = 0, .external_lex_state = 102}, + [3875] = {.lex_state = 1}, + [3876] = {.lex_state = 0, .external_lex_state = 102}, + [3877] = {.lex_state = 1}, + [3878] = {.lex_state = 0, .external_lex_state = 60}, + [3879] = {.lex_state = 1}, + [3880] = {.lex_state = 1}, + [3881] = {.lex_state = 1}, + [3882] = {.lex_state = 0, .external_lex_state = 102}, + [3883] = {.lex_state = 1}, + [3884] = {.lex_state = 0, .external_lex_state = 61}, + [3885] = {.lex_state = 0, .external_lex_state = 103}, + [3886] = {.lex_state = 0, .external_lex_state = 104}, + [3887] = {.lex_state = 2022}, [3888] = {.lex_state = 2022}, - [3889] = {.lex_state = 5}, - [3890] = {.lex_state = 0, .external_lex_state = 96}, - [3891] = {.lex_state = 2022}, - [3892] = {.lex_state = 2022}, - [3893] = {.lex_state = 2022}, - [3894] = {.lex_state = 2022}, - [3895] = {.lex_state = 2012}, - [3896] = {.lex_state = 2022}, - [3897] = {.lex_state = 2022}, - [3898] = {.lex_state = 2012}, - [3899] = {.lex_state = 1}, - [3900] = {.lex_state = 1}, - [3901] = {.lex_state = 1}, - [3902] = {.lex_state = 1}, - [3903] = {.lex_state = 3}, + [3889] = {.lex_state = 0, .external_lex_state = 96}, + [3890] = {.lex_state = 0, .external_lex_state = 105}, + [3891] = {.lex_state = 0, .external_lex_state = 101}, + [3892] = {.lex_state = 1}, + [3893] = {.lex_state = 0, .external_lex_state = 97}, + [3894] = {.lex_state = 0, .external_lex_state = 98}, + [3895] = {.lex_state = 0, .external_lex_state = 99}, + [3896] = {.lex_state = 0, .external_lex_state = 100}, + [3897] = {.lex_state = 0, .external_lex_state = 102}, + [3898] = {.lex_state = 1}, + [3899] = {.lex_state = 0, .external_lex_state = 103}, + [3900] = {.lex_state = 0, .external_lex_state = 104}, + [3901] = {.lex_state = 2012}, + [3902] = {.lex_state = 2022}, + [3903] = {.lex_state = 2022}, [3904] = {.lex_state = 2022}, [3905] = {.lex_state = 2022}, - [3906] = {.lex_state = 2022}, - [3907] = {.lex_state = 1}, - [3908] = {.lex_state = 1}, - [3909] = {.lex_state = 3}, - [3910] = {.lex_state = 2022}, - [3911] = {.lex_state = 2022}, - [3912] = {.lex_state = 2022}, - [3913] = {.lex_state = 2022}, - [3914] = {.lex_state = 0, .external_lex_state = 50}, - [3915] = {.lex_state = 5}, - [3916] = {.lex_state = 3}, - [3917] = {.lex_state = 5}, - [3918] = {.lex_state = 0, .external_lex_state = 98}, - [3919] = {.lex_state = 0, .external_lex_state = 102}, - [3920] = {.lex_state = 0, .external_lex_state = 96}, - [3921] = {.lex_state = 0, .external_lex_state = 96}, - [3922] = {.lex_state = 1}, - [3923] = {.lex_state = 5}, - [3924] = {.lex_state = 5}, - [3925] = {.lex_state = 0, .external_lex_state = 94}, - [3926] = {.lex_state = 1}, - [3927] = {.lex_state = 5}, - [3928] = {.lex_state = 1}, - [3929] = {.lex_state = 5}, - [3930] = {.lex_state = 2022}, - [3931] = {.lex_state = 2022}, - [3932] = {.lex_state = 5}, - [3933] = {.lex_state = 2022}, - [3934] = {.lex_state = 2022}, - [3935] = {.lex_state = 2022}, - [3936] = {.lex_state = 2022}, - [3937] = {.lex_state = 2022}, - [3938] = {.lex_state = 2022}, - [3939] = {.lex_state = 2022}, - [3940] = {.lex_state = 2022}, + [3906] = {.lex_state = 0, .external_lex_state = 102}, + [3907] = {.lex_state = 2022}, + [3908] = {.lex_state = 2022}, + [3909] = {.lex_state = 2022}, + [3910] = {.lex_state = 1}, + [3911] = {.lex_state = 1}, + [3912] = {.lex_state = 1}, + [3913] = {.lex_state = 1}, + [3914] = {.lex_state = 3}, + [3915] = {.lex_state = 0, .external_lex_state = 96}, + [3916] = {.lex_state = 2012}, + [3917] = {.lex_state = 2022}, + [3918] = {.lex_state = 0, .external_lex_state = 105}, + [3919] = {.lex_state = 0, .external_lex_state = 101}, + [3920] = {.lex_state = 0, .external_lex_state = 98}, + [3921] = {.lex_state = 2022}, + [3922] = {.lex_state = 2022}, + [3923] = {.lex_state = 2022}, + [3924] = {.lex_state = 2022}, + [3925] = {.lex_state = 2022}, + [3926] = {.lex_state = 0, .external_lex_state = 97}, + [3927] = {.lex_state = 3}, + [3928] = {.lex_state = 5}, + [3929] = {.lex_state = 0, .external_lex_state = 102}, + [3930] = {.lex_state = 5}, + [3931] = {.lex_state = 0, .external_lex_state = 98}, + [3932] = {.lex_state = 0, .external_lex_state = 107}, + [3933] = {.lex_state = 0, .external_lex_state = 99}, + [3934] = {.lex_state = 5}, + [3935] = {.lex_state = 5}, + [3936] = {.lex_state = 0, .external_lex_state = 100}, + [3937] = {.lex_state = 1}, + [3938] = {.lex_state = 5}, + [3939] = {.lex_state = 0, .external_lex_state = 51}, + [3940] = {.lex_state = 0, .external_lex_state = 99}, [3941] = {.lex_state = 2022}, - [3942] = {.lex_state = 5}, - [3943] = {.lex_state = 2022}, + [3942] = {.lex_state = 2022}, + [3943] = {.lex_state = 1}, [3944] = {.lex_state = 2022}, - [3945] = {.lex_state = 0, .external_lex_state = 98}, - [3946] = {.lex_state = 0, .external_lex_state = 99}, + [3945] = {.lex_state = 2022}, + [3946] = {.lex_state = 1}, [3947] = {.lex_state = 2022}, [3948] = {.lex_state = 2022}, [3949] = {.lex_state = 2022}, - [3950] = {.lex_state = 0, .external_lex_state = 101}, - [3951] = {.lex_state = 2022}, + [3950] = {.lex_state = 2022}, + [3951] = {.lex_state = 1}, [3952] = {.lex_state = 1}, - [3953] = {.lex_state = 2012}, - [3954] = {.lex_state = 2012}, - [3955] = {.lex_state = 2012}, + [3953] = {.lex_state = 0, .external_lex_state = 102}, + [3954] = {.lex_state = 0, .external_lex_state = 100}, + [3955] = {.lex_state = 3}, [3956] = {.lex_state = 2022}, [3957] = {.lex_state = 2022}, - [3958] = {.lex_state = 1}, - [3959] = {.lex_state = 2016}, - [3960] = {.lex_state = 2016}, - [3961] = {.lex_state = 1}, + [3958] = {.lex_state = 2022}, + [3959] = {.lex_state = 2022}, + [3960] = {.lex_state = 0, .external_lex_state = 106}, + [3961] = {.lex_state = 2022}, [3962] = {.lex_state = 2022}, [3963] = {.lex_state = 1}, - [3964] = {.lex_state = 1}, - [3965] = {.lex_state = 1}, - [3966] = {.lex_state = 1}, + [3964] = {.lex_state = 2022}, + [3965] = {.lex_state = 2022}, + [3966] = {.lex_state = 2022}, [3967] = {.lex_state = 1}, - [3968] = {.lex_state = 0, .external_lex_state = 98}, + [3968] = {.lex_state = 2022}, [3969] = {.lex_state = 1}, - [3970] = {.lex_state = 1983}, - [3971] = {.lex_state = 9}, - [3972] = {.lex_state = 0, .external_lex_state = 100}, - [3973] = {.lex_state = 3}, - [3974] = {.lex_state = 0, .external_lex_state = 101}, - [3975] = {.lex_state = 0, .external_lex_state = 102}, - [3976] = {.lex_state = 0, .external_lex_state = 99}, - [3977] = {.lex_state = 1}, + [3970] = {.lex_state = 2016}, + [3971] = {.lex_state = 2016}, + [3972] = {.lex_state = 1}, + [3973] = {.lex_state = 1}, + [3974] = {.lex_state = 0, .external_lex_state = 102}, + [3975] = {.lex_state = 0, .external_lex_state = 106}, + [3976] = {.lex_state = 3}, + [3977] = {.lex_state = 2022}, [3978] = {.lex_state = 2022}, - [3979] = {.lex_state = 2022}, - [3980] = {.lex_state = 0, .external_lex_state = 100}, - [3981] = {.lex_state = 0, .external_lex_state = 101}, - [3982] = {.lex_state = 0, .external_lex_state = 102}, - [3983] = {.lex_state = 1983}, + [3979] = {.lex_state = 0, .external_lex_state = 102}, + [3980] = {.lex_state = 2022}, + [3981] = {.lex_state = 1983}, + [3982] = {.lex_state = 9}, + [3983] = {.lex_state = 2022}, [3984] = {.lex_state = 2022}, - [3985] = {.lex_state = 0, .external_lex_state = 103}, - [3986] = {.lex_state = 0, .external_lex_state = 104}, - [3987] = {.lex_state = 1}, - [3988] = {.lex_state = 2022}, - [3989] = {.lex_state = 5}, - [3990] = {.lex_state = 1}, - [3991] = {.lex_state = 2022}, - [3992] = {.lex_state = 0, .external_lex_state = 98}, - [3993] = {.lex_state = 0, .external_lex_state = 99}, - [3994] = {.lex_state = 2022}, - [3995] = {.lex_state = 2022}, - [3996] = {.lex_state = 0, .external_lex_state = 105}, - [3997] = {.lex_state = 0, .external_lex_state = 106}, - [3998] = {.lex_state = 0, .external_lex_state = 100}, - [3999] = {.lex_state = 0, .external_lex_state = 101}, - [4000] = {.lex_state = 0, .external_lex_state = 102}, - [4001] = {.lex_state = 1}, - [4002] = {.lex_state = 0, .external_lex_state = 103}, - [4003] = {.lex_state = 5}, - [4004] = {.lex_state = 0, .external_lex_state = 104}, - [4005] = {.lex_state = 0, .external_lex_state = 105}, - [4006] = {.lex_state = 0, .external_lex_state = 106}, - [4007] = {.lex_state = 0, .external_lex_state = 96}, - [4008] = {.lex_state = 0, .external_lex_state = 61}, - [4009] = {.lex_state = 2022}, - [4010] = {.lex_state = 1}, + [3985] = {.lex_state = 0, .external_lex_state = 108}, + [3986] = {.lex_state = 1}, + [3987] = {.lex_state = 2022}, + [3988] = {.lex_state = 0, .external_lex_state = 102}, + [3989] = {.lex_state = 1}, + [3990] = {.lex_state = 0, .external_lex_state = 102}, + [3991] = {.lex_state = 0, .external_lex_state = 102}, + [3992] = {.lex_state = 2022}, + [3993] = {.lex_state = 0, .external_lex_state = 102}, + [3994] = {.lex_state = 0, .external_lex_state = 102}, + [3995] = {.lex_state = 0, .external_lex_state = 102}, + [3996] = {.lex_state = 1}, + [3997] = {.lex_state = 2012}, + [3998] = {.lex_state = 1}, + [3999] = {.lex_state = 0, .external_lex_state = 102}, + [4000] = {.lex_state = 2022}, + [4001] = {.lex_state = 5}, + [4002] = {.lex_state = 5}, + [4003] = {.lex_state = 2022}, + [4004] = {.lex_state = 2022}, + [4005] = {.lex_state = 3}, + [4006] = {.lex_state = 2022}, + [4007] = {.lex_state = 2022}, + [4008] = {.lex_state = 0, .external_lex_state = 103}, + [4009] = {.lex_state = 0, .external_lex_state = 104}, + [4010] = {.lex_state = 2022}, [4011] = {.lex_state = 2022}, - [4012] = {.lex_state = 0, .external_lex_state = 94}, - [4013] = {.lex_state = 2016}, - [4014] = {.lex_state = 2016}, - [4015] = {.lex_state = 0, .external_lex_state = 103}, - [4016] = {.lex_state = 0, .external_lex_state = 104}, - [4017] = {.lex_state = 0, .external_lex_state = 105}, - [4018] = {.lex_state = 0, .external_lex_state = 106}, - [4019] = {.lex_state = 5}, + [4012] = {.lex_state = 2022}, + [4013] = {.lex_state = 2022}, + [4014] = {.lex_state = 3}, + [4015] = {.lex_state = 2022}, + [4016] = {.lex_state = 5}, + [4017] = {.lex_state = 0, .external_lex_state = 102}, + [4018] = {.lex_state = 0, .external_lex_state = 104}, + [4019] = {.lex_state = 1}, [4020] = {.lex_state = 2022}, - [4021] = {.lex_state = 2022}, - [4022] = {.lex_state = 2022}, - [4023] = {.lex_state = 3}, - [4024] = {.lex_state = 1983}, - [4025] = {.lex_state = 9}, - [4026] = {.lex_state = 1}, - [4027] = {.lex_state = 2022}, - [4028] = {.lex_state = 0, .external_lex_state = 96}, - [4029] = {.lex_state = 2022}, - [4030] = {.lex_state = 2022}, - [4031] = {.lex_state = 2022}, - [4032] = {.lex_state = 1}, - [4033] = {.lex_state = 2022}, - [4034] = {.lex_state = 2022}, - [4035] = {.lex_state = 2022}, - [4036] = {.lex_state = 2022}, - [4037] = {.lex_state = 1}, - [4038] = {.lex_state = 2022}, - [4039] = {.lex_state = 2022}, - [4040] = {.lex_state = 1}, - [4041] = {.lex_state = 1}, - [4042] = {.lex_state = 1}, - [4043] = {.lex_state = 3}, + [4021] = {.lex_state = 1}, + [4022] = {.lex_state = 5}, + [4023] = {.lex_state = 2022}, + [4024] = {.lex_state = 5}, + [4025] = {.lex_state = 2016}, + [4026] = {.lex_state = 2016}, + [4027] = {.lex_state = 0, .external_lex_state = 96}, + [4028] = {.lex_state = 1}, + [4029] = {.lex_state = 1}, + [4030] = {.lex_state = 5}, + [4031] = {.lex_state = 9}, + [4032] = {.lex_state = 0, .external_lex_state = 106}, + [4033] = {.lex_state = 3}, + [4034] = {.lex_state = 5}, + [4035] = {.lex_state = 0, .external_lex_state = 105}, + [4036] = {.lex_state = 1983}, + [4037] = {.lex_state = 9}, + [4038] = {.lex_state = 0, .external_lex_state = 101}, + [4039] = {.lex_state = 3}, + [4040] = {.lex_state = 0, .external_lex_state = 108}, + [4041] = {.lex_state = 5}, + [4042] = {.lex_state = 0, .external_lex_state = 97}, + [4043] = {.lex_state = 0, .external_lex_state = 102}, [4044] = {.lex_state = 1}, - [4045] = {.lex_state = 0, .external_lex_state = 96}, - [4046] = {.lex_state = 5}, - [4047] = {.lex_state = 2022}, - [4048] = {.lex_state = 1}, - [4049] = {.lex_state = 1}, - [4050] = {.lex_state = 2022}, - [4051] = {.lex_state = 2022}, - [4052] = {.lex_state = 2022}, - [4053] = {.lex_state = 2022}, - [4054] = {.lex_state = 1}, - [4055] = {.lex_state = 2022}, - [4056] = {.lex_state = 2022}, - [4057] = {.lex_state = 2022}, - [4058] = {.lex_state = 1}, - [4059] = {.lex_state = 3}, - [4060] = {.lex_state = 5}, - [4061] = {.lex_state = 1}, - [4062] = {.lex_state = 2016}, - [4063] = {.lex_state = 2016}, - [4064] = {.lex_state = 2022}, - [4065] = {.lex_state = 0, .external_lex_state = 96}, - [4066] = {.lex_state = 5}, - [4067] = {.lex_state = 0, .external_lex_state = 96}, - [4068] = {.lex_state = 3}, - [4069] = {.lex_state = 0, .external_lex_state = 96}, - [4070] = {.lex_state = 5}, - [4071] = {.lex_state = 0, .external_lex_state = 96}, + [4045] = {.lex_state = 0, .external_lex_state = 98}, + [4046] = {.lex_state = 2012}, + [4047] = {.lex_state = 0, .external_lex_state = 99}, + [4048] = {.lex_state = 0, .external_lex_state = 102}, + [4049] = {.lex_state = 0, .external_lex_state = 100}, + [4050] = {.lex_state = 5}, + [4051] = {.lex_state = 5}, + [4052] = {.lex_state = 1}, + [4053] = {.lex_state = 0, .external_lex_state = 96}, + [4054] = {.lex_state = 2022}, + [4055] = {.lex_state = 2012}, + [4056] = {.lex_state = 2012}, + [4057] = {.lex_state = 2012}, + [4058] = {.lex_state = 5}, + [4059] = {.lex_state = 5}, + [4060] = {.lex_state = 0, .external_lex_state = 107}, + [4061] = {.lex_state = 2022}, + [4062] = {.lex_state = 2022}, + [4063] = {.lex_state = 0, .external_lex_state = 102}, + [4064] = {.lex_state = 1}, + [4065] = {.lex_state = 3}, + [4066] = {.lex_state = 1}, + [4067] = {.lex_state = 2022}, + [4068] = {.lex_state = 5}, + [4069] = {.lex_state = 1}, + [4070] = {.lex_state = 0, .external_lex_state = 51}, + [4071] = {.lex_state = 1}, [4072] = {.lex_state = 5}, - [4073] = {.lex_state = 1983}, - [4074] = {.lex_state = 9}, - [4075] = {.lex_state = 1983}, - [4076] = {.lex_state = 0, .external_lex_state = 60}, - [4077] = {.lex_state = 5}, + [4073] = {.lex_state = 0, .external_lex_state = 103}, + [4074] = {.lex_state = 0, .external_lex_state = 104}, + [4075] = {.lex_state = 2016}, + [4076] = {.lex_state = 2016}, + [4077] = {.lex_state = 2022}, [4078] = {.lex_state = 2022}, - [4079] = {.lex_state = 1}, - [4080] = {.lex_state = 1}, - [4081] = {.lex_state = 3}, - [4082] = {.lex_state = 1}, - [4083] = {.lex_state = 5}, + [4079] = {.lex_state = 2022}, + [4080] = {.lex_state = 5}, + [4081] = {.lex_state = 5}, + [4082] = {.lex_state = 2022}, + [4083] = {.lex_state = 2016}, [4084] = {.lex_state = 1}, - [4085] = {.lex_state = 3}, - [4086] = {.lex_state = 0, .external_lex_state = 97}, - [4087] = {.lex_state = 0, .external_lex_state = 98}, - [4088] = {.lex_state = 2016}, - [4089] = {.lex_state = 2016}, - [4090] = {.lex_state = 0, .external_lex_state = 96}, - [4091] = {.lex_state = 5}, - [4092] = {.lex_state = 0, .external_lex_state = 96}, - [4093] = {.lex_state = 2012}, - [4094] = {.lex_state = 0, .external_lex_state = 96}, - [4095] = {.lex_state = 2012}, - [4096] = {.lex_state = 5}, - [4097] = {.lex_state = 2012}, - [4098] = {.lex_state = 1983}, - [4099] = {.lex_state = 9}, - [4100] = {.lex_state = 1}, - [4101] = {.lex_state = 0, .external_lex_state = 99}, - [4102] = {.lex_state = 0, .external_lex_state = 98}, - [4103] = {.lex_state = 1}, - [4104] = {.lex_state = 0, .external_lex_state = 99}, - [4105] = {.lex_state = 1}, - [4106] = {.lex_state = 2022}, - [4107] = {.lex_state = 2022}, - [4108] = {.lex_state = 2022}, - [4109] = {.lex_state = 1}, - [4110] = {.lex_state = 5}, - [4111] = {.lex_state = 2022}, - [4112] = {.lex_state = 1}, - [4113] = {.lex_state = 2016}, - [4114] = {.lex_state = 2016}, - [4115] = {.lex_state = 2022}, - [4116] = {.lex_state = 2022}, + [4085] = {.lex_state = 0, .external_lex_state = 102}, + [4086] = {.lex_state = 1983}, + [4087] = {.lex_state = 9}, + [4088] = {.lex_state = 0, .external_lex_state = 102}, + [4089] = {.lex_state = 2022}, + [4090] = {.lex_state = 0, .external_lex_state = 102}, + [4091] = {.lex_state = 0, .external_lex_state = 105}, + [4092] = {.lex_state = 0, .external_lex_state = 101}, + [4093] = {.lex_state = 2022}, + [4094] = {.lex_state = 0, .external_lex_state = 97}, + [4095] = {.lex_state = 1}, + [4096] = {.lex_state = 1}, + [4097] = {.lex_state = 0, .external_lex_state = 98}, + [4098] = {.lex_state = 0, .external_lex_state = 99}, + [4099] = {.lex_state = 1}, + [4100] = {.lex_state = 0, .external_lex_state = 100}, + [4101] = {.lex_state = 2016}, + [4102] = {.lex_state = 2016}, + [4103] = {.lex_state = 2022}, + [4104] = {.lex_state = 5}, + [4105] = {.lex_state = 2022}, + [4106] = {.lex_state = 0, .external_lex_state = 102}, + [4107] = {.lex_state = 0, .external_lex_state = 102}, + [4108] = {.lex_state = 0, .external_lex_state = 102}, + [4109] = {.lex_state = 0, .external_lex_state = 102}, + [4110] = {.lex_state = 0, .external_lex_state = 102}, + [4111] = {.lex_state = 1983}, + [4112] = {.lex_state = 9}, + [4113] = {.lex_state = 0, .external_lex_state = 102}, + [4114] = {.lex_state = 0, .external_lex_state = 60}, + [4115] = {.lex_state = 0, .external_lex_state = 60}, + [4116] = {.lex_state = 0, .external_lex_state = 97}, [4117] = {.lex_state = 2022}, - [4118] = {.lex_state = 0, .external_lex_state = 99}, - [4119] = {.lex_state = 0, .external_lex_state = 96}, - [4120] = {.lex_state = 0, .external_lex_state = 98}, - [4121] = {.lex_state = 2022}, - [4122] = {.lex_state = 0, .external_lex_state = 97}, - [4123] = {.lex_state = 1983}, - [4124] = {.lex_state = 9}, - [4125] = {.lex_state = 0, .external_lex_state = 99}, - [4126] = {.lex_state = 2022}, - [4127] = {.lex_state = 2022}, - [4128] = {.lex_state = 0, .external_lex_state = 100}, - [4129] = {.lex_state = 0, .external_lex_state = 101}, - [4130] = {.lex_state = 0, .external_lex_state = 102}, - [4131] = {.lex_state = 3}, - [4132] = {.lex_state = 5}, - [4133] = {.lex_state = 0, .external_lex_state = 100}, - [4134] = {.lex_state = 0, .external_lex_state = 103}, + [4118] = {.lex_state = 0, .external_lex_state = 102}, + [4119] = {.lex_state = 0, .external_lex_state = 106}, + [4120] = {.lex_state = 3}, + [4121] = {.lex_state = 0, .external_lex_state = 103}, + [4122] = {.lex_state = 2022}, + [4123] = {.lex_state = 2022}, + [4124] = {.lex_state = 5}, + [4125] = {.lex_state = 2022}, + [4126] = {.lex_state = 2016}, + [4127] = {.lex_state = 2016}, + [4128] = {.lex_state = 5}, + [4129] = {.lex_state = 5}, + [4130] = {.lex_state = 2022}, + [4131] = {.lex_state = 2022}, + [4132] = {.lex_state = 3}, + [4133] = {.lex_state = 1}, + [4134] = {.lex_state = 2012}, [4135] = {.lex_state = 2022}, - [4136] = {.lex_state = 0, .external_lex_state = 101}, - [4137] = {.lex_state = 0, .external_lex_state = 105}, - [4138] = {.lex_state = 2016}, - [4139] = {.lex_state = 2016}, - [4140] = {.lex_state = 0, .external_lex_state = 102}, + [4136] = {.lex_state = 1983}, + [4137] = {.lex_state = 9}, + [4138] = {.lex_state = 1}, + [4139] = {.lex_state = 2012}, + [4140] = {.lex_state = 2012}, [4141] = {.lex_state = 1}, [4142] = {.lex_state = 1}, - [4143] = {.lex_state = 1}, - [4144] = {.lex_state = 1}, - [4145] = {.lex_state = 1}, - [4146] = {.lex_state = 0, .external_lex_state = 96}, - [4147] = {.lex_state = 3}, - [4148] = {.lex_state = 1983}, - [4149] = {.lex_state = 9}, - [4150] = {.lex_state = 0, .external_lex_state = 106}, - [4151] = {.lex_state = 2022}, - [4152] = {.lex_state = 0, .external_lex_state = 96}, + [4143] = {.lex_state = 0, .external_lex_state = 102}, + [4144] = {.lex_state = 3}, + [4145] = {.lex_state = 0, .external_lex_state = 104}, + [4146] = {.lex_state = 2022}, + [4147] = {.lex_state = 5}, + [4148] = {.lex_state = 2022}, + [4149] = {.lex_state = 1}, + [4150] = {.lex_state = 2022}, + [4151] = {.lex_state = 2016}, + [4152] = {.lex_state = 2016}, [4153] = {.lex_state = 2022}, - [4154] = {.lex_state = 0, .external_lex_state = 100}, - [4155] = {.lex_state = 0, .external_lex_state = 103}, + [4154] = {.lex_state = 0, .external_lex_state = 102}, + [4155] = {.lex_state = 2022}, [4156] = {.lex_state = 1}, - [4157] = {.lex_state = 5}, - [4158] = {.lex_state = 5}, + [4157] = {.lex_state = 2022}, + [4158] = {.lex_state = 0, .external_lex_state = 102}, [4159] = {.lex_state = 2022}, [4160] = {.lex_state = 2022}, - [4161] = {.lex_state = 0, .external_lex_state = 104}, - [4162] = {.lex_state = 2022}, - [4163] = {.lex_state = 2016}, - [4164] = {.lex_state = 2016}, - [4165] = {.lex_state = 0, .external_lex_state = 96}, - [4166] = {.lex_state = 0, .external_lex_state = 97}, - [4167] = {.lex_state = 0, .external_lex_state = 105}, - [4168] = {.lex_state = 2022}, - [4169] = {.lex_state = 2022}, - [4170] = {.lex_state = 0, .external_lex_state = 96}, - [4171] = {.lex_state = 2016}, + [4161] = {.lex_state = 1983}, + [4162] = {.lex_state = 9}, + [4163] = {.lex_state = 2022}, + [4164] = {.lex_state = 2022}, + [4165] = {.lex_state = 2022}, + [4166] = {.lex_state = 2022}, + [4167] = {.lex_state = 5}, + [4168] = {.lex_state = 5}, + [4169] = {.lex_state = 3}, + [4170] = {.lex_state = 0, .external_lex_state = 102}, + [4171] = {.lex_state = 2022}, [4172] = {.lex_state = 5}, - [4173] = {.lex_state = 1983}, - [4174] = {.lex_state = 9}, - [4175] = {.lex_state = 2016}, - [4176] = {.lex_state = 1}, - [4177] = {.lex_state = 1}, - [4178] = {.lex_state = 1}, - [4179] = {.lex_state = 1}, - [4180] = {.lex_state = 3}, - [4181] = {.lex_state = 2012}, - [4182] = {.lex_state = 0, .external_lex_state = 106}, - [4183] = {.lex_state = 0, .external_lex_state = 96}, - [4184] = {.lex_state = 2012}, - [4185] = {.lex_state = 2022}, - [4186] = {.lex_state = 0, .external_lex_state = 96}, - [4187] = {.lex_state = 2022}, - [4188] = {.lex_state = 2016}, - [4189] = {.lex_state = 2016}, - [4190] = {.lex_state = 0, .external_lex_state = 96}, - [4191] = {.lex_state = 0, .external_lex_state = 60}, - [4192] = {.lex_state = 0, .external_lex_state = 96}, - [4193] = {.lex_state = 0, .external_lex_state = 60}, - [4194] = {.lex_state = 2022}, + [4173] = {.lex_state = 2022}, + [4174] = {.lex_state = 3}, + [4175] = {.lex_state = 1983}, + [4176] = {.lex_state = 2016}, + [4177] = {.lex_state = 2016}, + [4178] = {.lex_state = 2022}, + [4179] = {.lex_state = 5}, + [4180] = {.lex_state = 1}, + [4181] = {.lex_state = 1}, + [4182] = {.lex_state = 5}, + [4183] = {.lex_state = 5}, + [4184] = {.lex_state = 0, .external_lex_state = 102}, + [4185] = {.lex_state = 1}, + [4186] = {.lex_state = 1983}, + [4187] = {.lex_state = 9}, + [4188] = {.lex_state = 5}, + [4189] = {.lex_state = 1}, + [4190] = {.lex_state = 5}, + [4191] = {.lex_state = 1}, + [4192] = {.lex_state = 1}, + [4193] = {.lex_state = 1}, + [4194] = {.lex_state = 5}, [4195] = {.lex_state = 2022}, [4196] = {.lex_state = 2022}, - [4197] = {.lex_state = 2022}, - [4198] = {.lex_state = 1983}, - [4199] = {.lex_state = 9}, - [4200] = {.lex_state = 0, .external_lex_state = 50}, - [4201] = {.lex_state = 2022}, - [4202] = {.lex_state = 2022}, - [4203] = {.lex_state = 0, .external_lex_state = 96}, - [4204] = {.lex_state = 0, .external_lex_state = 96}, - [4205] = {.lex_state = 3}, - [4206] = {.lex_state = 5}, - [4207] = {.lex_state = 0, .external_lex_state = 96}, - [4208] = {.lex_state = 5}, - [4209] = {.lex_state = 0, .external_lex_state = 96}, + [4197] = {.lex_state = 1}, + [4198] = {.lex_state = 0, .external_lex_state = 106}, + [4199] = {.lex_state = 0, .external_lex_state = 108}, + [4200] = {.lex_state = 2022}, + [4201] = {.lex_state = 2016}, + [4202] = {.lex_state = 2016}, + [4203] = {.lex_state = 0, .external_lex_state = 102}, + [4204] = {.lex_state = 0, .external_lex_state = 103}, + [4205] = {.lex_state = 2012}, + [4206] = {.lex_state = 0, .external_lex_state = 102}, + [4207] = {.lex_state = 0, .external_lex_state = 104}, + [4208] = {.lex_state = 0, .external_lex_state = 105}, + [4209] = {.lex_state = 1}, [4210] = {.lex_state = 2022}, - [4211] = {.lex_state = 3}, - [4212] = {.lex_state = 1}, - [4213] = {.lex_state = 2016}, - [4214] = {.lex_state = 2016}, - [4215] = {.lex_state = 2022}, - [4216] = {.lex_state = 2022}, + [4211] = {.lex_state = 1983}, + [4212] = {.lex_state = 9}, + [4213] = {.lex_state = 0, .external_lex_state = 102}, + [4214] = {.lex_state = 2022}, + [4215] = {.lex_state = 0, .external_lex_state = 96}, + [4216] = {.lex_state = 0, .external_lex_state = 105}, [4217] = {.lex_state = 2022}, - [4218] = {.lex_state = 0, .external_lex_state = 96}, - [4219] = {.lex_state = 0, .external_lex_state = 96}, - [4220] = {.lex_state = 0, .external_lex_state = 96}, - [4221] = {.lex_state = 0, .external_lex_state = 96}, - [4222] = {.lex_state = 0, .external_lex_state = 96}, - [4223] = {.lex_state = 1983}, - [4224] = {.lex_state = 9}, - [4225] = {.lex_state = 0, .external_lex_state = 96}, - [4226] = {.lex_state = 0, .external_lex_state = 96}, - [4227] = {.lex_state = 1}, - [4228] = {.lex_state = 5}, - [4229] = {.lex_state = 5}, - [4230] = {.lex_state = 0, .external_lex_state = 96}, - [4231] = {.lex_state = 1}, - [4232] = {.lex_state = 2022}, - [4233] = {.lex_state = 2012}, - [4234] = {.lex_state = 5}, - [4235] = {.lex_state = 2022}, - [4236] = {.lex_state = 2012}, - [4237] = {.lex_state = 0, .external_lex_state = 96}, - [4238] = {.lex_state = 2016}, - [4239] = {.lex_state = 2016}, - [4240] = {.lex_state = 2022}, + [4218] = {.lex_state = 0, .external_lex_state = 101}, + [4219] = {.lex_state = 0, .external_lex_state = 101}, + [4220] = {.lex_state = 2012}, + [4221] = {.lex_state = 5}, + [4222] = {.lex_state = 5}, + [4223] = {.lex_state = 2012}, + [4224] = {.lex_state = 2012}, + [4225] = {.lex_state = 2012}, + [4226] = {.lex_state = 2016}, + [4227] = {.lex_state = 2016}, + [4228] = {.lex_state = 0, .external_lex_state = 102}, + [4229] = {.lex_state = 0, .external_lex_state = 98}, + [4230] = {.lex_state = 2022}, + [4231] = {.lex_state = 2022}, + [4232] = {.lex_state = 0, .external_lex_state = 97}, + [4233] = {.lex_state = 0, .external_lex_state = 98}, + [4234] = {.lex_state = 0, .external_lex_state = 99}, + [4235] = {.lex_state = 0, .external_lex_state = 100}, + [4236] = {.lex_state = 1983}, + [4237] = {.lex_state = 9}, + [4238] = {.lex_state = 3}, + [4239] = {.lex_state = 5}, + [4240] = {.lex_state = 0, .external_lex_state = 102}, [4241] = {.lex_state = 2022}, [4242] = {.lex_state = 1}, - [4243] = {.lex_state = 11}, - [4244] = {.lex_state = 0, .external_lex_state = 60}, - [4245] = {.lex_state = 2022}, - [4246] = {.lex_state = 0, .external_lex_state = 60}, + [4243] = {.lex_state = 2022}, + [4244] = {.lex_state = 1}, + [4245] = {.lex_state = 1983}, + [4246] = {.lex_state = 2012}, [4247] = {.lex_state = 2022}, - [4248] = {.lex_state = 1983}, - [4249] = {.lex_state = 9}, - [4250] = {.lex_state = 0, .external_lex_state = 60}, - [4251] = {.lex_state = 0, .external_lex_state = 96}, - [4252] = {.lex_state = 0, .external_lex_state = 98}, - [4253] = {.lex_state = 0, .external_lex_state = 103}, - [4254] = {.lex_state = 2012}, - [4255] = {.lex_state = 2012}, - [4256] = {.lex_state = 0, .external_lex_state = 99}, - [4257] = {.lex_state = 0, .external_lex_state = 97}, + [4248] = {.lex_state = 1}, + [4249] = {.lex_state = 2022}, + [4250] = {.lex_state = 2012}, + [4251] = {.lex_state = 2016}, + [4252] = {.lex_state = 2016}, + [4253] = {.lex_state = 0, .external_lex_state = 102}, + [4254] = {.lex_state = 1}, + [4255] = {.lex_state = 2022}, + [4256] = {.lex_state = 2022}, + [4257] = {.lex_state = 2022}, [4258] = {.lex_state = 1}, - [4259] = {.lex_state = 2022}, - [4260] = {.lex_state = 2022}, - [4261] = {.lex_state = 2022}, - [4262] = {.lex_state = 0, .external_lex_state = 100}, - [4263] = {.lex_state = 2016}, - [4264] = {.lex_state = 2016}, - [4265] = {.lex_state = 0, .external_lex_state = 101}, - [4266] = {.lex_state = 1}, - [4267] = {.lex_state = 1}, - [4268] = {.lex_state = 0, .external_lex_state = 96}, - [4269] = {.lex_state = 0, .external_lex_state = 60}, - [4270] = {.lex_state = 2022}, - [4271] = {.lex_state = 1}, - [4272] = {.lex_state = 0, .external_lex_state = 102}, - [4273] = {.lex_state = 1983}, - [4274] = {.lex_state = 9}, - [4275] = {.lex_state = 3}, - [4276] = {.lex_state = 1}, - [4277] = {.lex_state = 0, .external_lex_state = 96}, - [4278] = {.lex_state = 1}, - [4279] = {.lex_state = 3}, - [4280] = {.lex_state = 0, .external_lex_state = 98}, - [4281] = {.lex_state = 0, .external_lex_state = 99}, - [4282] = {.lex_state = 2022}, - [4283] = {.lex_state = 1}, - [4284] = {.lex_state = 2022}, - [4285] = {.lex_state = 2022}, - [4286] = {.lex_state = 2022}, - [4287] = {.lex_state = 0, .external_lex_state = 100}, - [4288] = {.lex_state = 2016}, - [4289] = {.lex_state = 2016}, - [4290] = {.lex_state = 5}, + [4259] = {.lex_state = 5}, + [4260] = {.lex_state = 0, .external_lex_state = 102}, + [4261] = {.lex_state = 1983}, + [4262] = {.lex_state = 9}, + [4263] = {.lex_state = 0, .external_lex_state = 103}, + [4264] = {.lex_state = 0, .external_lex_state = 104}, + [4265] = {.lex_state = 0, .external_lex_state = 102}, + [4266] = {.lex_state = 2022}, + [4267] = {.lex_state = 2022}, + [4268] = {.lex_state = 0, .external_lex_state = 102}, + [4269] = {.lex_state = 0, .external_lex_state = 96}, + [4270] = {.lex_state = 1}, + [4271] = {.lex_state = 0, .external_lex_state = 106}, + [4272] = {.lex_state = 0, .external_lex_state = 105}, + [4273] = {.lex_state = 0, .external_lex_state = 101}, + [4274] = {.lex_state = 2012}, + [4275] = {.lex_state = 2012}, + [4276] = {.lex_state = 2016}, + [4277] = {.lex_state = 2016}, + [4278] = {.lex_state = 0, .external_lex_state = 60}, + [4279] = {.lex_state = 0, .external_lex_state = 97}, + [4280] = {.lex_state = 2022}, + [4281] = {.lex_state = 0, .external_lex_state = 98}, + [4282] = {.lex_state = 0, .external_lex_state = 102}, + [4283] = {.lex_state = 0, .external_lex_state = 99}, + [4284] = {.lex_state = 0, .external_lex_state = 102}, + [4285] = {.lex_state = 0, .external_lex_state = 100}, + [4286] = {.lex_state = 1983}, + [4287] = {.lex_state = 9}, + [4288] = {.lex_state = 2012}, + [4289] = {.lex_state = 0, .external_lex_state = 102}, + [4290] = {.lex_state = 0, .external_lex_state = 51}, [4291] = {.lex_state = 1}, - [4292] = {.lex_state = 2022}, - [4293] = {.lex_state = 0, .external_lex_state = 101}, - [4294] = {.lex_state = 5}, - [4295] = {.lex_state = 1}, - [4296] = {.lex_state = 0, .external_lex_state = 102}, - [4297] = {.lex_state = 0, .external_lex_state = 98}, - [4298] = {.lex_state = 1983}, - [4299] = {.lex_state = 9}, - [4300] = {.lex_state = 0, .external_lex_state = 97}, - [4301] = {.lex_state = 0, .external_lex_state = 96}, - [4302] = {.lex_state = 2022}, - [4303] = {.lex_state = 0, .external_lex_state = 103}, - [4304] = {.lex_state = 0, .external_lex_state = 104}, - [4305] = {.lex_state = 0, .external_lex_state = 105}, - [4306] = {.lex_state = 0, .external_lex_state = 106}, - [4307] = {.lex_state = 0, .external_lex_state = 99}, - [4308] = {.lex_state = 2022}, - [4309] = {.lex_state = 2022}, - [4310] = {.lex_state = 0, .external_lex_state = 103}, - [4311] = {.lex_state = 2022}, - [4312] = {.lex_state = 1}, - [4313] = {.lex_state = 2016}, - [4314] = {.lex_state = 2016}, - [4315] = {.lex_state = 0, .external_lex_state = 60}, - [4316] = {.lex_state = 0, .external_lex_state = 104}, - [4317] = {.lex_state = 0, .external_lex_state = 100}, - [4318] = {.lex_state = 0, .external_lex_state = 105}, - [4319] = {.lex_state = 0, .external_lex_state = 50}, - [4320] = {.lex_state = 0, .external_lex_state = 106}, - [4321] = {.lex_state = 2022}, - [4322] = {.lex_state = 2022}, - [4323] = {.lex_state = 1983}, - [4324] = {.lex_state = 9}, - [4325] = {.lex_state = 2022}, - [4326] = {.lex_state = 2022}, - [4327] = {.lex_state = 2022}, - [4328] = {.lex_state = 2022}, - [4329] = {.lex_state = 2022}, - [4330] = {.lex_state = 1}, + [4292] = {.lex_state = 0, .external_lex_state = 102}, + [4293] = {.lex_state = 2022}, + [4294] = {.lex_state = 1}, + [4295] = {.lex_state = 3}, + [4296] = {.lex_state = 0, .external_lex_state = 96}, + [4297] = {.lex_state = 1}, + [4298] = {.lex_state = 5}, + [4299] = {.lex_state = 1}, + [4300] = {.lex_state = 1}, + [4301] = {.lex_state = 2016}, + [4302] = {.lex_state = 2016}, + [4303] = {.lex_state = 2022}, + [4304] = {.lex_state = 2022}, + [4305] = {.lex_state = 2022}, + [4306] = {.lex_state = 2022}, + [4307] = {.lex_state = 0, .external_lex_state = 103}, + [4308] = {.lex_state = 1}, + [4309] = {.lex_state = 0, .external_lex_state = 107}, + [4310] = {.lex_state = 2022}, + [4311] = {.lex_state = 1983}, + [4312] = {.lex_state = 9}, + [4313] = {.lex_state = 2022}, + [4314] = {.lex_state = 1}, + [4315] = {.lex_state = 1}, + [4316] = {.lex_state = 1}, + [4317] = {.lex_state = 2022}, + [4318] = {.lex_state = 1}, + [4319] = {.lex_state = 2022}, + [4320] = {.lex_state = 5}, + [4321] = {.lex_state = 0, .external_lex_state = 103}, + [4322] = {.lex_state = 1}, + [4323] = {.lex_state = 1}, + [4324] = {.lex_state = 1}, + [4325] = {.lex_state = 1}, + [4326] = {.lex_state = 2016}, + [4327] = {.lex_state = 2016}, + [4328] = {.lex_state = 3}, + [4329] = {.lex_state = 1}, + [4330] = {.lex_state = 2022}, [4331] = {.lex_state = 1}, - [4332] = {.lex_state = 0, .external_lex_state = 101}, - [4333] = {.lex_state = 0, .external_lex_state = 102}, - [4334] = {.lex_state = 1}, + [4332] = {.lex_state = 3}, + [4333] = {.lex_state = 0, .external_lex_state = 60}, + [4334] = {.lex_state = 2022}, [4335] = {.lex_state = 1}, - [4336] = {.lex_state = 2022}, - [4337] = {.lex_state = 3}, - [4338] = {.lex_state = 2016}, - [4339] = {.lex_state = 2016}, - [4340] = {.lex_state = 5}, - [4341] = {.lex_state = 5}, - [4342] = {.lex_state = 0, .external_lex_state = 103}, - [4343] = {.lex_state = 0, .external_lex_state = 96}, + [4336] = {.lex_state = 1983}, + [4337] = {.lex_state = 9}, + [4338] = {.lex_state = 2022}, + [4339] = {.lex_state = 0, .external_lex_state = 51}, + [4340] = {.lex_state = 2022}, + [4341] = {.lex_state = 2022}, + [4342] = {.lex_state = 0, .external_lex_state = 102}, + [4343] = {.lex_state = 0, .external_lex_state = 102}, [4344] = {.lex_state = 0, .external_lex_state = 104}, - [4345] = {.lex_state = 1983}, - [4346] = {.lex_state = 0, .external_lex_state = 96}, - [4347] = {.lex_state = 0, .external_lex_state = 101}, + [4345] = {.lex_state = 1}, + [4346] = {.lex_state = 2022}, + [4347] = {.lex_state = 1}, [4348] = {.lex_state = 1983}, - [4349] = {.lex_state = 9}, - [4350] = {.lex_state = 0, .external_lex_state = 96}, - [4351] = {.lex_state = 0, .external_lex_state = 102}, - [4352] = {.lex_state = 0, .external_lex_state = 96}, - [4353] = {.lex_state = 2022}, - [4354] = {.lex_state = 2022}, - [4355] = {.lex_state = 2022}, - [4356] = {.lex_state = 2022}, - [4357] = {.lex_state = 0, .external_lex_state = 105}, - [4358] = {.lex_state = 0, .external_lex_state = 106}, + [4349] = {.lex_state = 0, .external_lex_state = 103}, + [4350] = {.lex_state = 2022}, + [4351] = {.lex_state = 2016}, + [4352] = {.lex_state = 2016}, + [4353] = {.lex_state = 0, .external_lex_state = 102}, + [4354] = {.lex_state = 0, .external_lex_state = 102}, + [4355] = {.lex_state = 0, .external_lex_state = 102}, + [4356] = {.lex_state = 0, .external_lex_state = 102}, + [4357] = {.lex_state = 2022}, + [4358] = {.lex_state = 2022}, [4359] = {.lex_state = 2022}, - [4360] = {.lex_state = 5}, - [4361] = {.lex_state = 0, .external_lex_state = 104}, - [4362] = {.lex_state = 3}, - [4363] = {.lex_state = 2016}, - [4364] = {.lex_state = 2016}, - [4365] = {.lex_state = 5}, - [4366] = {.lex_state = 0, .external_lex_state = 97}, + [4360] = {.lex_state = 0, .external_lex_state = 104}, + [4361] = {.lex_state = 1983}, + [4362] = {.lex_state = 9}, + [4363] = {.lex_state = 0, .external_lex_state = 102}, + [4364] = {.lex_state = 3}, + [4365] = {.lex_state = 2022}, + [4366] = {.lex_state = 0, .external_lex_state = 92}, [4367] = {.lex_state = 2022}, - [4368] = {.lex_state = 5}, + [4368] = {.lex_state = 2022}, [4369] = {.lex_state = 2022}, - [4370] = {.lex_state = 0, .external_lex_state = 96}, + [4370] = {.lex_state = 2022}, [4371] = {.lex_state = 0, .external_lex_state = 96}, - [4372] = {.lex_state = 0, .external_lex_state = 96}, - [4373] = {.lex_state = 1983}, - [4374] = {.lex_state = 9}, - [4375] = {.lex_state = 0, .external_lex_state = 96}, - [4376] = {.lex_state = 2022}, - [4377] = {.lex_state = 2012}, + [4372] = {.lex_state = 0, .external_lex_state = 102}, + [4373] = {.lex_state = 3}, + [4374] = {.lex_state = 0, .external_lex_state = 105}, + [4375] = {.lex_state = 5}, + [4376] = {.lex_state = 2016}, + [4377] = {.lex_state = 2016}, [4378] = {.lex_state = 5}, - [4379] = {.lex_state = 5}, - [4380] = {.lex_state = 2022}, - [4381] = {.lex_state = 2022}, - [4382] = {.lex_state = 2022}, - [4383] = {.lex_state = 0, .external_lex_state = 60}, - [4384] = {.lex_state = 5}, - [4385] = {.lex_state = 0, .external_lex_state = 97}, - [4386] = {.lex_state = 1}, - [4387] = {.lex_state = 0, .external_lex_state = 103}, - [4388] = {.lex_state = 1}, - [4389] = {.lex_state = 2022}, - [4390] = {.lex_state = 1}, - [4391] = {.lex_state = 2022}, - [4392] = {.lex_state = 1}, - [4393] = {.lex_state = 0, .external_lex_state = 50}, - [4394] = {.lex_state = 2012}, - [4395] = {.lex_state = 2012}, - [4396] = {.lex_state = 1}, - [4397] = {.lex_state = 3}, - [4398] = {.lex_state = 0, .external_lex_state = 104}, - [4399] = {.lex_state = 3}, - [4400] = {.lex_state = 9}, - [4401] = {.lex_state = 1}, - [4402] = {.lex_state = 5}, - [4403] = {.lex_state = 0, .external_lex_state = 96}, - [4404] = {.lex_state = 1}, + [4379] = {.lex_state = 0, .external_lex_state = 103}, + [4380] = {.lex_state = 3}, + [4381] = {.lex_state = 5}, + [4382] = {.lex_state = 0, .external_lex_state = 101}, + [4383] = {.lex_state = 2022}, + [4384] = {.lex_state = 0, .external_lex_state = 102}, + [4385] = {.lex_state = 0, .external_lex_state = 51}, + [4386] = {.lex_state = 1983}, + [4387] = {.lex_state = 9}, + [4388] = {.lex_state = 0, .external_lex_state = 104}, + [4389] = {.lex_state = 0, .external_lex_state = 100}, + [4390] = {.lex_state = 2022}, + [4391] = {.lex_state = 5}, + [4392] = {.lex_state = 5}, + [4393] = {.lex_state = 1}, + [4394] = {.lex_state = 2022}, + [4395] = {.lex_state = 0, .external_lex_state = 97}, + [4396] = {.lex_state = 0, .external_lex_state = 98}, + [4397] = {.lex_state = 0, .external_lex_state = 96}, + [4398] = {.lex_state = 5}, + [4399] = {.lex_state = 0, .external_lex_state = 99}, + [4400] = {.lex_state = 0, .external_lex_state = 105}, + [4401] = {.lex_state = 2022}, + [4402] = {.lex_state = 0, .external_lex_state = 60}, + [4403] = {.lex_state = 0, .external_lex_state = 109}, + [4404] = {.lex_state = 5}, [4405] = {.lex_state = 5}, - [4406] = {.lex_state = 5}, - [4407] = {.lex_state = 5}, - [4408] = {.lex_state = 0, .external_lex_state = 97}, - [4409] = {.lex_state = 0, .external_lex_state = 97}, - [4410] = {.lex_state = 0, .external_lex_state = 97}, - [4411] = {.lex_state = 0, .external_lex_state = 97}, - [4412] = {.lex_state = 0, .external_lex_state = 97}, - [4413] = {.lex_state = 0, .external_lex_state = 97}, - [4414] = {.lex_state = 0, .external_lex_state = 97}, - [4415] = {.lex_state = 0, .external_lex_state = 97}, - [4416] = {.lex_state = 0, .external_lex_state = 97}, - [4417] = {.lex_state = 0, .external_lex_state = 96}, - [4418] = {.lex_state = 1}, - [4419] = {.lex_state = 5}, + [4406] = {.lex_state = 0, .external_lex_state = 60}, + [4407] = {.lex_state = 0, .external_lex_state = 101}, + [4408] = {.lex_state = 0, .external_lex_state = 102}, + [4409] = {.lex_state = 0, .external_lex_state = 100}, + [4410] = {.lex_state = 2022}, + [4411] = {.lex_state = 5}, + [4412] = {.lex_state = 0, .external_lex_state = 102}, + [4413] = {.lex_state = 2012}, + [4414] = {.lex_state = 2012}, + [4415] = {.lex_state = 0, .external_lex_state = 60}, + [4416] = {.lex_state = 0, .external_lex_state = 109}, + [4417] = {.lex_state = 0, .external_lex_state = 106}, + [4418] = {.lex_state = 0, .external_lex_state = 97}, + [4419] = {.lex_state = 0, .external_lex_state = 106}, [4420] = {.lex_state = 5}, [4421] = {.lex_state = 5}, - [4422] = {.lex_state = 0, .external_lex_state = 97}, - [4423] = {.lex_state = 0, .external_lex_state = 97}, - [4424] = {.lex_state = 0, .external_lex_state = 97}, - [4425] = {.lex_state = 0, .external_lex_state = 97}, - [4426] = {.lex_state = 0, .external_lex_state = 97}, - [4427] = {.lex_state = 0, .external_lex_state = 97}, - [4428] = {.lex_state = 0, .external_lex_state = 97}, - [4429] = {.lex_state = 0, .external_lex_state = 97}, - [4430] = {.lex_state = 0, .external_lex_state = 97}, - [4431] = {.lex_state = 5}, - [4432] = {.lex_state = 5}, - [4433] = {.lex_state = 5}, - [4434] = {.lex_state = 5}, + [4422] = {.lex_state = 0, .external_lex_state = 106}, + [4423] = {.lex_state = 0, .external_lex_state = 106}, + [4424] = {.lex_state = 0, .external_lex_state = 106}, + [4425] = {.lex_state = 0, .external_lex_state = 106}, + [4426] = {.lex_state = 0, .external_lex_state = 106}, + [4427] = {.lex_state = 0, .external_lex_state = 106}, + [4428] = {.lex_state = 0, .external_lex_state = 106}, + [4429] = {.lex_state = 0, .external_lex_state = 106}, + [4430] = {.lex_state = 0, .external_lex_state = 106}, + [4431] = {.lex_state = 0, .external_lex_state = 109}, + [4432] = {.lex_state = 0, .external_lex_state = 98}, + [4433] = {.lex_state = 1}, + [4434] = {.lex_state = 0, .external_lex_state = 96}, [4435] = {.lex_state = 5}, [4436] = {.lex_state = 5}, - [4437] = {.lex_state = 5}, - [4438] = {.lex_state = 5}, - [4439] = {.lex_state = 5}, - [4440] = {.lex_state = 5}, - [4441] = {.lex_state = 5}, - [4442] = {.lex_state = 5}, - [4443] = {.lex_state = 5}, - [4444] = {.lex_state = 5}, - [4445] = {.lex_state = 5}, + [4437] = {.lex_state = 0, .external_lex_state = 106}, + [4438] = {.lex_state = 0, .external_lex_state = 106}, + [4439] = {.lex_state = 0, .external_lex_state = 106}, + [4440] = {.lex_state = 0, .external_lex_state = 106}, + [4441] = {.lex_state = 0, .external_lex_state = 106}, + [4442] = {.lex_state = 0, .external_lex_state = 106}, + [4443] = {.lex_state = 0, .external_lex_state = 106}, + [4444] = {.lex_state = 0, .external_lex_state = 106}, + [4445] = {.lex_state = 0, .external_lex_state = 106}, [4446] = {.lex_state = 5}, [4447] = {.lex_state = 5}, [4448] = {.lex_state = 5}, @@ -23831,41 +23892,56 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [4458] = {.lex_state = 5}, [4459] = {.lex_state = 5}, [4460] = {.lex_state = 5}, - [4461] = {.lex_state = 1}, - [4462] = {.lex_state = 0, .external_lex_state = 105}, - [4463] = {.lex_state = 0, .external_lex_state = 98}, - [4464] = {.lex_state = 0, .external_lex_state = 99}, - [4465] = {.lex_state = 2022}, - [4466] = {.lex_state = 2022}, - [4467] = {.lex_state = 0, .external_lex_state = 100}, - [4468] = {.lex_state = 0, .external_lex_state = 101}, - [4469] = {.lex_state = 0, .external_lex_state = 102}, - [4470] = {.lex_state = 2022}, - [4471] = {.lex_state = 0, .external_lex_state = 103}, - [4472] = {.lex_state = 0, .external_lex_state = 104}, - [4473] = {.lex_state = 0, .external_lex_state = 105}, - [4474] = {.lex_state = 0, .external_lex_state = 106}, - [4475] = {.lex_state = 1}, - [4476] = {.lex_state = 2022}, - [4477] = {.lex_state = 2022}, - [4478] = {.lex_state = 2022}, - [4479] = {.lex_state = 2022}, - [4480] = {.lex_state = 0, .external_lex_state = 96}, - [4481] = {.lex_state = 2022}, - [4482] = {.lex_state = 2022}, - [4483] = {.lex_state = 2022}, - [4484] = {.lex_state = 0, .external_lex_state = 106}, + [4461] = {.lex_state = 5}, + [4462] = {.lex_state = 5}, + [4463] = {.lex_state = 5}, + [4464] = {.lex_state = 5}, + [4465] = {.lex_state = 5}, + [4466] = {.lex_state = 5}, + [4467] = {.lex_state = 5}, + [4468] = {.lex_state = 5}, + [4469] = {.lex_state = 5}, + [4470] = {.lex_state = 5}, + [4471] = {.lex_state = 5}, + [4472] = {.lex_state = 5}, + [4473] = {.lex_state = 5}, + [4474] = {.lex_state = 5}, + [4475] = {.lex_state = 5}, + [4476] = {.lex_state = 1}, + [4477] = {.lex_state = 0, .external_lex_state = 105}, + [4478] = {.lex_state = 1}, + [4479] = {.lex_state = 0, .external_lex_state = 99}, + [4480] = {.lex_state = 1}, + [4481] = {.lex_state = 0, .external_lex_state = 100}, + [4482] = {.lex_state = 0, .external_lex_state = 103}, + [4483] = {.lex_state = 0, .external_lex_state = 104}, + [4484] = {.lex_state = 2022}, [4485] = {.lex_state = 2022}, - [4486] = {.lex_state = 2022}, - [4487] = {.lex_state = 3}, - [4488] = {.lex_state = 1}, - [4489] = {.lex_state = 1}, - [4490] = {.lex_state = 1}, - [4491] = {.lex_state = 1}, - [4492] = {.lex_state = 3}, - [4493] = {.lex_state = 5}, - [4494] = {.lex_state = 0, .external_lex_state = 60}, - [4495] = {.lex_state = 0, .external_lex_state = 104}, + [4486] = {.lex_state = 0, .external_lex_state = 96}, + [4487] = {.lex_state = 0, .external_lex_state = 105}, + [4488] = {.lex_state = 0, .external_lex_state = 101}, + [4489] = {.lex_state = 2022}, + [4490] = {.lex_state = 0, .external_lex_state = 97}, + [4491] = {.lex_state = 0, .external_lex_state = 98}, + [4492] = {.lex_state = 0, .external_lex_state = 99}, + [4493] = {.lex_state = 0, .external_lex_state = 100}, + [4494] = {.lex_state = 2022}, + [4495] = {.lex_state = 0, .external_lex_state = 60}, + [4496] = {.lex_state = 3}, + [4497] = {.lex_state = 0, .external_lex_state = 101}, + [4498] = {.lex_state = 0, .external_lex_state = 106}, + [4499] = {.lex_state = 3}, + [4500] = {.lex_state = 2022}, + [4501] = {.lex_state = 2022}, + [4502] = {.lex_state = 2022}, + [4503] = {.lex_state = 0, .external_lex_state = 102}, + [4504] = {.lex_state = 2022}, + [4505] = {.lex_state = 2022}, + [4506] = {.lex_state = 0, .external_lex_state = 105}, + [4507] = {.lex_state = 1}, + [4508] = {.lex_state = 1}, + [4509] = {.lex_state = 1}, + [4510] = {.lex_state = 2022}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -23918,7 +23994,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error] = ACTIONS(1), [sym__trigger_error] = ACTIONS(1), [sym__eof] = ACTIONS(1), - [sym_minus_metadata] = ACTIONS(1), + [sym__minus_metadata_start] = ACTIONS(1), + [sym__minus_metadata_open_newline] = ACTIONS(1), + [sym__minus_metadata_body] = ACTIONS(1), + [sym__minus_metadata_end] = ACTIONS(1), [sym__pipe_table_start] = ACTIONS(1), [sym__pipe_table_line_ending] = ACTIONS(1), [sym__fenced_div_start] = ACTIONS(1), @@ -23977,84 +24056,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__caption_start] = ACTIONS(1), }, [STATE(1)] = { - [sym_document] = STATE(3781), - [sym__block_not_section] = STATE(362), - [sym_section] = STATE(2503), - [sym__section1] = STATE(2787), - [sym__section2] = STATE(2787), - [sym__section3] = STATE(2787), - [sym__section4] = STATE(2787), - [sym__section5] = STATE(2787), - [sym__section6] = STATE(2787), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(91), + [sym_document] = STATE(3708), + [sym_minus_metadata] = STATE(61), + [sym__block_not_section] = STATE(477), + [sym_section] = STATE(2504), + [sym__section1] = STATE(2767), + [sym__section2] = STATE(2767), + [sym__section3] = STATE(2767), + [sym__section4] = STATE(2767), + [sym__section5] = STATE(2767), + [sym__section6] = STATE(2767), + [sym__atx_heading1] = STATE(83), + [sym__atx_heading2] = STATE(90), [sym__atx_heading3] = STATE(101), - [sym__atx_heading4] = STATE(110), + [sym__atx_heading4] = STATE(109), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), - [sym_pandoc_horizontal_rule] = STATE(362), - [sym_pandoc_paragraph] = STATE(362), - [sym_inline_ref_def] = STATE(362), - [sym_caption] = STATE(362), - [sym_pipe_table] = STATE(362), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(362), - [sym_pandoc_list] = STATE(362), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(477), + [sym_pandoc_paragraph] = STATE(477), + [sym_inline_ref_def] = STATE(477), + [sym_caption] = STATE(477), + [sym_pipe_table] = STATE(477), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(477), + [sym_pandoc_list] = STATE(477), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), [sym__list_item_example] = STATE(157), - [sym_pandoc_code_block] = STATE(362), - [sym_pandoc_div] = STATE(362), - [sym_note_definition_fenced_block] = STATE(362), - [sym__newline] = STATE(362), - [sym__soft_line_break] = STATE(362), - [sym__inline_whitespace] = STATE(800), - [aux_sym_document_repeat1] = STATE(63), - [aux_sym_document_repeat2] = STATE(2503), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), + [sym_pandoc_code_block] = STATE(477), + [sym_pandoc_div] = STATE(477), + [sym_note_definition_fenced_block] = STATE(477), + [sym__newline] = STATE(477), + [sym__soft_line_break] = STATE(477), + [sym__inline_whitespace] = STATE(804), + [aux_sym_document_repeat1] = STATE(60), + [aux_sym_document_repeat2] = STATE(2504), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), [aux_sym__list_example_repeat1] = STATE(157), [ts_builtin_sym_end] = ACTIONS(3), [sym_entity_reference] = ACTIONS(5), @@ -24090,7 +24170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(57), + [sym__minus_metadata_start] = ACTIONS(57), [sym__pipe_table_start] = ACTIONS(59), [sym__fenced_div_start] = ACTIONS(61), [sym_ref_id_specifier] = ACTIONS(63), @@ -24125,86 +24205,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__caption_start] = ACTIONS(109), }, [STATE(2)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4071), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3314), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4503), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3449), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -24243,7 +24324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -24274,90 +24355,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(3)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4165), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3362), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4228), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3416), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -24372,8 +24454,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(155), - [sym_block_continuation] = ACTIONS(157), + [sym__block_close] = ACTIONS(157), + [sym_block_continuation] = ACTIONS(159), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -24396,7 +24478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -24427,90 +24509,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(4)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4190), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3375), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4203), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3408), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -24525,8 +24608,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(159), - [sym_block_continuation] = ACTIONS(161), + [sym__block_close] = ACTIONS(161), + [sym_block_continuation] = ACTIONS(163), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -24549,7 +24632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -24580,90 +24663,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(5)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4065), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3389), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4363), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3491), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -24678,8 +24762,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(163), - [sym_block_continuation] = ACTIONS(165), + [sym__block_close] = ACTIONS(165), + [sym_block_continuation] = ACTIONS(167), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -24702,7 +24786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -24733,90 +24817,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(6)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3708), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3405), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4118), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3455), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -24831,8 +24916,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(167), - [sym_block_continuation] = ACTIONS(169), + [sym__block_close] = ACTIONS(169), + [sym_block_continuation] = ACTIONS(171), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -24855,7 +24940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -24886,90 +24971,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(7)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4067), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3311), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3988), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3307), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -24984,8 +25070,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(171), - [sym_block_continuation] = ACTIONS(173), + [sym__block_close] = ACTIONS(173), + [sym_block_continuation] = ACTIONS(175), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -25008,7 +25094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -25039,90 +25125,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(8)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4069), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3312), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3867), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3527), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -25137,8 +25224,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(175), - [sym_block_continuation] = ACTIONS(177), + [sym__block_close] = ACTIONS(177), + [sym_block_continuation] = ACTIONS(179), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -25161,7 +25248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -25192,90 +25279,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(9)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3871), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3509), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3874), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3528), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -25290,8 +25378,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(179), - [sym_block_continuation] = ACTIONS(181), + [sym__block_close] = ACTIONS(181), + [sym_block_continuation] = ACTIONS(183), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -25314,7 +25402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -25345,90 +25433,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(10)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4090), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3324), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3876), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3530), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -25443,8 +25532,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(183), - [sym_block_continuation] = ACTIONS(185), + [sym__block_close] = ACTIONS(185), + [sym_block_continuation] = ACTIONS(187), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -25467,7 +25556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -25498,90 +25587,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(11)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4092), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3325), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3882), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3531), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -25596,8 +25686,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(187), - [sym_block_continuation] = ACTIONS(189), + [sym__block_close] = ACTIONS(189), + [sym_block_continuation] = ACTIONS(191), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -25620,7 +25710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -25651,90 +25741,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(12)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4094), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3327), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3897), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3274), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -25749,8 +25840,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(191), - [sym_block_continuation] = ACTIONS(193), + [sym__block_close] = ACTIONS(193), + [sym_block_continuation] = ACTIONS(195), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -25773,7 +25864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -25804,90 +25895,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(13)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3690), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3339), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3906), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3277), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -25902,8 +25994,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(195), - [sym_block_continuation] = ACTIONS(197), + [sym__block_close] = ACTIONS(197), + [sym_block_continuation] = ACTIONS(199), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -25926,7 +26018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -25957,90 +26049,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(14)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3721), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3348), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4260), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3429), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -26055,8 +26148,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(199), - [sym_block_continuation] = ACTIONS(201), + [sym__block_close] = ACTIONS(201), + [sym_block_continuation] = ACTIONS(203), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -26079,7 +26172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -26110,90 +26203,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(15)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3739), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3370), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4265), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3430), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -26208,8 +26302,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(203), - [sym_block_continuation] = ACTIONS(205), + [sym__block_close] = ACTIONS(205), + [sym_block_continuation] = ACTIONS(207), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -26232,7 +26326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -26263,90 +26357,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(16)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3758), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3371), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4268), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3436), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -26361,8 +26456,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(207), - [sym_block_continuation] = ACTIONS(209), + [sym__block_close] = ACTIONS(209), + [sym_block_continuation] = ACTIONS(211), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -26385,7 +26480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -26416,90 +26511,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(17)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3843), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3391), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4282), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3438), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -26514,8 +26610,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(211), - [sym_block_continuation] = ACTIONS(213), + [sym__block_close] = ACTIONS(213), + [sym_block_continuation] = ACTIONS(215), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -26538,7 +26634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -26569,90 +26665,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(18)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3920), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3392), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4284), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3439), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -26667,8 +26764,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(215), - [sym_block_continuation] = ACTIONS(217), + [sym__block_close] = ACTIONS(217), + [sym_block_continuation] = ACTIONS(219), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -26691,7 +26788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -26722,90 +26819,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(19)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4277), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3340), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4289), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3440), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -26820,8 +26918,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(219), - [sym_block_continuation] = ACTIONS(221), + [sym__block_close] = ACTIONS(221), + [sym_block_continuation] = ACTIONS(223), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -26844,7 +26942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), [sym__blank_line_start] = ACTIONS(143), - [sym_minus_metadata] = ACTIONS(145), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -26875,90 +26973,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(20)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3813), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3990), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -26994,8 +27093,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -27026,90 +27125,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(21)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(3855), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4356), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -27145,8 +27245,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -27177,90 +27277,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(22)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4119), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3974), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -27296,8 +27397,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -27328,90 +27429,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(23)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4146), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3995), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -27447,8 +27549,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -27479,90 +27581,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(24)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4170), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4184), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -27598,8 +27701,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -27630,90 +27733,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(25)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4183), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4206), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -27749,8 +27853,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -27781,90 +27885,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(26)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4218), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4213), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -27900,8 +28005,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -27932,90 +28037,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(27)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4219), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3979), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -28051,8 +28157,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -28083,90 +28189,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(28)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4220), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3728), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -28202,8 +28309,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -28234,90 +28341,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(29)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4221), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3991), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -28353,8 +28461,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -28385,90 +28493,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(30)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4222), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3993), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -28504,8 +28613,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -28536,90 +28645,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(31)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4225), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3994), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -28655,8 +28765,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -28687,90 +28797,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(32)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4192), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(3999), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -28806,8 +28917,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -28838,90 +28949,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(33)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4204), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4342), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -28957,8 +29069,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -28989,90 +29101,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(34)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4226), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4343), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -29108,8 +29221,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -29140,90 +29253,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(35)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4230), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4353), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -29259,8 +29373,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -29291,90 +29405,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(36)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4237), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4354), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -29410,8 +29525,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -29442,90 +29557,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(37)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym_minus_metadata] = STATE(72), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym__list_item_content] = STATE(4251), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3542), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym__list_item_content] = STATE(4355), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(3553), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(111), @@ -29561,8 +29677,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym__blank_line_start] = ACTIONS(223), - [sym_minus_metadata] = ACTIONS(145), + [sym__blank_line_start] = ACTIONS(225), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -29593,88 +29709,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(145), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(153), + [sym__caption_start] = ACTIONS(155), }, [STATE(38)] = { + [sym_minus_metadata] = STATE(65), [sym__block] = STATE(65), [sym__block_not_section] = STATE(65), [sym_section] = STATE(65), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(65), [sym_pandoc_list] = STATE(65), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), [sym_pandoc_code_block] = STATE(65), [sym_pandoc_div] = STATE(65), [sym_note_definition_fenced_block] = STATE(65), [sym__newline] = STATE(65), [sym__soft_line_break] = STATE(65), - [sym__inline_whitespace] = STATE(798), + [sym__inline_whitespace] = STATE(830), [aux_sym_pandoc_block_quote_repeat1] = STATE(65), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -29687,8 +29804,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(225), - [sym_block_continuation] = ACTIONS(227), + [sym__block_close] = ACTIONS(227), + [sym_block_continuation] = ACTIONS(229), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -29710,7 +29827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(229), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -29741,88 +29858,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(229), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(231), + [sym__caption_start] = ACTIONS(155), }, [STATE(39)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), - [sym__atx_heading5] = STATE(112), - [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(40), - [sym_pandoc_paragraph] = STATE(40), - [sym_inline_ref_def] = STATE(40), - [sym_caption] = STATE(40), - [sym_pipe_table] = STATE(40), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(40), - [sym_pandoc_list] = STATE(40), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(40), - [sym_pandoc_div] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__newline] = STATE(40), - [sym__soft_line_break] = STATE(40), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(40), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [sym_minus_metadata] = STATE(67), + [sym__block] = STATE(67), + [sym__block_not_section] = STATE(67), + [sym_section] = STATE(67), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(67), + [sym_pandoc_list] = STATE(67), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), + [sym__list_item_plus] = STATE(159), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [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__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(67), + [aux_sym__list_plus_repeat1] = STATE(159), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -29832,18 +29950,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(237), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(115), + [sym__line_ending] = ACTIONS(117), + [sym__soft_line_ending] = ACTIONS(119), + [sym__block_close] = ACTIONS(233), + [sym_block_continuation] = ACTIONS(235), + [sym__block_quote_start] = ACTIONS(125), + [sym_atx_h1_marker] = ACTIONS(127), + [sym_atx_h2_marker] = ACTIONS(129), + [sym_atx_h3_marker] = ACTIONS(131), + [sym_atx_h4_marker] = ACTIONS(133), + [sym_atx_h5_marker] = ACTIONS(135), + [sym_atx_h6_marker] = ACTIONS(137), + [sym__thematic_break] = ACTIONS(139), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -29856,12 +29975,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(257), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(263), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(141), + [sym__minus_metadata_start] = ACTIONS(145), + [sym__pipe_table_start] = ACTIONS(147), + [sym__fenced_div_start] = ACTIONS(149), + [sym_ref_id_specifier] = ACTIONS(151), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -29889,88 +30007,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(257), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(237), + [sym__caption_start] = ACTIONS(155), }, [STATE(40)] = { - [sym__block] = STATE(45), - [sym__block_not_section] = STATE(45), - [sym_section] = STATE(45), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [sym_minus_metadata] = STATE(41), + [sym__block] = STATE(41), + [sym__block_not_section] = STATE(41), + [sym_section] = STATE(41), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(45), - [sym_pandoc_paragraph] = STATE(45), - [sym_inline_ref_def] = STATE(45), - [sym_caption] = STATE(45), - [sym_pipe_table] = STATE(45), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(45), - [sym_pandoc_list] = STATE(45), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(45), - [sym_pandoc_div] = STATE(45), - [sym_note_definition_fenced_block] = STATE(45), - [sym__newline] = STATE(45), - [sym__soft_line_break] = STATE(45), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(45), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [sym_pandoc_horizontal_rule] = STATE(41), + [sym_pandoc_paragraph] = STATE(41), + [sym_inline_ref_def] = STATE(41), + [sym_caption] = STATE(41), + [sym_pipe_table] = STATE(41), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(41), + [sym_pandoc_list] = STATE(41), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(41), + [sym_pandoc_div] = STATE(41), + [sym_note_definition_fenced_block] = STATE(41), + [sym__newline] = STATE(41), + [sym__soft_line_break] = STATE(41), + [sym__inline_whitespace] = STATE(811), + [aux_sym_pandoc_block_quote_repeat1] = STATE(41), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -29980,18 +30099,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(269), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(245), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -30004,12 +30123,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(271), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(273), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(271), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -30037,23 +30156,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(271), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(275), + [sym__caption_start] = ACTIONS(277), }, [STATE(41)] = { + [sym_minus_metadata] = STATE(41), + [sym__block] = STATE(41), + [sym__block_not_section] = STATE(41), + [sym_section] = STATE(41), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(41), + [sym_pandoc_paragraph] = STATE(41), + [sym_inline_ref_def] = STATE(41), + [sym_caption] = STATE(41), + [sym_pipe_table] = STATE(41), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(41), + [sym_pandoc_list] = STATE(41), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(41), + [sym_pandoc_div] = STATE(41), + [sym_note_definition_fenced_block] = STATE(41), + [sym__newline] = STATE(41), + [sym__soft_line_break] = STATE(41), + [sym__inline_whitespace] = STATE(811), + [aux_sym_pandoc_block_quote_repeat1] = STATE(41), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), + [sym_entity_reference] = ACTIONS(279), + [sym_numeric_character_reference] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(282), + [anon_sym_BANG_LBRACK] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(288), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(294), + [aux_sym_pandoc_str_token1] = ACTIONS(297), + [anon_sym_PIPE] = ACTIONS(300), + [sym__whitespace] = ACTIONS(303), + [sym__line_ending] = ACTIONS(306), + [sym__soft_line_ending] = ACTIONS(309), + [sym__block_close] = ACTIONS(312), + [sym__block_quote_start] = ACTIONS(314), + [sym_atx_h1_marker] = ACTIONS(317), + [sym_atx_h2_marker] = ACTIONS(320), + [sym_atx_h3_marker] = ACTIONS(323), + [sym_atx_h4_marker] = ACTIONS(326), + [sym_atx_h5_marker] = ACTIONS(329), + [sym_atx_h6_marker] = ACTIONS(332), + [sym__thematic_break] = ACTIONS(335), + [sym__list_marker_minus] = ACTIONS(338), + [sym__list_marker_plus] = ACTIONS(341), + [sym__list_marker_star] = ACTIONS(344), + [sym__list_marker_parenthesis] = ACTIONS(347), + [sym__list_marker_dot] = ACTIONS(350), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(338), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(341), + [sym__list_marker_star_dont_interrupt] = ACTIONS(344), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(347), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(350), + [sym__list_marker_example] = ACTIONS(353), + [sym__list_marker_example_dont_interrupt] = ACTIONS(353), + [sym__fenced_code_block_start_backtick] = ACTIONS(356), + [sym__minus_metadata_start] = ACTIONS(359), + [sym__pipe_table_start] = ACTIONS(362), + [sym__fenced_div_start] = ACTIONS(365), + [sym__fenced_div_end] = ACTIONS(312), + [sym_ref_id_specifier] = ACTIONS(368), + [sym__code_span_start] = ACTIONS(371), + [sym__html_comment] = ACTIONS(279), + [sym__autolink] = ACTIONS(279), + [sym__highlight_span_start] = ACTIONS(374), + [sym__insert_span_start] = ACTIONS(377), + [sym__delete_span_start] = ACTIONS(380), + [sym__edit_comment_span_start] = ACTIONS(383), + [sym__single_quote_span_open] = ACTIONS(386), + [sym__double_quote_span_open] = ACTIONS(389), + [sym__shortcode_open_escaped] = ACTIONS(392), + [sym__shortcode_open] = ACTIONS(395), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(398), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(401), + [sym__cite_author_in_text] = ACTIONS(404), + [sym__cite_suppress_author] = ACTIONS(407), + [sym__strikeout_open] = ACTIONS(410), + [sym__subscript_open] = ACTIONS(413), + [sym__superscript_open] = ACTIONS(416), + [sym__inline_note_start_token] = ACTIONS(419), + [sym__strong_emphasis_open_star] = ACTIONS(422), + [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__emphasis_open_star] = ACTIONS(428), + [sym__emphasis_open_underscore] = ACTIONS(431), + [sym_inline_note_reference] = ACTIONS(279), + [sym_html_element] = ACTIONS(279), + [sym__pandoc_lt_str] = ACTIONS(300), + [sym__pandoc_line_break] = ACTIONS(279), + [sym_grid_table] = ACTIONS(434), + [sym__caption_start] = ACTIONS(437), + }, + [STATE(42)] = { + [sym_minus_metadata] = STATE(43), [sym__block] = STATE(43), [sym__block_not_section] = STATE(43), [sym_section] = STATE(43), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(43), @@ -30061,64 +30330,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(43), [sym_caption] = STATE(43), [sym_pipe_table] = STATE(43), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(43), [sym_pandoc_list] = STATE(43), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), [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), - [sym__inline_whitespace] = STATE(802), + [sym__inline_whitespace] = STATE(811), [aux_sym_pandoc_block_quote_repeat1] = STATE(43), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -30128,18 +30397,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(275), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(440), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -30152,12 +30421,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(277), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(279), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(442), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -30185,88 +30454,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(277), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(444), + [sym__caption_start] = ACTIONS(277), }, - [STATE(42)] = { - [sym__block] = STATE(44), - [sym__block_not_section] = STATE(44), - [sym_section] = STATE(44), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [STATE(43)] = { + [sym_minus_metadata] = STATE(41), + [sym__block] = STATE(41), + [sym__block_not_section] = STATE(41), + [sym_section] = STATE(41), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(44), - [sym_pandoc_paragraph] = STATE(44), - [sym_inline_ref_def] = STATE(44), - [sym_caption] = STATE(44), - [sym_pipe_table] = STATE(44), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(44), - [sym_pandoc_list] = STATE(44), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(44), - [sym_pandoc_div] = STATE(44), - [sym_note_definition_fenced_block] = STATE(44), - [sym__newline] = STATE(44), - [sym__soft_line_break] = STATE(44), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(44), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [sym_pandoc_horizontal_rule] = STATE(41), + [sym_pandoc_paragraph] = STATE(41), + [sym_inline_ref_def] = STATE(41), + [sym_caption] = STATE(41), + [sym_pipe_table] = STATE(41), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(41), + [sym_pandoc_list] = STATE(41), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(41), + [sym_pandoc_div] = STATE(41), + [sym_note_definition_fenced_block] = STATE(41), + [sym__newline] = STATE(41), + [sym__soft_line_break] = STATE(41), + [sym__inline_whitespace] = STATE(811), + [aux_sym_pandoc_block_quote_repeat1] = STATE(41), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -30276,18 +30546,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(269), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(446), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -30300,12 +30570,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(281), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(273), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(448), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -30333,88 +30603,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(281), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(275), + [sym__caption_start] = ACTIONS(277), }, - [STATE(43)] = { - [sym__block] = STATE(45), - [sym__block_not_section] = STATE(45), - [sym_section] = STATE(45), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [STATE(44)] = { + [sym_minus_metadata] = STATE(46), + [sym__block] = STATE(46), + [sym__block_not_section] = STATE(46), + [sym_section] = STATE(46), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(45), - [sym_pandoc_paragraph] = STATE(45), - [sym_inline_ref_def] = STATE(45), - [sym_caption] = STATE(45), - [sym_pipe_table] = STATE(45), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(45), - [sym_pandoc_list] = STATE(45), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(45), - [sym_pandoc_div] = STATE(45), - [sym_note_definition_fenced_block] = STATE(45), - [sym__newline] = STATE(45), - [sym__soft_line_break] = STATE(45), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(45), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [sym_pandoc_horizontal_rule] = STATE(46), + [sym_pandoc_paragraph] = STATE(46), + [sym_inline_ref_def] = STATE(46), + [sym_caption] = STATE(46), + [sym_pipe_table] = STATE(46), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(46), + [sym_pandoc_list] = STATE(46), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(46), + [sym_pandoc_div] = STATE(46), + [sym_note_definition_fenced_block] = STATE(46), + [sym__newline] = STATE(46), + [sym__soft_line_break] = STATE(46), + [sym__inline_whitespace] = STATE(811), + [aux_sym_pandoc_block_quote_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(136), + [aux_sym__list_minus_repeat1] = STATE(137), + [aux_sym__list_star_repeat1] = STATE(138), + [aux_sym__list_dot_repeat1] = STATE(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -30424,18 +30695,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(283), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(450), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -30448,12 +30719,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(271), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(285), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(452), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -30481,88 +30752,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(271), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(454), + [sym__caption_start] = ACTIONS(277), }, - [STATE(44)] = { - [sym__block] = STATE(45), - [sym__block_not_section] = STATE(45), - [sym_section] = STATE(45), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [STATE(45)] = { + [sym_minus_metadata] = STATE(47), + [sym__block] = STATE(47), + [sym__block_not_section] = STATE(47), + [sym_section] = STATE(47), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(45), - [sym_pandoc_paragraph] = STATE(45), - [sym_inline_ref_def] = STATE(45), - [sym_caption] = STATE(45), - [sym_pipe_table] = STATE(45), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(45), - [sym_pandoc_list] = STATE(45), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(45), - [sym_pandoc_div] = STATE(45), - [sym_note_definition_fenced_block] = STATE(45), - [sym__newline] = STATE(45), - [sym__soft_line_break] = STATE(45), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(45), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(47), + [sym_pandoc_list] = STATE(47), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [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), + [sym__inline_whitespace] = STATE(811), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -30572,18 +30844,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(287), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(446), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -30596,12 +30868,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(271), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(289), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(448), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -30629,236 +30901,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(271), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(456), + [sym__caption_start] = ACTIONS(277), }, - [STATE(45)] = { - [sym__block] = STATE(45), - [sym__block_not_section] = STATE(45), - [sym_section] = STATE(45), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [STATE(46)] = { + [sym_minus_metadata] = STATE(41), + [sym__block] = STATE(41), + [sym__block_not_section] = STATE(41), + [sym_section] = STATE(41), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(45), - [sym_pandoc_paragraph] = STATE(45), - [sym_inline_ref_def] = STATE(45), - [sym_caption] = STATE(45), - [sym_pipe_table] = STATE(45), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(45), - [sym_pandoc_list] = STATE(45), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(45), - [sym_pandoc_div] = STATE(45), - [sym_note_definition_fenced_block] = STATE(45), - [sym__newline] = STATE(45), - [sym__soft_line_break] = STATE(45), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(45), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), - [sym_entity_reference] = ACTIONS(291), - [sym_numeric_character_reference] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(294), - [anon_sym_BANG_LBRACK] = ACTIONS(297), - [anon_sym_DOLLAR] = ACTIONS(300), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(303), - [anon_sym_LBRACE] = ACTIONS(306), - [aux_sym_pandoc_str_token1] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(312), - [sym__whitespace] = ACTIONS(315), - [sym__line_ending] = ACTIONS(318), - [sym__soft_line_ending] = ACTIONS(321), - [sym__block_close] = ACTIONS(324), - [sym__block_quote_start] = ACTIONS(326), - [sym_atx_h1_marker] = ACTIONS(329), - [sym_atx_h2_marker] = ACTIONS(332), - [sym_atx_h3_marker] = ACTIONS(335), - [sym_atx_h4_marker] = ACTIONS(338), - [sym_atx_h5_marker] = ACTIONS(341), - [sym_atx_h6_marker] = ACTIONS(344), - [sym__thematic_break] = ACTIONS(347), - [sym__list_marker_minus] = ACTIONS(350), - [sym__list_marker_plus] = ACTIONS(353), - [sym__list_marker_star] = ACTIONS(356), - [sym__list_marker_parenthesis] = ACTIONS(359), - [sym__list_marker_dot] = ACTIONS(362), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(350), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(353), - [sym__list_marker_star_dont_interrupt] = ACTIONS(356), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(359), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(362), - [sym__list_marker_example] = ACTIONS(365), - [sym__list_marker_example_dont_interrupt] = ACTIONS(365), - [sym__fenced_code_block_start_backtick] = ACTIONS(368), - [sym_minus_metadata] = ACTIONS(371), - [sym__pipe_table_start] = ACTIONS(374), - [sym__fenced_div_start] = ACTIONS(377), - [sym__fenced_div_end] = ACTIONS(324), - [sym_ref_id_specifier] = ACTIONS(380), - [sym__code_span_start] = ACTIONS(383), - [sym__html_comment] = ACTIONS(291), - [sym__autolink] = ACTIONS(291), - [sym__highlight_span_start] = ACTIONS(386), - [sym__insert_span_start] = ACTIONS(389), - [sym__delete_span_start] = ACTIONS(392), - [sym__edit_comment_span_start] = ACTIONS(395), - [sym__single_quote_span_open] = ACTIONS(398), - [sym__double_quote_span_open] = ACTIONS(401), - [sym__shortcode_open_escaped] = ACTIONS(404), - [sym__shortcode_open] = ACTIONS(407), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(410), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(416), - [sym__cite_suppress_author] = ACTIONS(419), - [sym__strikeout_open] = ACTIONS(422), - [sym__subscript_open] = ACTIONS(425), - [sym__superscript_open] = ACTIONS(428), - [sym__inline_note_start_token] = ACTIONS(431), - [sym__strong_emphasis_open_star] = ACTIONS(434), - [sym__strong_emphasis_open_underscore] = ACTIONS(437), - [sym__emphasis_open_star] = ACTIONS(440), - [sym__emphasis_open_underscore] = ACTIONS(443), - [sym_inline_note_reference] = ACTIONS(291), - [sym_html_element] = ACTIONS(291), - [sym__pandoc_lt_str] = ACTIONS(312), - [sym__pandoc_line_break] = ACTIONS(291), - [sym_grid_table] = ACTIONS(371), - [sym__caption_start] = ACTIONS(446), - }, - [STATE(46)] = { - [sym__block] = STATE(75), - [sym__block_not_section] = STATE(75), - [sym_section] = STATE(75), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), - [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(75), - [sym_pandoc_list] = STATE(75), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), - [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(75), - [sym_pandoc_div] = STATE(75), - [sym_note_definition_fenced_block] = STATE(75), - [sym__newline] = STATE(75), - [sym__soft_line_break] = STATE(75), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(75), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [sym_pandoc_horizontal_rule] = STATE(41), + [sym_pandoc_paragraph] = STATE(41), + [sym_inline_ref_def] = STATE(41), + [sym_caption] = STATE(41), + [sym_pipe_table] = STATE(41), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(41), + [sym_pandoc_list] = STATE(41), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(41), + [sym_pandoc_div] = STATE(41), + [sym_note_definition_fenced_block] = STATE(41), + [sym__newline] = STATE(41), + [sym__soft_line_break] = STATE(41), + [sym__inline_whitespace] = STATE(811), + [aux_sym_pandoc_block_quote_repeat1] = STATE(41), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -30868,19 +30993,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(115), - [sym__line_ending] = ACTIONS(117), - [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(449), - [sym_block_continuation] = ACTIONS(451), - [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(127), - [sym_atx_h2_marker] = ACTIONS(129), - [sym_atx_h3_marker] = ACTIONS(131), - [sym_atx_h4_marker] = ACTIONS(133), - [sym_atx_h5_marker] = ACTIONS(135), - [sym_atx_h6_marker] = ACTIONS(137), - [sym__thematic_break] = ACTIONS(139), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(458), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -30893,11 +31017,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(453), - [sym__pipe_table_start] = ACTIONS(147), - [sym__fenced_div_start] = ACTIONS(149), - [sym_ref_id_specifier] = ACTIONS(151), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(460), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -30925,88 +31050,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(453), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(275), + [sym__caption_start] = ACTIONS(277), }, [STATE(47)] = { - [sym__block] = STATE(48), - [sym__block_not_section] = STATE(48), - [sym_section] = STATE(48), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [sym_minus_metadata] = STATE(41), + [sym__block] = STATE(41), + [sym__block_not_section] = STATE(41), + [sym_section] = STATE(41), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [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(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(48), - [sym_pandoc_list] = STATE(48), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [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__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(48), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [sym_pandoc_horizontal_rule] = STATE(41), + [sym_pandoc_paragraph] = STATE(41), + [sym_inline_ref_def] = STATE(41), + [sym_caption] = STATE(41), + [sym_pipe_table] = STATE(41), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(41), + [sym_pandoc_list] = STATE(41), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(41), + [sym_pandoc_div] = STATE(41), + [sym_note_definition_fenced_block] = STATE(41), + [sym__newline] = STATE(41), + [sym__soft_line_break] = STATE(41), + [sym__inline_whitespace] = STATE(811), + [aux_sym_pandoc_block_quote_repeat1] = STATE(41), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -31016,18 +31142,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(455), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(462), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -31040,12 +31166,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(457), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(459), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(464), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -31073,88 +31199,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(457), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(275), + [sym__caption_start] = ACTIONS(277), }, [STATE(48)] = { - [sym__block] = STATE(45), - [sym__block_not_section] = STATE(45), - [sym_section] = STATE(45), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [sym_minus_metadata] = STATE(56), + [sym__block] = STATE(56), + [sym__block_not_section] = STATE(56), + [sym_section] = STATE(56), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(45), - [sym_pandoc_paragraph] = STATE(45), - [sym_inline_ref_def] = STATE(45), - [sym_caption] = STATE(45), - [sym_pipe_table] = STATE(45), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(45), - [sym_pandoc_list] = STATE(45), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(45), - [sym_pandoc_div] = STATE(45), - [sym_note_definition_fenced_block] = STATE(45), - [sym__newline] = STATE(45), - [sym__soft_line_break] = STATE(45), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(45), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(56), + [sym_pandoc_list] = STATE(56), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(56), + [sym_pandoc_div] = STATE(56), + [sym_note_definition_fenced_block] = STATE(56), + [sym__newline] = STATE(56), + [sym__soft_line_break] = STATE(56), + [sym__inline_whitespace] = STATE(811), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -31164,18 +31291,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(461), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(466), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -31188,12 +31315,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(271), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(463), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(468), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -31221,88 +31348,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(271), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(470), + [sym__caption_start] = ACTIONS(277), }, [STATE(49)] = { - [sym__block] = STATE(51), - [sym__block_not_section] = STATE(51), - [sym_section] = STATE(51), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [sym_minus_metadata] = STATE(50), + [sym__block] = STATE(50), + [sym__block_not_section] = STATE(50), + [sym_section] = STATE(50), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [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(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(51), - [sym_pandoc_list] = STATE(51), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [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__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(51), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(50), + [sym_pandoc_list] = STATE(50), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [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__inline_whitespace] = STATE(811), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -31312,18 +31440,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(465), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(472), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -31336,12 +31464,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(467), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(469), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(474), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -31369,88 +31497,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(467), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(476), + [sym__caption_start] = ACTIONS(277), }, [STATE(50)] = { - [sym__block] = STATE(52), - [sym__block_not_section] = STATE(52), - [sym_section] = STATE(52), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [sym_minus_metadata] = STATE(41), + [sym__block] = STATE(41), + [sym__block_not_section] = STATE(41), + [sym_section] = STATE(41), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(52), - [sym_pandoc_paragraph] = STATE(52), - [sym_inline_ref_def] = STATE(52), - [sym_caption] = STATE(52), - [sym_pipe_table] = STATE(52), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(52), - [sym_pandoc_list] = STATE(52), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(52), - [sym_pandoc_div] = STATE(52), - [sym_note_definition_fenced_block] = STATE(52), - [sym__newline] = STATE(52), - [sym__soft_line_break] = STATE(52), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [sym_pandoc_horizontal_rule] = STATE(41), + [sym_pandoc_paragraph] = STATE(41), + [sym_inline_ref_def] = STATE(41), + [sym_caption] = STATE(41), + [sym_pipe_table] = STATE(41), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(41), + [sym_pandoc_list] = STATE(41), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(41), + [sym_pandoc_div] = STATE(41), + [sym_note_definition_fenced_block] = STATE(41), + [sym__newline] = STATE(41), + [sym__soft_line_break] = STATE(41), + [sym__inline_whitespace] = STATE(811), + [aux_sym_pandoc_block_quote_repeat1] = STATE(41), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -31460,18 +31589,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(461), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(478), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -31484,12 +31613,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(471), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(463), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(480), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -31517,88 +31646,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(471), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(275), + [sym__caption_start] = ACTIONS(277), }, [STATE(51)] = { - [sym__block] = STATE(45), - [sym__block_not_section] = STATE(45), - [sym_section] = STATE(45), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [sym_minus_metadata] = STATE(53), + [sym__block] = STATE(53), + [sym__block_not_section] = STATE(53), + [sym_section] = STATE(53), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(45), - [sym_pandoc_paragraph] = STATE(45), - [sym_inline_ref_def] = STATE(45), - [sym_caption] = STATE(45), - [sym_pipe_table] = STATE(45), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(45), - [sym_pandoc_list] = STATE(45), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(45), - [sym_pandoc_div] = STATE(45), - [sym_note_definition_fenced_block] = STATE(45), - [sym__newline] = STATE(45), - [sym__soft_line_break] = STATE(45), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(45), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(53), + [sym_pandoc_list] = STATE(53), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(53), + [sym_pandoc_div] = STATE(53), + [sym_note_definition_fenced_block] = STATE(53), + [sym__newline] = STATE(53), + [sym__soft_line_break] = STATE(53), + [sym__inline_whitespace] = STATE(811), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -31608,18 +31738,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(473), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(482), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -31632,12 +31762,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(271), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(475), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(484), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -31665,88 +31795,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(271), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(486), + [sym__caption_start] = ACTIONS(277), }, [STATE(52)] = { - [sym__block] = STATE(45), - [sym__block_not_section] = STATE(45), - [sym_section] = STATE(45), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [sym_minus_metadata] = STATE(54), + [sym__block] = STATE(54), + [sym__block_not_section] = STATE(54), + [sym_section] = STATE(54), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(45), - [sym_pandoc_paragraph] = STATE(45), - [sym_inline_ref_def] = STATE(45), - [sym_caption] = STATE(45), - [sym_pipe_table] = STATE(45), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(45), - [sym_pandoc_list] = STATE(45), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(45), - [sym_pandoc_div] = STATE(45), - [sym_note_definition_fenced_block] = STATE(45), - [sym__newline] = STATE(45), - [sym__soft_line_break] = STATE(45), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(45), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [sym_pandoc_horizontal_rule] = STATE(54), + [sym_pandoc_paragraph] = STATE(54), + [sym_inline_ref_def] = STATE(54), + [sym_caption] = STATE(54), + [sym_pipe_table] = STATE(54), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(54), + [sym_pandoc_list] = STATE(54), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [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__inline_whitespace] = STATE(811), + [aux_sym_pandoc_block_quote_repeat1] = STATE(54), + [aux_sym__list_plus_repeat1] = STATE(136), + [aux_sym__list_minus_repeat1] = STATE(137), + [aux_sym__list_star_repeat1] = STATE(138), + [aux_sym__list_dot_repeat1] = STATE(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -31756,18 +31887,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(477), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(478), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -31780,12 +31911,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(271), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(479), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(480), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -31813,236 +31944,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(271), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(488), + [sym__caption_start] = ACTIONS(277), }, [STATE(53)] = { - [sym__block] = STATE(71), - [sym__block_not_section] = STATE(71), - [sym_section] = STATE(71), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), - [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(71), - [sym_pandoc_paragraph] = STATE(71), - [sym_inline_ref_def] = STATE(71), - [sym_caption] = STATE(71), - [sym_pipe_table] = STATE(71), - [sym__inlines] = STATE(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(71), - [sym_pandoc_list] = STATE(71), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), - [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(71), - [sym_pandoc_div] = STATE(71), - [sym_note_definition_fenced_block] = STATE(71), - [sym__newline] = STATE(71), - [sym__soft_line_break] = STATE(71), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(71), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), - [sym_entity_reference] = ACTIONS(5), - [sym_numeric_character_reference] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(7), - [anon_sym_BANG_LBRACK] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(11), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [aux_sym_pandoc_str_token1] = ACTIONS(17), - [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(115), - [sym__line_ending] = ACTIONS(117), - [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(481), - [sym_block_continuation] = ACTIONS(483), - [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(127), - [sym_atx_h2_marker] = ACTIONS(129), - [sym_atx_h3_marker] = ACTIONS(131), - [sym_atx_h4_marker] = ACTIONS(133), - [sym_atx_h5_marker] = ACTIONS(135), - [sym_atx_h6_marker] = ACTIONS(137), - [sym__thematic_break] = ACTIONS(139), - [sym__list_marker_minus] = ACTIONS(43), - [sym__list_marker_plus] = ACTIONS(45), - [sym__list_marker_star] = ACTIONS(47), - [sym__list_marker_parenthesis] = ACTIONS(49), - [sym__list_marker_dot] = ACTIONS(51), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(43), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(45), - [sym__list_marker_star_dont_interrupt] = ACTIONS(47), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(49), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), - [sym__list_marker_example] = ACTIONS(53), - [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(485), - [sym__pipe_table_start] = ACTIONS(147), - [sym__fenced_div_start] = ACTIONS(149), - [sym_ref_id_specifier] = ACTIONS(151), - [sym__code_span_start] = ACTIONS(65), - [sym__html_comment] = ACTIONS(5), - [sym__autolink] = ACTIONS(5), - [sym__highlight_span_start] = ACTIONS(67), - [sym__insert_span_start] = ACTIONS(69), - [sym__delete_span_start] = ACTIONS(71), - [sym__edit_comment_span_start] = ACTIONS(73), - [sym__single_quote_span_open] = ACTIONS(75), - [sym__double_quote_span_open] = ACTIONS(77), - [sym__shortcode_open_escaped] = ACTIONS(79), - [sym__shortcode_open] = ACTIONS(81), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(83), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(85), - [sym__cite_author_in_text] = ACTIONS(87), - [sym__cite_suppress_author] = ACTIONS(89), - [sym__strikeout_open] = ACTIONS(91), - [sym__subscript_open] = ACTIONS(93), - [sym__superscript_open] = ACTIONS(95), - [sym__inline_note_start_token] = ACTIONS(97), - [sym__strong_emphasis_open_star] = ACTIONS(99), - [sym__strong_emphasis_open_underscore] = ACTIONS(101), - [sym__emphasis_open_star] = ACTIONS(103), - [sym__emphasis_open_underscore] = ACTIONS(105), - [sym_inline_note_reference] = ACTIONS(5), - [sym_html_element] = ACTIONS(5), - [sym__pandoc_lt_str] = ACTIONS(19), - [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(485), - [sym__caption_start] = ACTIONS(153), - }, - [STATE(54)] = { - [sym__block] = STATE(55), - [sym__block_not_section] = STATE(55), - [sym_section] = STATE(55), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [sym_minus_metadata] = STATE(41), + [sym__block] = STATE(41), + [sym__block_not_section] = STATE(41), + [sym_section] = STATE(41), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(55), - [sym_pandoc_paragraph] = STATE(55), - [sym_inline_ref_def] = STATE(55), - [sym_caption] = STATE(55), - [sym_pipe_table] = STATE(55), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(55), - [sym_pandoc_list] = STATE(55), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(55), - [sym_pandoc_div] = STATE(55), - [sym_note_definition_fenced_block] = STATE(55), - [sym__newline] = STATE(55), - [sym__soft_line_break] = STATE(55), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(55), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [sym_pandoc_horizontal_rule] = STATE(41), + [sym_pandoc_paragraph] = STATE(41), + [sym_inline_ref_def] = STATE(41), + [sym_caption] = STATE(41), + [sym_pipe_table] = STATE(41), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(41), + [sym_pandoc_list] = STATE(41), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(41), + [sym_pandoc_div] = STATE(41), + [sym_note_definition_fenced_block] = STATE(41), + [sym__newline] = STATE(41), + [sym__soft_line_break] = STATE(41), + [sym__inline_whitespace] = STATE(811), + [aux_sym_pandoc_block_quote_repeat1] = STATE(41), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -32052,18 +32036,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(487), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(490), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -32076,12 +32060,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(489), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(491), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(492), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -32109,236 +32093,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(489), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(275), + [sym__caption_start] = ACTIONS(277), }, - [STATE(55)] = { - [sym__block] = STATE(45), - [sym__block_not_section] = STATE(45), - [sym_section] = STATE(45), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), - [sym__atx_heading5] = STATE(112), - [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(45), - [sym_pandoc_paragraph] = STATE(45), - [sym_inline_ref_def] = STATE(45), - [sym_caption] = STATE(45), - [sym_pipe_table] = STATE(45), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(45), - [sym_pandoc_list] = STATE(45), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(45), - [sym_pandoc_div] = STATE(45), - [sym_note_definition_fenced_block] = STATE(45), - [sym__newline] = STATE(45), - [sym__soft_line_break] = STATE(45), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(45), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), - [sym_entity_reference] = ACTIONS(5), - [sym_numeric_character_reference] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(7), - [anon_sym_BANG_LBRACK] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(11), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [aux_sym_pandoc_str_token1] = ACTIONS(17), - [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(493), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), - [sym__list_marker_minus] = ACTIONS(43), - [sym__list_marker_plus] = ACTIONS(45), - [sym__list_marker_star] = ACTIONS(47), - [sym__list_marker_parenthesis] = ACTIONS(49), - [sym__list_marker_dot] = ACTIONS(51), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(43), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(45), - [sym__list_marker_star_dont_interrupt] = ACTIONS(47), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(49), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), - [sym__list_marker_example] = ACTIONS(53), - [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(271), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(495), - [sym_ref_id_specifier] = ACTIONS(265), - [sym__code_span_start] = ACTIONS(65), - [sym__html_comment] = ACTIONS(5), - [sym__autolink] = ACTIONS(5), - [sym__highlight_span_start] = ACTIONS(67), - [sym__insert_span_start] = ACTIONS(69), - [sym__delete_span_start] = ACTIONS(71), - [sym__edit_comment_span_start] = ACTIONS(73), - [sym__single_quote_span_open] = ACTIONS(75), - [sym__double_quote_span_open] = ACTIONS(77), - [sym__shortcode_open_escaped] = ACTIONS(79), - [sym__shortcode_open] = ACTIONS(81), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(83), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(85), - [sym__cite_author_in_text] = ACTIONS(87), - [sym__cite_suppress_author] = ACTIONS(89), - [sym__strikeout_open] = ACTIONS(91), - [sym__subscript_open] = ACTIONS(93), - [sym__superscript_open] = ACTIONS(95), - [sym__inline_note_start_token] = ACTIONS(97), - [sym__strong_emphasis_open_star] = ACTIONS(99), - [sym__strong_emphasis_open_underscore] = ACTIONS(101), - [sym__emphasis_open_star] = ACTIONS(103), - [sym__emphasis_open_underscore] = ACTIONS(105), - [sym_inline_note_reference] = ACTIONS(5), - [sym_html_element] = ACTIONS(5), - [sym__pandoc_lt_str] = ACTIONS(19), - [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(271), - [sym__caption_start] = ACTIONS(267), - }, - [STATE(56)] = { - [sym__block] = STATE(58), - [sym__block_not_section] = STATE(58), - [sym_section] = STATE(58), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [STATE(54)] = { + [sym_minus_metadata] = STATE(41), + [sym__block] = STATE(41), + [sym__block_not_section] = STATE(41), + [sym_section] = STATE(41), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [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(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(58), - [sym_pandoc_list] = STATE(58), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [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__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [sym_pandoc_horizontal_rule] = STATE(41), + [sym_pandoc_paragraph] = STATE(41), + [sym_inline_ref_def] = STATE(41), + [sym_caption] = STATE(41), + [sym_pipe_table] = STATE(41), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(41), + [sym_pandoc_list] = STATE(41), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(41), + [sym_pandoc_div] = STATE(41), + [sym_note_definition_fenced_block] = STATE(41), + [sym__newline] = STATE(41), + [sym__soft_line_break] = STATE(41), + [sym__inline_whitespace] = STATE(811), + [aux_sym_pandoc_block_quote_repeat1] = STATE(41), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -32348,18 +32185,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(497), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(494), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -32372,12 +32209,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(499), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(501), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(496), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -32405,88 +32242,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(499), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(275), + [sym__caption_start] = ACTIONS(277), }, - [STATE(57)] = { - [sym__block] = STATE(59), - [sym__block_not_section] = STATE(59), - [sym_section] = STATE(59), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), - [sym__atx_heading5] = STATE(112), - [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(59), - [sym_pandoc_paragraph] = STATE(59), - [sym_inline_ref_def] = STATE(59), - [sym_caption] = STATE(59), - [sym_pipe_table] = STATE(59), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(59), - [sym_pandoc_list] = STATE(59), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [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), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(59), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [STATE(55)] = { + [sym_minus_metadata] = STATE(73), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), + [sym__list_item_plus] = STATE(159), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [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__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(159), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -32496,18 +32334,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(493), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(115), + [sym__line_ending] = ACTIONS(117), + [sym__soft_line_ending] = ACTIONS(119), + [sym__block_close] = ACTIONS(498), + [sym_block_continuation] = ACTIONS(500), + [sym__block_quote_start] = ACTIONS(125), + [sym_atx_h1_marker] = ACTIONS(127), + [sym_atx_h2_marker] = ACTIONS(129), + [sym_atx_h3_marker] = ACTIONS(131), + [sym_atx_h4_marker] = ACTIONS(133), + [sym_atx_h5_marker] = ACTIONS(135), + [sym_atx_h6_marker] = ACTIONS(137), + [sym__thematic_break] = ACTIONS(139), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -32520,12 +32359,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(503), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(495), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(141), + [sym__minus_metadata_start] = ACTIONS(145), + [sym__pipe_table_start] = ACTIONS(147), + [sym__fenced_div_start] = ACTIONS(149), + [sym_ref_id_specifier] = ACTIONS(151), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -32553,88 +32391,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(503), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(502), + [sym__caption_start] = ACTIONS(155), }, - [STATE(58)] = { - [sym__block] = STATE(45), - [sym__block_not_section] = STATE(45), - [sym_section] = STATE(45), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [STATE(56)] = { + [sym_minus_metadata] = STATE(41), + [sym__block] = STATE(41), + [sym__block_not_section] = STATE(41), + [sym_section] = STATE(41), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(45), - [sym_pandoc_paragraph] = STATE(45), - [sym_inline_ref_def] = STATE(45), - [sym_caption] = STATE(45), - [sym_pipe_table] = STATE(45), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(45), - [sym_pandoc_list] = STATE(45), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(45), - [sym_pandoc_div] = STATE(45), - [sym_note_definition_fenced_block] = STATE(45), - [sym__newline] = STATE(45), - [sym__soft_line_break] = STATE(45), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(45), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [sym_pandoc_horizontal_rule] = STATE(41), + [sym_pandoc_paragraph] = STATE(41), + [sym_inline_ref_def] = STATE(41), + [sym_caption] = STATE(41), + [sym_pipe_table] = STATE(41), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(41), + [sym_pandoc_list] = STATE(41), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(41), + [sym_pandoc_div] = STATE(41), + [sym_note_definition_fenced_block] = STATE(41), + [sym__newline] = STATE(41), + [sym__soft_line_break] = STATE(41), + [sym__inline_whitespace] = STATE(811), + [aux_sym_pandoc_block_quote_repeat1] = STATE(41), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -32644,18 +32483,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(505), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(504), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -32668,12 +32507,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(271), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(507), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(506), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -32701,88 +32540,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(271), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(275), + [sym__caption_start] = ACTIONS(277), }, - [STATE(59)] = { - [sym__block] = STATE(45), - [sym__block_not_section] = STATE(45), - [sym_section] = STATE(45), - [sym__section1] = STATE(294), - [sym__section2] = STATE(294), - [sym__section3] = STATE(294), - [sym__section4] = STATE(294), - [sym__section5] = STATE(294), - [sym__section6] = STATE(294), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [STATE(57)] = { + [sym_minus_metadata] = STATE(59), + [sym__block] = STATE(59), + [sym__block_not_section] = STATE(59), + [sym_section] = STATE(59), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(45), - [sym_pandoc_paragraph] = STATE(45), - [sym_inline_ref_def] = STATE(45), - [sym_caption] = STATE(45), - [sym_pipe_table] = STATE(45), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(45), - [sym_pandoc_list] = STATE(45), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(45), - [sym_pandoc_div] = STATE(45), - [sym_note_definition_fenced_block] = STATE(45), - [sym__newline] = STATE(45), - [sym__soft_line_break] = STATE(45), - [sym__inline_whitespace] = STATE(802), - [aux_sym_pandoc_block_quote_repeat1] = STATE(45), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(59), + [sym_pandoc_list] = STATE(59), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [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), + [sym__inline_whitespace] = STATE(811), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -32792,18 +32632,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(509), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(241), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(508), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -32816,12 +32656,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(271), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(511), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(510), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -32849,236 +32689,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(271), - [sym__caption_start] = ACTIONS(267), - }, - [STATE(60)] = { - [sym__block] = STATE(60), - [sym__block_not_section] = STATE(60), - [sym_section] = STATE(60), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), - [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(60), - [sym_pandoc_list] = STATE(60), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), - [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(60), - [sym_pandoc_div] = STATE(60), - [sym_note_definition_fenced_block] = STATE(60), - [sym__newline] = STATE(60), - [sym__soft_line_break] = STATE(60), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(60), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), - [sym_entity_reference] = ACTIONS(291), - [sym_numeric_character_reference] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(294), - [anon_sym_BANG_LBRACK] = ACTIONS(297), - [anon_sym_DOLLAR] = ACTIONS(300), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(303), - [anon_sym_LBRACE] = ACTIONS(306), - [aux_sym_pandoc_str_token1] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(312), - [sym__whitespace] = ACTIONS(513), - [sym__line_ending] = ACTIONS(516), - [sym__soft_line_ending] = ACTIONS(519), - [sym__block_close] = ACTIONS(324), - [sym__block_quote_start] = ACTIONS(522), - [sym_atx_h1_marker] = ACTIONS(525), - [sym_atx_h2_marker] = ACTIONS(528), - [sym_atx_h3_marker] = ACTIONS(531), - [sym_atx_h4_marker] = ACTIONS(534), - [sym_atx_h5_marker] = ACTIONS(537), - [sym_atx_h6_marker] = ACTIONS(540), - [sym__thematic_break] = ACTIONS(543), - [sym__list_marker_minus] = ACTIONS(350), - [sym__list_marker_plus] = ACTIONS(353), - [sym__list_marker_star] = ACTIONS(356), - [sym__list_marker_parenthesis] = ACTIONS(359), - [sym__list_marker_dot] = ACTIONS(362), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(350), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(353), - [sym__list_marker_star_dont_interrupt] = ACTIONS(356), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(359), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(362), - [sym__list_marker_example] = ACTIONS(365), - [sym__list_marker_example_dont_interrupt] = ACTIONS(365), - [sym__fenced_code_block_start_backtick] = ACTIONS(546), - [sym_minus_metadata] = ACTIONS(549), - [sym__pipe_table_start] = ACTIONS(552), - [sym__fenced_div_start] = ACTIONS(555), - [sym_ref_id_specifier] = ACTIONS(558), - [sym__code_span_start] = ACTIONS(383), - [sym__html_comment] = ACTIONS(291), - [sym__autolink] = ACTIONS(291), - [sym__highlight_span_start] = ACTIONS(386), - [sym__insert_span_start] = ACTIONS(389), - [sym__delete_span_start] = ACTIONS(392), - [sym__edit_comment_span_start] = ACTIONS(395), - [sym__single_quote_span_open] = ACTIONS(398), - [sym__double_quote_span_open] = ACTIONS(401), - [sym__shortcode_open_escaped] = ACTIONS(404), - [sym__shortcode_open] = ACTIONS(407), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(410), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(416), - [sym__cite_suppress_author] = ACTIONS(419), - [sym__strikeout_open] = ACTIONS(422), - [sym__subscript_open] = ACTIONS(425), - [sym__superscript_open] = ACTIONS(428), - [sym__inline_note_start_token] = ACTIONS(431), - [sym__strong_emphasis_open_star] = ACTIONS(434), - [sym__strong_emphasis_open_underscore] = ACTIONS(437), - [sym__emphasis_open_star] = ACTIONS(440), - [sym__emphasis_open_underscore] = ACTIONS(443), - [sym_inline_note_reference] = ACTIONS(291), - [sym_html_element] = ACTIONS(291), - [sym__pandoc_lt_str] = ACTIONS(312), - [sym__pandoc_line_break] = ACTIONS(291), - [sym_grid_table] = ACTIONS(549), - [sym__caption_start] = ACTIONS(561), + [sym_grid_table] = ACTIONS(512), + [sym__caption_start] = ACTIONS(277), }, - [STATE(61)] = { - [sym__block_not_section] = STATE(362), - [sym_section] = STATE(2504), - [sym__section1] = STATE(2787), - [sym__section2] = STATE(2787), - [sym__section3] = STATE(2787), - [sym__section4] = STATE(2787), - [sym__section5] = STATE(2787), - [sym__section6] = STATE(2787), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(101), - [sym__atx_heading4] = STATE(110), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), - [sym_pandoc_horizontal_rule] = STATE(362), - [sym_pandoc_paragraph] = STATE(362), - [sym_inline_ref_def] = STATE(362), - [sym_caption] = STATE(362), - [sym_pipe_table] = STATE(362), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(362), - [sym_pandoc_list] = STATE(362), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), - [sym__list_item_example] = STATE(157), - [sym_pandoc_code_block] = STATE(362), - [sym_pandoc_div] = STATE(362), - [sym_note_definition_fenced_block] = STATE(362), - [sym__newline] = STATE(362), - [sym__soft_line_break] = STATE(362), - [sym__inline_whitespace] = STATE(800), - [aux_sym_document_repeat1] = STATE(66), - [aux_sym_document_repeat2] = STATE(2504), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), - [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(564), + [STATE(58)] = { + [sym_minus_metadata] = STATE(40), + [sym__block] = STATE(40), + [sym__block_not_section] = STATE(40), + [sym_section] = STATE(40), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(40), + [sym_pandoc_paragraph] = STATE(40), + [sym_inline_ref_def] = STATE(40), + [sym_caption] = STATE(40), + [sym_pipe_table] = STATE(40), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(40), + [sym_pandoc_list] = STATE(40), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(40), + [sym_pandoc_div] = STATE(40), + [sym_note_definition_fenced_block] = STATE(40), + [sym__newline] = STATE(40), + [sym__soft_line_break] = STATE(40), + [sym__inline_whitespace] = STATE(811), + [aux_sym_pandoc_block_quote_repeat1] = STATE(40), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -33088,17 +32781,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(21), - [sym__line_ending] = ACTIONS(23), - [sym__soft_line_ending] = ACTIONS(25), - [sym__block_quote_start] = ACTIONS(27), - [sym_atx_h1_marker] = ACTIONS(29), - [sym_atx_h2_marker] = ACTIONS(31), - [sym_atx_h3_marker] = ACTIONS(33), - [sym_atx_h4_marker] = ACTIONS(35), - [sym_atx_h5_marker] = ACTIONS(37), - [sym_atx_h6_marker] = ACTIONS(39), - [sym__thematic_break] = ACTIONS(41), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(504), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -33111,11 +32805,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(107), - [sym__pipe_table_start] = ACTIONS(59), - [sym__fenced_div_start] = ACTIONS(61), - [sym_ref_id_specifier] = ACTIONS(63), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(506), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -33143,88 +32838,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(107), - [sym__caption_start] = ACTIONS(109), + [sym_grid_table] = ACTIONS(514), + [sym__caption_start] = ACTIONS(277), }, - [STATE(62)] = { - [sym__block] = STATE(73), - [sym__block_not_section] = STATE(73), - [sym_section] = STATE(73), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), - [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(73), - [sym_pandoc_list] = STATE(73), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), - [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [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__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(73), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [STATE(59)] = { + [sym_minus_metadata] = STATE(41), + [sym__block] = STATE(41), + [sym__block_not_section] = STATE(41), + [sym_section] = STATE(41), + [sym__section1] = STATE(228), + [sym__section2] = STATE(228), + [sym__section3] = STATE(228), + [sym__section4] = STATE(228), + [sym__section5] = STATE(228), + [sym__section6] = STATE(228), + [sym__atx_heading1] = STATE(77), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(41), + [sym_pandoc_paragraph] = STATE(41), + [sym_inline_ref_def] = STATE(41), + [sym_caption] = STATE(41), + [sym_pipe_table] = STATE(41), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(41), + [sym_pandoc_list] = STATE(41), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(41), + [sym_pandoc_div] = STATE(41), + [sym_note_definition_fenced_block] = STATE(41), + [sym__newline] = STATE(41), + [sym__soft_line_break] = STATE(41), + [sym__inline_whitespace] = STATE(811), + [aux_sym_pandoc_block_quote_repeat1] = STATE(41), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -33234,18 +32930,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(115), - [sym__line_ending] = ACTIONS(117), - [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(566), - [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(127), - [sym_atx_h2_marker] = ACTIONS(129), - [sym_atx_h3_marker] = ACTIONS(131), - [sym_atx_h4_marker] = ACTIONS(133), - [sym_atx_h5_marker] = ACTIONS(135), - [sym_atx_h6_marker] = ACTIONS(137), - [sym__thematic_break] = ACTIONS(139), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(516), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(249), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -33258,11 +32954,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(568), - [sym__pipe_table_start] = ACTIONS(147), - [sym__fenced_div_start] = ACTIONS(149), - [sym_ref_id_specifier] = ACTIONS(151), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(518), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -33290,89 +32987,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(568), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(275), + [sym__caption_start] = ACTIONS(277), }, - [STATE(63)] = { - [sym__block_not_section] = STATE(362), - [sym_section] = STATE(2501), - [sym__section1] = STATE(2787), - [sym__section2] = STATE(2787), - [sym__section3] = STATE(2787), - [sym__section4] = STATE(2787), - [sym__section5] = STATE(2787), - [sym__section6] = STATE(2787), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(91), + [STATE(60)] = { + [sym_minus_metadata] = STATE(477), + [sym__block_not_section] = STATE(477), + [sym_section] = STATE(2507), + [sym__section1] = STATE(2767), + [sym__section2] = STATE(2767), + [sym__section3] = STATE(2767), + [sym__section4] = STATE(2767), + [sym__section5] = STATE(2767), + [sym__section6] = STATE(2767), + [sym__atx_heading1] = STATE(83), + [sym__atx_heading2] = STATE(90), [sym__atx_heading3] = STATE(101), - [sym__atx_heading4] = STATE(110), + [sym__atx_heading4] = STATE(109), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), - [sym_pandoc_horizontal_rule] = STATE(362), - [sym_pandoc_paragraph] = STATE(362), - [sym_inline_ref_def] = STATE(362), - [sym_caption] = STATE(362), - [sym_pipe_table] = STATE(362), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(362), - [sym_pandoc_list] = STATE(362), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(477), + [sym_pandoc_paragraph] = STATE(477), + [sym_inline_ref_def] = STATE(477), + [sym_caption] = STATE(477), + [sym_pipe_table] = STATE(477), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(477), + [sym_pandoc_list] = STATE(477), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), [sym__list_item_example] = STATE(157), - [sym_pandoc_code_block] = STATE(362), - [sym_pandoc_div] = STATE(362), - [sym_note_definition_fenced_block] = STATE(362), - [sym__newline] = STATE(362), - [sym__soft_line_break] = STATE(362), - [sym__inline_whitespace] = STATE(800), - [aux_sym_document_repeat1] = STATE(126), - [aux_sym_document_repeat2] = STATE(2501), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), + [sym_pandoc_code_block] = STATE(477), + [sym_pandoc_div] = STATE(477), + [sym_note_definition_fenced_block] = STATE(477), + [sym__newline] = STATE(477), + [sym__soft_line_break] = STATE(477), + [sym__inline_whitespace] = STATE(804), + [aux_sym_document_repeat1] = STATE(128), + [aux_sym_document_repeat2] = STATE(2507), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(570), + [ts_builtin_sym_end] = ACTIONS(520), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -33406,7 +33104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(107), + [sym__minus_metadata_start] = ACTIONS(57), [sym__pipe_table_start] = ACTIONS(59), [sym__fenced_div_start] = ACTIONS(61), [sym_ref_id_specifier] = ACTIONS(63), @@ -33440,85 +33138,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(107), [sym__caption_start] = ACTIONS(109), }, - [STATE(64)] = { - [sym__block] = STATE(74), - [sym__block_not_section] = STATE(74), - [sym_section] = STATE(74), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), - [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(74), - [sym_pandoc_list] = STATE(74), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), - [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [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__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(74), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [STATE(61)] = { + [sym_minus_metadata] = STATE(477), + [sym__block_not_section] = STATE(477), + [sym_section] = STATE(2506), + [sym__section1] = STATE(2767), + [sym__section2] = STATE(2767), + [sym__section3] = STATE(2767), + [sym__section4] = STATE(2767), + [sym__section5] = STATE(2767), + [sym__section6] = STATE(2767), + [sym__atx_heading1] = STATE(83), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(101), + [sym__atx_heading4] = STATE(109), + [sym__atx_heading5] = STATE(118), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(477), + [sym_pandoc_paragraph] = STATE(477), + [sym_inline_ref_def] = STATE(477), + [sym_caption] = STATE(477), + [sym_pipe_table] = STATE(477), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(477), + [sym_pandoc_list] = STATE(477), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), + [sym__list_item_example] = STATE(157), + [sym_pandoc_code_block] = STATE(477), + [sym_pandoc_div] = STATE(477), + [sym_note_definition_fenced_block] = STATE(477), + [sym__newline] = STATE(477), + [sym__soft_line_break] = STATE(477), + [sym__inline_whitespace] = STATE(804), + [aux_sym_document_repeat1] = STATE(69), + [aux_sym_document_repeat2] = STATE(2506), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), + [aux_sym__list_example_repeat1] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(522), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -33528,18 +33228,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(115), - [sym__line_ending] = ACTIONS(117), - [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(572), - [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(127), - [sym_atx_h2_marker] = ACTIONS(129), - [sym_atx_h3_marker] = ACTIONS(131), - [sym_atx_h4_marker] = ACTIONS(133), - [sym_atx_h5_marker] = ACTIONS(135), - [sym_atx_h6_marker] = ACTIONS(137), - [sym__thematic_break] = ACTIONS(139), + [sym__whitespace] = ACTIONS(21), + [sym__line_ending] = ACTIONS(23), + [sym__soft_line_ending] = ACTIONS(25), + [sym__block_quote_start] = ACTIONS(27), + [sym_atx_h1_marker] = ACTIONS(29), + [sym_atx_h2_marker] = ACTIONS(31), + [sym_atx_h3_marker] = ACTIONS(33), + [sym_atx_h4_marker] = ACTIONS(35), + [sym_atx_h5_marker] = ACTIONS(37), + [sym_atx_h6_marker] = ACTIONS(39), + [sym__thematic_break] = ACTIONS(41), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -33552,11 +33251,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(574), - [sym__pipe_table_start] = ACTIONS(147), - [sym__fenced_div_start] = ACTIONS(149), - [sym_ref_id_specifier] = ACTIONS(151), + [sym__fenced_code_block_start_backtick] = ACTIONS(55), + [sym__minus_metadata_start] = ACTIONS(57), + [sym__pipe_table_start] = ACTIONS(59), + [sym__fenced_div_start] = ACTIONS(61), + [sym_ref_id_specifier] = ACTIONS(63), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -33584,88 +33283,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(574), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(107), + [sym__caption_start] = ACTIONS(109), }, - [STATE(65)] = { - [sym__block] = STATE(60), - [sym__block_not_section] = STATE(60), - [sym_section] = STATE(60), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [STATE(62)] = { + [sym_minus_metadata] = STATE(63), + [sym__block] = STATE(63), + [sym__block_not_section] = STATE(63), + [sym_section] = STATE(63), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(60), - [sym_pandoc_list] = STATE(60), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(63), + [sym_pandoc_list] = STATE(63), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(60), - [sym_pandoc_div] = STATE(60), - [sym_note_definition_fenced_block] = STATE(60), - [sym__newline] = STATE(60), - [sym__soft_line_break] = STATE(60), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(60), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(63), + [sym_pandoc_div] = STATE(63), + [sym_note_definition_fenced_block] = STATE(63), + [sym__newline] = STATE(63), + [sym__soft_line_break] = STATE(63), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(63), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -33678,7 +33378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(572), + [sym__block_close] = ACTIONS(524), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -33700,7 +33400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(576), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -33731,89 +33431,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(576), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(526), + [sym__caption_start] = ACTIONS(155), }, - [STATE(66)] = { - [sym__block_not_section] = STATE(362), - [sym_section] = STATE(2500), - [sym__section1] = STATE(2787), - [sym__section2] = STATE(2787), - [sym__section3] = STATE(2787), - [sym__section4] = STATE(2787), - [sym__section5] = STATE(2787), - [sym__section6] = STATE(2787), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(101), + [STATE(63)] = { + [sym_minus_metadata] = STATE(75), + [sym__block] = STATE(75), + [sym__block_not_section] = STATE(75), + [sym_section] = STATE(75), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), [sym__atx_heading4] = STATE(110), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), - [sym_pandoc_horizontal_rule] = STATE(362), - [sym_pandoc_paragraph] = STATE(362), - [sym_inline_ref_def] = STATE(362), - [sym_caption] = STATE(362), - [sym_pipe_table] = STATE(362), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(362), - [sym_pandoc_list] = STATE(362), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), - [sym__list_item_example] = STATE(157), - [sym_pandoc_code_block] = STATE(362), - [sym_pandoc_div] = STATE(362), - [sym_note_definition_fenced_block] = STATE(362), - [sym__newline] = STATE(362), - [sym__soft_line_break] = STATE(362), - [sym__inline_whitespace] = STATE(800), - [aux_sym_document_repeat1] = STATE(126), - [aux_sym_document_repeat2] = STATE(2500), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), - [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(578), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(75), + [sym_pandoc_list] = STATE(75), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), + [sym__list_item_plus] = STATE(159), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(75), + [sym_pandoc_div] = STATE(75), + [sym_note_definition_fenced_block] = STATE(75), + [sym__newline] = STATE(75), + [sym__soft_line_break] = STATE(75), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(75), + [aux_sym__list_plus_repeat1] = STATE(159), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -33823,17 +33523,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(21), - [sym__line_ending] = ACTIONS(23), - [sym__soft_line_ending] = ACTIONS(25), - [sym__block_quote_start] = ACTIONS(27), - [sym_atx_h1_marker] = ACTIONS(29), - [sym_atx_h2_marker] = ACTIONS(31), - [sym_atx_h3_marker] = ACTIONS(33), - [sym_atx_h4_marker] = ACTIONS(35), - [sym_atx_h5_marker] = ACTIONS(37), - [sym_atx_h6_marker] = ACTIONS(39), - [sym__thematic_break] = ACTIONS(41), + [sym__whitespace] = ACTIONS(115), + [sym__line_ending] = ACTIONS(117), + [sym__soft_line_ending] = ACTIONS(119), + [sym__block_close] = ACTIONS(528), + [sym__block_quote_start] = ACTIONS(125), + [sym_atx_h1_marker] = ACTIONS(127), + [sym_atx_h2_marker] = ACTIONS(129), + [sym_atx_h3_marker] = ACTIONS(131), + [sym_atx_h4_marker] = ACTIONS(133), + [sym_atx_h5_marker] = ACTIONS(135), + [sym_atx_h6_marker] = ACTIONS(137), + [sym__thematic_break] = ACTIONS(139), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -33846,11 +33547,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(107), - [sym__pipe_table_start] = ACTIONS(59), - [sym__fenced_div_start] = ACTIONS(61), - [sym_ref_id_specifier] = ACTIONS(63), + [sym__fenced_code_block_start_backtick] = ACTIONS(141), + [sym__minus_metadata_start] = ACTIONS(145), + [sym__pipe_table_start] = ACTIONS(147), + [sym__fenced_div_start] = ACTIONS(149), + [sym_ref_id_specifier] = ACTIONS(151), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -33878,88 +33579,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(107), - [sym__caption_start] = ACTIONS(109), + [sym_grid_table] = ACTIONS(530), + [sym__caption_start] = ACTIONS(155), }, - [STATE(67)] = { - [sym__block] = STATE(68), - [sym__block_not_section] = STATE(68), - [sym_section] = STATE(68), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [STATE(64)] = { + [sym_minus_metadata] = STATE(74), + [sym__block] = STATE(74), + [sym__block_not_section] = STATE(74), + [sym_section] = STATE(74), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(68), - [sym_pandoc_list] = STATE(68), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(74), + [sym_pandoc_list] = STATE(74), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(68), - [sym_pandoc_div] = STATE(68), - [sym_note_definition_fenced_block] = STATE(68), - [sym__newline] = STATE(68), - [sym__soft_line_break] = STATE(68), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(68), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [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__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(74), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -33972,7 +33674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(580), + [sym__block_close] = ACTIONS(532), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -33994,7 +33696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(582), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -34025,88 +33727,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(582), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(534), + [sym__caption_start] = ACTIONS(155), }, - [STATE(68)] = { - [sym__block] = STATE(60), - [sym__block_not_section] = STATE(60), - [sym_section] = STATE(60), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [STATE(65)] = { + [sym_minus_metadata] = STATE(75), + [sym__block] = STATE(75), + [sym__block_not_section] = STATE(75), + [sym_section] = STATE(75), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(60), - [sym_pandoc_list] = STATE(60), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(75), + [sym_pandoc_list] = STATE(75), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(60), - [sym_pandoc_div] = STATE(60), - [sym_note_definition_fenced_block] = STATE(60), - [sym__newline] = STATE(60), - [sym__soft_line_break] = STATE(60), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(60), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(75), + [sym_pandoc_div] = STATE(75), + [sym_note_definition_fenced_block] = STATE(75), + [sym__newline] = STATE(75), + [sym__soft_line_break] = STATE(75), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(75), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -34119,7 +33822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(584), + [sym__block_close] = ACTIONS(532), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -34141,7 +33844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(576), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -34172,88 +33875,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(576), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(530), + [sym__caption_start] = ACTIONS(155), }, - [STATE(69)] = { - [sym__block] = STATE(60), - [sym__block_not_section] = STATE(60), - [sym_section] = STATE(60), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [STATE(66)] = { + [sym_minus_metadata] = STATE(68), + [sym__block] = STATE(68), + [sym__block_not_section] = STATE(68), + [sym_section] = STATE(68), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(60), - [sym_pandoc_list] = STATE(60), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(68), + [sym_pandoc_list] = STATE(68), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(60), - [sym_pandoc_div] = STATE(60), - [sym_note_definition_fenced_block] = STATE(60), - [sym__newline] = STATE(60), - [sym__soft_line_break] = STATE(60), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(60), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(68), + [sym_pandoc_div] = STATE(68), + [sym_note_definition_fenced_block] = STATE(68), + [sym__newline] = STATE(68), + [sym__soft_line_break] = STATE(68), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(68), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -34266,7 +33970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(586), + [sym__block_close] = ACTIONS(536), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -34288,7 +33992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(576), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -34319,88 +34023,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(576), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(538), + [sym__caption_start] = ACTIONS(155), }, - [STATE(70)] = { - [sym__block] = STATE(72), - [sym__block_not_section] = STATE(72), - [sym_section] = STATE(72), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [STATE(67)] = { + [sym_minus_metadata] = STATE(75), + [sym__block] = STATE(75), + [sym__block_not_section] = STATE(75), + [sym_section] = STATE(75), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(72), - [sym_pandoc_list] = STATE(72), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(75), + [sym_pandoc_list] = STATE(75), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(72), - [sym_pandoc_div] = STATE(72), - [sym_note_definition_fenced_block] = STATE(72), - [sym__newline] = STATE(72), - [sym__soft_line_break] = STATE(72), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(72), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(75), + [sym_pandoc_div] = STATE(75), + [sym_note_definition_fenced_block] = STATE(75), + [sym__newline] = STATE(75), + [sym__soft_line_break] = STATE(75), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(75), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -34413,7 +34118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(588), + [sym__block_close] = ACTIONS(536), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -34435,7 +34140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(590), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -34466,88 +34171,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(590), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(530), + [sym__caption_start] = ACTIONS(155), }, - [STATE(71)] = { - [sym__block] = STATE(60), - [sym__block_not_section] = STATE(60), - [sym_section] = STATE(60), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [STATE(68)] = { + [sym_minus_metadata] = STATE(75), + [sym__block] = STATE(75), + [sym__block_not_section] = STATE(75), + [sym_section] = STATE(75), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(60), - [sym_pandoc_list] = STATE(60), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(75), + [sym_pandoc_list] = STATE(75), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(60), - [sym_pandoc_div] = STATE(60), - [sym_note_definition_fenced_block] = STATE(60), - [sym__newline] = STATE(60), - [sym__soft_line_break] = STATE(60), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(60), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(75), + [sym_pandoc_div] = STATE(75), + [sym_note_definition_fenced_block] = STATE(75), + [sym__newline] = STATE(75), + [sym__soft_line_break] = STATE(75), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(75), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -34560,7 +34266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(588), + [sym__block_close] = ACTIONS(540), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -34582,7 +34288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(576), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -34613,88 +34319,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(576), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(530), + [sym__caption_start] = ACTIONS(155), }, - [STATE(72)] = { - [sym__block] = STATE(60), - [sym__block_not_section] = STATE(60), - [sym_section] = STATE(60), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), - [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(60), - [sym_pandoc_list] = STATE(60), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), - [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(60), - [sym_pandoc_div] = STATE(60), - [sym_note_definition_fenced_block] = STATE(60), - [sym__newline] = STATE(60), - [sym__soft_line_break] = STATE(60), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(60), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [STATE(69)] = { + [sym_minus_metadata] = STATE(477), + [sym__block_not_section] = STATE(477), + [sym_section] = STATE(2505), + [sym__section1] = STATE(2767), + [sym__section2] = STATE(2767), + [sym__section3] = STATE(2767), + [sym__section4] = STATE(2767), + [sym__section5] = STATE(2767), + [sym__section6] = STATE(2767), + [sym__atx_heading1] = STATE(83), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(101), + [sym__atx_heading4] = STATE(109), + [sym__atx_heading5] = STATE(118), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(477), + [sym_pandoc_paragraph] = STATE(477), + [sym_inline_ref_def] = STATE(477), + [sym_caption] = STATE(477), + [sym_pipe_table] = STATE(477), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(477), + [sym_pandoc_list] = STATE(477), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), + [sym__list_item_example] = STATE(157), + [sym_pandoc_code_block] = STATE(477), + [sym_pandoc_div] = STATE(477), + [sym_note_definition_fenced_block] = STATE(477), + [sym__newline] = STATE(477), + [sym__soft_line_break] = STATE(477), + [sym__inline_whitespace] = STATE(804), + [aux_sym_document_repeat1] = STATE(128), + [aux_sym_document_repeat2] = STATE(2505), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), + [aux_sym__list_example_repeat1] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(542), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -34704,18 +34412,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(115), - [sym__line_ending] = ACTIONS(117), - [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(592), - [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(127), - [sym_atx_h2_marker] = ACTIONS(129), - [sym_atx_h3_marker] = ACTIONS(131), - [sym_atx_h4_marker] = ACTIONS(133), - [sym_atx_h5_marker] = ACTIONS(135), - [sym_atx_h6_marker] = ACTIONS(137), - [sym__thematic_break] = ACTIONS(139), + [sym__whitespace] = ACTIONS(21), + [sym__line_ending] = ACTIONS(23), + [sym__soft_line_ending] = ACTIONS(25), + [sym__block_quote_start] = ACTIONS(27), + [sym_atx_h1_marker] = ACTIONS(29), + [sym_atx_h2_marker] = ACTIONS(31), + [sym_atx_h3_marker] = ACTIONS(33), + [sym_atx_h4_marker] = ACTIONS(35), + [sym_atx_h5_marker] = ACTIONS(37), + [sym_atx_h6_marker] = ACTIONS(39), + [sym__thematic_break] = ACTIONS(41), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -34728,11 +34435,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(576), - [sym__pipe_table_start] = ACTIONS(147), - [sym__fenced_div_start] = ACTIONS(149), - [sym_ref_id_specifier] = ACTIONS(151), + [sym__fenced_code_block_start_backtick] = ACTIONS(55), + [sym__minus_metadata_start] = ACTIONS(57), + [sym__pipe_table_start] = ACTIONS(59), + [sym__fenced_div_start] = ACTIONS(61), + [sym_ref_id_specifier] = ACTIONS(63), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -34760,88 +34467,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(576), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(107), + [sym__caption_start] = ACTIONS(109), }, - [STATE(73)] = { - [sym__block] = STATE(60), - [sym__block_not_section] = STATE(60), - [sym_section] = STATE(60), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [STATE(70)] = { + [sym_minus_metadata] = STATE(71), + [sym__block] = STATE(71), + [sym__block_not_section] = STATE(71), + [sym_section] = STATE(71), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(60), - [sym_pandoc_list] = STATE(60), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [sym_pandoc_horizontal_rule] = STATE(71), + [sym_pandoc_paragraph] = STATE(71), + [sym_inline_ref_def] = STATE(71), + [sym_caption] = STATE(71), + [sym_pipe_table] = STATE(71), + [sym__inlines] = STATE(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(71), + [sym_pandoc_list] = STATE(71), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(60), - [sym_pandoc_div] = STATE(60), - [sym_note_definition_fenced_block] = STATE(60), - [sym__newline] = STATE(60), - [sym__soft_line_break] = STATE(60), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(60), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(71), + [sym_pandoc_div] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__newline] = STATE(71), + [sym__soft_line_break] = STATE(71), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(71), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -34854,7 +34562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(594), + [sym__block_close] = ACTIONS(544), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -34876,7 +34584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(576), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -34907,88 +34615,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(576), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(546), + [sym__caption_start] = ACTIONS(155), }, - [STATE(74)] = { - [sym__block] = STATE(60), - [sym__block_not_section] = STATE(60), - [sym_section] = STATE(60), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [STATE(71)] = { + [sym_minus_metadata] = STATE(75), + [sym__block] = STATE(75), + [sym__block_not_section] = STATE(75), + [sym_section] = STATE(75), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(60), - [sym_pandoc_list] = STATE(60), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(75), + [sym_pandoc_list] = STATE(75), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(60), - [sym_pandoc_div] = STATE(60), - [sym_note_definition_fenced_block] = STATE(60), - [sym__newline] = STATE(60), - [sym__soft_line_break] = STATE(60), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(60), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(75), + [sym_pandoc_div] = STATE(75), + [sym_note_definition_fenced_block] = STATE(75), + [sym__newline] = STATE(75), + [sym__soft_line_break] = STATE(75), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(75), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -35001,7 +34710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(596), + [sym__block_close] = ACTIONS(548), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -35023,7 +34732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(576), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -35054,88 +34763,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(576), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(530), + [sym__caption_start] = ACTIONS(155), }, - [STATE(75)] = { - [sym__block] = STATE(60), - [sym__block_not_section] = STATE(60), - [sym_section] = STATE(60), - [sym__section1] = STATE(394), - [sym__section2] = STATE(394), - [sym__section3] = STATE(394), - [sym__section4] = STATE(394), - [sym__section5] = STATE(394), - [sym__section6] = STATE(394), + [STATE(72)] = { + [sym_minus_metadata] = STATE(75), + [sym__block] = STATE(75), + [sym__block_not_section] = STATE(75), + [sym_section] = STATE(75), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), [sym__atx_heading1] = STATE(79), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(60), - [sym_pandoc_list] = STATE(60), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(75), + [sym_pandoc_list] = STATE(75), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(60), - [sym_pandoc_div] = STATE(60), - [sym_note_definition_fenced_block] = STATE(60), - [sym__newline] = STATE(60), - [sym__soft_line_break] = STATE(60), - [sym__inline_whitespace] = STATE(798), - [aux_sym_pandoc_block_quote_repeat1] = STATE(60), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(75), + [sym_pandoc_div] = STATE(75), + [sym_note_definition_fenced_block] = STATE(75), + [sym__newline] = STATE(75), + [sym__soft_line_break] = STATE(75), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(75), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -35148,7 +34858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(580), + [sym__block_close] = ACTIONS(550), [sym__block_quote_start] = ACTIONS(125), [sym_atx_h1_marker] = ACTIONS(127), [sym_atx_h2_marker] = ACTIONS(129), @@ -35170,7 +34880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(576), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -35201,84 +34911,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(576), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(530), + [sym__caption_start] = ACTIONS(155), }, - [STATE(76)] = { - [sym__block_not_section] = STATE(77), - [sym__section2] = STATE(235), - [sym__section3] = STATE(235), - [sym__section4] = STATE(235), - [sym__section5] = STATE(235), - [sym__section6] = STATE(235), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), - [sym__atx_heading5] = STATE(112), - [sym__atx_heading6] = STATE(121), - [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(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(77), - [sym_pandoc_list] = STATE(77), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(77), - [sym_pandoc_div] = STATE(77), - [sym_note_definition_fenced_block] = STATE(77), - [sym__newline] = STATE(77), - [sym__soft_line_break] = STATE(77), - [sym__inline_whitespace] = STATE(802), - [aux_sym__section1_repeat1] = STATE(77), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [STATE(73)] = { + [sym_minus_metadata] = STATE(75), + [sym__block] = STATE(75), + [sym__block_not_section] = STATE(75), + [sym_section] = STATE(75), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(75), + [sym_pandoc_list] = STATE(75), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), + [sym__list_item_plus] = STATE(159), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(75), + [sym_pandoc_div] = STATE(75), + [sym_note_definition_fenced_block] = STATE(75), + [sym__newline] = STATE(75), + [sym__soft_line_break] = STATE(75), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(75), + [aux_sym__list_plus_repeat1] = STATE(159), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -35288,18 +35003,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(598), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(598), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(115), + [sym__line_ending] = ACTIONS(117), + [sym__soft_line_ending] = ACTIONS(119), + [sym__block_close] = ACTIONS(544), + [sym__block_quote_start] = ACTIONS(125), + [sym_atx_h1_marker] = ACTIONS(127), + [sym_atx_h2_marker] = ACTIONS(129), + [sym_atx_h3_marker] = ACTIONS(131), + [sym_atx_h4_marker] = ACTIONS(133), + [sym_atx_h5_marker] = ACTIONS(135), + [sym_atx_h6_marker] = ACTIONS(137), + [sym__thematic_break] = ACTIONS(139), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -35312,12 +35027,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(600), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(598), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(141), + [sym__minus_metadata_start] = ACTIONS(145), + [sym__pipe_table_start] = ACTIONS(147), + [sym__fenced_div_start] = ACTIONS(149), + [sym_ref_id_specifier] = ACTIONS(151), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -35345,19 +35059,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(600), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(530), + [sym__caption_start] = ACTIONS(155), }, - [STATE(77)] = { + [STATE(74)] = { + [sym_minus_metadata] = STATE(75), + [sym__block] = STATE(75), + [sym__block_not_section] = STATE(75), + [sym_section] = STATE(75), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(75), + [sym_pandoc_list] = STATE(75), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), + [sym__list_item_plus] = STATE(159), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(75), + [sym_pandoc_div] = STATE(75), + [sym_note_definition_fenced_block] = STATE(75), + [sym__newline] = STATE(75), + [sym__soft_line_break] = STATE(75), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(75), + [aux_sym__list_plus_repeat1] = STATE(159), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), + [sym_entity_reference] = ACTIONS(5), + [sym_numeric_character_reference] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BANG_LBRACK] = ACTIONS(9), + [anon_sym_DOLLAR] = ACTIONS(11), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [aux_sym_pandoc_str_token1] = ACTIONS(17), + [anon_sym_PIPE] = ACTIONS(19), + [sym__whitespace] = ACTIONS(115), + [sym__line_ending] = ACTIONS(117), + [sym__soft_line_ending] = ACTIONS(119), + [sym__block_close] = ACTIONS(552), + [sym__block_quote_start] = ACTIONS(125), + [sym_atx_h1_marker] = ACTIONS(127), + [sym_atx_h2_marker] = ACTIONS(129), + [sym_atx_h3_marker] = ACTIONS(131), + [sym_atx_h4_marker] = ACTIONS(133), + [sym_atx_h5_marker] = ACTIONS(135), + [sym_atx_h6_marker] = ACTIONS(137), + [sym__thematic_break] = ACTIONS(139), + [sym__list_marker_minus] = ACTIONS(43), + [sym__list_marker_plus] = ACTIONS(45), + [sym__list_marker_star] = ACTIONS(47), + [sym__list_marker_parenthesis] = ACTIONS(49), + [sym__list_marker_dot] = ACTIONS(51), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(43), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(45), + [sym__list_marker_star_dont_interrupt] = ACTIONS(47), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(49), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), + [sym__list_marker_example] = ACTIONS(53), + [sym__list_marker_example_dont_interrupt] = ACTIONS(53), + [sym__fenced_code_block_start_backtick] = ACTIONS(141), + [sym__minus_metadata_start] = ACTIONS(145), + [sym__pipe_table_start] = ACTIONS(147), + [sym__fenced_div_start] = ACTIONS(149), + [sym_ref_id_specifier] = ACTIONS(151), + [sym__code_span_start] = ACTIONS(65), + [sym__html_comment] = ACTIONS(5), + [sym__autolink] = ACTIONS(5), + [sym__highlight_span_start] = ACTIONS(67), + [sym__insert_span_start] = ACTIONS(69), + [sym__delete_span_start] = ACTIONS(71), + [sym__edit_comment_span_start] = ACTIONS(73), + [sym__single_quote_span_open] = ACTIONS(75), + [sym__double_quote_span_open] = ACTIONS(77), + [sym__shortcode_open_escaped] = ACTIONS(79), + [sym__shortcode_open] = ACTIONS(81), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(83), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(85), + [sym__cite_author_in_text] = ACTIONS(87), + [sym__cite_suppress_author] = ACTIONS(89), + [sym__strikeout_open] = ACTIONS(91), + [sym__subscript_open] = ACTIONS(93), + [sym__superscript_open] = ACTIONS(95), + [sym__inline_note_start_token] = ACTIONS(97), + [sym__strong_emphasis_open_star] = ACTIONS(99), + [sym__strong_emphasis_open_underscore] = ACTIONS(101), + [sym__emphasis_open_star] = ACTIONS(103), + [sym__emphasis_open_underscore] = ACTIONS(105), + [sym_inline_note_reference] = ACTIONS(5), + [sym_html_element] = ACTIONS(5), + [sym__pandoc_lt_str] = ACTIONS(19), + [sym__pandoc_line_break] = ACTIONS(5), + [sym_grid_table] = ACTIONS(530), + [sym__caption_start] = ACTIONS(155), + }, + [STATE(75)] = { + [sym_minus_metadata] = STATE(75), + [sym__block] = STATE(75), + [sym__block_not_section] = STATE(75), + [sym_section] = STATE(75), + [sym__section1] = STATE(475), + [sym__section2] = STATE(475), + [sym__section3] = STATE(475), + [sym__section4] = STATE(475), + [sym__section5] = STATE(475), + [sym__section6] = STATE(475), + [sym__atx_heading1] = STATE(79), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(75), + [sym_pandoc_list] = STATE(75), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), + [sym__list_item_plus] = STATE(159), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(75), + [sym_pandoc_div] = STATE(75), + [sym_note_definition_fenced_block] = STATE(75), + [sym__newline] = STATE(75), + [sym__soft_line_break] = STATE(75), + [sym__inline_whitespace] = STATE(830), + [aux_sym_pandoc_block_quote_repeat1] = STATE(75), + [aux_sym__list_plus_repeat1] = STATE(159), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), + [sym_entity_reference] = ACTIONS(279), + [sym_numeric_character_reference] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(282), + [anon_sym_BANG_LBRACK] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(288), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(294), + [aux_sym_pandoc_str_token1] = ACTIONS(297), + [anon_sym_PIPE] = ACTIONS(300), + [sym__whitespace] = ACTIONS(554), + [sym__line_ending] = ACTIONS(557), + [sym__soft_line_ending] = ACTIONS(560), + [sym__block_close] = ACTIONS(312), + [sym__block_quote_start] = ACTIONS(563), + [sym_atx_h1_marker] = ACTIONS(566), + [sym_atx_h2_marker] = ACTIONS(569), + [sym_atx_h3_marker] = ACTIONS(572), + [sym_atx_h4_marker] = ACTIONS(575), + [sym_atx_h5_marker] = ACTIONS(578), + [sym_atx_h6_marker] = ACTIONS(581), + [sym__thematic_break] = ACTIONS(584), + [sym__list_marker_minus] = ACTIONS(338), + [sym__list_marker_plus] = ACTIONS(341), + [sym__list_marker_star] = ACTIONS(344), + [sym__list_marker_parenthesis] = ACTIONS(347), + [sym__list_marker_dot] = ACTIONS(350), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(338), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(341), + [sym__list_marker_star_dont_interrupt] = ACTIONS(344), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(347), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(350), + [sym__list_marker_example] = ACTIONS(353), + [sym__list_marker_example_dont_interrupt] = ACTIONS(353), + [sym__fenced_code_block_start_backtick] = ACTIONS(587), + [sym__minus_metadata_start] = ACTIONS(590), + [sym__pipe_table_start] = ACTIONS(593), + [sym__fenced_div_start] = ACTIONS(596), + [sym_ref_id_specifier] = ACTIONS(599), + [sym__code_span_start] = ACTIONS(371), + [sym__html_comment] = ACTIONS(279), + [sym__autolink] = ACTIONS(279), + [sym__highlight_span_start] = ACTIONS(374), + [sym__insert_span_start] = ACTIONS(377), + [sym__delete_span_start] = ACTIONS(380), + [sym__edit_comment_span_start] = ACTIONS(383), + [sym__single_quote_span_open] = ACTIONS(386), + [sym__double_quote_span_open] = ACTIONS(389), + [sym__shortcode_open_escaped] = ACTIONS(392), + [sym__shortcode_open] = ACTIONS(395), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(398), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(401), + [sym__cite_author_in_text] = ACTIONS(404), + [sym__cite_suppress_author] = ACTIONS(407), + [sym__strikeout_open] = ACTIONS(410), + [sym__subscript_open] = ACTIONS(413), + [sym__superscript_open] = ACTIONS(416), + [sym__inline_note_start_token] = ACTIONS(419), + [sym__strong_emphasis_open_star] = ACTIONS(422), + [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__emphasis_open_star] = ACTIONS(428), + [sym__emphasis_open_underscore] = ACTIONS(431), + [sym_inline_note_reference] = ACTIONS(279), + [sym_html_element] = ACTIONS(279), + [sym__pandoc_lt_str] = ACTIONS(300), + [sym__pandoc_line_break] = ACTIONS(279), + [sym_grid_table] = ACTIONS(602), + [sym__caption_start] = ACTIONS(605), + }, + [STATE(76)] = { + [sym_minus_metadata] = STATE(78), [sym__block_not_section] = STATE(78), - [sym__section2] = STATE(235), - [sym__section3] = STATE(235), - [sym__section4] = STATE(235), - [sym__section5] = STATE(235), - [sym__section6] = STATE(235), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [sym__section2] = STATE(238), + [sym__section3] = STATE(238), + [sym__section4] = STATE(238), + [sym__section5] = STATE(238), + [sym__section6] = STATE(238), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(78), @@ -35365,64 +35376,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(78), [sym_caption] = STATE(78), [sym_pipe_table] = STATE(78), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(78), [sym_pandoc_list] = STATE(78), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), [sym_pandoc_code_block] = STATE(78), [sym_pandoc_div] = STATE(78), [sym_note_definition_fenced_block] = STATE(78), [sym__newline] = STATE(78), [sym__soft_line_break] = STATE(78), - [sym__inline_whitespace] = STATE(802), + [sym__inline_whitespace] = STATE(811), [aux_sym__section1_repeat1] = STATE(78), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -35432,18 +35443,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(602), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(602), - [sym_atx_h2_marker] = ACTIONS(243), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(608), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(608), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -35456,12 +35467,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(604), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(602), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(608), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -35489,19 +35500,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(604), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(610), + [sym__caption_start] = ACTIONS(277), + }, + [STATE(77)] = { + [sym_minus_metadata] = STATE(76), + [sym__block_not_section] = STATE(76), + [sym__section2] = STATE(238), + [sym__section3] = STATE(238), + [sym__section4] = STATE(238), + [sym__section5] = STATE(238), + [sym__section6] = STATE(238), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(76), + [sym_pandoc_paragraph] = STATE(76), + [sym_inline_ref_def] = STATE(76), + [sym_caption] = STATE(76), + [sym_pipe_table] = STATE(76), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(76), + [sym_pandoc_list] = STATE(76), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(76), + [sym_pandoc_div] = STATE(76), + [sym_note_definition_fenced_block] = STATE(76), + [sym__newline] = STATE(76), + [sym__soft_line_break] = STATE(76), + [sym__inline_whitespace] = STATE(811), + [aux_sym__section1_repeat1] = STATE(76), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), + [sym_entity_reference] = ACTIONS(5), + [sym_numeric_character_reference] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BANG_LBRACK] = ACTIONS(9), + [anon_sym_DOLLAR] = ACTIONS(11), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [aux_sym_pandoc_str_token1] = ACTIONS(17), + [anon_sym_PIPE] = ACTIONS(19), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(612), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(612), + [sym_atx_h2_marker] = ACTIONS(251), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), + [sym__list_marker_minus] = ACTIONS(43), + [sym__list_marker_plus] = ACTIONS(45), + [sym__list_marker_star] = ACTIONS(47), + [sym__list_marker_parenthesis] = ACTIONS(49), + [sym__list_marker_dot] = ACTIONS(51), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(43), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(45), + [sym__list_marker_star_dont_interrupt] = ACTIONS(47), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(49), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), + [sym__list_marker_example] = ACTIONS(53), + [sym__list_marker_example_dont_interrupt] = ACTIONS(53), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(612), + [sym_ref_id_specifier] = ACTIONS(273), + [sym__code_span_start] = ACTIONS(65), + [sym__html_comment] = ACTIONS(5), + [sym__autolink] = ACTIONS(5), + [sym__highlight_span_start] = ACTIONS(67), + [sym__insert_span_start] = ACTIONS(69), + [sym__delete_span_start] = ACTIONS(71), + [sym__edit_comment_span_start] = ACTIONS(73), + [sym__single_quote_span_open] = ACTIONS(75), + [sym__double_quote_span_open] = ACTIONS(77), + [sym__shortcode_open_escaped] = ACTIONS(79), + [sym__shortcode_open] = ACTIONS(81), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(83), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(85), + [sym__cite_author_in_text] = ACTIONS(87), + [sym__cite_suppress_author] = ACTIONS(89), + [sym__strikeout_open] = ACTIONS(91), + [sym__subscript_open] = ACTIONS(93), + [sym__superscript_open] = ACTIONS(95), + [sym__inline_note_start_token] = ACTIONS(97), + [sym__strong_emphasis_open_star] = ACTIONS(99), + [sym__strong_emphasis_open_underscore] = ACTIONS(101), + [sym__emphasis_open_star] = ACTIONS(103), + [sym__emphasis_open_underscore] = ACTIONS(105), + [sym_inline_note_reference] = ACTIONS(5), + [sym_html_element] = ACTIONS(5), + [sym__pandoc_lt_str] = ACTIONS(19), + [sym__pandoc_line_break] = ACTIONS(5), + [sym_grid_table] = ACTIONS(614), + [sym__caption_start] = ACTIONS(277), }, [STATE(78)] = { + [sym_minus_metadata] = STATE(78), [sym__block_not_section] = STATE(78), - [sym__section2] = STATE(235), - [sym__section3] = STATE(235), - [sym__section4] = STATE(235), - [sym__section5] = STATE(235), - [sym__section6] = STATE(235), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [sym__section2] = STATE(238), + [sym__section3] = STATE(238), + [sym__section4] = STATE(238), + [sym__section5] = STATE(238), + [sym__section6] = STATE(238), + [sym__atx_heading2] = STATE(86), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(78), @@ -35509,208 +35666,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(78), [sym_caption] = STATE(78), [sym_pipe_table] = STATE(78), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(78), [sym_pandoc_list] = STATE(78), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), [sym_pandoc_code_block] = STATE(78), [sym_pandoc_div] = STATE(78), [sym_note_definition_fenced_block] = STATE(78), [sym__newline] = STATE(78), [sym__soft_line_break] = STATE(78), - [sym__inline_whitespace] = STATE(802), + [sym__inline_whitespace] = STATE(811), [aux_sym__section1_repeat1] = STATE(78), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), - [sym_entity_reference] = ACTIONS(606), - [sym_numeric_character_reference] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_BANG_LBRACK] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(615), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(621), - [aux_sym_pandoc_str_token1] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(627), - [sym__whitespace] = ACTIONS(630), - [sym__line_ending] = ACTIONS(633), - [sym__soft_line_ending] = ACTIONS(636), - [sym__block_close] = ACTIONS(639), - [sym__block_quote_start] = ACTIONS(641), - [sym_atx_h1_marker] = ACTIONS(639), - [sym_atx_h2_marker] = ACTIONS(644), - [sym_atx_h3_marker] = ACTIONS(647), - [sym_atx_h4_marker] = ACTIONS(650), - [sym_atx_h5_marker] = ACTIONS(653), - [sym_atx_h6_marker] = ACTIONS(656), - [sym__thematic_break] = ACTIONS(659), - [sym__list_marker_minus] = ACTIONS(662), - [sym__list_marker_plus] = ACTIONS(665), - [sym__list_marker_star] = ACTIONS(668), - [sym__list_marker_parenthesis] = ACTIONS(671), - [sym__list_marker_dot] = ACTIONS(674), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(662), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(665), - [sym__list_marker_star_dont_interrupt] = ACTIONS(668), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(671), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(674), - [sym__list_marker_example] = ACTIONS(677), - [sym__list_marker_example_dont_interrupt] = ACTIONS(677), - [sym__fenced_code_block_start_backtick] = ACTIONS(680), - [sym_minus_metadata] = ACTIONS(683), - [sym__pipe_table_start] = ACTIONS(686), - [sym__fenced_div_start] = ACTIONS(689), - [sym__fenced_div_end] = ACTIONS(639), - [sym_ref_id_specifier] = ACTIONS(692), - [sym__code_span_start] = ACTIONS(695), - [sym__html_comment] = ACTIONS(606), - [sym__autolink] = ACTIONS(606), - [sym__highlight_span_start] = ACTIONS(698), - [sym__insert_span_start] = ACTIONS(701), - [sym__delete_span_start] = ACTIONS(704), - [sym__edit_comment_span_start] = ACTIONS(707), - [sym__single_quote_span_open] = ACTIONS(710), - [sym__double_quote_span_open] = ACTIONS(713), - [sym__shortcode_open_escaped] = ACTIONS(716), - [sym__shortcode_open] = ACTIONS(719), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(722), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(725), - [sym__cite_author_in_text] = ACTIONS(728), - [sym__cite_suppress_author] = ACTIONS(731), - [sym__strikeout_open] = ACTIONS(734), - [sym__subscript_open] = ACTIONS(737), - [sym__superscript_open] = ACTIONS(740), - [sym__inline_note_start_token] = ACTIONS(743), - [sym__strong_emphasis_open_star] = ACTIONS(746), - [sym__strong_emphasis_open_underscore] = ACTIONS(749), - [sym__emphasis_open_star] = ACTIONS(752), - [sym__emphasis_open_underscore] = ACTIONS(755), - [sym_inline_note_reference] = ACTIONS(606), - [sym_html_element] = ACTIONS(606), - [sym__pandoc_lt_str] = ACTIONS(627), - [sym__pandoc_line_break] = ACTIONS(606), - [sym_grid_table] = ACTIONS(683), - [sym__caption_start] = ACTIONS(758), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), + [sym_entity_reference] = ACTIONS(616), + [sym_numeric_character_reference] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_BANG_LBRACK] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(631), + [aux_sym_pandoc_str_token1] = ACTIONS(634), + [anon_sym_PIPE] = ACTIONS(637), + [sym__whitespace] = ACTIONS(640), + [sym__line_ending] = ACTIONS(643), + [sym__soft_line_ending] = ACTIONS(646), + [sym__block_close] = ACTIONS(649), + [sym__block_quote_start] = ACTIONS(651), + [sym_atx_h1_marker] = ACTIONS(649), + [sym_atx_h2_marker] = ACTIONS(654), + [sym_atx_h3_marker] = ACTIONS(657), + [sym_atx_h4_marker] = ACTIONS(660), + [sym_atx_h5_marker] = ACTIONS(663), + [sym_atx_h6_marker] = ACTIONS(666), + [sym__thematic_break] = ACTIONS(669), + [sym__list_marker_minus] = ACTIONS(672), + [sym__list_marker_plus] = ACTIONS(675), + [sym__list_marker_star] = ACTIONS(678), + [sym__list_marker_parenthesis] = ACTIONS(681), + [sym__list_marker_dot] = ACTIONS(684), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(672), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(675), + [sym__list_marker_star_dont_interrupt] = ACTIONS(678), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(681), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(684), + [sym__list_marker_example] = ACTIONS(687), + [sym__list_marker_example_dont_interrupt] = ACTIONS(687), + [sym__fenced_code_block_start_backtick] = ACTIONS(690), + [sym__minus_metadata_start] = ACTIONS(693), + [sym__pipe_table_start] = ACTIONS(696), + [sym__fenced_div_start] = ACTIONS(699), + [sym__fenced_div_end] = ACTIONS(649), + [sym_ref_id_specifier] = ACTIONS(702), + [sym__code_span_start] = ACTIONS(705), + [sym__html_comment] = ACTIONS(616), + [sym__autolink] = ACTIONS(616), + [sym__highlight_span_start] = ACTIONS(708), + [sym__insert_span_start] = ACTIONS(711), + [sym__delete_span_start] = ACTIONS(714), + [sym__edit_comment_span_start] = ACTIONS(717), + [sym__single_quote_span_open] = ACTIONS(720), + [sym__double_quote_span_open] = ACTIONS(723), + [sym__shortcode_open_escaped] = ACTIONS(726), + [sym__shortcode_open] = ACTIONS(729), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(732), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(735), + [sym__cite_author_in_text] = ACTIONS(738), + [sym__cite_suppress_author] = ACTIONS(741), + [sym__strikeout_open] = ACTIONS(744), + [sym__subscript_open] = ACTIONS(747), + [sym__superscript_open] = ACTIONS(750), + [sym__inline_note_start_token] = ACTIONS(753), + [sym__strong_emphasis_open_star] = ACTIONS(756), + [sym__strong_emphasis_open_underscore] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym_inline_note_reference] = ACTIONS(616), + [sym_html_element] = ACTIONS(616), + [sym__pandoc_lt_str] = ACTIONS(637), + [sym__pandoc_line_break] = ACTIONS(616), + [sym_grid_table] = ACTIONS(768), + [sym__caption_start] = ACTIONS(771), }, [STATE(79)] = { + [sym_minus_metadata] = STATE(80), [sym__block_not_section] = STATE(80), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), + [sym__section2] = STATE(496), + [sym__section3] = STATE(496), + [sym__section4] = STATE(496), + [sym__section5] = STATE(496), + [sym__section6] = STATE(496), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(80), [sym_pandoc_list] = STATE(80), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), [sym_pandoc_code_block] = STATE(80), [sym_pandoc_div] = STATE(80), [sym_note_definition_fenced_block] = STATE(80), [sym__newline] = STATE(80), [sym__soft_line_break] = STATE(80), - [sym__inline_whitespace] = STATE(798), + [sym__inline_whitespace] = STATE(830), [aux_sym__section1_repeat1] = STATE(80), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -35723,9 +35881,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(598), + [sym__block_close] = ACTIONS(612), [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(598), + [sym_atx_h1_marker] = ACTIONS(612), [sym_atx_h2_marker] = ACTIONS(129), [sym_atx_h3_marker] = ACTIONS(131), [sym_atx_h4_marker] = ACTIONS(133), @@ -35745,7 +35903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(761), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -35776,84 +35934,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(761), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(774), + [sym__caption_start] = ACTIONS(155), }, [STATE(80)] = { - [sym__block_not_section] = STATE(84), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(84), - [sym_pandoc_list] = STATE(84), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym_minus_metadata] = STATE(81), + [sym__block_not_section] = STATE(81), + [sym__section2] = STATE(496), + [sym__section3] = STATE(496), + [sym__section4] = STATE(496), + [sym__section5] = STATE(496), + [sym__section6] = STATE(496), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(81), + [sym_pandoc_list] = STATE(81), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [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__inline_whitespace] = STATE(798), - [aux_sym__section1_repeat1] = STATE(84), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [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), + [sym__inline_whitespace] = STATE(830), + [aux_sym__section1_repeat1] = STATE(81), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -35866,9 +36025,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(602), + [sym__block_close] = ACTIONS(608), [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(602), + [sym_atx_h1_marker] = ACTIONS(608), [sym_atx_h2_marker] = ACTIONS(129), [sym_atx_h3_marker] = ACTIONS(131), [sym_atx_h4_marker] = ACTIONS(133), @@ -35888,7 +36047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(763), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -35919,85 +36078,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(763), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(776), + [sym__caption_start] = ACTIONS(155), }, [STATE(81)] = { - [sym__block_not_section] = STATE(83), - [sym__section2] = STATE(451), - [sym__section3] = STATE(451), - [sym__section4] = STATE(451), - [sym__section5] = STATE(451), - [sym__section6] = STATE(451), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(101), + [sym_minus_metadata] = STATE(81), + [sym__block_not_section] = STATE(81), + [sym__section2] = STATE(496), + [sym__section3] = STATE(496), + [sym__section4] = STATE(496), + [sym__section5] = STATE(496), + [sym__section6] = STATE(496), + [sym__atx_heading2] = STATE(92), + [sym__atx_heading3] = STATE(97), [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(81), + [sym_pandoc_list] = STATE(81), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), + [sym__list_item_plus] = STATE(159), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [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), + [sym__inline_whitespace] = STATE(830), + [aux_sym__section1_repeat1] = STATE(81), + [aux_sym__list_plus_repeat1] = STATE(159), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), + [sym_entity_reference] = ACTIONS(616), + [sym_numeric_character_reference] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_BANG_LBRACK] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(631), + [aux_sym_pandoc_str_token1] = ACTIONS(634), + [anon_sym_PIPE] = ACTIONS(637), + [sym__whitespace] = ACTIONS(778), + [sym__line_ending] = ACTIONS(781), + [sym__soft_line_ending] = ACTIONS(784), + [sym__block_close] = ACTIONS(649), + [sym__block_quote_start] = ACTIONS(787), + [sym_atx_h1_marker] = ACTIONS(649), + [sym_atx_h2_marker] = ACTIONS(790), + [sym_atx_h3_marker] = ACTIONS(793), + [sym_atx_h4_marker] = ACTIONS(796), + [sym_atx_h5_marker] = ACTIONS(799), + [sym_atx_h6_marker] = ACTIONS(802), + [sym__thematic_break] = ACTIONS(805), + [sym__list_marker_minus] = ACTIONS(672), + [sym__list_marker_plus] = ACTIONS(675), + [sym__list_marker_star] = ACTIONS(678), + [sym__list_marker_parenthesis] = ACTIONS(681), + [sym__list_marker_dot] = ACTIONS(684), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(672), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(675), + [sym__list_marker_star_dont_interrupt] = ACTIONS(678), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(681), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(684), + [sym__list_marker_example] = ACTIONS(687), + [sym__list_marker_example_dont_interrupt] = ACTIONS(687), + [sym__fenced_code_block_start_backtick] = ACTIONS(808), + [sym__minus_metadata_start] = ACTIONS(811), + [sym__pipe_table_start] = ACTIONS(814), + [sym__fenced_div_start] = ACTIONS(817), + [sym_ref_id_specifier] = ACTIONS(820), + [sym__code_span_start] = ACTIONS(705), + [sym__html_comment] = ACTIONS(616), + [sym__autolink] = ACTIONS(616), + [sym__highlight_span_start] = ACTIONS(708), + [sym__insert_span_start] = ACTIONS(711), + [sym__delete_span_start] = ACTIONS(714), + [sym__edit_comment_span_start] = ACTIONS(717), + [sym__single_quote_span_open] = ACTIONS(720), + [sym__double_quote_span_open] = ACTIONS(723), + [sym__shortcode_open_escaped] = ACTIONS(726), + [sym__shortcode_open] = ACTIONS(729), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(732), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(735), + [sym__cite_author_in_text] = ACTIONS(738), + [sym__cite_suppress_author] = ACTIONS(741), + [sym__strikeout_open] = ACTIONS(744), + [sym__subscript_open] = ACTIONS(747), + [sym__superscript_open] = ACTIONS(750), + [sym__inline_note_start_token] = ACTIONS(753), + [sym__strong_emphasis_open_star] = ACTIONS(756), + [sym__strong_emphasis_open_underscore] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym_inline_note_reference] = ACTIONS(616), + [sym_html_element] = ACTIONS(616), + [sym__pandoc_lt_str] = ACTIONS(637), + [sym__pandoc_line_break] = ACTIONS(616), + [sym_grid_table] = ACTIONS(823), + [sym__caption_start] = ACTIONS(826), + }, + [STATE(82)] = { + [sym_minus_metadata] = STATE(84), + [sym__block_not_section] = STATE(84), + [sym__section2] = STATE(488), + [sym__section3] = STATE(488), + [sym__section4] = STATE(488), + [sym__section5] = STATE(488), + [sym__section6] = STATE(488), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(101), + [sym__atx_heading4] = STATE(109), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), - [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(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(83), - [sym_pandoc_list] = STATE(83), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), + [sym__atx_heading6] = STATE(127), + [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(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(84), + [sym_pandoc_list] = STATE(84), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), [sym__list_item_example] = STATE(157), - [sym_pandoc_code_block] = STATE(83), - [sym_pandoc_div] = STATE(83), - [sym_note_definition_fenced_block] = STATE(83), - [sym__newline] = STATE(83), - [sym__soft_line_break] = STATE(83), - [sym__inline_whitespace] = STATE(800), - [aux_sym__section1_repeat1] = STATE(83), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), + [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__inline_whitespace] = STATE(804), + [aux_sym__section1_repeat1] = STATE(84), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(598), + [ts_builtin_sym_end] = ACTIONS(608), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -36011,7 +36315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(23), [sym__soft_line_ending] = ACTIONS(25), [sym__block_quote_start] = ACTIONS(27), - [sym_atx_h1_marker] = ACTIONS(598), + [sym_atx_h1_marker] = ACTIONS(608), [sym_atx_h2_marker] = ACTIONS(31), [sym_atx_h3_marker] = ACTIONS(33), [sym_atx_h4_marker] = ACTIONS(35), @@ -36031,7 +36335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(765), + [sym__minus_metadata_start] = ACTIONS(57), [sym__pipe_table_start] = ACTIONS(59), [sym__fenced_div_start] = ACTIONS(61), [sym_ref_id_specifier] = ACTIONS(63), @@ -36062,228 +36366,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(765), + [sym_grid_table] = ACTIONS(829), [sym__caption_start] = ACTIONS(109), }, - [STATE(82)] = { - [sym__block_not_section] = STATE(82), - [sym__section2] = STATE(451), - [sym__section3] = STATE(451), - [sym__section4] = STATE(451), - [sym__section5] = STATE(451), - [sym__section6] = STATE(451), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(101), - [sym__atx_heading4] = STATE(110), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), - [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(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(82), - [sym_pandoc_list] = STATE(82), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), - [sym__list_item_example] = STATE(157), - [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__inline_whitespace] = STATE(800), - [aux_sym__section1_repeat1] = STATE(82), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), - [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(639), - [sym_entity_reference] = ACTIONS(606), - [sym_numeric_character_reference] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_BANG_LBRACK] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(615), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(621), - [aux_sym_pandoc_str_token1] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(627), - [sym__whitespace] = ACTIONS(767), - [sym__line_ending] = ACTIONS(770), - [sym__soft_line_ending] = ACTIONS(773), - [sym__block_quote_start] = ACTIONS(776), - [sym_atx_h1_marker] = ACTIONS(639), - [sym_atx_h2_marker] = ACTIONS(779), - [sym_atx_h3_marker] = ACTIONS(782), - [sym_atx_h4_marker] = ACTIONS(785), - [sym_atx_h5_marker] = ACTIONS(788), - [sym_atx_h6_marker] = ACTIONS(791), - [sym__thematic_break] = ACTIONS(794), - [sym__list_marker_minus] = ACTIONS(662), - [sym__list_marker_plus] = ACTIONS(665), - [sym__list_marker_star] = ACTIONS(668), - [sym__list_marker_parenthesis] = ACTIONS(671), - [sym__list_marker_dot] = ACTIONS(674), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(662), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(665), - [sym__list_marker_star_dont_interrupt] = ACTIONS(668), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(671), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(674), - [sym__list_marker_example] = ACTIONS(677), - [sym__list_marker_example_dont_interrupt] = ACTIONS(677), - [sym__fenced_code_block_start_backtick] = ACTIONS(797), - [sym_minus_metadata] = ACTIONS(800), - [sym__pipe_table_start] = ACTIONS(803), - [sym__fenced_div_start] = ACTIONS(806), - [sym_ref_id_specifier] = ACTIONS(809), - [sym__code_span_start] = ACTIONS(695), - [sym__html_comment] = ACTIONS(606), - [sym__autolink] = ACTIONS(606), - [sym__highlight_span_start] = ACTIONS(698), - [sym__insert_span_start] = ACTIONS(701), - [sym__delete_span_start] = ACTIONS(704), - [sym__edit_comment_span_start] = ACTIONS(707), - [sym__single_quote_span_open] = ACTIONS(710), - [sym__double_quote_span_open] = ACTIONS(713), - [sym__shortcode_open_escaped] = ACTIONS(716), - [sym__shortcode_open] = ACTIONS(719), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(722), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(725), - [sym__cite_author_in_text] = ACTIONS(728), - [sym__cite_suppress_author] = ACTIONS(731), - [sym__strikeout_open] = ACTIONS(734), - [sym__subscript_open] = ACTIONS(737), - [sym__superscript_open] = ACTIONS(740), - [sym__inline_note_start_token] = ACTIONS(743), - [sym__strong_emphasis_open_star] = ACTIONS(746), - [sym__strong_emphasis_open_underscore] = ACTIONS(749), - [sym__emphasis_open_star] = ACTIONS(752), - [sym__emphasis_open_underscore] = ACTIONS(755), - [sym_inline_note_reference] = ACTIONS(606), - [sym_html_element] = ACTIONS(606), - [sym__pandoc_lt_str] = ACTIONS(627), - [sym__pandoc_line_break] = ACTIONS(606), - [sym_grid_table] = ACTIONS(800), - [sym__caption_start] = ACTIONS(812), - }, [STATE(83)] = { + [sym_minus_metadata] = STATE(82), [sym__block_not_section] = STATE(82), - [sym__section2] = STATE(451), - [sym__section3] = STATE(451), - [sym__section4] = STATE(451), - [sym__section5] = STATE(451), - [sym__section6] = STATE(451), - [sym__atx_heading2] = STATE(91), + [sym__section2] = STATE(488), + [sym__section3] = STATE(488), + [sym__section4] = STATE(488), + [sym__section5] = STATE(488), + [sym__section6] = STATE(488), + [sym__atx_heading2] = STATE(90), [sym__atx_heading3] = STATE(101), - [sym__atx_heading4] = STATE(110), + [sym__atx_heading4] = STATE(109), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), + [sym__atx_heading6] = STATE(127), [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(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(82), [sym_pandoc_list] = STATE(82), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), [sym__list_item_example] = STATE(157), [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__inline_whitespace] = STATE(800), + [sym__inline_whitespace] = STATE(804), [aux_sym__section1_repeat1] = STATE(82), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(602), + [ts_builtin_sym_end] = ACTIONS(612), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -36297,7 +36459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(23), [sym__soft_line_ending] = ACTIONS(25), [sym__block_quote_start] = ACTIONS(27), - [sym_atx_h1_marker] = ACTIONS(602), + [sym_atx_h1_marker] = ACTIONS(612), [sym_atx_h2_marker] = ACTIONS(31), [sym_atx_h3_marker] = ACTIONS(33), [sym_atx_h4_marker] = ACTIONS(35), @@ -36317,7 +36479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(815), + [sym__minus_metadata_start] = ACTIONS(57), [sym__pipe_table_start] = ACTIONS(59), [sym__fenced_div_start] = ACTIONS(61), [sym_ref_id_specifier] = ACTIONS(63), @@ -36348,225 +36510,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(815), + [sym_grid_table] = ACTIONS(831), [sym__caption_start] = ACTIONS(109), }, [STATE(84)] = { + [sym_minus_metadata] = STATE(84), [sym__block_not_section] = STATE(84), - [sym__section2] = STATE(417), - [sym__section3] = STATE(417), - [sym__section4] = STATE(417), - [sym__section5] = STATE(417), - [sym__section6] = STATE(417), - [sym__atx_heading2] = STATE(88), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), + [sym__section2] = STATE(488), + [sym__section3] = STATE(488), + [sym__section4] = STATE(488), + [sym__section5] = STATE(488), + [sym__section6] = STATE(488), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(101), + [sym__atx_heading4] = STATE(109), + [sym__atx_heading5] = STATE(118), + [sym__atx_heading6] = STATE(127), [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(84), [sym_pandoc_list] = STATE(84), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), - [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), + [sym__list_item_example] = STATE(157), [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__inline_whitespace] = STATE(798), + [sym__inline_whitespace] = STATE(804), [aux_sym__section1_repeat1] = STATE(84), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), - [sym_entity_reference] = ACTIONS(606), - [sym_numeric_character_reference] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_BANG_LBRACK] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(615), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(621), - [aux_sym_pandoc_str_token1] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(627), - [sym__whitespace] = ACTIONS(817), - [sym__line_ending] = ACTIONS(820), - [sym__soft_line_ending] = ACTIONS(823), - [sym__block_close] = ACTIONS(639), - [sym__block_quote_start] = ACTIONS(826), - [sym_atx_h1_marker] = ACTIONS(639), - [sym_atx_h2_marker] = ACTIONS(829), - [sym_atx_h3_marker] = ACTIONS(832), - [sym_atx_h4_marker] = ACTIONS(835), - [sym_atx_h5_marker] = ACTIONS(838), - [sym_atx_h6_marker] = ACTIONS(841), - [sym__thematic_break] = ACTIONS(844), - [sym__list_marker_minus] = ACTIONS(662), - [sym__list_marker_plus] = ACTIONS(665), - [sym__list_marker_star] = ACTIONS(668), - [sym__list_marker_parenthesis] = ACTIONS(671), - [sym__list_marker_dot] = ACTIONS(674), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(662), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(665), - [sym__list_marker_star_dont_interrupt] = ACTIONS(668), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(671), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(674), - [sym__list_marker_example] = ACTIONS(677), - [sym__list_marker_example_dont_interrupt] = ACTIONS(677), - [sym__fenced_code_block_start_backtick] = ACTIONS(847), - [sym_minus_metadata] = ACTIONS(850), - [sym__pipe_table_start] = ACTIONS(853), - [sym__fenced_div_start] = ACTIONS(856), - [sym_ref_id_specifier] = ACTIONS(859), - [sym__code_span_start] = ACTIONS(695), - [sym__html_comment] = ACTIONS(606), - [sym__autolink] = ACTIONS(606), - [sym__highlight_span_start] = ACTIONS(698), - [sym__insert_span_start] = ACTIONS(701), - [sym__delete_span_start] = ACTIONS(704), - [sym__edit_comment_span_start] = ACTIONS(707), - [sym__single_quote_span_open] = ACTIONS(710), - [sym__double_quote_span_open] = ACTIONS(713), - [sym__shortcode_open_escaped] = ACTIONS(716), - [sym__shortcode_open] = ACTIONS(719), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(722), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(725), - [sym__cite_author_in_text] = ACTIONS(728), - [sym__cite_suppress_author] = ACTIONS(731), - [sym__strikeout_open] = ACTIONS(734), - [sym__subscript_open] = ACTIONS(737), - [sym__superscript_open] = ACTIONS(740), - [sym__inline_note_start_token] = ACTIONS(743), - [sym__strong_emphasis_open_star] = ACTIONS(746), - [sym__strong_emphasis_open_underscore] = ACTIONS(749), - [sym__emphasis_open_star] = ACTIONS(752), - [sym__emphasis_open_underscore] = ACTIONS(755), - [sym_inline_note_reference] = ACTIONS(606), - [sym_html_element] = ACTIONS(606), - [sym__pandoc_lt_str] = ACTIONS(627), - [sym__pandoc_line_break] = ACTIONS(606), - [sym_grid_table] = ACTIONS(850), - [sym__caption_start] = ACTIONS(862), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), + [aux_sym__list_example_repeat1] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(616), + [sym_numeric_character_reference] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_BANG_LBRACK] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(631), + [aux_sym_pandoc_str_token1] = ACTIONS(634), + [anon_sym_PIPE] = ACTIONS(637), + [sym__whitespace] = ACTIONS(833), + [sym__line_ending] = ACTIONS(836), + [sym__soft_line_ending] = ACTIONS(839), + [sym__block_quote_start] = ACTIONS(842), + [sym_atx_h1_marker] = ACTIONS(649), + [sym_atx_h2_marker] = ACTIONS(845), + [sym_atx_h3_marker] = ACTIONS(848), + [sym_atx_h4_marker] = ACTIONS(851), + [sym_atx_h5_marker] = ACTIONS(854), + [sym_atx_h6_marker] = ACTIONS(857), + [sym__thematic_break] = ACTIONS(860), + [sym__list_marker_minus] = ACTIONS(672), + [sym__list_marker_plus] = ACTIONS(675), + [sym__list_marker_star] = ACTIONS(678), + [sym__list_marker_parenthesis] = ACTIONS(681), + [sym__list_marker_dot] = ACTIONS(684), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(672), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(675), + [sym__list_marker_star_dont_interrupt] = ACTIONS(678), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(681), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(684), + [sym__list_marker_example] = ACTIONS(687), + [sym__list_marker_example_dont_interrupt] = ACTIONS(687), + [sym__fenced_code_block_start_backtick] = ACTIONS(863), + [sym__minus_metadata_start] = ACTIONS(866), + [sym__pipe_table_start] = ACTIONS(869), + [sym__fenced_div_start] = ACTIONS(872), + [sym_ref_id_specifier] = ACTIONS(875), + [sym__code_span_start] = ACTIONS(705), + [sym__html_comment] = ACTIONS(616), + [sym__autolink] = ACTIONS(616), + [sym__highlight_span_start] = ACTIONS(708), + [sym__insert_span_start] = ACTIONS(711), + [sym__delete_span_start] = ACTIONS(714), + [sym__edit_comment_span_start] = ACTIONS(717), + [sym__single_quote_span_open] = ACTIONS(720), + [sym__double_quote_span_open] = ACTIONS(723), + [sym__shortcode_open_escaped] = ACTIONS(726), + [sym__shortcode_open] = ACTIONS(729), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(732), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(735), + [sym__cite_author_in_text] = ACTIONS(738), + [sym__cite_suppress_author] = ACTIONS(741), + [sym__strikeout_open] = ACTIONS(744), + [sym__subscript_open] = ACTIONS(747), + [sym__superscript_open] = ACTIONS(750), + [sym__inline_note_start_token] = ACTIONS(753), + [sym__strong_emphasis_open_star] = ACTIONS(756), + [sym__strong_emphasis_open_underscore] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(762), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym_inline_note_reference] = ACTIONS(616), + [sym_html_element] = ACTIONS(616), + [sym__pandoc_lt_str] = ACTIONS(637), + [sym__pandoc_line_break] = ACTIONS(616), + [sym_grid_table] = ACTIONS(878), + [sym__caption_start] = ACTIONS(881), }, [STATE(85)] = { - [sym__block_not_section] = STATE(86), - [sym__section3] = STATE(250), - [sym__section4] = STATE(250), - [sym__section5] = STATE(250), - [sym__section6] = STATE(250), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [sym_minus_metadata] = STATE(85), + [sym__block_not_section] = STATE(85), + [sym__section3] = STATE(239), + [sym__section4] = STATE(239), + [sym__section5] = STATE(239), + [sym__section6] = STATE(239), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [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(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(86), - [sym_pandoc_list] = STATE(86), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(86), - [sym_pandoc_div] = STATE(86), - [sym_note_definition_fenced_block] = STATE(86), - [sym__newline] = STATE(86), - [sym__soft_line_break] = STATE(86), - [sym__inline_whitespace] = STATE(802), - [aux_sym__section2_repeat1] = STATE(86), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(85), + [sym_pandoc_list] = STATE(85), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [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), + [sym__inline_whitespace] = STATE(811), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), + [sym_entity_reference] = ACTIONS(884), + [sym_numeric_character_reference] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_BANG_LBRACK] = ACTIONS(890), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(899), + [aux_sym_pandoc_str_token1] = ACTIONS(902), + [anon_sym_PIPE] = ACTIONS(905), + [sym__whitespace] = ACTIONS(908), + [sym__line_ending] = ACTIONS(911), + [sym__soft_line_ending] = ACTIONS(914), + [sym__block_close] = ACTIONS(917), + [sym__block_quote_start] = ACTIONS(919), + [sym_atx_h1_marker] = ACTIONS(917), + [sym_atx_h2_marker] = ACTIONS(917), + [sym_atx_h3_marker] = ACTIONS(922), + [sym_atx_h4_marker] = ACTIONS(925), + [sym_atx_h5_marker] = ACTIONS(928), + [sym_atx_h6_marker] = ACTIONS(931), + [sym__thematic_break] = ACTIONS(934), + [sym__list_marker_minus] = ACTIONS(937), + [sym__list_marker_plus] = ACTIONS(940), + [sym__list_marker_star] = ACTIONS(943), + [sym__list_marker_parenthesis] = ACTIONS(946), + [sym__list_marker_dot] = ACTIONS(949), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(937), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(940), + [sym__list_marker_star_dont_interrupt] = ACTIONS(943), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(946), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(949), + [sym__list_marker_example] = ACTIONS(952), + [sym__list_marker_example_dont_interrupt] = ACTIONS(952), + [sym__fenced_code_block_start_backtick] = ACTIONS(955), + [sym__minus_metadata_start] = ACTIONS(958), + [sym__pipe_table_start] = ACTIONS(961), + [sym__fenced_div_start] = ACTIONS(964), + [sym__fenced_div_end] = ACTIONS(917), + [sym_ref_id_specifier] = ACTIONS(967), + [sym__code_span_start] = ACTIONS(970), + [sym__html_comment] = ACTIONS(884), + [sym__autolink] = ACTIONS(884), + [sym__highlight_span_start] = ACTIONS(973), + [sym__insert_span_start] = ACTIONS(976), + [sym__delete_span_start] = ACTIONS(979), + [sym__edit_comment_span_start] = ACTIONS(982), + [sym__single_quote_span_open] = ACTIONS(985), + [sym__double_quote_span_open] = ACTIONS(988), + [sym__shortcode_open_escaped] = ACTIONS(991), + [sym__shortcode_open] = ACTIONS(994), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(997), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1000), + [sym__cite_author_in_text] = ACTIONS(1003), + [sym__cite_suppress_author] = ACTIONS(1006), + [sym__strikeout_open] = ACTIONS(1009), + [sym__subscript_open] = ACTIONS(1012), + [sym__superscript_open] = ACTIONS(1015), + [sym__inline_note_start_token] = ACTIONS(1018), + [sym__strong_emphasis_open_star] = ACTIONS(1021), + [sym__strong_emphasis_open_underscore] = ACTIONS(1024), + [sym__emphasis_open_star] = ACTIONS(1027), + [sym__emphasis_open_underscore] = ACTIONS(1030), + [sym_inline_note_reference] = ACTIONS(884), + [sym_html_element] = ACTIONS(884), + [sym__pandoc_lt_str] = ACTIONS(905), + [sym__pandoc_line_break] = ACTIONS(884), + [sym_grid_table] = ACTIONS(1033), + [sym__caption_start] = ACTIONS(1036), + }, + [STATE(86)] = { + [sym_minus_metadata] = STATE(87), + [sym__block_not_section] = STATE(87), + [sym__section3] = STATE(239), + [sym__section4] = STATE(239), + [sym__section5] = STATE(239), + [sym__section6] = STATE(239), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [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(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(87), + [sym_pandoc_list] = STATE(87), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(87), + [sym_pandoc_div] = STATE(87), + [sym_note_definition_fenced_block] = STATE(87), + [sym__newline] = STATE(87), + [sym__soft_line_break] = STATE(87), + [sym__inline_whitespace] = STATE(811), + [aux_sym__section2_repeat1] = STATE(87), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -36576,18 +36883,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(865), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(865), - [sym_atx_h2_marker] = ACTIONS(865), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(1039), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(1039), + [sym_atx_h2_marker] = ACTIONS(1039), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -36600,12 +36907,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(867), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(865), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(1039), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -36633,82 +36940,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(867), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(1041), + [sym__caption_start] = ACTIONS(277), }, - [STATE(86)] = { - [sym__block_not_section] = STATE(87), - [sym__section3] = STATE(250), - [sym__section4] = STATE(250), - [sym__section5] = STATE(250), - [sym__section6] = STATE(250), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), + [STATE(87)] = { + [sym_minus_metadata] = STATE(85), + [sym__block_not_section] = STATE(85), + [sym__section3] = STATE(239), + [sym__section4] = STATE(239), + [sym__section5] = STATE(239), + [sym__section6] = STATE(239), + [sym__atx_heading3] = STATE(96), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [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(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(87), - [sym_pandoc_list] = STATE(87), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(87), - [sym_pandoc_div] = STATE(87), - [sym_note_definition_fenced_block] = STATE(87), - [sym__newline] = STATE(87), - [sym__soft_line_break] = STATE(87), - [sym__inline_whitespace] = STATE(802), - [aux_sym__section2_repeat1] = STATE(87), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(85), + [sym_pandoc_list] = STATE(85), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [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), + [sym__inline_whitespace] = STATE(811), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -36718,18 +37026,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(869), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(869), - [sym_atx_h2_marker] = ACTIONS(869), - [sym_atx_h3_marker] = ACTIONS(245), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(1043), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(1043), + [sym_atx_h2_marker] = ACTIONS(1043), + [sym_atx_h3_marker] = ACTIONS(253), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -36742,12 +37050,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(871), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(869), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(1043), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -36775,224 +37083,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(871), - [sym__caption_start] = ACTIONS(267), - }, - [STATE(87)] = { - [sym__block_not_section] = STATE(87), - [sym__section3] = STATE(250), - [sym__section4] = STATE(250), - [sym__section5] = STATE(250), - [sym__section6] = STATE(250), - [sym__atx_heading3] = STATE(94), - [sym__atx_heading4] = STATE(104), - [sym__atx_heading5] = STATE(112), - [sym__atx_heading6] = STATE(121), - [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(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(87), - [sym_pandoc_list] = STATE(87), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(87), - [sym_pandoc_div] = STATE(87), - [sym_note_definition_fenced_block] = STATE(87), - [sym__newline] = STATE(87), - [sym__soft_line_break] = STATE(87), - [sym__inline_whitespace] = STATE(802), - [aux_sym__section2_repeat1] = STATE(87), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), - [sym_entity_reference] = ACTIONS(873), - [sym_numeric_character_reference] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_BANG_LBRACK] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(888), - [aux_sym_pandoc_str_token1] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(894), - [sym__whitespace] = ACTIONS(897), - [sym__line_ending] = ACTIONS(900), - [sym__soft_line_ending] = ACTIONS(903), - [sym__block_close] = ACTIONS(906), - [sym__block_quote_start] = ACTIONS(908), - [sym_atx_h1_marker] = ACTIONS(906), - [sym_atx_h2_marker] = ACTIONS(906), - [sym_atx_h3_marker] = ACTIONS(911), - [sym_atx_h4_marker] = ACTIONS(914), - [sym_atx_h5_marker] = ACTIONS(917), - [sym_atx_h6_marker] = ACTIONS(920), - [sym__thematic_break] = ACTIONS(923), - [sym__list_marker_minus] = ACTIONS(926), - [sym__list_marker_plus] = ACTIONS(929), - [sym__list_marker_star] = ACTIONS(932), - [sym__list_marker_parenthesis] = ACTIONS(935), - [sym__list_marker_dot] = ACTIONS(938), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(926), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(929), - [sym__list_marker_star_dont_interrupt] = ACTIONS(932), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(935), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(938), - [sym__list_marker_example] = ACTIONS(941), - [sym__list_marker_example_dont_interrupt] = ACTIONS(941), - [sym__fenced_code_block_start_backtick] = ACTIONS(944), - [sym_minus_metadata] = ACTIONS(947), - [sym__pipe_table_start] = ACTIONS(950), - [sym__fenced_div_start] = ACTIONS(953), - [sym__fenced_div_end] = ACTIONS(906), - [sym_ref_id_specifier] = ACTIONS(956), - [sym__code_span_start] = ACTIONS(959), - [sym__html_comment] = ACTIONS(873), - [sym__autolink] = ACTIONS(873), - [sym__highlight_span_start] = ACTIONS(962), - [sym__insert_span_start] = ACTIONS(965), - [sym__delete_span_start] = ACTIONS(968), - [sym__edit_comment_span_start] = ACTIONS(971), - [sym__single_quote_span_open] = ACTIONS(974), - [sym__double_quote_span_open] = ACTIONS(977), - [sym__shortcode_open_escaped] = ACTIONS(980), - [sym__shortcode_open] = ACTIONS(983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(986), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(989), - [sym__cite_author_in_text] = ACTIONS(992), - [sym__cite_suppress_author] = ACTIONS(995), - [sym__strikeout_open] = ACTIONS(998), - [sym__subscript_open] = ACTIONS(1001), - [sym__superscript_open] = ACTIONS(1004), - [sym__inline_note_start_token] = ACTIONS(1007), - [sym__strong_emphasis_open_star] = ACTIONS(1010), - [sym__strong_emphasis_open_underscore] = ACTIONS(1013), - [sym__emphasis_open_star] = ACTIONS(1016), - [sym__emphasis_open_underscore] = ACTIONS(1019), - [sym_inline_note_reference] = ACTIONS(873), - [sym_html_element] = ACTIONS(873), - [sym__pandoc_lt_str] = ACTIONS(894), - [sym__pandoc_line_break] = ACTIONS(873), - [sym_grid_table] = ACTIONS(947), - [sym__caption_start] = ACTIONS(1022), + [sym_grid_table] = ACTIONS(1045), + [sym__caption_start] = ACTIONS(277), }, [STATE(88)] = { - [sym__block_not_section] = STATE(89), - [sym__section3] = STATE(418), - [sym__section4] = STATE(418), - [sym__section5] = STATE(418), - [sym__section6] = STATE(418), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(89), - [sym_pandoc_list] = STATE(89), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), - [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [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__inline_whitespace] = STATE(798), - [aux_sym__section2_repeat1] = STATE(89), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [sym_minus_metadata] = STATE(93), + [sym__block_not_section] = STATE(93), + [sym__section3] = STATE(368), + [sym__section4] = STATE(368), + [sym__section5] = STATE(368), + [sym__section6] = STATE(368), + [sym__atx_heading3] = STATE(101), + [sym__atx_heading4] = STATE(109), + [sym__atx_heading5] = STATE(118), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(93), + [sym_pandoc_paragraph] = STATE(93), + [sym_inline_ref_def] = STATE(93), + [sym_caption] = STATE(93), + [sym_pipe_table] = STATE(93), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(93), + [sym_pandoc_list] = STATE(93), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), + [sym__list_item_example] = STATE(157), + [sym_pandoc_code_block] = STATE(93), + [sym_pandoc_div] = STATE(93), + [sym_note_definition_fenced_block] = STATE(93), + [sym__newline] = STATE(93), + [sym__soft_line_break] = STATE(93), + [sym__inline_whitespace] = STATE(804), + [aux_sym__section2_repeat1] = STATE(93), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), + [aux_sym__list_example_repeat1] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(1043), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -37002,18 +37170,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(115), - [sym__line_ending] = ACTIONS(117), - [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(865), - [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(865), - [sym_atx_h2_marker] = ACTIONS(865), - [sym_atx_h3_marker] = ACTIONS(131), - [sym_atx_h4_marker] = ACTIONS(133), - [sym_atx_h5_marker] = ACTIONS(135), - [sym_atx_h6_marker] = ACTIONS(137), - [sym__thematic_break] = ACTIONS(139), + [sym__whitespace] = ACTIONS(21), + [sym__line_ending] = ACTIONS(23), + [sym__soft_line_ending] = ACTIONS(25), + [sym__block_quote_start] = ACTIONS(27), + [sym_atx_h1_marker] = ACTIONS(1043), + [sym_atx_h2_marker] = ACTIONS(1043), + [sym_atx_h3_marker] = ACTIONS(33), + [sym_atx_h4_marker] = ACTIONS(35), + [sym_atx_h5_marker] = ACTIONS(37), + [sym_atx_h6_marker] = ACTIONS(39), + [sym__thematic_break] = ACTIONS(41), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -37026,11 +37193,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(1025), - [sym__pipe_table_start] = ACTIONS(147), - [sym__fenced_div_start] = ACTIONS(149), - [sym_ref_id_specifier] = ACTIONS(151), + [sym__fenced_code_block_start_backtick] = ACTIONS(55), + [sym__minus_metadata_start] = ACTIONS(57), + [sym__pipe_table_start] = ACTIONS(59), + [sym__fenced_div_start] = ACTIONS(61), + [sym_ref_id_specifier] = ACTIONS(63), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -37058,82 +37225,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1025), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(1047), + [sym__caption_start] = ACTIONS(109), }, [STATE(89)] = { - [sym__block_not_section] = STATE(90), - [sym__section3] = STATE(418), - [sym__section4] = STATE(418), - [sym__section5] = STATE(418), - [sym__section6] = STATE(418), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(90), - [sym_pandoc_list] = STATE(90), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym_minus_metadata] = STATE(91), + [sym__block_not_section] = STATE(91), + [sym__section3] = STATE(382), + [sym__section4] = STATE(382), + [sym__section5] = STATE(382), + [sym__section6] = STATE(382), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(91), + [sym_pandoc_list] = STATE(91), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [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__inline_whitespace] = STATE(798), - [aux_sym__section2_repeat1] = STATE(90), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(91), + [sym_pandoc_div] = STATE(91), + [sym_note_definition_fenced_block] = STATE(91), + [sym__newline] = STATE(91), + [sym__soft_line_break] = STATE(91), + [sym__inline_whitespace] = STATE(830), + [aux_sym__section2_repeat1] = STATE(91), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -37146,10 +37314,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(869), + [sym__block_close] = ACTIONS(1043), [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(869), - [sym_atx_h2_marker] = ACTIONS(869), + [sym_atx_h1_marker] = ACTIONS(1043), + [sym_atx_h2_marker] = ACTIONS(1043), [sym_atx_h3_marker] = ACTIONS(131), [sym_atx_h4_marker] = ACTIONS(133), [sym_atx_h5_marker] = ACTIONS(135), @@ -37168,7 +37336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(1027), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -37199,224 +37367,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1027), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(1049), + [sym__caption_start] = ACTIONS(155), }, [STATE(90)] = { - [sym__block_not_section] = STATE(90), - [sym__section3] = STATE(418), - [sym__section4] = STATE(418), - [sym__section5] = STATE(418), - [sym__section6] = STATE(418), - [sym__atx_heading3] = STATE(98), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(90), - [sym_pandoc_list] = STATE(90), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), - [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [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__inline_whitespace] = STATE(798), - [aux_sym__section2_repeat1] = STATE(90), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), - [sym_entity_reference] = ACTIONS(873), - [sym_numeric_character_reference] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_BANG_LBRACK] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(888), - [aux_sym_pandoc_str_token1] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(894), - [sym__whitespace] = ACTIONS(1029), - [sym__line_ending] = ACTIONS(1032), - [sym__soft_line_ending] = ACTIONS(1035), - [sym__block_close] = ACTIONS(906), - [sym__block_quote_start] = ACTIONS(1038), - [sym_atx_h1_marker] = ACTIONS(906), - [sym_atx_h2_marker] = ACTIONS(906), - [sym_atx_h3_marker] = ACTIONS(1041), - [sym_atx_h4_marker] = ACTIONS(1044), - [sym_atx_h5_marker] = ACTIONS(1047), - [sym_atx_h6_marker] = ACTIONS(1050), - [sym__thematic_break] = ACTIONS(1053), - [sym__list_marker_minus] = ACTIONS(926), - [sym__list_marker_plus] = ACTIONS(929), - [sym__list_marker_star] = ACTIONS(932), - [sym__list_marker_parenthesis] = ACTIONS(935), - [sym__list_marker_dot] = ACTIONS(938), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(926), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(929), - [sym__list_marker_star_dont_interrupt] = ACTIONS(932), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(935), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(938), - [sym__list_marker_example] = ACTIONS(941), - [sym__list_marker_example_dont_interrupt] = ACTIONS(941), - [sym__fenced_code_block_start_backtick] = ACTIONS(1056), - [sym_minus_metadata] = ACTIONS(1059), - [sym__pipe_table_start] = ACTIONS(1062), - [sym__fenced_div_start] = ACTIONS(1065), - [sym_ref_id_specifier] = ACTIONS(1068), - [sym__code_span_start] = ACTIONS(959), - [sym__html_comment] = ACTIONS(873), - [sym__autolink] = ACTIONS(873), - [sym__highlight_span_start] = ACTIONS(962), - [sym__insert_span_start] = ACTIONS(965), - [sym__delete_span_start] = ACTIONS(968), - [sym__edit_comment_span_start] = ACTIONS(971), - [sym__single_quote_span_open] = ACTIONS(974), - [sym__double_quote_span_open] = ACTIONS(977), - [sym__shortcode_open_escaped] = ACTIONS(980), - [sym__shortcode_open] = ACTIONS(983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(986), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(989), - [sym__cite_author_in_text] = ACTIONS(992), - [sym__cite_suppress_author] = ACTIONS(995), - [sym__strikeout_open] = ACTIONS(998), - [sym__subscript_open] = ACTIONS(1001), - [sym__superscript_open] = ACTIONS(1004), - [sym__inline_note_start_token] = ACTIONS(1007), - [sym__strong_emphasis_open_star] = ACTIONS(1010), - [sym__strong_emphasis_open_underscore] = ACTIONS(1013), - [sym__emphasis_open_star] = ACTIONS(1016), - [sym__emphasis_open_underscore] = ACTIONS(1019), - [sym_inline_note_reference] = ACTIONS(873), - [sym_html_element] = ACTIONS(873), - [sym__pandoc_lt_str] = ACTIONS(894), - [sym__pandoc_line_break] = ACTIONS(873), - [sym_grid_table] = ACTIONS(1059), - [sym__caption_start] = ACTIONS(1071), - }, - [STATE(91)] = { - [sym__block_not_section] = STATE(92), - [sym__section3] = STATE(459), - [sym__section4] = STATE(459), - [sym__section5] = STATE(459), - [sym__section6] = STATE(459), + [sym_minus_metadata] = STATE(88), + [sym__block_not_section] = STATE(88), + [sym__section3] = STATE(368), + [sym__section4] = STATE(368), + [sym__section5] = STATE(368), + [sym__section6] = STATE(368), [sym__atx_heading3] = STATE(101), - [sym__atx_heading4] = STATE(110), + [sym__atx_heading4] = STATE(109), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), - [sym_pandoc_horizontal_rule] = STATE(92), - [sym_pandoc_paragraph] = STATE(92), - [sym_inline_ref_def] = STATE(92), - [sym_caption] = STATE(92), - [sym_pipe_table] = STATE(92), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(92), - [sym_pandoc_list] = STATE(92), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), + [sym__atx_heading6] = STATE(127), + [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(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(88), + [sym_pandoc_list] = STATE(88), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), [sym__list_item_example] = STATE(157), - [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__inline_whitespace] = STATE(800), - [aux_sym__section2_repeat1] = STATE(92), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), + [sym_pandoc_code_block] = STATE(88), + [sym_pandoc_div] = STATE(88), + [sym_note_definition_fenced_block] = STATE(88), + [sym__newline] = STATE(88), + [sym__soft_line_break] = STATE(88), + [sym__inline_whitespace] = STATE(804), + [aux_sym__section2_repeat1] = STATE(88), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(865), + [ts_builtin_sym_end] = ACTIONS(1039), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -37430,8 +37458,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(23), [sym__soft_line_ending] = ACTIONS(25), [sym__block_quote_start] = ACTIONS(27), - [sym_atx_h1_marker] = ACTIONS(865), - [sym_atx_h2_marker] = ACTIONS(865), + [sym_atx_h1_marker] = ACTIONS(1039), + [sym_atx_h2_marker] = ACTIONS(1039), [sym_atx_h3_marker] = ACTIONS(33), [sym_atx_h4_marker] = ACTIONS(35), [sym_atx_h5_marker] = ACTIONS(37), @@ -37450,7 +37478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(1074), + [sym__minus_metadata_start] = ACTIONS(57), [sym__pipe_table_start] = ACTIONS(59), [sym__fenced_div_start] = ACTIONS(61), [sym_ref_id_specifier] = ACTIONS(63), @@ -37481,83 +37509,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1074), + [sym_grid_table] = ACTIONS(1051), [sym__caption_start] = ACTIONS(109), }, + [STATE(91)] = { + [sym_minus_metadata] = STATE(91), + [sym__block_not_section] = STATE(91), + [sym__section3] = STATE(382), + [sym__section4] = STATE(382), + [sym__section5] = STATE(382), + [sym__section6] = STATE(382), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(91), + [sym_pandoc_list] = STATE(91), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), + [sym__list_item_plus] = STATE(159), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(91), + [sym_pandoc_div] = STATE(91), + [sym_note_definition_fenced_block] = STATE(91), + [sym__newline] = STATE(91), + [sym__soft_line_break] = STATE(91), + [sym__inline_whitespace] = STATE(830), + [aux_sym__section2_repeat1] = STATE(91), + [aux_sym__list_plus_repeat1] = STATE(159), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), + [sym_entity_reference] = ACTIONS(884), + [sym_numeric_character_reference] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_BANG_LBRACK] = ACTIONS(890), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(899), + [aux_sym_pandoc_str_token1] = ACTIONS(902), + [anon_sym_PIPE] = ACTIONS(905), + [sym__whitespace] = ACTIONS(1053), + [sym__line_ending] = ACTIONS(1056), + [sym__soft_line_ending] = ACTIONS(1059), + [sym__block_close] = ACTIONS(917), + [sym__block_quote_start] = ACTIONS(1062), + [sym_atx_h1_marker] = ACTIONS(917), + [sym_atx_h2_marker] = ACTIONS(917), + [sym_atx_h3_marker] = ACTIONS(1065), + [sym_atx_h4_marker] = ACTIONS(1068), + [sym_atx_h5_marker] = ACTIONS(1071), + [sym_atx_h6_marker] = ACTIONS(1074), + [sym__thematic_break] = ACTIONS(1077), + [sym__list_marker_minus] = ACTIONS(937), + [sym__list_marker_plus] = ACTIONS(940), + [sym__list_marker_star] = ACTIONS(943), + [sym__list_marker_parenthesis] = ACTIONS(946), + [sym__list_marker_dot] = ACTIONS(949), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(937), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(940), + [sym__list_marker_star_dont_interrupt] = ACTIONS(943), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(946), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(949), + [sym__list_marker_example] = ACTIONS(952), + [sym__list_marker_example_dont_interrupt] = ACTIONS(952), + [sym__fenced_code_block_start_backtick] = ACTIONS(1080), + [sym__minus_metadata_start] = ACTIONS(1083), + [sym__pipe_table_start] = ACTIONS(1086), + [sym__fenced_div_start] = ACTIONS(1089), + [sym_ref_id_specifier] = ACTIONS(1092), + [sym__code_span_start] = ACTIONS(970), + [sym__html_comment] = ACTIONS(884), + [sym__autolink] = ACTIONS(884), + [sym__highlight_span_start] = ACTIONS(973), + [sym__insert_span_start] = ACTIONS(976), + [sym__delete_span_start] = ACTIONS(979), + [sym__edit_comment_span_start] = ACTIONS(982), + [sym__single_quote_span_open] = ACTIONS(985), + [sym__double_quote_span_open] = ACTIONS(988), + [sym__shortcode_open_escaped] = ACTIONS(991), + [sym__shortcode_open] = ACTIONS(994), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(997), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1000), + [sym__cite_author_in_text] = ACTIONS(1003), + [sym__cite_suppress_author] = ACTIONS(1006), + [sym__strikeout_open] = ACTIONS(1009), + [sym__subscript_open] = ACTIONS(1012), + [sym__superscript_open] = ACTIONS(1015), + [sym__inline_note_start_token] = ACTIONS(1018), + [sym__strong_emphasis_open_star] = ACTIONS(1021), + [sym__strong_emphasis_open_underscore] = ACTIONS(1024), + [sym__emphasis_open_star] = ACTIONS(1027), + [sym__emphasis_open_underscore] = ACTIONS(1030), + [sym_inline_note_reference] = ACTIONS(884), + [sym_html_element] = ACTIONS(884), + [sym__pandoc_lt_str] = ACTIONS(905), + [sym__pandoc_line_break] = ACTIONS(884), + [sym_grid_table] = ACTIONS(1095), + [sym__caption_start] = ACTIONS(1098), + }, [STATE(92)] = { - [sym__block_not_section] = STATE(93), - [sym__section3] = STATE(459), - [sym__section4] = STATE(459), - [sym__section5] = STATE(459), - [sym__section6] = STATE(459), - [sym__atx_heading3] = STATE(101), + [sym_minus_metadata] = STATE(89), + [sym__block_not_section] = STATE(89), + [sym__section3] = STATE(382), + [sym__section4] = STATE(382), + [sym__section5] = STATE(382), + [sym__section6] = STATE(382), + [sym__atx_heading3] = STATE(97), [sym__atx_heading4] = STATE(110), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), - [sym_pandoc_horizontal_rule] = STATE(93), - [sym_pandoc_paragraph] = STATE(93), - [sym_inline_ref_def] = STATE(93), - [sym_caption] = STATE(93), - [sym_pipe_table] = STATE(93), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(93), - [sym_pandoc_list] = STATE(93), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), - [sym__list_item_example] = STATE(157), - [sym_pandoc_code_block] = STATE(93), - [sym_pandoc_div] = STATE(93), - [sym_note_definition_fenced_block] = STATE(93), - [sym__newline] = STATE(93), - [sym__soft_line_break] = STATE(93), - [sym__inline_whitespace] = STATE(800), - [aux_sym__section2_repeat1] = STATE(93), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), - [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(869), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(89), + [sym_pandoc_list] = STATE(89), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), + [sym__list_item_plus] = STATE(159), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [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__inline_whitespace] = STATE(830), + [aux_sym__section2_repeat1] = STATE(89), + [aux_sym__list_plus_repeat1] = STATE(159), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -37567,17 +37737,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(21), - [sym__line_ending] = ACTIONS(23), - [sym__soft_line_ending] = ACTIONS(25), - [sym__block_quote_start] = ACTIONS(27), - [sym_atx_h1_marker] = ACTIONS(869), - [sym_atx_h2_marker] = ACTIONS(869), - [sym_atx_h3_marker] = ACTIONS(33), - [sym_atx_h4_marker] = ACTIONS(35), - [sym_atx_h5_marker] = ACTIONS(37), - [sym_atx_h6_marker] = ACTIONS(39), - [sym__thematic_break] = ACTIONS(41), + [sym__whitespace] = ACTIONS(115), + [sym__line_ending] = ACTIONS(117), + [sym__soft_line_ending] = ACTIONS(119), + [sym__block_close] = ACTIONS(1039), + [sym__block_quote_start] = ACTIONS(125), + [sym_atx_h1_marker] = ACTIONS(1039), + [sym_atx_h2_marker] = ACTIONS(1039), + [sym_atx_h3_marker] = ACTIONS(131), + [sym_atx_h4_marker] = ACTIONS(133), + [sym_atx_h5_marker] = ACTIONS(135), + [sym_atx_h6_marker] = ACTIONS(137), + [sym__thematic_break] = ACTIONS(139), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -37590,11 +37761,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(1076), - [sym__pipe_table_start] = ACTIONS(59), - [sym__fenced_div_start] = ACTIONS(61), - [sym_ref_id_specifier] = ACTIONS(63), + [sym__fenced_code_block_start_backtick] = ACTIONS(141), + [sym__minus_metadata_start] = ACTIONS(145), + [sym__pipe_table_start] = ACTIONS(147), + [sym__fenced_div_start] = ACTIONS(149), + [sym_ref_id_specifier] = ACTIONS(151), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -37622,221 +37793,364 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1076), - [sym__caption_start] = ACTIONS(109), + [sym_grid_table] = ACTIONS(1101), + [sym__caption_start] = ACTIONS(155), }, [STATE(93)] = { + [sym_minus_metadata] = STATE(93), [sym__block_not_section] = STATE(93), - [sym__section3] = STATE(459), - [sym__section4] = STATE(459), - [sym__section5] = STATE(459), - [sym__section6] = STATE(459), + [sym__section3] = STATE(368), + [sym__section4] = STATE(368), + [sym__section5] = STATE(368), + [sym__section6] = STATE(368), [sym__atx_heading3] = STATE(101), - [sym__atx_heading4] = STATE(110), + [sym__atx_heading4] = STATE(109), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), + [sym__atx_heading6] = STATE(127), [sym_pandoc_horizontal_rule] = STATE(93), [sym_pandoc_paragraph] = STATE(93), [sym_inline_ref_def] = STATE(93), [sym_caption] = STATE(93), [sym_pipe_table] = STATE(93), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(93), [sym_pandoc_list] = STATE(93), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), [sym__list_item_example] = STATE(157), [sym_pandoc_code_block] = STATE(93), [sym_pandoc_div] = STATE(93), [sym_note_definition_fenced_block] = STATE(93), [sym__newline] = STATE(93), [sym__soft_line_break] = STATE(93), - [sym__inline_whitespace] = STATE(800), + [sym__inline_whitespace] = STATE(804), [aux_sym__section2_repeat1] = STATE(93), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(906), - [sym_entity_reference] = ACTIONS(873), - [sym_numeric_character_reference] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_BANG_LBRACK] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(888), - [aux_sym_pandoc_str_token1] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(894), - [sym__whitespace] = ACTIONS(1078), - [sym__line_ending] = ACTIONS(1081), - [sym__soft_line_ending] = ACTIONS(1084), - [sym__block_quote_start] = ACTIONS(1087), - [sym_atx_h1_marker] = ACTIONS(906), - [sym_atx_h2_marker] = ACTIONS(906), - [sym_atx_h3_marker] = ACTIONS(1090), - [sym_atx_h4_marker] = ACTIONS(1093), - [sym_atx_h5_marker] = ACTIONS(1096), - [sym_atx_h6_marker] = ACTIONS(1099), - [sym__thematic_break] = ACTIONS(1102), - [sym__list_marker_minus] = ACTIONS(926), - [sym__list_marker_plus] = ACTIONS(929), - [sym__list_marker_star] = ACTIONS(932), - [sym__list_marker_parenthesis] = ACTIONS(935), - [sym__list_marker_dot] = ACTIONS(938), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(926), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(929), - [sym__list_marker_star_dont_interrupt] = ACTIONS(932), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(935), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(938), - [sym__list_marker_example] = ACTIONS(941), - [sym__list_marker_example_dont_interrupt] = ACTIONS(941), - [sym__fenced_code_block_start_backtick] = ACTIONS(1105), - [sym_minus_metadata] = ACTIONS(1108), - [sym__pipe_table_start] = ACTIONS(1111), - [sym__fenced_div_start] = ACTIONS(1114), - [sym_ref_id_specifier] = ACTIONS(1117), - [sym__code_span_start] = ACTIONS(959), - [sym__html_comment] = ACTIONS(873), - [sym__autolink] = ACTIONS(873), - [sym__highlight_span_start] = ACTIONS(962), - [sym__insert_span_start] = ACTIONS(965), - [sym__delete_span_start] = ACTIONS(968), - [sym__edit_comment_span_start] = ACTIONS(971), - [sym__single_quote_span_open] = ACTIONS(974), - [sym__double_quote_span_open] = ACTIONS(977), - [sym__shortcode_open_escaped] = ACTIONS(980), - [sym__shortcode_open] = ACTIONS(983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(986), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(989), - [sym__cite_author_in_text] = ACTIONS(992), - [sym__cite_suppress_author] = ACTIONS(995), - [sym__strikeout_open] = ACTIONS(998), - [sym__subscript_open] = ACTIONS(1001), - [sym__superscript_open] = ACTIONS(1004), - [sym__inline_note_start_token] = ACTIONS(1007), - [sym__strong_emphasis_open_star] = ACTIONS(1010), - [sym__strong_emphasis_open_underscore] = ACTIONS(1013), - [sym__emphasis_open_star] = ACTIONS(1016), - [sym__emphasis_open_underscore] = ACTIONS(1019), - [sym_inline_note_reference] = ACTIONS(873), - [sym_html_element] = ACTIONS(873), - [sym__pandoc_lt_str] = ACTIONS(894), - [sym__pandoc_line_break] = ACTIONS(873), - [sym_grid_table] = ACTIONS(1108), - [sym__caption_start] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(917), + [sym_entity_reference] = ACTIONS(884), + [sym_numeric_character_reference] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_BANG_LBRACK] = ACTIONS(890), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(899), + [aux_sym_pandoc_str_token1] = ACTIONS(902), + [anon_sym_PIPE] = ACTIONS(905), + [sym__whitespace] = ACTIONS(1103), + [sym__line_ending] = ACTIONS(1106), + [sym__soft_line_ending] = ACTIONS(1109), + [sym__block_quote_start] = ACTIONS(1112), + [sym_atx_h1_marker] = ACTIONS(917), + [sym_atx_h2_marker] = ACTIONS(917), + [sym_atx_h3_marker] = ACTIONS(1115), + [sym_atx_h4_marker] = ACTIONS(1118), + [sym_atx_h5_marker] = ACTIONS(1121), + [sym_atx_h6_marker] = ACTIONS(1124), + [sym__thematic_break] = ACTIONS(1127), + [sym__list_marker_minus] = ACTIONS(937), + [sym__list_marker_plus] = ACTIONS(940), + [sym__list_marker_star] = ACTIONS(943), + [sym__list_marker_parenthesis] = ACTIONS(946), + [sym__list_marker_dot] = ACTIONS(949), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(937), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(940), + [sym__list_marker_star_dont_interrupt] = ACTIONS(943), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(946), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(949), + [sym__list_marker_example] = ACTIONS(952), + [sym__list_marker_example_dont_interrupt] = ACTIONS(952), + [sym__fenced_code_block_start_backtick] = ACTIONS(1130), + [sym__minus_metadata_start] = ACTIONS(1133), + [sym__pipe_table_start] = ACTIONS(1136), + [sym__fenced_div_start] = ACTIONS(1139), + [sym_ref_id_specifier] = ACTIONS(1142), + [sym__code_span_start] = ACTIONS(970), + [sym__html_comment] = ACTIONS(884), + [sym__autolink] = ACTIONS(884), + [sym__highlight_span_start] = ACTIONS(973), + [sym__insert_span_start] = ACTIONS(976), + [sym__delete_span_start] = ACTIONS(979), + [sym__edit_comment_span_start] = ACTIONS(982), + [sym__single_quote_span_open] = ACTIONS(985), + [sym__double_quote_span_open] = ACTIONS(988), + [sym__shortcode_open_escaped] = ACTIONS(991), + [sym__shortcode_open] = ACTIONS(994), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(997), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1000), + [sym__cite_author_in_text] = ACTIONS(1003), + [sym__cite_suppress_author] = ACTIONS(1006), + [sym__strikeout_open] = ACTIONS(1009), + [sym__subscript_open] = ACTIONS(1012), + [sym__superscript_open] = ACTIONS(1015), + [sym__inline_note_start_token] = ACTIONS(1018), + [sym__strong_emphasis_open_star] = ACTIONS(1021), + [sym__strong_emphasis_open_underscore] = ACTIONS(1024), + [sym__emphasis_open_star] = ACTIONS(1027), + [sym__emphasis_open_underscore] = ACTIONS(1030), + [sym_inline_note_reference] = ACTIONS(884), + [sym_html_element] = ACTIONS(884), + [sym__pandoc_lt_str] = ACTIONS(905), + [sym__pandoc_line_break] = ACTIONS(884), + [sym_grid_table] = ACTIONS(1145), + [sym__caption_start] = ACTIONS(1148), }, [STATE(94)] = { - [sym__block_not_section] = STATE(95), - [sym__section4] = STATE(269), - [sym__section5] = STATE(269), - [sym__section6] = STATE(269), - [sym__atx_heading4] = STATE(104), + [sym_minus_metadata] = STATE(94), + [sym__block_not_section] = STATE(94), + [sym__section4] = STATE(241), + [sym__section5] = STATE(241), + [sym__section6] = STATE(241), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [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(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(95), - [sym_pandoc_list] = STATE(95), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(95), - [sym_pandoc_div] = STATE(95), - [sym_note_definition_fenced_block] = STATE(95), - [sym__newline] = STATE(95), - [sym__soft_line_break] = STATE(95), - [sym__inline_whitespace] = STATE(802), - [aux_sym__section3_repeat1] = STATE(95), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(94), + [sym_pandoc_list] = STATE(94), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [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__inline_whitespace] = STATE(811), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), + [sym_entity_reference] = ACTIONS(1151), + [sym_numeric_character_reference] = ACTIONS(1151), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_BANG_LBRACK] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1166), + [aux_sym_pandoc_str_token1] = ACTIONS(1169), + [anon_sym_PIPE] = ACTIONS(1172), + [sym__whitespace] = ACTIONS(1175), + [sym__line_ending] = ACTIONS(1178), + [sym__soft_line_ending] = ACTIONS(1181), + [sym__block_close] = ACTIONS(1184), + [sym__block_quote_start] = ACTIONS(1186), + [sym_atx_h1_marker] = ACTIONS(1184), + [sym_atx_h2_marker] = ACTIONS(1184), + [sym_atx_h3_marker] = ACTIONS(1184), + [sym_atx_h4_marker] = ACTIONS(1189), + [sym_atx_h5_marker] = ACTIONS(1192), + [sym_atx_h6_marker] = ACTIONS(1195), + [sym__thematic_break] = ACTIONS(1198), + [sym__list_marker_minus] = ACTIONS(1201), + [sym__list_marker_plus] = ACTIONS(1204), + [sym__list_marker_star] = ACTIONS(1207), + [sym__list_marker_parenthesis] = ACTIONS(1210), + [sym__list_marker_dot] = ACTIONS(1213), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1201), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1204), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1207), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1210), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1213), + [sym__list_marker_example] = ACTIONS(1216), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1216), + [sym__fenced_code_block_start_backtick] = ACTIONS(1219), + [sym__minus_metadata_start] = ACTIONS(1222), + [sym__pipe_table_start] = ACTIONS(1225), + [sym__fenced_div_start] = ACTIONS(1228), + [sym__fenced_div_end] = ACTIONS(1184), + [sym_ref_id_specifier] = ACTIONS(1231), + [sym__code_span_start] = ACTIONS(1234), + [sym__html_comment] = ACTIONS(1151), + [sym__autolink] = ACTIONS(1151), + [sym__highlight_span_start] = ACTIONS(1237), + [sym__insert_span_start] = ACTIONS(1240), + [sym__delete_span_start] = ACTIONS(1243), + [sym__edit_comment_span_start] = ACTIONS(1246), + [sym__single_quote_span_open] = ACTIONS(1249), + [sym__double_quote_span_open] = ACTIONS(1252), + [sym__shortcode_open_escaped] = ACTIONS(1255), + [sym__shortcode_open] = ACTIONS(1258), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1261), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1264), + [sym__cite_author_in_text] = ACTIONS(1267), + [sym__cite_suppress_author] = ACTIONS(1270), + [sym__strikeout_open] = ACTIONS(1273), + [sym__subscript_open] = ACTIONS(1276), + [sym__superscript_open] = ACTIONS(1279), + [sym__inline_note_start_token] = ACTIONS(1282), + [sym__strong_emphasis_open_star] = ACTIONS(1285), + [sym__strong_emphasis_open_underscore] = ACTIONS(1288), + [sym__emphasis_open_star] = ACTIONS(1291), + [sym__emphasis_open_underscore] = ACTIONS(1294), + [sym_inline_note_reference] = ACTIONS(1151), + [sym_html_element] = ACTIONS(1151), + [sym__pandoc_lt_str] = ACTIONS(1172), + [sym__pandoc_line_break] = ACTIONS(1151), + [sym_grid_table] = ACTIONS(1297), + [sym__caption_start] = ACTIONS(1300), + }, + [STATE(95)] = { + [sym_minus_metadata] = STATE(94), + [sym__block_not_section] = STATE(94), + [sym__section4] = STATE(241), + [sym__section5] = STATE(241), + [sym__section6] = STATE(241), + [sym__atx_heading4] = STATE(103), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(94), + [sym_pandoc_paragraph] = STATE(94), + [sym_inline_ref_def] = STATE(94), + [sym_caption] = STATE(94), + [sym_pipe_table] = STATE(94), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(94), + [sym_pandoc_list] = STATE(94), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [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__inline_whitespace] = STATE(811), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -37846,18 +38160,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(1123), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(1123), - [sym_atx_h2_marker] = ACTIONS(1123), - [sym_atx_h3_marker] = ACTIONS(1123), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(1303), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(1303), + [sym_atx_h2_marker] = ACTIONS(1303), + [sym_atx_h3_marker] = ACTIONS(1303), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -37870,12 +38184,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(1125), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(1123), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(1303), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -37903,80 +38217,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1125), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(1305), + [sym__caption_start] = ACTIONS(277), }, - [STATE(95)] = { - [sym__block_not_section] = STATE(96), - [sym__section4] = STATE(269), - [sym__section5] = STATE(269), - [sym__section6] = STATE(269), - [sym__atx_heading4] = STATE(104), + [STATE(96)] = { + [sym_minus_metadata] = STATE(95), + [sym__block_not_section] = STATE(95), + [sym__section4] = STATE(241), + [sym__section5] = STATE(241), + [sym__section6] = STATE(241), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [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(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(96), - [sym_pandoc_list] = STATE(96), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(96), - [sym_pandoc_div] = STATE(96), - [sym_note_definition_fenced_block] = STATE(96), - [sym__newline] = STATE(96), - [sym__soft_line_break] = STATE(96), - [sym__inline_whitespace] = STATE(802), - [aux_sym__section3_repeat1] = STATE(96), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(95), + [sym_pandoc_list] = STATE(95), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(95), + [sym_pandoc_div] = STATE(95), + [sym_note_definition_fenced_block] = STATE(95), + [sym__newline] = STATE(95), + [sym__soft_line_break] = STATE(95), + [sym__inline_whitespace] = STATE(811), + [aux_sym__section3_repeat1] = STATE(95), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -37986,18 +38301,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(1127), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(1127), - [sym_atx_h2_marker] = ACTIONS(1127), - [sym_atx_h3_marker] = ACTIONS(1127), - [sym_atx_h4_marker] = ACTIONS(247), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(1307), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(1307), + [sym_atx_h2_marker] = ACTIONS(1307), + [sym_atx_h3_marker] = ACTIONS(1307), + [sym_atx_h4_marker] = ACTIONS(255), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -38010,12 +38325,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(1129), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(1127), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(1307), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -38043,220 +38358,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1129), - [sym__caption_start] = ACTIONS(267), - }, - [STATE(96)] = { - [sym__block_not_section] = STATE(96), - [sym__section4] = STATE(269), - [sym__section5] = STATE(269), - [sym__section6] = STATE(269), - [sym__atx_heading4] = STATE(104), - [sym__atx_heading5] = STATE(112), - [sym__atx_heading6] = STATE(121), - [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(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(96), - [sym_pandoc_list] = STATE(96), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(96), - [sym_pandoc_div] = STATE(96), - [sym_note_definition_fenced_block] = STATE(96), - [sym__newline] = STATE(96), - [sym__soft_line_break] = STATE(96), - [sym__inline_whitespace] = STATE(802), - [aux_sym__section3_repeat1] = STATE(96), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), - [sym_entity_reference] = ACTIONS(1131), - [sym_numeric_character_reference] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_BANG_LBRACK] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(1140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1146), - [aux_sym_pandoc_str_token1] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1152), - [sym__whitespace] = ACTIONS(1155), - [sym__line_ending] = ACTIONS(1158), - [sym__soft_line_ending] = ACTIONS(1161), - [sym__block_close] = ACTIONS(1164), - [sym__block_quote_start] = ACTIONS(1166), - [sym_atx_h1_marker] = ACTIONS(1164), - [sym_atx_h2_marker] = ACTIONS(1164), - [sym_atx_h3_marker] = ACTIONS(1164), - [sym_atx_h4_marker] = ACTIONS(1169), - [sym_atx_h5_marker] = ACTIONS(1172), - [sym_atx_h6_marker] = ACTIONS(1175), - [sym__thematic_break] = ACTIONS(1178), - [sym__list_marker_minus] = ACTIONS(1181), - [sym__list_marker_plus] = ACTIONS(1184), - [sym__list_marker_star] = ACTIONS(1187), - [sym__list_marker_parenthesis] = ACTIONS(1190), - [sym__list_marker_dot] = ACTIONS(1193), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1181), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1184), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1187), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1190), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1193), - [sym__list_marker_example] = ACTIONS(1196), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1196), - [sym__fenced_code_block_start_backtick] = ACTIONS(1199), - [sym_minus_metadata] = ACTIONS(1202), - [sym__pipe_table_start] = ACTIONS(1205), - [sym__fenced_div_start] = ACTIONS(1208), - [sym__fenced_div_end] = ACTIONS(1164), - [sym_ref_id_specifier] = ACTIONS(1211), - [sym__code_span_start] = ACTIONS(1214), - [sym__html_comment] = ACTIONS(1131), - [sym__autolink] = ACTIONS(1131), - [sym__highlight_span_start] = ACTIONS(1217), - [sym__insert_span_start] = ACTIONS(1220), - [sym__delete_span_start] = ACTIONS(1223), - [sym__edit_comment_span_start] = ACTIONS(1226), - [sym__single_quote_span_open] = ACTIONS(1229), - [sym__double_quote_span_open] = ACTIONS(1232), - [sym__shortcode_open_escaped] = ACTIONS(1235), - [sym__shortcode_open] = ACTIONS(1238), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1241), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1244), - [sym__cite_author_in_text] = ACTIONS(1247), - [sym__cite_suppress_author] = ACTIONS(1250), - [sym__strikeout_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1256), - [sym__superscript_open] = ACTIONS(1259), - [sym__inline_note_start_token] = ACTIONS(1262), - [sym__strong_emphasis_open_star] = ACTIONS(1265), - [sym__strong_emphasis_open_underscore] = ACTIONS(1268), - [sym__emphasis_open_star] = ACTIONS(1271), - [sym__emphasis_open_underscore] = ACTIONS(1274), - [sym_inline_note_reference] = ACTIONS(1131), - [sym_html_element] = ACTIONS(1131), - [sym__pandoc_lt_str] = ACTIONS(1152), - [sym__pandoc_line_break] = ACTIONS(1131), - [sym_grid_table] = ACTIONS(1202), - [sym__caption_start] = ACTIONS(1277), + [sym_grid_table] = ACTIONS(1309), + [sym__caption_start] = ACTIONS(277), }, [STATE(97)] = { - [sym__block_not_section] = STATE(99), - [sym__section4] = STATE(419), - [sym__section5] = STATE(419), - [sym__section6] = STATE(419), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(99), - [sym_pandoc_list] = STATE(99), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym_minus_metadata] = STATE(98), + [sym__block_not_section] = STATE(98), + [sym__section4] = STATE(388), + [sym__section5] = STATE(388), + [sym__section6] = STATE(388), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(98), + [sym_pandoc_list] = STATE(98), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(99), - [sym_pandoc_div] = STATE(99), - [sym_note_definition_fenced_block] = STATE(99), - [sym__newline] = STATE(99), - [sym__soft_line_break] = STATE(99), - [sym__inline_whitespace] = STATE(798), - [aux_sym__section3_repeat1] = STATE(99), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [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__inline_whitespace] = STATE(830), + [aux_sym__section3_repeat1] = STATE(98), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -38269,11 +38445,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(1127), + [sym__block_close] = ACTIONS(1307), [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(1127), - [sym_atx_h2_marker] = ACTIONS(1127), - [sym_atx_h3_marker] = ACTIONS(1127), + [sym_atx_h1_marker] = ACTIONS(1307), + [sym_atx_h2_marker] = ACTIONS(1307), + [sym_atx_h3_marker] = ACTIONS(1307), [sym_atx_h4_marker] = ACTIONS(133), [sym_atx_h5_marker] = ACTIONS(135), [sym_atx_h6_marker] = ACTIONS(137), @@ -38291,7 +38467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(1280), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -38322,80 +38498,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1280), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(1311), + [sym__caption_start] = ACTIONS(155), }, [STATE(98)] = { - [sym__block_not_section] = STATE(97), - [sym__section4] = STATE(419), - [sym__section5] = STATE(419), - [sym__section6] = STATE(419), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(97), - [sym_pandoc_paragraph] = STATE(97), - [sym_inline_ref_def] = STATE(97), - [sym_caption] = STATE(97), - [sym_pipe_table] = STATE(97), - [sym__inlines] = STATE(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(97), - [sym_pandoc_list] = STATE(97), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym_minus_metadata] = STATE(100), + [sym__block_not_section] = STATE(100), + [sym__section4] = STATE(388), + [sym__section5] = STATE(388), + [sym__section6] = STATE(388), + [sym__atx_heading4] = STATE(110), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [sym_pandoc_horizontal_rule] = STATE(100), + [sym_pandoc_paragraph] = STATE(100), + [sym_inline_ref_def] = STATE(100), + [sym_caption] = STATE(100), + [sym_pipe_table] = STATE(100), + [sym__inlines] = STATE(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(100), + [sym_pandoc_list] = STATE(100), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(97), - [sym_pandoc_div] = STATE(97), - [sym_note_definition_fenced_block] = STATE(97), - [sym__newline] = STATE(97), - [sym__soft_line_break] = STATE(97), - [sym__inline_whitespace] = STATE(798), - [aux_sym__section3_repeat1] = STATE(97), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(100), + [sym_pandoc_div] = STATE(100), + [sym_note_definition_fenced_block] = STATE(100), + [sym__newline] = STATE(100), + [sym__soft_line_break] = STATE(100), + [sym__inline_whitespace] = STATE(830), + [aux_sym__section3_repeat1] = STATE(100), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -38408,11 +38585,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(1123), + [sym__block_close] = ACTIONS(1303), [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(1123), - [sym_atx_h2_marker] = ACTIONS(1123), - [sym_atx_h3_marker] = ACTIONS(1123), + [sym_atx_h1_marker] = ACTIONS(1303), + [sym_atx_h2_marker] = ACTIONS(1303), + [sym_atx_h3_marker] = ACTIONS(1303), [sym_atx_h4_marker] = ACTIONS(133), [sym_atx_h5_marker] = ACTIONS(135), [sym_atx_h6_marker] = ACTIONS(137), @@ -38430,7 +38607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(1282), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -38461,220 +38638,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1282), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(1313), + [sym__caption_start] = ACTIONS(155), }, [STATE(99)] = { - [sym__block_not_section] = STATE(99), - [sym__section4] = STATE(419), - [sym__section5] = STATE(419), - [sym__section6] = STATE(419), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(99), - [sym_pandoc_list] = STATE(99), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), - [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(99), - [sym_pandoc_div] = STATE(99), - [sym_note_definition_fenced_block] = STATE(99), - [sym__newline] = STATE(99), - [sym__soft_line_break] = STATE(99), - [sym__inline_whitespace] = STATE(798), - [aux_sym__section3_repeat1] = STATE(99), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), - [sym_entity_reference] = ACTIONS(1131), - [sym_numeric_character_reference] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_BANG_LBRACK] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(1140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1146), - [aux_sym_pandoc_str_token1] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1152), - [sym__whitespace] = ACTIONS(1284), - [sym__line_ending] = ACTIONS(1287), - [sym__soft_line_ending] = ACTIONS(1290), - [sym__block_close] = ACTIONS(1164), - [sym__block_quote_start] = ACTIONS(1293), - [sym_atx_h1_marker] = ACTIONS(1164), - [sym_atx_h2_marker] = ACTIONS(1164), - [sym_atx_h3_marker] = ACTIONS(1164), - [sym_atx_h4_marker] = ACTIONS(1296), - [sym_atx_h5_marker] = ACTIONS(1299), - [sym_atx_h6_marker] = ACTIONS(1302), - [sym__thematic_break] = ACTIONS(1305), - [sym__list_marker_minus] = ACTIONS(1181), - [sym__list_marker_plus] = ACTIONS(1184), - [sym__list_marker_star] = ACTIONS(1187), - [sym__list_marker_parenthesis] = ACTIONS(1190), - [sym__list_marker_dot] = ACTIONS(1193), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1181), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1184), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1187), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1190), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1193), - [sym__list_marker_example] = ACTIONS(1196), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1196), - [sym__fenced_code_block_start_backtick] = ACTIONS(1308), - [sym_minus_metadata] = ACTIONS(1311), - [sym__pipe_table_start] = ACTIONS(1314), - [sym__fenced_div_start] = ACTIONS(1317), - [sym_ref_id_specifier] = ACTIONS(1320), - [sym__code_span_start] = ACTIONS(1214), - [sym__html_comment] = ACTIONS(1131), - [sym__autolink] = ACTIONS(1131), - [sym__highlight_span_start] = ACTIONS(1217), - [sym__insert_span_start] = ACTIONS(1220), - [sym__delete_span_start] = ACTIONS(1223), - [sym__edit_comment_span_start] = ACTIONS(1226), - [sym__single_quote_span_open] = ACTIONS(1229), - [sym__double_quote_span_open] = ACTIONS(1232), - [sym__shortcode_open_escaped] = ACTIONS(1235), - [sym__shortcode_open] = ACTIONS(1238), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1241), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1244), - [sym__cite_author_in_text] = ACTIONS(1247), - [sym__cite_suppress_author] = ACTIONS(1250), - [sym__strikeout_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1256), - [sym__superscript_open] = ACTIONS(1259), - [sym__inline_note_start_token] = ACTIONS(1262), - [sym__strong_emphasis_open_star] = ACTIONS(1265), - [sym__strong_emphasis_open_underscore] = ACTIONS(1268), - [sym__emphasis_open_star] = ACTIONS(1271), - [sym__emphasis_open_underscore] = ACTIONS(1274), - [sym_inline_note_reference] = ACTIONS(1131), - [sym_html_element] = ACTIONS(1131), - [sym__pandoc_lt_str] = ACTIONS(1152), - [sym__pandoc_line_break] = ACTIONS(1131), - [sym_grid_table] = ACTIONS(1311), - [sym__caption_start] = ACTIONS(1323), - }, - [STATE(100)] = { + [sym_minus_metadata] = STATE(102), [sym__block_not_section] = STATE(102), - [sym__section4] = STATE(471), - [sym__section5] = STATE(471), - [sym__section6] = STATE(471), - [sym__atx_heading4] = STATE(110), + [sym__section4] = STATE(369), + [sym__section5] = STATE(369), + [sym__section6] = STATE(369), + [sym__atx_heading4] = STATE(109), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), + [sym__atx_heading6] = STATE(127), [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(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(102), [sym_pandoc_list] = STATE(102), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), [sym__list_item_example] = STATE(157), [sym_pandoc_code_block] = STATE(102), [sym_pandoc_div] = STATE(102), [sym_note_definition_fenced_block] = STATE(102), [sym__newline] = STATE(102), [sym__soft_line_break] = STATE(102), - [sym__inline_whitespace] = STATE(800), + [sym__inline_whitespace] = STATE(804), [aux_sym__section3_repeat1] = STATE(102), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(1127), + [ts_builtin_sym_end] = ACTIONS(1303), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -38688,9 +38727,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(23), [sym__soft_line_ending] = ACTIONS(25), [sym__block_quote_start] = ACTIONS(27), - [sym_atx_h1_marker] = ACTIONS(1127), - [sym_atx_h2_marker] = ACTIONS(1127), - [sym_atx_h3_marker] = ACTIONS(1127), + [sym_atx_h1_marker] = ACTIONS(1303), + [sym_atx_h2_marker] = ACTIONS(1303), + [sym_atx_h3_marker] = ACTIONS(1303), [sym_atx_h4_marker] = ACTIONS(35), [sym_atx_h5_marker] = ACTIONS(37), [sym_atx_h6_marker] = ACTIONS(39), @@ -38708,7 +38747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(1326), + [sym__minus_metadata_start] = ACTIONS(57), [sym__pipe_table_start] = ACTIONS(59), [sym__fenced_div_start] = ACTIONS(61), [sym_ref_id_specifier] = ACTIONS(63), @@ -38739,81 +38778,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1326), + [sym_grid_table] = ACTIONS(1315), [sym__caption_start] = ACTIONS(109), }, - [STATE(101)] = { + [STATE(100)] = { + [sym_minus_metadata] = STATE(100), [sym__block_not_section] = STATE(100), - [sym__section4] = STATE(471), - [sym__section5] = STATE(471), - [sym__section6] = STATE(471), + [sym__section4] = STATE(388), + [sym__section5] = STATE(388), + [sym__section6] = STATE(388), [sym__atx_heading4] = STATE(110), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), [sym_pandoc_horizontal_rule] = STATE(100), [sym_pandoc_paragraph] = STATE(100), [sym_inline_ref_def] = STATE(100), [sym_caption] = STATE(100), [sym_pipe_table] = STATE(100), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(100), [sym_pandoc_list] = STATE(100), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), - [sym__list_item_example] = STATE(157), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), + [sym__list_item_plus] = STATE(159), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), [sym_pandoc_code_block] = STATE(100), [sym_pandoc_div] = STATE(100), [sym_note_definition_fenced_block] = STATE(100), [sym__newline] = STATE(100), [sym__soft_line_break] = STATE(100), - [sym__inline_whitespace] = STATE(800), + [sym__inline_whitespace] = STATE(830), [aux_sym__section3_repeat1] = STATE(100), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), + [aux_sym__list_plus_repeat1] = STATE(159), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), + [sym_entity_reference] = ACTIONS(1151), + [sym_numeric_character_reference] = ACTIONS(1151), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_BANG_LBRACK] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1166), + [aux_sym_pandoc_str_token1] = ACTIONS(1169), + [anon_sym_PIPE] = ACTIONS(1172), + [sym__whitespace] = ACTIONS(1317), + [sym__line_ending] = ACTIONS(1320), + [sym__soft_line_ending] = ACTIONS(1323), + [sym__block_close] = ACTIONS(1184), + [sym__block_quote_start] = ACTIONS(1326), + [sym_atx_h1_marker] = ACTIONS(1184), + [sym_atx_h2_marker] = ACTIONS(1184), + [sym_atx_h3_marker] = ACTIONS(1184), + [sym_atx_h4_marker] = ACTIONS(1329), + [sym_atx_h5_marker] = ACTIONS(1332), + [sym_atx_h6_marker] = ACTIONS(1335), + [sym__thematic_break] = ACTIONS(1338), + [sym__list_marker_minus] = ACTIONS(1201), + [sym__list_marker_plus] = ACTIONS(1204), + [sym__list_marker_star] = ACTIONS(1207), + [sym__list_marker_parenthesis] = ACTIONS(1210), + [sym__list_marker_dot] = ACTIONS(1213), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1201), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1204), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1207), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1210), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1213), + [sym__list_marker_example] = ACTIONS(1216), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1216), + [sym__fenced_code_block_start_backtick] = ACTIONS(1341), + [sym__minus_metadata_start] = ACTIONS(1344), + [sym__pipe_table_start] = ACTIONS(1347), + [sym__fenced_div_start] = ACTIONS(1350), + [sym_ref_id_specifier] = ACTIONS(1353), + [sym__code_span_start] = ACTIONS(1234), + [sym__html_comment] = ACTIONS(1151), + [sym__autolink] = ACTIONS(1151), + [sym__highlight_span_start] = ACTIONS(1237), + [sym__insert_span_start] = ACTIONS(1240), + [sym__delete_span_start] = ACTIONS(1243), + [sym__edit_comment_span_start] = ACTIONS(1246), + [sym__single_quote_span_open] = ACTIONS(1249), + [sym__double_quote_span_open] = ACTIONS(1252), + [sym__shortcode_open_escaped] = ACTIONS(1255), + [sym__shortcode_open] = ACTIONS(1258), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1261), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1264), + [sym__cite_author_in_text] = ACTIONS(1267), + [sym__cite_suppress_author] = ACTIONS(1270), + [sym__strikeout_open] = ACTIONS(1273), + [sym__subscript_open] = ACTIONS(1276), + [sym__superscript_open] = ACTIONS(1279), + [sym__inline_note_start_token] = ACTIONS(1282), + [sym__strong_emphasis_open_star] = ACTIONS(1285), + [sym__strong_emphasis_open_underscore] = ACTIONS(1288), + [sym__emphasis_open_star] = ACTIONS(1291), + [sym__emphasis_open_underscore] = ACTIONS(1294), + [sym_inline_note_reference] = ACTIONS(1151), + [sym_html_element] = ACTIONS(1151), + [sym__pandoc_lt_str] = ACTIONS(1172), + [sym__pandoc_line_break] = ACTIONS(1151), + [sym_grid_table] = ACTIONS(1356), + [sym__caption_start] = ACTIONS(1359), + }, + [STATE(101)] = { + [sym_minus_metadata] = STATE(99), + [sym__block_not_section] = STATE(99), + [sym__section4] = STATE(369), + [sym__section5] = STATE(369), + [sym__section6] = STATE(369), + [sym__atx_heading4] = STATE(109), + [sym__atx_heading5] = STATE(118), + [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(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(99), + [sym_pandoc_list] = STATE(99), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), + [sym__list_item_example] = STATE(157), + [sym_pandoc_code_block] = STATE(99), + [sym_pandoc_div] = STATE(99), + [sym_note_definition_fenced_block] = STATE(99), + [sym__newline] = STATE(99), + [sym__soft_line_break] = STATE(99), + [sym__inline_whitespace] = STATE(804), + [aux_sym__section3_repeat1] = STATE(99), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(1123), + [ts_builtin_sym_end] = ACTIONS(1307), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -38827,9 +39007,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(23), [sym__soft_line_ending] = ACTIONS(25), [sym__block_quote_start] = ACTIONS(27), - [sym_atx_h1_marker] = ACTIONS(1123), - [sym_atx_h2_marker] = ACTIONS(1123), - [sym_atx_h3_marker] = ACTIONS(1123), + [sym_atx_h1_marker] = ACTIONS(1307), + [sym_atx_h2_marker] = ACTIONS(1307), + [sym_atx_h3_marker] = ACTIONS(1307), [sym_atx_h4_marker] = ACTIONS(35), [sym_atx_h5_marker] = ACTIONS(37), [sym_atx_h6_marker] = ACTIONS(39), @@ -38847,7 +39027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(1328), + [sym__minus_metadata_start] = ACTIONS(57), [sym__pipe_table_start] = ACTIONS(59), [sym__fenced_div_start] = ACTIONS(61), [sym_ref_id_specifier] = ACTIONS(63), @@ -38878,290 +39058,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1328), + [sym_grid_table] = ACTIONS(1362), [sym__caption_start] = ACTIONS(109), }, [STATE(102)] = { + [sym_minus_metadata] = STATE(102), [sym__block_not_section] = STATE(102), - [sym__section4] = STATE(471), - [sym__section5] = STATE(471), - [sym__section6] = STATE(471), - [sym__atx_heading4] = STATE(110), + [sym__section4] = STATE(369), + [sym__section5] = STATE(369), + [sym__section6] = STATE(369), + [sym__atx_heading4] = STATE(109), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), + [sym__atx_heading6] = STATE(127), [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(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(102), [sym_pandoc_list] = STATE(102), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), [sym__list_item_example] = STATE(157), [sym_pandoc_code_block] = STATE(102), [sym_pandoc_div] = STATE(102), [sym_note_definition_fenced_block] = STATE(102), [sym__newline] = STATE(102), [sym__soft_line_break] = STATE(102), - [sym__inline_whitespace] = STATE(800), + [sym__inline_whitespace] = STATE(804), [aux_sym__section3_repeat1] = STATE(102), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(1164), - [sym_entity_reference] = ACTIONS(1131), - [sym_numeric_character_reference] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_BANG_LBRACK] = ACTIONS(1137), - [anon_sym_DOLLAR] = ACTIONS(1140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1146), - [aux_sym_pandoc_str_token1] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1152), - [sym__whitespace] = ACTIONS(1330), - [sym__line_ending] = ACTIONS(1333), - [sym__soft_line_ending] = ACTIONS(1336), - [sym__block_quote_start] = ACTIONS(1339), - [sym_atx_h1_marker] = ACTIONS(1164), - [sym_atx_h2_marker] = ACTIONS(1164), - [sym_atx_h3_marker] = ACTIONS(1164), - [sym_atx_h4_marker] = ACTIONS(1342), - [sym_atx_h5_marker] = ACTIONS(1345), - [sym_atx_h6_marker] = ACTIONS(1348), - [sym__thematic_break] = ACTIONS(1351), - [sym__list_marker_minus] = ACTIONS(1181), - [sym__list_marker_plus] = ACTIONS(1184), - [sym__list_marker_star] = ACTIONS(1187), - [sym__list_marker_parenthesis] = ACTIONS(1190), - [sym__list_marker_dot] = ACTIONS(1193), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1181), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1184), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1187), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1190), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1193), - [sym__list_marker_example] = ACTIONS(1196), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1196), - [sym__fenced_code_block_start_backtick] = ACTIONS(1354), - [sym_minus_metadata] = ACTIONS(1357), - [sym__pipe_table_start] = ACTIONS(1360), - [sym__fenced_div_start] = ACTIONS(1363), - [sym_ref_id_specifier] = ACTIONS(1366), - [sym__code_span_start] = ACTIONS(1214), - [sym__html_comment] = ACTIONS(1131), - [sym__autolink] = ACTIONS(1131), - [sym__highlight_span_start] = ACTIONS(1217), - [sym__insert_span_start] = ACTIONS(1220), - [sym__delete_span_start] = ACTIONS(1223), - [sym__edit_comment_span_start] = ACTIONS(1226), - [sym__single_quote_span_open] = ACTIONS(1229), - [sym__double_quote_span_open] = ACTIONS(1232), - [sym__shortcode_open_escaped] = ACTIONS(1235), - [sym__shortcode_open] = ACTIONS(1238), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1241), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1244), - [sym__cite_author_in_text] = ACTIONS(1247), - [sym__cite_suppress_author] = ACTIONS(1250), - [sym__strikeout_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1256), - [sym__superscript_open] = ACTIONS(1259), - [sym__inline_note_start_token] = ACTIONS(1262), - [sym__strong_emphasis_open_star] = ACTIONS(1265), - [sym__strong_emphasis_open_underscore] = ACTIONS(1268), - [sym__emphasis_open_star] = ACTIONS(1271), - [sym__emphasis_open_underscore] = ACTIONS(1274), - [sym_inline_note_reference] = ACTIONS(1131), - [sym_html_element] = ACTIONS(1131), - [sym__pandoc_lt_str] = ACTIONS(1152), - [sym__pandoc_line_break] = ACTIONS(1131), - [sym_grid_table] = ACTIONS(1357), - [sym__caption_start] = ACTIONS(1369), + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_entity_reference] = ACTIONS(1151), + [sym_numeric_character_reference] = ACTIONS(1151), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_BANG_LBRACK] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1166), + [aux_sym_pandoc_str_token1] = ACTIONS(1169), + [anon_sym_PIPE] = ACTIONS(1172), + [sym__whitespace] = ACTIONS(1364), + [sym__line_ending] = ACTIONS(1367), + [sym__soft_line_ending] = ACTIONS(1370), + [sym__block_quote_start] = ACTIONS(1373), + [sym_atx_h1_marker] = ACTIONS(1184), + [sym_atx_h2_marker] = ACTIONS(1184), + [sym_atx_h3_marker] = ACTIONS(1184), + [sym_atx_h4_marker] = ACTIONS(1376), + [sym_atx_h5_marker] = ACTIONS(1379), + [sym_atx_h6_marker] = ACTIONS(1382), + [sym__thematic_break] = ACTIONS(1385), + [sym__list_marker_minus] = ACTIONS(1201), + [sym__list_marker_plus] = ACTIONS(1204), + [sym__list_marker_star] = ACTIONS(1207), + [sym__list_marker_parenthesis] = ACTIONS(1210), + [sym__list_marker_dot] = ACTIONS(1213), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1201), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1204), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1207), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1210), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1213), + [sym__list_marker_example] = ACTIONS(1216), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1216), + [sym__fenced_code_block_start_backtick] = ACTIONS(1388), + [sym__minus_metadata_start] = ACTIONS(1391), + [sym__pipe_table_start] = ACTIONS(1394), + [sym__fenced_div_start] = ACTIONS(1397), + [sym_ref_id_specifier] = ACTIONS(1400), + [sym__code_span_start] = ACTIONS(1234), + [sym__html_comment] = ACTIONS(1151), + [sym__autolink] = ACTIONS(1151), + [sym__highlight_span_start] = ACTIONS(1237), + [sym__insert_span_start] = ACTIONS(1240), + [sym__delete_span_start] = ACTIONS(1243), + [sym__edit_comment_span_start] = ACTIONS(1246), + [sym__single_quote_span_open] = ACTIONS(1249), + [sym__double_quote_span_open] = ACTIONS(1252), + [sym__shortcode_open_escaped] = ACTIONS(1255), + [sym__shortcode_open] = ACTIONS(1258), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1261), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1264), + [sym__cite_author_in_text] = ACTIONS(1267), + [sym__cite_suppress_author] = ACTIONS(1270), + [sym__strikeout_open] = ACTIONS(1273), + [sym__subscript_open] = ACTIONS(1276), + [sym__superscript_open] = ACTIONS(1279), + [sym__inline_note_start_token] = ACTIONS(1282), + [sym__strong_emphasis_open_star] = ACTIONS(1285), + [sym__strong_emphasis_open_underscore] = ACTIONS(1288), + [sym__emphasis_open_star] = ACTIONS(1291), + [sym__emphasis_open_underscore] = ACTIONS(1294), + [sym_inline_note_reference] = ACTIONS(1151), + [sym_html_element] = ACTIONS(1151), + [sym__pandoc_lt_str] = ACTIONS(1172), + [sym__pandoc_line_break] = ACTIONS(1151), + [sym_grid_table] = ACTIONS(1403), + [sym__caption_start] = ACTIONS(1406), }, [STATE(103)] = { - [sym__block_not_section] = STATE(103), - [sym__section5] = STATE(277), - [sym__section6] = STATE(277), - [sym__atx_heading5] = STATE(112), - [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(103), - [sym_pandoc_paragraph] = STATE(103), - [sym_inline_ref_def] = STATE(103), - [sym_caption] = STATE(103), - [sym_pipe_table] = STATE(103), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(103), - [sym_pandoc_list] = STATE(103), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(103), - [sym_pandoc_div] = STATE(103), - [sym_note_definition_fenced_block] = STATE(103), - [sym__newline] = STATE(103), - [sym__soft_line_break] = STATE(103), - [sym__inline_whitespace] = STATE(802), - [aux_sym__section4_repeat1] = STATE(103), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), - [sym_entity_reference] = ACTIONS(1372), - [sym_numeric_character_reference] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_BANG_LBRACK] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1381), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1387), - [aux_sym_pandoc_str_token1] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1393), - [sym__whitespace] = ACTIONS(1396), - [sym__line_ending] = ACTIONS(1399), - [sym__soft_line_ending] = ACTIONS(1402), - [sym__block_close] = ACTIONS(1405), - [sym__block_quote_start] = ACTIONS(1407), - [sym_atx_h1_marker] = ACTIONS(1405), - [sym_atx_h2_marker] = ACTIONS(1405), - [sym_atx_h3_marker] = ACTIONS(1405), - [sym_atx_h4_marker] = ACTIONS(1405), - [sym_atx_h5_marker] = ACTIONS(1410), - [sym_atx_h6_marker] = ACTIONS(1413), - [sym__thematic_break] = ACTIONS(1416), - [sym__list_marker_minus] = ACTIONS(1419), - [sym__list_marker_plus] = ACTIONS(1422), - [sym__list_marker_star] = ACTIONS(1425), - [sym__list_marker_parenthesis] = ACTIONS(1428), - [sym__list_marker_dot] = ACTIONS(1431), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1419), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1425), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1431), - [sym__list_marker_example] = ACTIONS(1434), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1434), - [sym__fenced_code_block_start_backtick] = ACTIONS(1437), - [sym_minus_metadata] = ACTIONS(1440), - [sym__pipe_table_start] = ACTIONS(1443), - [sym__fenced_div_start] = ACTIONS(1446), - [sym__fenced_div_end] = ACTIONS(1405), - [sym_ref_id_specifier] = ACTIONS(1449), - [sym__code_span_start] = ACTIONS(1452), - [sym__html_comment] = ACTIONS(1372), - [sym__autolink] = ACTIONS(1372), - [sym__highlight_span_start] = ACTIONS(1455), - [sym__insert_span_start] = ACTIONS(1458), - [sym__delete_span_start] = ACTIONS(1461), - [sym__edit_comment_span_start] = ACTIONS(1464), - [sym__single_quote_span_open] = ACTIONS(1467), - [sym__double_quote_span_open] = ACTIONS(1470), - [sym__shortcode_open_escaped] = ACTIONS(1473), - [sym__shortcode_open] = ACTIONS(1476), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1479), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1482), - [sym__cite_author_in_text] = ACTIONS(1485), - [sym__cite_suppress_author] = ACTIONS(1488), - [sym__strikeout_open] = ACTIONS(1491), - [sym__subscript_open] = ACTIONS(1494), - [sym__superscript_open] = ACTIONS(1497), - [sym__inline_note_start_token] = ACTIONS(1500), - [sym__strong_emphasis_open_star] = ACTIONS(1503), - [sym__strong_emphasis_open_underscore] = ACTIONS(1506), - [sym__emphasis_open_star] = ACTIONS(1509), - [sym__emphasis_open_underscore] = ACTIONS(1512), - [sym_inline_note_reference] = ACTIONS(1372), - [sym_html_element] = ACTIONS(1372), - [sym__pandoc_lt_str] = ACTIONS(1393), - [sym__pandoc_line_break] = ACTIONS(1372), - [sym_grid_table] = ACTIONS(1440), - [sym__caption_start] = ACTIONS(1515), - }, - [STATE(104)] = { + [sym_minus_metadata] = STATE(105), [sym__block_not_section] = STATE(105), - [sym__section5] = STATE(277), - [sym__section6] = STATE(277), + [sym__section5] = STATE(242), + [sym__section6] = STATE(242), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(105), @@ -39169,64 +39213,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(105), [sym_caption] = STATE(105), [sym_pipe_table] = STATE(105), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(105), [sym_pandoc_list] = STATE(105), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), [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__inline_whitespace] = STATE(802), + [sym__inline_whitespace] = STATE(811), [aux_sym__section4_repeat1] = STATE(105), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -39236,18 +39280,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(1518), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(1518), - [sym_atx_h2_marker] = ACTIONS(1518), - [sym_atx_h3_marker] = ACTIONS(1518), - [sym_atx_h4_marker] = ACTIONS(1518), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(1409), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(1409), + [sym_atx_h2_marker] = ACTIONS(1409), + [sym_atx_h3_marker] = ACTIONS(1409), + [sym_atx_h4_marker] = ACTIONS(1409), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -39260,12 +39304,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(1520), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(1518), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(1409), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -39293,78 +39337,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1520), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(1411), + [sym__caption_start] = ACTIONS(277), + }, + [STATE(104)] = { + [sym_minus_metadata] = STATE(104), + [sym__block_not_section] = STATE(104), + [sym__section5] = STATE(242), + [sym__section6] = STATE(242), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [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(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(104), + [sym_pandoc_list] = STATE(104), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(104), + [sym_pandoc_div] = STATE(104), + [sym_note_definition_fenced_block] = STATE(104), + [sym__newline] = STATE(104), + [sym__soft_line_break] = STATE(104), + [sym__inline_whitespace] = STATE(811), + [aux_sym__section4_repeat1] = STATE(104), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), + [sym_entity_reference] = ACTIONS(1413), + [sym_numeric_character_reference] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_BANG_LBRACK] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1428), + [aux_sym_pandoc_str_token1] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1434), + [sym__whitespace] = ACTIONS(1437), + [sym__line_ending] = ACTIONS(1440), + [sym__soft_line_ending] = ACTIONS(1443), + [sym__block_close] = ACTIONS(1446), + [sym__block_quote_start] = ACTIONS(1448), + [sym_atx_h1_marker] = ACTIONS(1446), + [sym_atx_h2_marker] = ACTIONS(1446), + [sym_atx_h3_marker] = ACTIONS(1446), + [sym_atx_h4_marker] = ACTIONS(1446), + [sym_atx_h5_marker] = ACTIONS(1451), + [sym_atx_h6_marker] = ACTIONS(1454), + [sym__thematic_break] = ACTIONS(1457), + [sym__list_marker_minus] = ACTIONS(1460), + [sym__list_marker_plus] = ACTIONS(1463), + [sym__list_marker_star] = ACTIONS(1466), + [sym__list_marker_parenthesis] = ACTIONS(1469), + [sym__list_marker_dot] = ACTIONS(1472), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1463), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1469), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_example] = ACTIONS(1475), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1475), + [sym__fenced_code_block_start_backtick] = ACTIONS(1478), + [sym__minus_metadata_start] = ACTIONS(1481), + [sym__pipe_table_start] = ACTIONS(1484), + [sym__fenced_div_start] = ACTIONS(1487), + [sym__fenced_div_end] = ACTIONS(1446), + [sym_ref_id_specifier] = ACTIONS(1490), + [sym__code_span_start] = ACTIONS(1493), + [sym__html_comment] = ACTIONS(1413), + [sym__autolink] = ACTIONS(1413), + [sym__highlight_span_start] = ACTIONS(1496), + [sym__insert_span_start] = ACTIONS(1499), + [sym__delete_span_start] = ACTIONS(1502), + [sym__edit_comment_span_start] = ACTIONS(1505), + [sym__single_quote_span_open] = ACTIONS(1508), + [sym__double_quote_span_open] = ACTIONS(1511), + [sym__shortcode_open_escaped] = ACTIONS(1514), + [sym__shortcode_open] = ACTIONS(1517), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1520), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1523), + [sym__cite_author_in_text] = ACTIONS(1526), + [sym__cite_suppress_author] = ACTIONS(1529), + [sym__strikeout_open] = ACTIONS(1532), + [sym__subscript_open] = ACTIONS(1535), + [sym__superscript_open] = ACTIONS(1538), + [sym__inline_note_start_token] = ACTIONS(1541), + [sym__strong_emphasis_open_star] = ACTIONS(1544), + [sym__strong_emphasis_open_underscore] = ACTIONS(1547), + [sym__emphasis_open_star] = ACTIONS(1550), + [sym__emphasis_open_underscore] = ACTIONS(1553), + [sym_inline_note_reference] = ACTIONS(1413), + [sym_html_element] = ACTIONS(1413), + [sym__pandoc_lt_str] = ACTIONS(1434), + [sym__pandoc_line_break] = ACTIONS(1413), + [sym_grid_table] = ACTIONS(1556), + [sym__caption_start] = ACTIONS(1559), }, [STATE(105)] = { - [sym__block_not_section] = STATE(103), - [sym__section5] = STATE(277), - [sym__section6] = STATE(277), + [sym_minus_metadata] = STATE(104), + [sym__block_not_section] = STATE(104), + [sym__section5] = STATE(242), + [sym__section6] = STATE(242), [sym__atx_heading5] = STATE(112), [sym__atx_heading6] = STATE(121), - [sym_pandoc_horizontal_rule] = STATE(103), - [sym_pandoc_paragraph] = STATE(103), - [sym_inline_ref_def] = STATE(103), - [sym_caption] = STATE(103), - [sym_pipe_table] = STATE(103), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(103), - [sym_pandoc_list] = STATE(103), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(103), - [sym_pandoc_div] = STATE(103), - [sym_note_definition_fenced_block] = STATE(103), - [sym__newline] = STATE(103), - [sym__soft_line_break] = STATE(103), - [sym__inline_whitespace] = STATE(802), - [aux_sym__section4_repeat1] = STATE(103), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(104), + [sym_pandoc_list] = STATE(104), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(104), + [sym_pandoc_div] = STATE(104), + [sym_note_definition_fenced_block] = STATE(104), + [sym__newline] = STATE(104), + [sym__soft_line_break] = STATE(104), + [sym__inline_whitespace] = STATE(811), + [aux_sym__section4_repeat1] = STATE(104), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -39374,18 +39558,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(1522), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(1522), - [sym_atx_h2_marker] = ACTIONS(1522), - [sym_atx_h3_marker] = ACTIONS(1522), - [sym_atx_h4_marker] = ACTIONS(1522), - [sym_atx_h5_marker] = ACTIONS(249), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(1562), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(1562), + [sym_atx_h2_marker] = ACTIONS(1562), + [sym_atx_h3_marker] = ACTIONS(1562), + [sym_atx_h4_marker] = ACTIONS(1562), + [sym_atx_h5_marker] = ACTIONS(257), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -39398,12 +39582,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(1524), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(1522), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(1562), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -39431,78 +39615,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1524), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(1564), + [sym__caption_start] = ACTIONS(277), }, [STATE(106)] = { - [sym__block_not_section] = STATE(109), - [sym__section5] = STATE(420), - [sym__section6] = STATE(420), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(109), - [sym_pandoc_paragraph] = STATE(109), - [sym_inline_ref_def] = STATE(109), - [sym_caption] = STATE(109), - [sym_pipe_table] = STATE(109), - [sym__inlines] = STATE(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(109), - [sym_pandoc_list] = STATE(109), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym_minus_metadata] = STATE(106), + [sym__block_not_section] = STATE(106), + [sym__section5] = STATE(393), + [sym__section6] = STATE(393), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(106), + [sym_pandoc_list] = STATE(106), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), + [sym__list_item_plus] = STATE(159), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(106), + [sym_pandoc_div] = STATE(106), + [sym_note_definition_fenced_block] = STATE(106), + [sym__newline] = STATE(106), + [sym__soft_line_break] = STATE(106), + [sym__inline_whitespace] = STATE(830), + [aux_sym__section4_repeat1] = STATE(106), + [aux_sym__list_plus_repeat1] = STATE(159), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), + [sym_entity_reference] = ACTIONS(1413), + [sym_numeric_character_reference] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_BANG_LBRACK] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1428), + [aux_sym_pandoc_str_token1] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1434), + [sym__whitespace] = ACTIONS(1566), + [sym__line_ending] = ACTIONS(1569), + [sym__soft_line_ending] = ACTIONS(1572), + [sym__block_close] = ACTIONS(1446), + [sym__block_quote_start] = ACTIONS(1575), + [sym_atx_h1_marker] = ACTIONS(1446), + [sym_atx_h2_marker] = ACTIONS(1446), + [sym_atx_h3_marker] = ACTIONS(1446), + [sym_atx_h4_marker] = ACTIONS(1446), + [sym_atx_h5_marker] = ACTIONS(1578), + [sym_atx_h6_marker] = ACTIONS(1581), + [sym__thematic_break] = ACTIONS(1584), + [sym__list_marker_minus] = ACTIONS(1460), + [sym__list_marker_plus] = ACTIONS(1463), + [sym__list_marker_star] = ACTIONS(1466), + [sym__list_marker_parenthesis] = ACTIONS(1469), + [sym__list_marker_dot] = ACTIONS(1472), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1463), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1469), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_example] = ACTIONS(1475), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1475), + [sym__fenced_code_block_start_backtick] = ACTIONS(1587), + [sym__minus_metadata_start] = ACTIONS(1590), + [sym__pipe_table_start] = ACTIONS(1593), + [sym__fenced_div_start] = ACTIONS(1596), + [sym_ref_id_specifier] = ACTIONS(1599), + [sym__code_span_start] = ACTIONS(1493), + [sym__html_comment] = ACTIONS(1413), + [sym__autolink] = ACTIONS(1413), + [sym__highlight_span_start] = ACTIONS(1496), + [sym__insert_span_start] = ACTIONS(1499), + [sym__delete_span_start] = ACTIONS(1502), + [sym__edit_comment_span_start] = ACTIONS(1505), + [sym__single_quote_span_open] = ACTIONS(1508), + [sym__double_quote_span_open] = ACTIONS(1511), + [sym__shortcode_open_escaped] = ACTIONS(1514), + [sym__shortcode_open] = ACTIONS(1517), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1520), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1523), + [sym__cite_author_in_text] = ACTIONS(1526), + [sym__cite_suppress_author] = ACTIONS(1529), + [sym__strikeout_open] = ACTIONS(1532), + [sym__subscript_open] = ACTIONS(1535), + [sym__superscript_open] = ACTIONS(1538), + [sym__inline_note_start_token] = ACTIONS(1541), + [sym__strong_emphasis_open_star] = ACTIONS(1544), + [sym__strong_emphasis_open_underscore] = ACTIONS(1547), + [sym__emphasis_open_star] = ACTIONS(1550), + [sym__emphasis_open_underscore] = ACTIONS(1553), + [sym_inline_note_reference] = ACTIONS(1413), + [sym_html_element] = ACTIONS(1413), + [sym__pandoc_lt_str] = ACTIONS(1434), + [sym__pandoc_line_break] = ACTIONS(1413), + [sym_grid_table] = ACTIONS(1602), + [sym__caption_start] = ACTIONS(1605), + }, + [STATE(107)] = { + [sym_minus_metadata] = STATE(106), + [sym__block_not_section] = STATE(106), + [sym__section5] = STATE(393), + [sym__section6] = STATE(393), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), + [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(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(106), + [sym_pandoc_list] = STATE(106), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(109), - [sym_pandoc_div] = STATE(109), - [sym_note_definition_fenced_block] = STATE(109), - [sym__newline] = STATE(109), - [sym__soft_line_break] = STATE(109), - [sym__inline_whitespace] = STATE(798), - [aux_sym__section4_repeat1] = STATE(109), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(106), + [sym_pandoc_div] = STATE(106), + [sym_note_definition_fenced_block] = STATE(106), + [sym__newline] = STATE(106), + [sym__soft_line_break] = STATE(106), + [sym__inline_whitespace] = STATE(830), + [aux_sym__section4_repeat1] = STATE(106), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -39515,12 +39838,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(1518), + [sym__block_close] = ACTIONS(1562), [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(1518), - [sym_atx_h2_marker] = ACTIONS(1518), - [sym_atx_h3_marker] = ACTIONS(1518), - [sym_atx_h4_marker] = ACTIONS(1518), + [sym_atx_h1_marker] = ACTIONS(1562), + [sym_atx_h2_marker] = ACTIONS(1562), + [sym_atx_h3_marker] = ACTIONS(1562), + [sym_atx_h4_marker] = ACTIONS(1562), [sym_atx_h5_marker] = ACTIONS(135), [sym_atx_h6_marker] = ACTIONS(137), [sym__thematic_break] = ACTIONS(139), @@ -39537,7 +39860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(1526), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -39568,79 +39891,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1526), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(1608), + [sym__caption_start] = ACTIONS(155), }, - [STATE(107)] = { + [STATE(108)] = { + [sym_minus_metadata] = STATE(111), [sym__block_not_section] = STATE(111), - [sym__section5] = STATE(355), - [sym__section6] = STATE(355), + [sym__section5] = STATE(411), + [sym__section6] = STATE(411), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), + [sym__atx_heading6] = STATE(127), [sym_pandoc_horizontal_rule] = STATE(111), [sym_pandoc_paragraph] = STATE(111), [sym_inline_ref_def] = STATE(111), [sym_caption] = STATE(111), [sym_pipe_table] = STATE(111), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(111), [sym_pandoc_list] = STATE(111), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), [sym__list_item_example] = STATE(157), [sym_pandoc_code_block] = STATE(111), [sym_pandoc_div] = STATE(111), [sym_note_definition_fenced_block] = STATE(111), [sym__newline] = STATE(111), [sym__soft_line_break] = STATE(111), - [sym__inline_whitespace] = STATE(800), + [sym__inline_whitespace] = STATE(804), [aux_sym__section4_repeat1] = STATE(111), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(1522), + [ts_builtin_sym_end] = ACTIONS(1562), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -39654,10 +39978,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(23), [sym__soft_line_ending] = ACTIONS(25), [sym__block_quote_start] = ACTIONS(27), - [sym_atx_h1_marker] = ACTIONS(1522), - [sym_atx_h2_marker] = ACTIONS(1522), - [sym_atx_h3_marker] = ACTIONS(1522), - [sym_atx_h4_marker] = ACTIONS(1522), + [sym_atx_h1_marker] = ACTIONS(1562), + [sym_atx_h2_marker] = ACTIONS(1562), + [sym_atx_h3_marker] = ACTIONS(1562), + [sym_atx_h4_marker] = ACTIONS(1562), [sym_atx_h5_marker] = ACTIONS(37), [sym_atx_h6_marker] = ACTIONS(39), [sym__thematic_break] = ACTIONS(41), @@ -39674,7 +39998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(1528), + [sym__minus_metadata_start] = ACTIONS(57), [sym__pipe_table_start] = ACTIONS(59), [sym__fenced_div_start] = ACTIONS(61), [sym_ref_id_specifier] = ACTIONS(63), @@ -39705,215 +40029,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1528), + [sym_grid_table] = ACTIONS(1610), [sym__caption_start] = ACTIONS(109), }, - [STATE(108)] = { - [sym__block_not_section] = STATE(108), - [sym__section5] = STATE(420), - [sym__section6] = STATE(420), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(108), - [sym_pandoc_list] = STATE(108), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), - [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [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__inline_whitespace] = STATE(798), - [aux_sym__section4_repeat1] = STATE(108), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), - [sym_entity_reference] = ACTIONS(1372), - [sym_numeric_character_reference] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_BANG_LBRACK] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1381), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1387), - [aux_sym_pandoc_str_token1] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1393), - [sym__whitespace] = ACTIONS(1530), - [sym__line_ending] = ACTIONS(1533), - [sym__soft_line_ending] = ACTIONS(1536), - [sym__block_close] = ACTIONS(1405), - [sym__block_quote_start] = ACTIONS(1539), - [sym_atx_h1_marker] = ACTIONS(1405), - [sym_atx_h2_marker] = ACTIONS(1405), - [sym_atx_h3_marker] = ACTIONS(1405), - [sym_atx_h4_marker] = ACTIONS(1405), - [sym_atx_h5_marker] = ACTIONS(1542), - [sym_atx_h6_marker] = ACTIONS(1545), - [sym__thematic_break] = ACTIONS(1548), - [sym__list_marker_minus] = ACTIONS(1419), - [sym__list_marker_plus] = ACTIONS(1422), - [sym__list_marker_star] = ACTIONS(1425), - [sym__list_marker_parenthesis] = ACTIONS(1428), - [sym__list_marker_dot] = ACTIONS(1431), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1419), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1425), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1431), - [sym__list_marker_example] = ACTIONS(1434), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1434), - [sym__fenced_code_block_start_backtick] = ACTIONS(1551), - [sym_minus_metadata] = ACTIONS(1554), - [sym__pipe_table_start] = ACTIONS(1557), - [sym__fenced_div_start] = ACTIONS(1560), - [sym_ref_id_specifier] = ACTIONS(1563), - [sym__code_span_start] = ACTIONS(1452), - [sym__html_comment] = ACTIONS(1372), - [sym__autolink] = ACTIONS(1372), - [sym__highlight_span_start] = ACTIONS(1455), - [sym__insert_span_start] = ACTIONS(1458), - [sym__delete_span_start] = ACTIONS(1461), - [sym__edit_comment_span_start] = ACTIONS(1464), - [sym__single_quote_span_open] = ACTIONS(1467), - [sym__double_quote_span_open] = ACTIONS(1470), - [sym__shortcode_open_escaped] = ACTIONS(1473), - [sym__shortcode_open] = ACTIONS(1476), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1479), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1482), - [sym__cite_author_in_text] = ACTIONS(1485), - [sym__cite_suppress_author] = ACTIONS(1488), - [sym__strikeout_open] = ACTIONS(1491), - [sym__subscript_open] = ACTIONS(1494), - [sym__superscript_open] = ACTIONS(1497), - [sym__inline_note_start_token] = ACTIONS(1500), - [sym__strong_emphasis_open_star] = ACTIONS(1503), - [sym__strong_emphasis_open_underscore] = ACTIONS(1506), - [sym__emphasis_open_star] = ACTIONS(1509), - [sym__emphasis_open_underscore] = ACTIONS(1512), - [sym_inline_note_reference] = ACTIONS(1372), - [sym_html_element] = ACTIONS(1372), - [sym__pandoc_lt_str] = ACTIONS(1393), - [sym__pandoc_line_break] = ACTIONS(1372), - [sym_grid_table] = ACTIONS(1554), - [sym__caption_start] = ACTIONS(1566), - }, [STATE(109)] = { + [sym_minus_metadata] = STATE(108), [sym__block_not_section] = STATE(108), - [sym__section5] = STATE(420), - [sym__section6] = STATE(420), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), + [sym__section5] = STATE(411), + [sym__section6] = STATE(411), + [sym__atx_heading5] = STATE(118), + [sym__atx_heading6] = STATE(127), [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(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(108), [sym_pandoc_list] = STATE(108), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), - [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), + [sym__list_item_example] = STATE(157), [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__inline_whitespace] = STATE(798), + [sym__inline_whitespace] = STATE(804), [aux_sym__section4_repeat1] = STATE(108), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), + [aux_sym__list_example_repeat1] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(1409), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -39923,18 +40112,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(115), - [sym__line_ending] = ACTIONS(117), - [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(1522), - [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(1522), - [sym_atx_h2_marker] = ACTIONS(1522), - [sym_atx_h3_marker] = ACTIONS(1522), - [sym_atx_h4_marker] = ACTIONS(1522), - [sym_atx_h5_marker] = ACTIONS(135), - [sym_atx_h6_marker] = ACTIONS(137), - [sym__thematic_break] = ACTIONS(139), + [sym__whitespace] = ACTIONS(21), + [sym__line_ending] = ACTIONS(23), + [sym__soft_line_ending] = ACTIONS(25), + [sym__block_quote_start] = ACTIONS(27), + [sym_atx_h1_marker] = ACTIONS(1409), + [sym_atx_h2_marker] = ACTIONS(1409), + [sym_atx_h3_marker] = ACTIONS(1409), + [sym_atx_h4_marker] = ACTIONS(1409), + [sym_atx_h5_marker] = ACTIONS(37), + [sym_atx_h6_marker] = ACTIONS(39), + [sym__thematic_break] = ACTIONS(41), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -39947,11 +40135,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(1569), - [sym__pipe_table_start] = ACTIONS(147), - [sym__fenced_div_start] = ACTIONS(149), - [sym_ref_id_specifier] = ACTIONS(151), + [sym__fenced_code_block_start_backtick] = ACTIONS(55), + [sym__minus_metadata_start] = ACTIONS(57), + [sym__pipe_table_start] = ACTIONS(59), + [sym__fenced_div_start] = ACTIONS(61), + [sym_ref_id_specifier] = ACTIONS(63), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -39979,79 +40167,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1569), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(1612), + [sym__caption_start] = ACTIONS(109), }, [STATE(110)] = { + [sym_minus_metadata] = STATE(107), [sym__block_not_section] = STATE(107), - [sym__section5] = STATE(355), - [sym__section6] = STATE(355), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), + [sym__section5] = STATE(393), + [sym__section6] = STATE(393), + [sym__atx_heading5] = STATE(119), + [sym__atx_heading6] = STATE(129), [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(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(107), [sym_pandoc_list] = STATE(107), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), - [sym__list_item_example] = STATE(157), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), + [sym__list_item_plus] = STATE(159), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), [sym_pandoc_code_block] = STATE(107), [sym_pandoc_div] = STATE(107), [sym_note_definition_fenced_block] = STATE(107), [sym__newline] = STATE(107), [sym__soft_line_break] = STATE(107), - [sym__inline_whitespace] = STATE(800), + [sym__inline_whitespace] = STATE(830), [aux_sym__section4_repeat1] = STATE(107), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), - [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(1518), + [aux_sym__list_plus_repeat1] = STATE(159), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -40061,17 +40249,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(21), - [sym__line_ending] = ACTIONS(23), - [sym__soft_line_ending] = ACTIONS(25), - [sym__block_quote_start] = ACTIONS(27), - [sym_atx_h1_marker] = ACTIONS(1518), - [sym_atx_h2_marker] = ACTIONS(1518), - [sym_atx_h3_marker] = ACTIONS(1518), - [sym_atx_h4_marker] = ACTIONS(1518), - [sym_atx_h5_marker] = ACTIONS(37), - [sym_atx_h6_marker] = ACTIONS(39), - [sym__thematic_break] = ACTIONS(41), + [sym__whitespace] = ACTIONS(115), + [sym__line_ending] = ACTIONS(117), + [sym__soft_line_ending] = ACTIONS(119), + [sym__block_close] = ACTIONS(1409), + [sym__block_quote_start] = ACTIONS(125), + [sym_atx_h1_marker] = ACTIONS(1409), + [sym_atx_h2_marker] = ACTIONS(1409), + [sym_atx_h3_marker] = ACTIONS(1409), + [sym_atx_h4_marker] = ACTIONS(1409), + [sym_atx_h5_marker] = ACTIONS(135), + [sym_atx_h6_marker] = ACTIONS(137), + [sym__thematic_break] = ACTIONS(139), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -40084,11 +40273,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(1571), - [sym__pipe_table_start] = ACTIONS(59), - [sym__fenced_div_start] = ACTIONS(61), - [sym_ref_id_specifier] = ACTIONS(63), + [sym__fenced_code_block_start_backtick] = ACTIONS(141), + [sym__minus_metadata_start] = ACTIONS(145), + [sym__pipe_table_start] = ACTIONS(147), + [sym__fenced_div_start] = ACTIONS(149), + [sym_ref_id_specifier] = ACTIONS(151), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -40116,213 +40305,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1571), - [sym__caption_start] = ACTIONS(109), + [sym_grid_table] = ACTIONS(1614), + [sym__caption_start] = ACTIONS(155), }, [STATE(111)] = { + [sym_minus_metadata] = STATE(111), [sym__block_not_section] = STATE(111), - [sym__section5] = STATE(355), - [sym__section6] = STATE(355), + [sym__section5] = STATE(411), + [sym__section6] = STATE(411), [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(128), + [sym__atx_heading6] = STATE(127), [sym_pandoc_horizontal_rule] = STATE(111), [sym_pandoc_paragraph] = STATE(111), [sym_inline_ref_def] = STATE(111), [sym_caption] = STATE(111), [sym_pipe_table] = STATE(111), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(111), [sym_pandoc_list] = STATE(111), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), [sym__list_item_example] = STATE(157), [sym_pandoc_code_block] = STATE(111), [sym_pandoc_div] = STATE(111), [sym_note_definition_fenced_block] = STATE(111), [sym__newline] = STATE(111), [sym__soft_line_break] = STATE(111), - [sym__inline_whitespace] = STATE(800), + [sym__inline_whitespace] = STATE(804), [aux_sym__section4_repeat1] = STATE(111), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(1405), - [sym_entity_reference] = ACTIONS(1372), - [sym_numeric_character_reference] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_BANG_LBRACK] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1381), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1387), - [aux_sym_pandoc_str_token1] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1393), - [sym__whitespace] = ACTIONS(1573), - [sym__line_ending] = ACTIONS(1576), - [sym__soft_line_ending] = ACTIONS(1579), - [sym__block_quote_start] = ACTIONS(1582), - [sym_atx_h1_marker] = ACTIONS(1405), - [sym_atx_h2_marker] = ACTIONS(1405), - [sym_atx_h3_marker] = ACTIONS(1405), - [sym_atx_h4_marker] = ACTIONS(1405), - [sym_atx_h5_marker] = ACTIONS(1585), - [sym_atx_h6_marker] = ACTIONS(1588), - [sym__thematic_break] = ACTIONS(1591), - [sym__list_marker_minus] = ACTIONS(1419), - [sym__list_marker_plus] = ACTIONS(1422), - [sym__list_marker_star] = ACTIONS(1425), - [sym__list_marker_parenthesis] = ACTIONS(1428), - [sym__list_marker_dot] = ACTIONS(1431), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1419), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1425), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1431), - [sym__list_marker_example] = ACTIONS(1434), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1434), - [sym__fenced_code_block_start_backtick] = ACTIONS(1594), - [sym_minus_metadata] = ACTIONS(1597), - [sym__pipe_table_start] = ACTIONS(1600), - [sym__fenced_div_start] = ACTIONS(1603), - [sym_ref_id_specifier] = ACTIONS(1606), - [sym__code_span_start] = ACTIONS(1452), - [sym__html_comment] = ACTIONS(1372), - [sym__autolink] = ACTIONS(1372), - [sym__highlight_span_start] = ACTIONS(1455), - [sym__insert_span_start] = ACTIONS(1458), - [sym__delete_span_start] = ACTIONS(1461), - [sym__edit_comment_span_start] = ACTIONS(1464), - [sym__single_quote_span_open] = ACTIONS(1467), - [sym__double_quote_span_open] = ACTIONS(1470), - [sym__shortcode_open_escaped] = ACTIONS(1473), - [sym__shortcode_open] = ACTIONS(1476), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1479), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1482), - [sym__cite_author_in_text] = ACTIONS(1485), - [sym__cite_suppress_author] = ACTIONS(1488), - [sym__strikeout_open] = ACTIONS(1491), - [sym__subscript_open] = ACTIONS(1494), - [sym__superscript_open] = ACTIONS(1497), - [sym__inline_note_start_token] = ACTIONS(1500), - [sym__strong_emphasis_open_star] = ACTIONS(1503), - [sym__strong_emphasis_open_underscore] = ACTIONS(1506), - [sym__emphasis_open_star] = ACTIONS(1509), - [sym__emphasis_open_underscore] = ACTIONS(1512), - [sym_inline_note_reference] = ACTIONS(1372), - [sym_html_element] = ACTIONS(1372), - [sym__pandoc_lt_str] = ACTIONS(1393), - [sym__pandoc_line_break] = ACTIONS(1372), - [sym_grid_table] = ACTIONS(1597), - [sym__caption_start] = ACTIONS(1609), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_entity_reference] = ACTIONS(1413), + [sym_numeric_character_reference] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_BANG_LBRACK] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1428), + [aux_sym_pandoc_str_token1] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1434), + [sym__whitespace] = ACTIONS(1616), + [sym__line_ending] = ACTIONS(1619), + [sym__soft_line_ending] = ACTIONS(1622), + [sym__block_quote_start] = ACTIONS(1625), + [sym_atx_h1_marker] = ACTIONS(1446), + [sym_atx_h2_marker] = ACTIONS(1446), + [sym_atx_h3_marker] = ACTIONS(1446), + [sym_atx_h4_marker] = ACTIONS(1446), + [sym_atx_h5_marker] = ACTIONS(1628), + [sym_atx_h6_marker] = ACTIONS(1631), + [sym__thematic_break] = ACTIONS(1634), + [sym__list_marker_minus] = ACTIONS(1460), + [sym__list_marker_plus] = ACTIONS(1463), + [sym__list_marker_star] = ACTIONS(1466), + [sym__list_marker_parenthesis] = ACTIONS(1469), + [sym__list_marker_dot] = ACTIONS(1472), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1463), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1469), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_example] = ACTIONS(1475), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1475), + [sym__fenced_code_block_start_backtick] = ACTIONS(1637), + [sym__minus_metadata_start] = ACTIONS(1640), + [sym__pipe_table_start] = ACTIONS(1643), + [sym__fenced_div_start] = ACTIONS(1646), + [sym_ref_id_specifier] = ACTIONS(1649), + [sym__code_span_start] = ACTIONS(1493), + [sym__html_comment] = ACTIONS(1413), + [sym__autolink] = ACTIONS(1413), + [sym__highlight_span_start] = ACTIONS(1496), + [sym__insert_span_start] = ACTIONS(1499), + [sym__delete_span_start] = ACTIONS(1502), + [sym__edit_comment_span_start] = ACTIONS(1505), + [sym__single_quote_span_open] = ACTIONS(1508), + [sym__double_quote_span_open] = ACTIONS(1511), + [sym__shortcode_open_escaped] = ACTIONS(1514), + [sym__shortcode_open] = ACTIONS(1517), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1520), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1523), + [sym__cite_author_in_text] = ACTIONS(1526), + [sym__cite_suppress_author] = ACTIONS(1529), + [sym__strikeout_open] = ACTIONS(1532), + [sym__subscript_open] = ACTIONS(1535), + [sym__superscript_open] = ACTIONS(1538), + [sym__inline_note_start_token] = ACTIONS(1541), + [sym__strong_emphasis_open_star] = ACTIONS(1544), + [sym__strong_emphasis_open_underscore] = ACTIONS(1547), + [sym__emphasis_open_star] = ACTIONS(1550), + [sym__emphasis_open_underscore] = ACTIONS(1553), + [sym_inline_note_reference] = ACTIONS(1413), + [sym_html_element] = ACTIONS(1413), + [sym__pandoc_lt_str] = ACTIONS(1434), + [sym__pandoc_line_break] = ACTIONS(1413), + [sym_grid_table] = ACTIONS(1652), + [sym__caption_start] = ACTIONS(1655), }, [STATE(112)] = { + [sym_minus_metadata] = STATE(114), [sym__block_not_section] = STATE(114), - [sym__section6] = STATE(279), + [sym__section6] = STATE(244), [sym__atx_heading6] = STATE(121), [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(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(114), [sym_pandoc_list] = STATE(114), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), [sym_pandoc_code_block] = STATE(114), [sym_pandoc_div] = STATE(114), [sym_note_definition_fenced_block] = STATE(114), [sym__newline] = STATE(114), [sym__soft_line_break] = STATE(114), - [sym__inline_whitespace] = STATE(802), + [sym__inline_whitespace] = STATE(811), [aux_sym__section5_repeat1] = STATE(114), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -40332,18 +40523,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(1612), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(1612), - [sym_atx_h2_marker] = ACTIONS(1612), - [sym_atx_h3_marker] = ACTIONS(1612), - [sym_atx_h4_marker] = ACTIONS(1612), - [sym_atx_h5_marker] = ACTIONS(1612), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(1658), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(1658), + [sym_atx_h2_marker] = ACTIONS(1658), + [sym_atx_h3_marker] = ACTIONS(1658), + [sym_atx_h4_marker] = ACTIONS(1658), + [sym_atx_h5_marker] = ACTIONS(1658), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -40356,12 +40547,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(1614), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(1612), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(1658), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -40389,212 +40580,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1614), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(1660), + [sym__caption_start] = ACTIONS(277), }, [STATE(113)] = { + [sym_minus_metadata] = STATE(113), [sym__block_not_section] = STATE(113), - [sym__section6] = STATE(279), + [sym__section6] = STATE(244), [sym__atx_heading6] = STATE(121), [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(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(113), [sym_pandoc_list] = STATE(113), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), [sym_pandoc_code_block] = STATE(113), [sym_pandoc_div] = STATE(113), [sym_note_definition_fenced_block] = STATE(113), [sym__newline] = STATE(113), [sym__soft_line_break] = STATE(113), - [sym__inline_whitespace] = STATE(802), + [sym__inline_whitespace] = STATE(811), [aux_sym__section5_repeat1] = STATE(113), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), - [sym_entity_reference] = ACTIONS(1616), - [sym_numeric_character_reference] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_BANG_LBRACK] = ACTIONS(1622), - [anon_sym_DOLLAR] = ACTIONS(1625), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1631), - [aux_sym_pandoc_str_token1] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1637), - [sym__whitespace] = ACTIONS(1640), - [sym__line_ending] = ACTIONS(1643), - [sym__soft_line_ending] = ACTIONS(1646), - [sym__block_close] = ACTIONS(1649), - [sym__block_quote_start] = ACTIONS(1651), - [sym_atx_h1_marker] = ACTIONS(1649), - [sym_atx_h2_marker] = ACTIONS(1649), - [sym_atx_h3_marker] = ACTIONS(1649), - [sym_atx_h4_marker] = ACTIONS(1649), - [sym_atx_h5_marker] = ACTIONS(1649), - [sym_atx_h6_marker] = ACTIONS(1654), - [sym__thematic_break] = ACTIONS(1657), - [sym__list_marker_minus] = ACTIONS(1660), - [sym__list_marker_plus] = ACTIONS(1663), - [sym__list_marker_star] = ACTIONS(1666), - [sym__list_marker_parenthesis] = ACTIONS(1669), - [sym__list_marker_dot] = ACTIONS(1672), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1663), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1666), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1669), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1672), - [sym__list_marker_example] = ACTIONS(1675), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1675), - [sym__fenced_code_block_start_backtick] = ACTIONS(1678), - [sym_minus_metadata] = ACTIONS(1681), - [sym__pipe_table_start] = ACTIONS(1684), - [sym__fenced_div_start] = ACTIONS(1687), - [sym__fenced_div_end] = ACTIONS(1649), - [sym_ref_id_specifier] = ACTIONS(1690), - [sym__code_span_start] = ACTIONS(1693), - [sym__html_comment] = ACTIONS(1616), - [sym__autolink] = ACTIONS(1616), - [sym__highlight_span_start] = ACTIONS(1696), - [sym__insert_span_start] = ACTIONS(1699), - [sym__delete_span_start] = ACTIONS(1702), - [sym__edit_comment_span_start] = ACTIONS(1705), - [sym__single_quote_span_open] = ACTIONS(1708), - [sym__double_quote_span_open] = ACTIONS(1711), - [sym__shortcode_open_escaped] = ACTIONS(1714), - [sym__shortcode_open] = ACTIONS(1717), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1720), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1723), - [sym__cite_author_in_text] = ACTIONS(1726), - [sym__cite_suppress_author] = ACTIONS(1729), - [sym__strikeout_open] = ACTIONS(1732), - [sym__subscript_open] = ACTIONS(1735), - [sym__superscript_open] = ACTIONS(1738), - [sym__inline_note_start_token] = ACTIONS(1741), - [sym__strong_emphasis_open_star] = ACTIONS(1744), - [sym__strong_emphasis_open_underscore] = ACTIONS(1747), - [sym__emphasis_open_star] = ACTIONS(1750), - [sym__emphasis_open_underscore] = ACTIONS(1753), - [sym_inline_note_reference] = ACTIONS(1616), - [sym_html_element] = ACTIONS(1616), - [sym__pandoc_lt_str] = ACTIONS(1637), - [sym__pandoc_line_break] = ACTIONS(1616), - [sym_grid_table] = ACTIONS(1681), - [sym__caption_start] = ACTIONS(1756), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), + [sym_entity_reference] = ACTIONS(1662), + [sym_numeric_character_reference] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_BANG_LBRACK] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1677), + [aux_sym_pandoc_str_token1] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1683), + [sym__whitespace] = ACTIONS(1686), + [sym__line_ending] = ACTIONS(1689), + [sym__soft_line_ending] = ACTIONS(1692), + [sym__block_close] = ACTIONS(1695), + [sym__block_quote_start] = ACTIONS(1697), + [sym_atx_h1_marker] = ACTIONS(1695), + [sym_atx_h2_marker] = ACTIONS(1695), + [sym_atx_h3_marker] = ACTIONS(1695), + [sym_atx_h4_marker] = ACTIONS(1695), + [sym_atx_h5_marker] = ACTIONS(1695), + [sym_atx_h6_marker] = ACTIONS(1700), + [sym__thematic_break] = ACTIONS(1703), + [sym__list_marker_minus] = ACTIONS(1706), + [sym__list_marker_plus] = ACTIONS(1709), + [sym__list_marker_star] = ACTIONS(1712), + [sym__list_marker_parenthesis] = ACTIONS(1715), + [sym__list_marker_dot] = ACTIONS(1718), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1706), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1709), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1715), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_example] = ACTIONS(1721), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1721), + [sym__fenced_code_block_start_backtick] = ACTIONS(1724), + [sym__minus_metadata_start] = ACTIONS(1727), + [sym__pipe_table_start] = ACTIONS(1730), + [sym__fenced_div_start] = ACTIONS(1733), + [sym__fenced_div_end] = ACTIONS(1695), + [sym_ref_id_specifier] = ACTIONS(1736), + [sym__code_span_start] = ACTIONS(1739), + [sym__html_comment] = ACTIONS(1662), + [sym__autolink] = ACTIONS(1662), + [sym__highlight_span_start] = ACTIONS(1742), + [sym__insert_span_start] = ACTIONS(1745), + [sym__delete_span_start] = ACTIONS(1748), + [sym__edit_comment_span_start] = ACTIONS(1751), + [sym__single_quote_span_open] = ACTIONS(1754), + [sym__double_quote_span_open] = ACTIONS(1757), + [sym__shortcode_open_escaped] = ACTIONS(1760), + [sym__shortcode_open] = ACTIONS(1763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1766), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1769), + [sym__cite_author_in_text] = ACTIONS(1772), + [sym__cite_suppress_author] = ACTIONS(1775), + [sym__strikeout_open] = ACTIONS(1778), + [sym__subscript_open] = ACTIONS(1781), + [sym__superscript_open] = ACTIONS(1784), + [sym__inline_note_start_token] = ACTIONS(1787), + [sym__strong_emphasis_open_star] = ACTIONS(1790), + [sym__strong_emphasis_open_underscore] = ACTIONS(1793), + [sym__emphasis_open_star] = ACTIONS(1796), + [sym__emphasis_open_underscore] = ACTIONS(1799), + [sym_inline_note_reference] = ACTIONS(1662), + [sym_html_element] = ACTIONS(1662), + [sym__pandoc_lt_str] = ACTIONS(1683), + [sym__pandoc_line_break] = ACTIONS(1662), + [sym_grid_table] = ACTIONS(1802), + [sym__caption_start] = ACTIONS(1805), }, [STATE(114)] = { + [sym_minus_metadata] = STATE(113), [sym__block_not_section] = STATE(113), - [sym__section6] = STATE(279), + [sym__section6] = STATE(244), [sym__atx_heading6] = STATE(121), [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(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(113), [sym_pandoc_list] = STATE(113), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), [sym_pandoc_code_block] = STATE(113), [sym_pandoc_div] = STATE(113), [sym_note_definition_fenced_block] = STATE(113), [sym__newline] = STATE(113), [sym__soft_line_break] = STATE(113), - [sym__inline_whitespace] = STATE(802), + [sym__inline_whitespace] = STATE(811), [aux_sym__section5_repeat1] = STATE(113), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -40604,18 +40797,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(1759), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(1759), - [sym_atx_h2_marker] = ACTIONS(1759), - [sym_atx_h3_marker] = ACTIONS(1759), - [sym_atx_h4_marker] = ACTIONS(1759), - [sym_atx_h5_marker] = ACTIONS(1759), - [sym_atx_h6_marker] = ACTIONS(251), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(1808), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(1808), + [sym_atx_h2_marker] = ACTIONS(1808), + [sym_atx_h3_marker] = ACTIONS(1808), + [sym_atx_h4_marker] = ACTIONS(1808), + [sym_atx_h5_marker] = ACTIONS(1808), + [sym_atx_h6_marker] = ACTIONS(259), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -40628,12 +40821,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(1761), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(1759), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(1808), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -40661,77 +40854,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1761), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(1810), + [sym__caption_start] = ACTIONS(277), }, [STATE(115)] = { - [sym__block_not_section] = STATE(120), - [sym__section6] = STATE(356), - [sym__atx_heading6] = STATE(128), - [sym_pandoc_horizontal_rule] = STATE(120), - [sym_pandoc_paragraph] = STATE(120), - [sym_inline_ref_def] = STATE(120), - [sym_caption] = STATE(120), - [sym_pipe_table] = STATE(120), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(120), - [sym_pandoc_list] = STATE(120), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), - [sym__list_item_example] = STATE(157), - [sym_pandoc_code_block] = STATE(120), - [sym_pandoc_div] = STATE(120), - [sym_note_definition_fenced_block] = STATE(120), - [sym__newline] = STATE(120), - [sym__soft_line_break] = STATE(120), - [sym__inline_whitespace] = STATE(800), - [aux_sym__section5_repeat1] = STATE(120), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), - [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(1759), + [sym_minus_metadata] = STATE(117), + [sym__block_not_section] = STATE(117), + [sym__section6] = STATE(400), + [sym__atx_heading6] = STATE(129), + [sym_pandoc_horizontal_rule] = STATE(117), + [sym_pandoc_paragraph] = STATE(117), + [sym_inline_ref_def] = STATE(117), + [sym_caption] = STATE(117), + [sym_pipe_table] = STATE(117), + [sym__inlines] = STATE(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(117), + [sym_pandoc_list] = STATE(117), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), + [sym__list_item_plus] = STATE(159), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(117), + [sym_pandoc_div] = STATE(117), + [sym_note_definition_fenced_block] = STATE(117), + [sym__newline] = STATE(117), + [sym__soft_line_break] = STATE(117), + [sym__inline_whitespace] = STATE(830), + [aux_sym__section5_repeat1] = STATE(117), + [aux_sym__list_plus_repeat1] = STATE(159), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -40741,17 +40934,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(21), - [sym__line_ending] = ACTIONS(23), - [sym__soft_line_ending] = ACTIONS(25), - [sym__block_quote_start] = ACTIONS(27), - [sym_atx_h1_marker] = ACTIONS(1759), - [sym_atx_h2_marker] = ACTIONS(1759), - [sym_atx_h3_marker] = ACTIONS(1759), - [sym_atx_h4_marker] = ACTIONS(1759), - [sym_atx_h5_marker] = ACTIONS(1759), - [sym_atx_h6_marker] = ACTIONS(39), - [sym__thematic_break] = ACTIONS(41), + [sym__whitespace] = ACTIONS(115), + [sym__line_ending] = ACTIONS(117), + [sym__soft_line_ending] = ACTIONS(119), + [sym__block_close] = ACTIONS(1808), + [sym__block_quote_start] = ACTIONS(125), + [sym_atx_h1_marker] = ACTIONS(1808), + [sym_atx_h2_marker] = ACTIONS(1808), + [sym_atx_h3_marker] = ACTIONS(1808), + [sym_atx_h4_marker] = ACTIONS(1808), + [sym_atx_h5_marker] = ACTIONS(1808), + [sym_atx_h6_marker] = ACTIONS(137), + [sym__thematic_break] = ACTIONS(139), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -40764,11 +40958,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(1763), - [sym__pipe_table_start] = ACTIONS(59), - [sym__fenced_div_start] = ACTIONS(61), - [sym_ref_id_specifier] = ACTIONS(63), + [sym__fenced_code_block_start_backtick] = ACTIONS(141), + [sym__minus_metadata_start] = ACTIONS(145), + [sym__pipe_table_start] = ACTIONS(147), + [sym__fenced_div_start] = ACTIONS(149), + [sym_ref_id_specifier] = ACTIONS(151), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -40796,76 +40990,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1763), - [sym__caption_start] = ACTIONS(109), + [sym_grid_table] = ACTIONS(1812), + [sym__caption_start] = ACTIONS(155), }, [STATE(116)] = { - [sym__block_not_section] = STATE(117), - [sym__section6] = STATE(422), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(117), - [sym_pandoc_paragraph] = STATE(117), - [sym_inline_ref_def] = STATE(117), - [sym_caption] = STATE(117), - [sym_pipe_table] = STATE(117), - [sym__inlines] = STATE(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(117), - [sym_pandoc_list] = STATE(117), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), - [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(117), - [sym_pandoc_div] = STATE(117), - [sym_note_definition_fenced_block] = STATE(117), - [sym__newline] = STATE(117), - [sym__soft_line_break] = STATE(117), - [sym__inline_whitespace] = STATE(798), - [aux_sym__section5_repeat1] = STATE(117), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [sym_minus_metadata] = STATE(120), + [sym__block_not_section] = STATE(120), + [sym__section6] = STATE(446), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(120), + [sym_pandoc_paragraph] = STATE(120), + [sym_inline_ref_def] = STATE(120), + [sym_caption] = STATE(120), + [sym_pipe_table] = STATE(120), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(120), + [sym_pandoc_list] = STATE(120), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), + [sym__list_item_example] = STATE(157), + [sym_pandoc_code_block] = STATE(120), + [sym_pandoc_div] = STATE(120), + [sym_note_definition_fenced_block] = STATE(120), + [sym__newline] = STATE(120), + [sym__soft_line_break] = STATE(120), + [sym__inline_whitespace] = STATE(804), + [aux_sym__section5_repeat1] = STATE(120), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), + [aux_sym__list_example_repeat1] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(1808), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -40875,18 +41071,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(115), - [sym__line_ending] = ACTIONS(117), - [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(1612), - [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(1612), - [sym_atx_h2_marker] = ACTIONS(1612), - [sym_atx_h3_marker] = ACTIONS(1612), - [sym_atx_h4_marker] = ACTIONS(1612), - [sym_atx_h5_marker] = ACTIONS(1612), - [sym_atx_h6_marker] = ACTIONS(137), - [sym__thematic_break] = ACTIONS(139), + [sym__whitespace] = ACTIONS(21), + [sym__line_ending] = ACTIONS(23), + [sym__soft_line_ending] = ACTIONS(25), + [sym__block_quote_start] = ACTIONS(27), + [sym_atx_h1_marker] = ACTIONS(1808), + [sym_atx_h2_marker] = ACTIONS(1808), + [sym_atx_h3_marker] = ACTIONS(1808), + [sym_atx_h4_marker] = ACTIONS(1808), + [sym_atx_h5_marker] = ACTIONS(1808), + [sym_atx_h6_marker] = ACTIONS(39), + [sym__thematic_break] = ACTIONS(41), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -40899,11 +41094,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(1765), - [sym__pipe_table_start] = ACTIONS(147), - [sym__fenced_div_start] = ACTIONS(149), - [sym_ref_id_specifier] = ACTIONS(151), + [sym__fenced_code_block_start_backtick] = ACTIONS(55), + [sym__minus_metadata_start] = ACTIONS(57), + [sym__pipe_table_start] = ACTIONS(59), + [sym__fenced_div_start] = ACTIONS(61), + [sym_ref_id_specifier] = ACTIONS(63), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -40931,76 +41126,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1765), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(1814), + [sym__caption_start] = ACTIONS(109), }, [STATE(117)] = { - [sym__block_not_section] = STATE(119), - [sym__section6] = STATE(422), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(119), - [sym_pandoc_paragraph] = STATE(119), - [sym_inline_ref_def] = STATE(119), - [sym_caption] = STATE(119), - [sym_pipe_table] = STATE(119), - [sym__inlines] = STATE(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(119), - [sym_pandoc_list] = STATE(119), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym_minus_metadata] = STATE(117), + [sym__block_not_section] = STATE(117), + [sym__section6] = STATE(400), + [sym__atx_heading6] = STATE(129), + [sym_pandoc_horizontal_rule] = STATE(117), + [sym_pandoc_paragraph] = STATE(117), + [sym_inline_ref_def] = STATE(117), + [sym_caption] = STATE(117), + [sym_pipe_table] = STATE(117), + [sym__inlines] = STATE(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(117), + [sym_pandoc_list] = STATE(117), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(119), - [sym_pandoc_div] = STATE(119), - [sym_note_definition_fenced_block] = STATE(119), - [sym__newline] = STATE(119), - [sym__soft_line_break] = STATE(119), - [sym__inline_whitespace] = STATE(798), - [aux_sym__section5_repeat1] = STATE(119), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(117), + [sym_pandoc_div] = STATE(117), + [sym_note_definition_fenced_block] = STATE(117), + [sym__newline] = STATE(117), + [sym__soft_line_break] = STATE(117), + [sym__inline_whitespace] = STATE(830), + [aux_sym__section5_repeat1] = STATE(117), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), + [sym_entity_reference] = ACTIONS(1662), + [sym_numeric_character_reference] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_BANG_LBRACK] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1677), + [aux_sym_pandoc_str_token1] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1683), + [sym__whitespace] = ACTIONS(1816), + [sym__line_ending] = ACTIONS(1819), + [sym__soft_line_ending] = ACTIONS(1822), + [sym__block_close] = ACTIONS(1695), + [sym__block_quote_start] = ACTIONS(1825), + [sym_atx_h1_marker] = ACTIONS(1695), + [sym_atx_h2_marker] = ACTIONS(1695), + [sym_atx_h3_marker] = ACTIONS(1695), + [sym_atx_h4_marker] = ACTIONS(1695), + [sym_atx_h5_marker] = ACTIONS(1695), + [sym_atx_h6_marker] = ACTIONS(1828), + [sym__thematic_break] = ACTIONS(1831), + [sym__list_marker_minus] = ACTIONS(1706), + [sym__list_marker_plus] = ACTIONS(1709), + [sym__list_marker_star] = ACTIONS(1712), + [sym__list_marker_parenthesis] = ACTIONS(1715), + [sym__list_marker_dot] = ACTIONS(1718), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1706), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1709), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1715), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_example] = ACTIONS(1721), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1721), + [sym__fenced_code_block_start_backtick] = ACTIONS(1834), + [sym__minus_metadata_start] = ACTIONS(1837), + [sym__pipe_table_start] = ACTIONS(1840), + [sym__fenced_div_start] = ACTIONS(1843), + [sym_ref_id_specifier] = ACTIONS(1846), + [sym__code_span_start] = ACTIONS(1739), + [sym__html_comment] = ACTIONS(1662), + [sym__autolink] = ACTIONS(1662), + [sym__highlight_span_start] = ACTIONS(1742), + [sym__insert_span_start] = ACTIONS(1745), + [sym__delete_span_start] = ACTIONS(1748), + [sym__edit_comment_span_start] = ACTIONS(1751), + [sym__single_quote_span_open] = ACTIONS(1754), + [sym__double_quote_span_open] = ACTIONS(1757), + [sym__shortcode_open_escaped] = ACTIONS(1760), + [sym__shortcode_open] = ACTIONS(1763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1766), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1769), + [sym__cite_author_in_text] = ACTIONS(1772), + [sym__cite_suppress_author] = ACTIONS(1775), + [sym__strikeout_open] = ACTIONS(1778), + [sym__subscript_open] = ACTIONS(1781), + [sym__superscript_open] = ACTIONS(1784), + [sym__inline_note_start_token] = ACTIONS(1787), + [sym__strong_emphasis_open_star] = ACTIONS(1790), + [sym__strong_emphasis_open_underscore] = ACTIONS(1793), + [sym__emphasis_open_star] = ACTIONS(1796), + [sym__emphasis_open_underscore] = ACTIONS(1799), + [sym_inline_note_reference] = ACTIONS(1662), + [sym_html_element] = ACTIONS(1662), + [sym__pandoc_lt_str] = ACTIONS(1683), + [sym__pandoc_line_break] = ACTIONS(1662), + [sym_grid_table] = ACTIONS(1849), + [sym__caption_start] = ACTIONS(1852), + }, + [STATE(118)] = { + [sym_minus_metadata] = STATE(116), + [sym__block_not_section] = STATE(116), + [sym__section6] = STATE(446), + [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(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(116), + [sym_pandoc_list] = STATE(116), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), + [sym__list_item_example] = STATE(157), + [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__inline_whitespace] = STATE(804), + [aux_sym__section5_repeat1] = STATE(116), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), + [aux_sym__list_example_repeat1] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(1658), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -41010,18 +41343,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(115), - [sym__line_ending] = ACTIONS(117), - [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(1759), - [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(1759), - [sym_atx_h2_marker] = ACTIONS(1759), - [sym_atx_h3_marker] = ACTIONS(1759), - [sym_atx_h4_marker] = ACTIONS(1759), - [sym_atx_h5_marker] = ACTIONS(1759), - [sym_atx_h6_marker] = ACTIONS(137), - [sym__thematic_break] = ACTIONS(139), + [sym__whitespace] = ACTIONS(21), + [sym__line_ending] = ACTIONS(23), + [sym__soft_line_ending] = ACTIONS(25), + [sym__block_quote_start] = ACTIONS(27), + [sym_atx_h1_marker] = ACTIONS(1658), + [sym_atx_h2_marker] = ACTIONS(1658), + [sym_atx_h3_marker] = ACTIONS(1658), + [sym_atx_h4_marker] = ACTIONS(1658), + [sym_atx_h5_marker] = ACTIONS(1658), + [sym_atx_h6_marker] = ACTIONS(39), + [sym__thematic_break] = ACTIONS(41), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -41034,11 +41366,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(1767), - [sym__pipe_table_start] = ACTIONS(147), - [sym__fenced_div_start] = ACTIONS(149), - [sym_ref_id_specifier] = ACTIONS(151), + [sym__fenced_code_block_start_backtick] = ACTIONS(55), + [sym__minus_metadata_start] = ACTIONS(57), + [sym__pipe_table_start] = ACTIONS(59), + [sym__fenced_div_start] = ACTIONS(61), + [sym_ref_id_specifier] = ACTIONS(63), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -41066,77 +41398,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1767), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(1855), + [sym__caption_start] = ACTIONS(109), }, - [STATE(118)] = { + [STATE(119)] = { + [sym_minus_metadata] = STATE(115), [sym__block_not_section] = STATE(115), - [sym__section6] = STATE(356), - [sym__atx_heading6] = STATE(128), + [sym__section6] = STATE(400), + [sym__atx_heading6] = STATE(129), [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(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(115), [sym_pandoc_list] = STATE(115), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), - [sym__list_item_example] = STATE(157), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), + [sym__list_item_plus] = STATE(159), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), [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__inline_whitespace] = STATE(800), + [sym__inline_whitespace] = STATE(830), [aux_sym__section5_repeat1] = STATE(115), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), - [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(1612), + [aux_sym__list_plus_repeat1] = STATE(159), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -41146,17 +41478,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(21), - [sym__line_ending] = ACTIONS(23), - [sym__soft_line_ending] = ACTIONS(25), - [sym__block_quote_start] = ACTIONS(27), - [sym_atx_h1_marker] = ACTIONS(1612), - [sym_atx_h2_marker] = ACTIONS(1612), - [sym_atx_h3_marker] = ACTIONS(1612), - [sym_atx_h4_marker] = ACTIONS(1612), - [sym_atx_h5_marker] = ACTIONS(1612), - [sym_atx_h6_marker] = ACTIONS(39), - [sym__thematic_break] = ACTIONS(41), + [sym__whitespace] = ACTIONS(115), + [sym__line_ending] = ACTIONS(117), + [sym__soft_line_ending] = ACTIONS(119), + [sym__block_close] = ACTIONS(1658), + [sym__block_quote_start] = ACTIONS(125), + [sym_atx_h1_marker] = ACTIONS(1658), + [sym_atx_h2_marker] = ACTIONS(1658), + [sym_atx_h3_marker] = ACTIONS(1658), + [sym_atx_h4_marker] = ACTIONS(1658), + [sym_atx_h5_marker] = ACTIONS(1658), + [sym_atx_h6_marker] = ACTIONS(137), + [sym__thematic_break] = ACTIONS(139), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -41169,11 +41502,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(1769), - [sym__pipe_table_start] = ACTIONS(59), - [sym__fenced_div_start] = ACTIONS(61), - [sym_ref_id_specifier] = ACTIONS(63), + [sym__fenced_code_block_start_backtick] = ACTIONS(141), + [sym__minus_metadata_start] = ACTIONS(145), + [sym__pipe_table_start] = ACTIONS(147), + [sym__fenced_div_start] = ACTIONS(149), + [sym_ref_id_specifier] = ACTIONS(151), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -41201,344 +41534,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1769), - [sym__caption_start] = ACTIONS(109), - }, - [STATE(119)] = { - [sym__block_not_section] = STATE(119), - [sym__section6] = STATE(422), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(119), - [sym_pandoc_paragraph] = STATE(119), - [sym_inline_ref_def] = STATE(119), - [sym_caption] = STATE(119), - [sym_pipe_table] = STATE(119), - [sym__inlines] = STATE(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(119), - [sym_pandoc_list] = STATE(119), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), - [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(119), - [sym_pandoc_div] = STATE(119), - [sym_note_definition_fenced_block] = STATE(119), - [sym__newline] = STATE(119), - [sym__soft_line_break] = STATE(119), - [sym__inline_whitespace] = STATE(798), - [aux_sym__section5_repeat1] = STATE(119), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), - [sym_entity_reference] = ACTIONS(1616), - [sym_numeric_character_reference] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_BANG_LBRACK] = ACTIONS(1622), - [anon_sym_DOLLAR] = ACTIONS(1625), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1631), - [aux_sym_pandoc_str_token1] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1637), - [sym__whitespace] = ACTIONS(1771), - [sym__line_ending] = ACTIONS(1774), - [sym__soft_line_ending] = ACTIONS(1777), - [sym__block_close] = ACTIONS(1649), - [sym__block_quote_start] = ACTIONS(1780), - [sym_atx_h1_marker] = ACTIONS(1649), - [sym_atx_h2_marker] = ACTIONS(1649), - [sym_atx_h3_marker] = ACTIONS(1649), - [sym_atx_h4_marker] = ACTIONS(1649), - [sym_atx_h5_marker] = ACTIONS(1649), - [sym_atx_h6_marker] = ACTIONS(1783), - [sym__thematic_break] = ACTIONS(1786), - [sym__list_marker_minus] = ACTIONS(1660), - [sym__list_marker_plus] = ACTIONS(1663), - [sym__list_marker_star] = ACTIONS(1666), - [sym__list_marker_parenthesis] = ACTIONS(1669), - [sym__list_marker_dot] = ACTIONS(1672), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1663), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1666), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1669), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1672), - [sym__list_marker_example] = ACTIONS(1675), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1675), - [sym__fenced_code_block_start_backtick] = ACTIONS(1789), - [sym_minus_metadata] = ACTIONS(1792), - [sym__pipe_table_start] = ACTIONS(1795), - [sym__fenced_div_start] = ACTIONS(1798), - [sym_ref_id_specifier] = ACTIONS(1801), - [sym__code_span_start] = ACTIONS(1693), - [sym__html_comment] = ACTIONS(1616), - [sym__autolink] = ACTIONS(1616), - [sym__highlight_span_start] = ACTIONS(1696), - [sym__insert_span_start] = ACTIONS(1699), - [sym__delete_span_start] = ACTIONS(1702), - [sym__edit_comment_span_start] = ACTIONS(1705), - [sym__single_quote_span_open] = ACTIONS(1708), - [sym__double_quote_span_open] = ACTIONS(1711), - [sym__shortcode_open_escaped] = ACTIONS(1714), - [sym__shortcode_open] = ACTIONS(1717), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1720), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1723), - [sym__cite_author_in_text] = ACTIONS(1726), - [sym__cite_suppress_author] = ACTIONS(1729), - [sym__strikeout_open] = ACTIONS(1732), - [sym__subscript_open] = ACTIONS(1735), - [sym__superscript_open] = ACTIONS(1738), - [sym__inline_note_start_token] = ACTIONS(1741), - [sym__strong_emphasis_open_star] = ACTIONS(1744), - [sym__strong_emphasis_open_underscore] = ACTIONS(1747), - [sym__emphasis_open_star] = ACTIONS(1750), - [sym__emphasis_open_underscore] = ACTIONS(1753), - [sym_inline_note_reference] = ACTIONS(1616), - [sym_html_element] = ACTIONS(1616), - [sym__pandoc_lt_str] = ACTIONS(1637), - [sym__pandoc_line_break] = ACTIONS(1616), - [sym_grid_table] = ACTIONS(1792), - [sym__caption_start] = ACTIONS(1804), + [sym_grid_table] = ACTIONS(1857), + [sym__caption_start] = ACTIONS(155), }, [STATE(120)] = { + [sym_minus_metadata] = STATE(120), [sym__block_not_section] = STATE(120), - [sym__section6] = STATE(356), - [sym__atx_heading6] = STATE(128), + [sym__section6] = STATE(446), + [sym__atx_heading6] = STATE(127), [sym_pandoc_horizontal_rule] = STATE(120), [sym_pandoc_paragraph] = STATE(120), [sym_inline_ref_def] = STATE(120), [sym_caption] = STATE(120), [sym_pipe_table] = STATE(120), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), [sym_pandoc_block_quote] = STATE(120), [sym_pandoc_list] = STATE(120), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), [sym__list_item_example] = STATE(157), [sym_pandoc_code_block] = STATE(120), [sym_pandoc_div] = STATE(120), [sym_note_definition_fenced_block] = STATE(120), [sym__newline] = STATE(120), [sym__soft_line_break] = STATE(120), - [sym__inline_whitespace] = STATE(800), + [sym__inline_whitespace] = STATE(804), [aux_sym__section5_repeat1] = STATE(120), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(1649), - [sym_entity_reference] = ACTIONS(1616), - [sym_numeric_character_reference] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_BANG_LBRACK] = ACTIONS(1622), - [anon_sym_DOLLAR] = ACTIONS(1625), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1631), - [aux_sym_pandoc_str_token1] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1637), - [sym__whitespace] = ACTIONS(1807), - [sym__line_ending] = ACTIONS(1810), - [sym__soft_line_ending] = ACTIONS(1813), - [sym__block_quote_start] = ACTIONS(1816), - [sym_atx_h1_marker] = ACTIONS(1649), - [sym_atx_h2_marker] = ACTIONS(1649), - [sym_atx_h3_marker] = ACTIONS(1649), - [sym_atx_h4_marker] = ACTIONS(1649), - [sym_atx_h5_marker] = ACTIONS(1649), - [sym_atx_h6_marker] = ACTIONS(1819), - [sym__thematic_break] = ACTIONS(1822), - [sym__list_marker_minus] = ACTIONS(1660), - [sym__list_marker_plus] = ACTIONS(1663), - [sym__list_marker_star] = ACTIONS(1666), - [sym__list_marker_parenthesis] = ACTIONS(1669), - [sym__list_marker_dot] = ACTIONS(1672), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1663), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1666), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1669), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1672), - [sym__list_marker_example] = ACTIONS(1675), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1675), - [sym__fenced_code_block_start_backtick] = ACTIONS(1825), - [sym_minus_metadata] = ACTIONS(1828), - [sym__pipe_table_start] = ACTIONS(1831), - [sym__fenced_div_start] = ACTIONS(1834), - [sym_ref_id_specifier] = ACTIONS(1837), - [sym__code_span_start] = ACTIONS(1693), - [sym__html_comment] = ACTIONS(1616), - [sym__autolink] = ACTIONS(1616), - [sym__highlight_span_start] = ACTIONS(1696), - [sym__insert_span_start] = ACTIONS(1699), - [sym__delete_span_start] = ACTIONS(1702), - [sym__edit_comment_span_start] = ACTIONS(1705), - [sym__single_quote_span_open] = ACTIONS(1708), - [sym__double_quote_span_open] = ACTIONS(1711), - [sym__shortcode_open_escaped] = ACTIONS(1714), - [sym__shortcode_open] = ACTIONS(1717), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1720), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1723), - [sym__cite_author_in_text] = ACTIONS(1726), - [sym__cite_suppress_author] = ACTIONS(1729), - [sym__strikeout_open] = ACTIONS(1732), - [sym__subscript_open] = ACTIONS(1735), - [sym__superscript_open] = ACTIONS(1738), - [sym__inline_note_start_token] = ACTIONS(1741), - [sym__strong_emphasis_open_star] = ACTIONS(1744), - [sym__strong_emphasis_open_underscore] = ACTIONS(1747), - [sym__emphasis_open_star] = ACTIONS(1750), - [sym__emphasis_open_underscore] = ACTIONS(1753), - [sym_inline_note_reference] = ACTIONS(1616), - [sym_html_element] = ACTIONS(1616), - [sym__pandoc_lt_str] = ACTIONS(1637), - [sym__pandoc_line_break] = ACTIONS(1616), - [sym_grid_table] = ACTIONS(1828), - [sym__caption_start] = ACTIONS(1840), + [ts_builtin_sym_end] = ACTIONS(1695), + [sym_entity_reference] = ACTIONS(1662), + [sym_numeric_character_reference] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_BANG_LBRACK] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1677), + [aux_sym_pandoc_str_token1] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1683), + [sym__whitespace] = ACTIONS(1859), + [sym__line_ending] = ACTIONS(1862), + [sym__soft_line_ending] = ACTIONS(1865), + [sym__block_quote_start] = ACTIONS(1868), + [sym_atx_h1_marker] = ACTIONS(1695), + [sym_atx_h2_marker] = ACTIONS(1695), + [sym_atx_h3_marker] = ACTIONS(1695), + [sym_atx_h4_marker] = ACTIONS(1695), + [sym_atx_h5_marker] = ACTIONS(1695), + [sym_atx_h6_marker] = ACTIONS(1871), + [sym__thematic_break] = ACTIONS(1874), + [sym__list_marker_minus] = ACTIONS(1706), + [sym__list_marker_plus] = ACTIONS(1709), + [sym__list_marker_star] = ACTIONS(1712), + [sym__list_marker_parenthesis] = ACTIONS(1715), + [sym__list_marker_dot] = ACTIONS(1718), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1706), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1709), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1715), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_example] = ACTIONS(1721), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1721), + [sym__fenced_code_block_start_backtick] = ACTIONS(1877), + [sym__minus_metadata_start] = ACTIONS(1880), + [sym__pipe_table_start] = ACTIONS(1883), + [sym__fenced_div_start] = ACTIONS(1886), + [sym_ref_id_specifier] = ACTIONS(1889), + [sym__code_span_start] = ACTIONS(1739), + [sym__html_comment] = ACTIONS(1662), + [sym__autolink] = ACTIONS(1662), + [sym__highlight_span_start] = ACTIONS(1742), + [sym__insert_span_start] = ACTIONS(1745), + [sym__delete_span_start] = ACTIONS(1748), + [sym__edit_comment_span_start] = ACTIONS(1751), + [sym__single_quote_span_open] = ACTIONS(1754), + [sym__double_quote_span_open] = ACTIONS(1757), + [sym__shortcode_open_escaped] = ACTIONS(1760), + [sym__shortcode_open] = ACTIONS(1763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1766), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1769), + [sym__cite_author_in_text] = ACTIONS(1772), + [sym__cite_suppress_author] = ACTIONS(1775), + [sym__strikeout_open] = ACTIONS(1778), + [sym__subscript_open] = ACTIONS(1781), + [sym__superscript_open] = ACTIONS(1784), + [sym__inline_note_start_token] = ACTIONS(1787), + [sym__strong_emphasis_open_star] = ACTIONS(1790), + [sym__strong_emphasis_open_underscore] = ACTIONS(1793), + [sym__emphasis_open_star] = ACTIONS(1796), + [sym__emphasis_open_underscore] = ACTIONS(1799), + [sym_inline_note_reference] = ACTIONS(1662), + [sym_html_element] = ACTIONS(1662), + [sym__pandoc_lt_str] = ACTIONS(1683), + [sym__pandoc_line_break] = ACTIONS(1662), + [sym_grid_table] = ACTIONS(1892), + [sym__caption_start] = ACTIONS(1895), }, [STATE(121)] = { - [sym__block_not_section] = STATE(291), - [sym_pandoc_horizontal_rule] = STATE(291), - [sym_pandoc_paragraph] = STATE(291), - [sym_inline_ref_def] = STATE(291), - [sym_caption] = STATE(291), - [sym_pipe_table] = STATE(291), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(291), - [sym_pandoc_list] = STATE(291), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(291), - [sym_pandoc_div] = STATE(291), - [sym_note_definition_fenced_block] = STATE(291), - [sym__newline] = STATE(291), - [sym__soft_line_break] = STATE(291), - [sym__inline_whitespace] = STATE(802), + [sym_minus_metadata] = STATE(227), + [sym__block_not_section] = STATE(227), + [sym_pandoc_horizontal_rule] = STATE(227), + [sym_pandoc_paragraph] = STATE(227), + [sym_inline_ref_def] = STATE(227), + [sym_caption] = STATE(227), + [sym_pipe_table] = STATE(227), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(227), + [sym_pandoc_list] = STATE(227), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(227), + [sym_pandoc_div] = STATE(227), + [sym_note_definition_fenced_block] = STATE(227), + [sym__newline] = STATE(227), + [sym__soft_line_break] = STATE(227), + [sym__inline_whitespace] = STATE(811), [aux_sym_document_repeat1] = STATE(122), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -41548,18 +41748,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(1843), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(1843), - [sym_atx_h2_marker] = ACTIONS(1843), - [sym_atx_h3_marker] = ACTIONS(1843), - [sym_atx_h4_marker] = ACTIONS(1843), - [sym_atx_h5_marker] = ACTIONS(1843), - [sym_atx_h6_marker] = ACTIONS(1843), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(1898), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(1898), + [sym_atx_h2_marker] = ACTIONS(1898), + [sym_atx_h3_marker] = ACTIONS(1898), + [sym_atx_h4_marker] = ACTIONS(1898), + [sym_atx_h5_marker] = ACTIONS(1898), + [sym_atx_h6_marker] = ACTIONS(1898), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -41572,12 +41772,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(1845), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(1843), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(1898), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -41605,74 +41805,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1845), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(1900), + [sym__caption_start] = ACTIONS(277), }, [STATE(122)] = { - [sym__block_not_section] = STATE(291), - [sym_pandoc_horizontal_rule] = STATE(291), - [sym_pandoc_paragraph] = STATE(291), - [sym_inline_ref_def] = STATE(291), - [sym_caption] = STATE(291), - [sym_pipe_table] = STATE(291), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(291), - [sym_pandoc_list] = STATE(291), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(291), - [sym_pandoc_div] = STATE(291), - [sym_note_definition_fenced_block] = STATE(291), - [sym__newline] = STATE(291), - [sym__soft_line_break] = STATE(291), - [sym__inline_whitespace] = STATE(802), + [sym_minus_metadata] = STATE(227), + [sym__block_not_section] = STATE(227), + [sym_pandoc_horizontal_rule] = STATE(227), + [sym_pandoc_paragraph] = STATE(227), + [sym_inline_ref_def] = STATE(227), + [sym_caption] = STATE(227), + [sym_pipe_table] = STATE(227), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(227), + [sym_pandoc_list] = STATE(227), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(227), + [sym_pandoc_div] = STATE(227), + [sym_note_definition_fenced_block] = STATE(227), + [sym__newline] = STATE(227), + [sym__soft_line_break] = STATE(227), + [sym__inline_whitespace] = STATE(811), [aux_sym_document_repeat1] = STATE(123), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -41682,18 +41883,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__line_ending] = ACTIONS(233), - [sym__soft_line_ending] = ACTIONS(235), - [sym__block_close] = ACTIONS(1847), - [sym__block_quote_start] = ACTIONS(239), - [sym_atx_h1_marker] = ACTIONS(1847), - [sym_atx_h2_marker] = ACTIONS(1847), - [sym_atx_h3_marker] = ACTIONS(1847), - [sym_atx_h4_marker] = ACTIONS(1847), - [sym_atx_h5_marker] = ACTIONS(1847), - [sym_atx_h6_marker] = ACTIONS(1847), - [sym__thematic_break] = ACTIONS(253), + [sym__whitespace] = ACTIONS(239), + [sym__line_ending] = ACTIONS(241), + [sym__soft_line_ending] = ACTIONS(243), + [sym__block_close] = ACTIONS(1902), + [sym__block_quote_start] = ACTIONS(247), + [sym_atx_h1_marker] = ACTIONS(1902), + [sym_atx_h2_marker] = ACTIONS(1902), + [sym_atx_h3_marker] = ACTIONS(1902), + [sym_atx_h4_marker] = ACTIONS(1902), + [sym_atx_h5_marker] = ACTIONS(1902), + [sym_atx_h6_marker] = ACTIONS(1902), + [sym__thematic_break] = ACTIONS(261), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), [sym__list_marker_star] = ACTIONS(47), @@ -41706,12 +41907,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(255), - [sym_minus_metadata] = ACTIONS(1845), - [sym__pipe_table_start] = ACTIONS(259), - [sym__fenced_div_start] = ACTIONS(261), - [sym__fenced_div_end] = ACTIONS(1847), - [sym_ref_id_specifier] = ACTIONS(265), + [sym__fenced_code_block_start_backtick] = ACTIONS(263), + [sym__minus_metadata_start] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(267), + [sym__fenced_div_start] = ACTIONS(269), + [sym__fenced_div_end] = ACTIONS(1902), + [sym_ref_id_specifier] = ACTIONS(273), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -41739,209 +41940,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1845), - [sym__caption_start] = ACTIONS(267), + [sym_grid_table] = ACTIONS(1900), + [sym__caption_start] = ACTIONS(277), }, [STATE(123)] = { - [sym__block_not_section] = STATE(291), - [sym_pandoc_horizontal_rule] = STATE(291), - [sym_pandoc_paragraph] = STATE(291), - [sym_inline_ref_def] = STATE(291), - [sym_caption] = STATE(291), - [sym_pipe_table] = STATE(291), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(291), - [sym_pandoc_list] = STATE(291), - [sym__list_plus] = STATE(304), - [sym__list_minus] = STATE(304), - [sym__list_star] = STATE(304), - [sym__list_dot] = STATE(304), - [sym__list_parenthesis] = STATE(304), - [sym__list_example] = STATE(304), - [sym_list_marker_plus] = STATE(13), - [sym_list_marker_minus] = STATE(14), - [sym_list_marker_star] = STATE(15), - [sym_list_marker_dot] = STATE(16), - [sym_list_marker_parenthesis] = STATE(17), - [sym_list_marker_example] = STATE(18), - [sym__list_item_plus] = STATE(134), - [sym__list_item_minus] = STATE(135), - [sym__list_item_star] = STATE(136), - [sym__list_item_dot] = STATE(137), - [sym__list_item_parenthesis] = STATE(138), - [sym__list_item_example] = STATE(139), - [sym_pandoc_code_block] = STATE(291), - [sym_pandoc_div] = STATE(291), - [sym_note_definition_fenced_block] = STATE(291), - [sym__newline] = STATE(291), - [sym__soft_line_break] = STATE(291), - [sym__inline_whitespace] = STATE(802), + [sym_minus_metadata] = STATE(227), + [sym__block_not_section] = STATE(227), + [sym_pandoc_horizontal_rule] = STATE(227), + [sym_pandoc_paragraph] = STATE(227), + [sym_inline_ref_def] = STATE(227), + [sym_caption] = STATE(227), + [sym_pipe_table] = STATE(227), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(227), + [sym_pandoc_list] = STATE(227), + [sym__list_plus] = STATE(229), + [sym__list_minus] = STATE(229), + [sym__list_star] = STATE(229), + [sym__list_dot] = STATE(229), + [sym__list_parenthesis] = STATE(229), + [sym__list_example] = STATE(229), + [sym_list_marker_plus] = STATE(14), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(16), + [sym_list_marker_dot] = STATE(17), + [sym_list_marker_parenthesis] = STATE(18), + [sym_list_marker_example] = STATE(19), + [sym__list_item_plus] = STATE(136), + [sym__list_item_minus] = STATE(137), + [sym__list_item_star] = STATE(138), + [sym__list_item_dot] = STATE(139), + [sym__list_item_parenthesis] = STATE(141), + [sym__list_item_example] = STATE(142), + [sym_pandoc_code_block] = STATE(227), + [sym_pandoc_div] = STATE(227), + [sym_note_definition_fenced_block] = STATE(227), + [sym__newline] = STATE(227), + [sym__soft_line_break] = STATE(227), + [sym__inline_whitespace] = STATE(811), [aux_sym_document_repeat1] = STATE(123), - [aux_sym__list_plus_repeat1] = STATE(134), - [aux_sym__list_minus_repeat1] = STATE(135), - [aux_sym__list_star_repeat1] = STATE(136), - [aux_sym__list_dot_repeat1] = STATE(137), - [aux_sym__list_parenthesis_repeat1] = STATE(138), - [aux_sym__list_example_repeat1] = STATE(139), - [sym_entity_reference] = ACTIONS(1849), - [sym_numeric_character_reference] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_BANG_LBRACK] = ACTIONS(1855), - [anon_sym_DOLLAR] = ACTIONS(1858), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1864), - [aux_sym_pandoc_str_token1] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1870), - [sym__whitespace] = ACTIONS(1873), - [sym__line_ending] = ACTIONS(1876), - [sym__soft_line_ending] = ACTIONS(1879), - [sym__block_close] = ACTIONS(1882), - [sym__block_quote_start] = ACTIONS(1884), - [sym_atx_h1_marker] = ACTIONS(1882), - [sym_atx_h2_marker] = ACTIONS(1882), - [sym_atx_h3_marker] = ACTIONS(1882), - [sym_atx_h4_marker] = ACTIONS(1882), - [sym_atx_h5_marker] = ACTIONS(1882), - [sym_atx_h6_marker] = ACTIONS(1882), - [sym__thematic_break] = ACTIONS(1887), - [sym__list_marker_minus] = ACTIONS(1890), - [sym__list_marker_plus] = ACTIONS(1893), - [sym__list_marker_star] = ACTIONS(1896), - [sym__list_marker_parenthesis] = ACTIONS(1899), - [sym__list_marker_dot] = ACTIONS(1902), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1890), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1893), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1899), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_example] = ACTIONS(1905), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1905), - [sym__fenced_code_block_start_backtick] = ACTIONS(1908), - [sym_minus_metadata] = ACTIONS(1911), - [sym__pipe_table_start] = ACTIONS(1914), - [sym__fenced_div_start] = ACTIONS(1917), - [sym__fenced_div_end] = ACTIONS(1882), - [sym_ref_id_specifier] = ACTIONS(1920), - [sym__code_span_start] = ACTIONS(1923), - [sym__html_comment] = ACTIONS(1849), - [sym__autolink] = ACTIONS(1849), - [sym__highlight_span_start] = ACTIONS(1926), - [sym__insert_span_start] = ACTIONS(1929), - [sym__delete_span_start] = ACTIONS(1932), - [sym__edit_comment_span_start] = ACTIONS(1935), - [sym__single_quote_span_open] = ACTIONS(1938), - [sym__double_quote_span_open] = ACTIONS(1941), - [sym__shortcode_open_escaped] = ACTIONS(1944), - [sym__shortcode_open] = ACTIONS(1947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1950), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1953), - [sym__cite_author_in_text] = ACTIONS(1956), - [sym__cite_suppress_author] = ACTIONS(1959), - [sym__strikeout_open] = ACTIONS(1962), - [sym__subscript_open] = ACTIONS(1965), - [sym__superscript_open] = ACTIONS(1968), - [sym__inline_note_start_token] = ACTIONS(1971), - [sym__strong_emphasis_open_star] = ACTIONS(1974), - [sym__strong_emphasis_open_underscore] = ACTIONS(1977), - [sym__emphasis_open_star] = ACTIONS(1980), - [sym__emphasis_open_underscore] = ACTIONS(1983), - [sym_inline_note_reference] = ACTIONS(1849), - [sym_html_element] = ACTIONS(1849), - [sym__pandoc_lt_str] = ACTIONS(1870), - [sym__pandoc_line_break] = ACTIONS(1849), - [sym_grid_table] = ACTIONS(1911), - [sym__caption_start] = ACTIONS(1986), + [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(139), + [aux_sym__list_parenthesis_repeat1] = STATE(141), + [aux_sym__list_example_repeat1] = STATE(142), + [sym_entity_reference] = ACTIONS(1904), + [sym_numeric_character_reference] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_BANG_LBRACK] = ACTIONS(1910), + [anon_sym_DOLLAR] = ACTIONS(1913), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1919), + [aux_sym_pandoc_str_token1] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1925), + [sym__whitespace] = ACTIONS(1928), + [sym__line_ending] = ACTIONS(1931), + [sym__soft_line_ending] = ACTIONS(1934), + [sym__block_close] = ACTIONS(1937), + [sym__block_quote_start] = ACTIONS(1939), + [sym_atx_h1_marker] = ACTIONS(1937), + [sym_atx_h2_marker] = ACTIONS(1937), + [sym_atx_h3_marker] = ACTIONS(1937), + [sym_atx_h4_marker] = ACTIONS(1937), + [sym_atx_h5_marker] = ACTIONS(1937), + [sym_atx_h6_marker] = ACTIONS(1937), + [sym__thematic_break] = ACTIONS(1942), + [sym__list_marker_minus] = ACTIONS(1945), + [sym__list_marker_plus] = ACTIONS(1948), + [sym__list_marker_star] = ACTIONS(1951), + [sym__list_marker_parenthesis] = ACTIONS(1954), + [sym__list_marker_dot] = ACTIONS(1957), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1945), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1948), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1951), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1954), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1957), + [sym__list_marker_example] = ACTIONS(1960), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1960), + [sym__fenced_code_block_start_backtick] = ACTIONS(1963), + [sym__minus_metadata_start] = ACTIONS(1966), + [sym__pipe_table_start] = ACTIONS(1969), + [sym__fenced_div_start] = ACTIONS(1972), + [sym__fenced_div_end] = ACTIONS(1937), + [sym_ref_id_specifier] = ACTIONS(1975), + [sym__code_span_start] = ACTIONS(1978), + [sym__html_comment] = ACTIONS(1904), + [sym__autolink] = ACTIONS(1904), + [sym__highlight_span_start] = ACTIONS(1981), + [sym__insert_span_start] = ACTIONS(1984), + [sym__delete_span_start] = ACTIONS(1987), + [sym__edit_comment_span_start] = ACTIONS(1990), + [sym__single_quote_span_open] = ACTIONS(1993), + [sym__double_quote_span_open] = ACTIONS(1996), + [sym__shortcode_open_escaped] = ACTIONS(1999), + [sym__shortcode_open] = ACTIONS(2002), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2005), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2008), + [sym__cite_author_in_text] = ACTIONS(2011), + [sym__cite_suppress_author] = ACTIONS(2014), + [sym__strikeout_open] = ACTIONS(2017), + [sym__subscript_open] = ACTIONS(2020), + [sym__superscript_open] = ACTIONS(2023), + [sym__inline_note_start_token] = ACTIONS(2026), + [sym__strong_emphasis_open_star] = ACTIONS(2029), + [sym__strong_emphasis_open_underscore] = ACTIONS(2032), + [sym__emphasis_open_star] = ACTIONS(2035), + [sym__emphasis_open_underscore] = ACTIONS(2038), + [sym_inline_note_reference] = ACTIONS(1904), + [sym_html_element] = ACTIONS(1904), + [sym__pandoc_lt_str] = ACTIONS(1925), + [sym__pandoc_line_break] = ACTIONS(1904), + [sym_grid_table] = ACTIONS(2041), + [sym__caption_start] = ACTIONS(2044), }, [STATE(124)] = { - [sym__block_not_section] = STATE(362), - [sym_pandoc_horizontal_rule] = STATE(362), - [sym_pandoc_paragraph] = STATE(362), - [sym_inline_ref_def] = STATE(362), - [sym_caption] = STATE(362), - [sym_pipe_table] = STATE(362), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(362), - [sym_pandoc_list] = STATE(362), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), + [sym_minus_metadata] = STATE(477), + [sym__block_not_section] = STATE(477), + [sym_pandoc_horizontal_rule] = STATE(477), + [sym_pandoc_paragraph] = STATE(477), + [sym_inline_ref_def] = STATE(477), + [sym_caption] = STATE(477), + [sym_pipe_table] = STATE(477), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(477), + [sym_pandoc_list] = STATE(477), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), [sym__list_item_example] = STATE(157), - [sym_pandoc_code_block] = STATE(362), - [sym_pandoc_div] = STATE(362), - [sym_note_definition_fenced_block] = STATE(362), - [sym__newline] = STATE(362), - [sym__soft_line_break] = STATE(362), - [sym__inline_whitespace] = STATE(800), - [aux_sym_document_repeat1] = STATE(126), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), + [sym_pandoc_code_block] = STATE(477), + [sym_pandoc_div] = STATE(477), + [sym_note_definition_fenced_block] = STATE(477), + [sym__newline] = STATE(477), + [sym__soft_line_break] = STATE(477), + [sym__inline_whitespace] = STATE(804), + [aux_sym_document_repeat1] = STATE(128), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(1847), + [ts_builtin_sym_end] = ACTIONS(1902), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -41955,12 +42158,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(23), [sym__soft_line_ending] = ACTIONS(25), [sym__block_quote_start] = ACTIONS(27), - [sym_atx_h1_marker] = ACTIONS(1847), - [sym_atx_h2_marker] = ACTIONS(1847), - [sym_atx_h3_marker] = ACTIONS(1847), - [sym_atx_h4_marker] = ACTIONS(1847), - [sym_atx_h5_marker] = ACTIONS(1847), - [sym_atx_h6_marker] = ACTIONS(1847), + [sym_atx_h1_marker] = ACTIONS(1902), + [sym_atx_h2_marker] = ACTIONS(1902), + [sym_atx_h3_marker] = ACTIONS(1902), + [sym_atx_h4_marker] = ACTIONS(1902), + [sym_atx_h5_marker] = ACTIONS(1902), + [sym_atx_h6_marker] = ACTIONS(1902), [sym__thematic_break] = ACTIONS(41), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), @@ -41975,7 +42178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(107), + [sym__minus_metadata_start] = ACTIONS(57), [sym__pipe_table_start] = ACTIONS(59), [sym__fenced_div_start] = ACTIONS(61), [sym_ref_id_specifier] = ACTIONS(63), @@ -42010,70 +42213,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__caption_start] = ACTIONS(109), }, [STATE(125)] = { - [sym__block_not_section] = STATE(393), - [sym_pandoc_horizontal_rule] = STATE(393), - [sym_pandoc_paragraph] = STATE(393), - [sym_inline_ref_def] = STATE(393), - [sym_caption] = STATE(393), - [sym_pipe_table] = STATE(393), - [sym__inlines] = STATE(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(393), - [sym_pandoc_list] = STATE(393), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym_minus_metadata] = STATE(474), + [sym__block_not_section] = STATE(474), + [sym_pandoc_horizontal_rule] = STATE(474), + [sym_pandoc_paragraph] = STATE(474), + [sym_inline_ref_def] = STATE(474), + [sym_caption] = STATE(474), + [sym_pipe_table] = STATE(474), + [sym__inlines] = STATE(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(474), + [sym_pandoc_list] = STATE(474), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(393), - [sym_pandoc_div] = STATE(393), - [sym_note_definition_fenced_block] = STATE(393), - [sym__newline] = STATE(393), - [sym__soft_line_break] = STATE(393), - [sym__inline_whitespace] = STATE(798), - [aux_sym_document_repeat1] = STATE(129), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(474), + [sym_pandoc_div] = STATE(474), + [sym_note_definition_fenced_block] = STATE(474), + [sym__newline] = STATE(474), + [sym__soft_line_break] = STATE(474), + [sym__inline_whitespace] = STATE(830), + [aux_sym_document_repeat1] = STATE(126), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -42086,14 +42290,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(1843), + [sym__block_close] = ACTIONS(1902), [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(1843), - [sym_atx_h2_marker] = ACTIONS(1843), - [sym_atx_h3_marker] = ACTIONS(1843), - [sym_atx_h4_marker] = ACTIONS(1843), - [sym_atx_h5_marker] = ACTIONS(1843), - [sym_atx_h6_marker] = ACTIONS(1843), + [sym_atx_h1_marker] = ACTIONS(1902), + [sym_atx_h2_marker] = ACTIONS(1902), + [sym_atx_h3_marker] = ACTIONS(1902), + [sym_atx_h4_marker] = ACTIONS(1902), + [sym_atx_h5_marker] = ACTIONS(1902), + [sym_atx_h6_marker] = ACTIONS(1902), [sym__thematic_break] = ACTIONS(139), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), @@ -42108,7 +42312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(1989), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -42139,341 +42343,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1989), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(2047), + [sym__caption_start] = ACTIONS(155), }, [STATE(126)] = { - [sym__block_not_section] = STATE(362), - [sym_pandoc_horizontal_rule] = STATE(362), - [sym_pandoc_paragraph] = STATE(362), - [sym_inline_ref_def] = STATE(362), - [sym_caption] = STATE(362), - [sym_pipe_table] = STATE(362), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(362), - [sym_pandoc_list] = STATE(362), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), - [sym__list_item_example] = STATE(157), - [sym_pandoc_code_block] = STATE(362), - [sym_pandoc_div] = STATE(362), - [sym_note_definition_fenced_block] = STATE(362), - [sym__newline] = STATE(362), - [sym__soft_line_break] = STATE(362), - [sym__inline_whitespace] = STATE(800), - [aux_sym_document_repeat1] = STATE(126), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), - [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_entity_reference] = ACTIONS(1849), - [sym_numeric_character_reference] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_BANG_LBRACK] = ACTIONS(1855), - [anon_sym_DOLLAR] = ACTIONS(1858), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1864), - [aux_sym_pandoc_str_token1] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1870), - [sym__whitespace] = ACTIONS(1991), - [sym__line_ending] = ACTIONS(1994), - [sym__soft_line_ending] = ACTIONS(1997), - [sym__block_quote_start] = ACTIONS(2000), - [sym_atx_h1_marker] = ACTIONS(1882), - [sym_atx_h2_marker] = ACTIONS(1882), - [sym_atx_h3_marker] = ACTIONS(1882), - [sym_atx_h4_marker] = ACTIONS(1882), - [sym_atx_h5_marker] = ACTIONS(1882), - [sym_atx_h6_marker] = ACTIONS(1882), - [sym__thematic_break] = ACTIONS(2003), - [sym__list_marker_minus] = ACTIONS(1890), - [sym__list_marker_plus] = ACTIONS(1893), - [sym__list_marker_star] = ACTIONS(1896), - [sym__list_marker_parenthesis] = ACTIONS(1899), - [sym__list_marker_dot] = ACTIONS(1902), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1890), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1893), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1899), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_example] = ACTIONS(1905), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1905), - [sym__fenced_code_block_start_backtick] = ACTIONS(2006), - [sym_minus_metadata] = ACTIONS(2009), - [sym__pipe_table_start] = ACTIONS(2012), - [sym__fenced_div_start] = ACTIONS(2015), - [sym_ref_id_specifier] = ACTIONS(2018), - [sym__code_span_start] = ACTIONS(1923), - [sym__html_comment] = ACTIONS(1849), - [sym__autolink] = ACTIONS(1849), - [sym__highlight_span_start] = ACTIONS(1926), - [sym__insert_span_start] = ACTIONS(1929), - [sym__delete_span_start] = ACTIONS(1932), - [sym__edit_comment_span_start] = ACTIONS(1935), - [sym__single_quote_span_open] = ACTIONS(1938), - [sym__double_quote_span_open] = ACTIONS(1941), - [sym__shortcode_open_escaped] = ACTIONS(1944), - [sym__shortcode_open] = ACTIONS(1947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1950), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1953), - [sym__cite_author_in_text] = ACTIONS(1956), - [sym__cite_suppress_author] = ACTIONS(1959), - [sym__strikeout_open] = ACTIONS(1962), - [sym__subscript_open] = ACTIONS(1965), - [sym__superscript_open] = ACTIONS(1968), - [sym__inline_note_start_token] = ACTIONS(1971), - [sym__strong_emphasis_open_star] = ACTIONS(1974), - [sym__strong_emphasis_open_underscore] = ACTIONS(1977), - [sym__emphasis_open_star] = ACTIONS(1980), - [sym__emphasis_open_underscore] = ACTIONS(1983), - [sym_inline_note_reference] = ACTIONS(1849), - [sym_html_element] = ACTIONS(1849), - [sym__pandoc_lt_str] = ACTIONS(1870), - [sym__pandoc_line_break] = ACTIONS(1849), - [sym_grid_table] = ACTIONS(2009), - [sym__caption_start] = ACTIONS(2021), - }, - [STATE(127)] = { - [sym__block_not_section] = STATE(393), - [sym_pandoc_horizontal_rule] = STATE(393), - [sym_pandoc_paragraph] = STATE(393), - [sym_inline_ref_def] = STATE(393), - [sym_caption] = STATE(393), - [sym_pipe_table] = STATE(393), - [sym__inlines] = STATE(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(393), - [sym_pandoc_list] = STATE(393), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym_minus_metadata] = STATE(474), + [sym__block_not_section] = STATE(474), + [sym_pandoc_horizontal_rule] = STATE(474), + [sym_pandoc_paragraph] = STATE(474), + [sym_inline_ref_def] = STATE(474), + [sym_caption] = STATE(474), + [sym_pipe_table] = STATE(474), + [sym__inlines] = STATE(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(474), + [sym_pandoc_list] = STATE(474), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(393), - [sym_pandoc_div] = STATE(393), - [sym_note_definition_fenced_block] = STATE(393), - [sym__newline] = STATE(393), - [sym__soft_line_break] = STATE(393), - [sym__inline_whitespace] = STATE(798), - [aux_sym_document_repeat1] = STATE(127), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(474), + [sym_pandoc_div] = STATE(474), + [sym_note_definition_fenced_block] = STATE(474), + [sym__newline] = STATE(474), + [sym__soft_line_break] = STATE(474), + [sym__inline_whitespace] = STATE(830), + [aux_sym_document_repeat1] = STATE(126), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), - [sym_entity_reference] = ACTIONS(1849), - [sym_numeric_character_reference] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_BANG_LBRACK] = ACTIONS(1855), - [anon_sym_DOLLAR] = ACTIONS(1858), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1864), - [aux_sym_pandoc_str_token1] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1870), - [sym__whitespace] = ACTIONS(2024), - [sym__line_ending] = ACTIONS(2027), - [sym__soft_line_ending] = ACTIONS(2030), - [sym__block_close] = ACTIONS(1882), - [sym__block_quote_start] = ACTIONS(2033), - [sym_atx_h1_marker] = ACTIONS(1882), - [sym_atx_h2_marker] = ACTIONS(1882), - [sym_atx_h3_marker] = ACTIONS(1882), - [sym_atx_h4_marker] = ACTIONS(1882), - [sym_atx_h5_marker] = ACTIONS(1882), - [sym_atx_h6_marker] = ACTIONS(1882), - [sym__thematic_break] = ACTIONS(2036), - [sym__list_marker_minus] = ACTIONS(1890), - [sym__list_marker_plus] = ACTIONS(1893), - [sym__list_marker_star] = ACTIONS(1896), - [sym__list_marker_parenthesis] = ACTIONS(1899), - [sym__list_marker_dot] = ACTIONS(1902), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1890), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1893), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1899), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_example] = ACTIONS(1905), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1905), - [sym__fenced_code_block_start_backtick] = ACTIONS(2039), - [sym_minus_metadata] = ACTIONS(2042), - [sym__pipe_table_start] = ACTIONS(2045), - [sym__fenced_div_start] = ACTIONS(2048), - [sym_ref_id_specifier] = ACTIONS(2051), - [sym__code_span_start] = ACTIONS(1923), - [sym__html_comment] = ACTIONS(1849), - [sym__autolink] = ACTIONS(1849), - [sym__highlight_span_start] = ACTIONS(1926), - [sym__insert_span_start] = ACTIONS(1929), - [sym__delete_span_start] = ACTIONS(1932), - [sym__edit_comment_span_start] = ACTIONS(1935), - [sym__single_quote_span_open] = ACTIONS(1938), - [sym__double_quote_span_open] = ACTIONS(1941), - [sym__shortcode_open_escaped] = ACTIONS(1944), - [sym__shortcode_open] = ACTIONS(1947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1950), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1953), - [sym__cite_author_in_text] = ACTIONS(1956), - [sym__cite_suppress_author] = ACTIONS(1959), - [sym__strikeout_open] = ACTIONS(1962), - [sym__subscript_open] = ACTIONS(1965), - [sym__superscript_open] = ACTIONS(1968), - [sym__inline_note_start_token] = ACTIONS(1971), - [sym__strong_emphasis_open_star] = ACTIONS(1974), - [sym__strong_emphasis_open_underscore] = ACTIONS(1977), - [sym__emphasis_open_star] = ACTIONS(1980), - [sym__emphasis_open_underscore] = ACTIONS(1983), - [sym_inline_note_reference] = ACTIONS(1849), - [sym_html_element] = ACTIONS(1849), - [sym__pandoc_lt_str] = ACTIONS(1870), - [sym__pandoc_line_break] = ACTIONS(1849), - [sym_grid_table] = ACTIONS(2042), - [sym__caption_start] = ACTIONS(2054), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), + [sym_entity_reference] = ACTIONS(1904), + [sym_numeric_character_reference] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_BANG_LBRACK] = ACTIONS(1910), + [anon_sym_DOLLAR] = ACTIONS(1913), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1919), + [aux_sym_pandoc_str_token1] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1925), + [sym__whitespace] = ACTIONS(2049), + [sym__line_ending] = ACTIONS(2052), + [sym__soft_line_ending] = ACTIONS(2055), + [sym__block_close] = ACTIONS(1937), + [sym__block_quote_start] = ACTIONS(2058), + [sym_atx_h1_marker] = ACTIONS(1937), + [sym_atx_h2_marker] = ACTIONS(1937), + [sym_atx_h3_marker] = ACTIONS(1937), + [sym_atx_h4_marker] = ACTIONS(1937), + [sym_atx_h5_marker] = ACTIONS(1937), + [sym_atx_h6_marker] = ACTIONS(1937), + [sym__thematic_break] = ACTIONS(2061), + [sym__list_marker_minus] = ACTIONS(1945), + [sym__list_marker_plus] = ACTIONS(1948), + [sym__list_marker_star] = ACTIONS(1951), + [sym__list_marker_parenthesis] = ACTIONS(1954), + [sym__list_marker_dot] = ACTIONS(1957), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1945), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1948), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1951), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1954), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1957), + [sym__list_marker_example] = ACTIONS(1960), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1960), + [sym__fenced_code_block_start_backtick] = ACTIONS(2064), + [sym__minus_metadata_start] = ACTIONS(2067), + [sym__pipe_table_start] = ACTIONS(2070), + [sym__fenced_div_start] = ACTIONS(2073), + [sym_ref_id_specifier] = ACTIONS(2076), + [sym__code_span_start] = ACTIONS(1978), + [sym__html_comment] = ACTIONS(1904), + [sym__autolink] = ACTIONS(1904), + [sym__highlight_span_start] = ACTIONS(1981), + [sym__insert_span_start] = ACTIONS(1984), + [sym__delete_span_start] = ACTIONS(1987), + [sym__edit_comment_span_start] = ACTIONS(1990), + [sym__single_quote_span_open] = ACTIONS(1993), + [sym__double_quote_span_open] = ACTIONS(1996), + [sym__shortcode_open_escaped] = ACTIONS(1999), + [sym__shortcode_open] = ACTIONS(2002), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2005), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2008), + [sym__cite_author_in_text] = ACTIONS(2011), + [sym__cite_suppress_author] = ACTIONS(2014), + [sym__strikeout_open] = ACTIONS(2017), + [sym__subscript_open] = ACTIONS(2020), + [sym__superscript_open] = ACTIONS(2023), + [sym__inline_note_start_token] = ACTIONS(2026), + [sym__strong_emphasis_open_star] = ACTIONS(2029), + [sym__strong_emphasis_open_underscore] = ACTIONS(2032), + [sym__emphasis_open_star] = ACTIONS(2035), + [sym__emphasis_open_underscore] = ACTIONS(2038), + [sym_inline_note_reference] = ACTIONS(1904), + [sym_html_element] = ACTIONS(1904), + [sym__pandoc_lt_str] = ACTIONS(1925), + [sym__pandoc_line_break] = ACTIONS(1904), + [sym_grid_table] = ACTIONS(2079), + [sym__caption_start] = ACTIONS(2082), }, - [STATE(128)] = { - [sym__block_not_section] = STATE(362), - [sym_pandoc_horizontal_rule] = STATE(362), - [sym_pandoc_paragraph] = STATE(362), - [sym_inline_ref_def] = STATE(362), - [sym_caption] = STATE(362), - [sym_pipe_table] = STATE(362), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(362), - [sym_pandoc_list] = STATE(362), - [sym__list_plus] = STATE(396), - [sym__list_minus] = STATE(396), - [sym__list_star] = STATE(396), - [sym__list_dot] = STATE(396), - [sym__list_parenthesis] = STATE(396), - [sym__list_example] = STATE(396), - [sym_list_marker_plus] = STATE(19), - [sym_list_marker_minus] = STATE(6), - [sym_list_marker_star] = STATE(9), + [STATE(127)] = { + [sym_minus_metadata] = STATE(477), + [sym__block_not_section] = STATE(477), + [sym_pandoc_horizontal_rule] = STATE(477), + [sym_pandoc_paragraph] = STATE(477), + [sym_inline_ref_def] = STATE(477), + [sym_caption] = STATE(477), + [sym_pipe_table] = STATE(477), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(477), + [sym_pandoc_list] = STATE(477), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), [sym_list_marker_dot] = STATE(3), - [sym_list_marker_parenthesis] = STATE(4), - [sym_list_marker_example] = STATE(5), - [sym__list_item_plus] = STATE(160), - [sym__list_item_minus] = STATE(170), - [sym__list_item_star] = STATE(158), - [sym__list_item_dot] = STATE(156), - [sym__list_item_parenthesis] = STATE(177), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), [sym__list_item_example] = STATE(157), - [sym_pandoc_code_block] = STATE(362), - [sym_pandoc_div] = STATE(362), - [sym_note_definition_fenced_block] = STATE(362), - [sym__newline] = STATE(362), - [sym__soft_line_break] = STATE(362), - [sym__inline_whitespace] = STATE(800), + [sym_pandoc_code_block] = STATE(477), + [sym_pandoc_div] = STATE(477), + [sym_note_definition_fenced_block] = STATE(477), + [sym__newline] = STATE(477), + [sym__soft_line_break] = STATE(477), + [sym__inline_whitespace] = STATE(804), [aux_sym_document_repeat1] = STATE(124), - [aux_sym__list_plus_repeat1] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(170), - [aux_sym__list_star_repeat1] = STATE(158), - [aux_sym__list_dot_repeat1] = STATE(156), - [aux_sym__list_parenthesis_repeat1] = STATE(177), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), [aux_sym__list_example_repeat1] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(1843), + [ts_builtin_sym_end] = ACTIONS(1898), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -42487,12 +42560,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(23), [sym__soft_line_ending] = ACTIONS(25), [sym__block_quote_start] = ACTIONS(27), - [sym_atx_h1_marker] = ACTIONS(1843), - [sym_atx_h2_marker] = ACTIONS(1843), - [sym_atx_h3_marker] = ACTIONS(1843), - [sym_atx_h4_marker] = ACTIONS(1843), - [sym_atx_h5_marker] = ACTIONS(1843), - [sym_atx_h6_marker] = ACTIONS(1843), + [sym_atx_h1_marker] = ACTIONS(1898), + [sym_atx_h2_marker] = ACTIONS(1898), + [sym_atx_h3_marker] = ACTIONS(1898), + [sym_atx_h4_marker] = ACTIONS(1898), + [sym_atx_h5_marker] = ACTIONS(1898), + [sym_atx_h6_marker] = ACTIONS(1898), [sym__thematic_break] = ACTIONS(41), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), @@ -42507,7 +42580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(55), - [sym_minus_metadata] = ACTIONS(107), + [sym__minus_metadata_start] = ACTIONS(57), [sym__pipe_table_start] = ACTIONS(59), [sym__fenced_div_start] = ACTIONS(61), [sym_ref_id_specifier] = ACTIONS(63), @@ -42541,71 +42614,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(107), [sym__caption_start] = ACTIONS(109), }, + [STATE(128)] = { + [sym_minus_metadata] = STATE(477), + [sym__block_not_section] = STATE(477), + [sym_pandoc_horizontal_rule] = STATE(477), + [sym_pandoc_paragraph] = STATE(477), + [sym_inline_ref_def] = STATE(477), + [sym_caption] = STATE(477), + [sym_pipe_table] = STATE(477), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(477), + [sym_pandoc_list] = STATE(477), + [sym__list_plus] = STATE(490), + [sym__list_minus] = STATE(490), + [sym__list_star] = STATE(490), + [sym__list_dot] = STATE(490), + [sym__list_parenthesis] = STATE(490), + [sym__list_example] = STATE(490), + [sym_list_marker_plus] = STATE(2), + [sym_list_marker_minus] = STATE(7), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(176), + [sym__list_item_minus] = STATE(177), + [sym__list_item_star] = STATE(154), + [sym__list_item_dot] = STATE(155), + [sym__list_item_parenthesis] = STATE(156), + [sym__list_item_example] = STATE(157), + [sym_pandoc_code_block] = STATE(477), + [sym_pandoc_div] = STATE(477), + [sym_note_definition_fenced_block] = STATE(477), + [sym__newline] = STATE(477), + [sym__soft_line_break] = STATE(477), + [sym__inline_whitespace] = STATE(804), + [aux_sym_document_repeat1] = STATE(128), + [aux_sym__list_plus_repeat1] = STATE(176), + [aux_sym__list_minus_repeat1] = STATE(177), + [aux_sym__list_star_repeat1] = STATE(154), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__list_parenthesis_repeat1] = STATE(156), + [aux_sym__list_example_repeat1] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(1937), + [sym_entity_reference] = ACTIONS(1904), + [sym_numeric_character_reference] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_BANG_LBRACK] = ACTIONS(1910), + [anon_sym_DOLLAR] = ACTIONS(1913), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1919), + [aux_sym_pandoc_str_token1] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1925), + [sym__whitespace] = ACTIONS(2085), + [sym__line_ending] = ACTIONS(2088), + [sym__soft_line_ending] = ACTIONS(2091), + [sym__block_quote_start] = ACTIONS(2094), + [sym_atx_h1_marker] = ACTIONS(1937), + [sym_atx_h2_marker] = ACTIONS(1937), + [sym_atx_h3_marker] = ACTIONS(1937), + [sym_atx_h4_marker] = ACTIONS(1937), + [sym_atx_h5_marker] = ACTIONS(1937), + [sym_atx_h6_marker] = ACTIONS(1937), + [sym__thematic_break] = ACTIONS(2097), + [sym__list_marker_minus] = ACTIONS(1945), + [sym__list_marker_plus] = ACTIONS(1948), + [sym__list_marker_star] = ACTIONS(1951), + [sym__list_marker_parenthesis] = ACTIONS(1954), + [sym__list_marker_dot] = ACTIONS(1957), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1945), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1948), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1951), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1954), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1957), + [sym__list_marker_example] = ACTIONS(1960), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1960), + [sym__fenced_code_block_start_backtick] = ACTIONS(2100), + [sym__minus_metadata_start] = ACTIONS(2103), + [sym__pipe_table_start] = ACTIONS(2106), + [sym__fenced_div_start] = ACTIONS(2109), + [sym_ref_id_specifier] = ACTIONS(2112), + [sym__code_span_start] = ACTIONS(1978), + [sym__html_comment] = ACTIONS(1904), + [sym__autolink] = ACTIONS(1904), + [sym__highlight_span_start] = ACTIONS(1981), + [sym__insert_span_start] = ACTIONS(1984), + [sym__delete_span_start] = ACTIONS(1987), + [sym__edit_comment_span_start] = ACTIONS(1990), + [sym__single_quote_span_open] = ACTIONS(1993), + [sym__double_quote_span_open] = ACTIONS(1996), + [sym__shortcode_open_escaped] = ACTIONS(1999), + [sym__shortcode_open] = ACTIONS(2002), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2005), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2008), + [sym__cite_author_in_text] = ACTIONS(2011), + [sym__cite_suppress_author] = ACTIONS(2014), + [sym__strikeout_open] = ACTIONS(2017), + [sym__subscript_open] = ACTIONS(2020), + [sym__superscript_open] = ACTIONS(2023), + [sym__inline_note_start_token] = ACTIONS(2026), + [sym__strong_emphasis_open_star] = ACTIONS(2029), + [sym__strong_emphasis_open_underscore] = ACTIONS(2032), + [sym__emphasis_open_star] = ACTIONS(2035), + [sym__emphasis_open_underscore] = ACTIONS(2038), + [sym_inline_note_reference] = ACTIONS(1904), + [sym_html_element] = ACTIONS(1904), + [sym__pandoc_lt_str] = ACTIONS(1925), + [sym__pandoc_line_break] = ACTIONS(1904), + [sym_grid_table] = ACTIONS(2115), + [sym__caption_start] = ACTIONS(2118), + }, [STATE(129)] = { - [sym__block_not_section] = STATE(393), - [sym_pandoc_horizontal_rule] = STATE(393), - [sym_pandoc_paragraph] = STATE(393), - [sym_inline_ref_def] = STATE(393), - [sym_caption] = STATE(393), - [sym_pipe_table] = STATE(393), - [sym__inlines] = STATE(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym_pandoc_block_quote] = STATE(393), - [sym_pandoc_list] = STATE(393), - [sym__list_plus] = STATE(398), - [sym__list_minus] = STATE(398), - [sym__list_star] = STATE(398), - [sym__list_dot] = STATE(398), - [sym__list_parenthesis] = STATE(398), - [sym__list_example] = STATE(398), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(8), - [sym_list_marker_star] = STATE(2), - [sym_list_marker_dot] = STATE(10), - [sym_list_marker_parenthesis] = STATE(11), - [sym_list_marker_example] = STATE(12), + [sym_minus_metadata] = STATE(474), + [sym__block_not_section] = STATE(474), + [sym_pandoc_horizontal_rule] = STATE(474), + [sym_pandoc_paragraph] = STATE(474), + [sym_inline_ref_def] = STATE(474), + [sym_caption] = STATE(474), + [sym_pipe_table] = STATE(474), + [sym__inlines] = STATE(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym_pandoc_block_quote] = STATE(474), + [sym_pandoc_list] = STATE(474), + [sym__list_plus] = STATE(498), + [sym__list_minus] = STATE(498), + [sym__list_star] = STATE(498), + [sym__list_dot] = STATE(498), + [sym__list_parenthesis] = STATE(498), + [sym__list_example] = STATE(498), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(12), + [sym_list_marker_example] = STATE(13), [sym__list_item_plus] = STATE(159), - [sym__list_item_minus] = STATE(161), - [sym__list_item_star] = STATE(162), - [sym__list_item_dot] = STATE(163), - [sym__list_item_parenthesis] = STATE(164), - [sym__list_item_example] = STATE(165), - [sym_pandoc_code_block] = STATE(393), - [sym_pandoc_div] = STATE(393), - [sym_note_definition_fenced_block] = STATE(393), - [sym__newline] = STATE(393), - [sym__soft_line_break] = STATE(393), - [sym__inline_whitespace] = STATE(798), - [aux_sym_document_repeat1] = STATE(127), + [sym__list_item_minus] = STATE(160), + [sym__list_item_star] = STATE(168), + [sym__list_item_dot] = STATE(175), + [sym__list_item_parenthesis] = STATE(162), + [sym__list_item_example] = STATE(158), + [sym_pandoc_code_block] = STATE(474), + [sym_pandoc_div] = STATE(474), + [sym_note_definition_fenced_block] = STATE(474), + [sym__newline] = STATE(474), + [sym__soft_line_break] = STATE(474), + [sym__inline_whitespace] = STATE(830), + [aux_sym_document_repeat1] = STATE(125), [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__list_minus_repeat1] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(163), - [aux_sym__list_parenthesis_repeat1] = STATE(164), - [aux_sym__list_example_repeat1] = STATE(165), + [aux_sym__list_minus_repeat1] = STATE(160), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__list_dot_repeat1] = STATE(175), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [aux_sym__list_example_repeat1] = STATE(158), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -42618,14 +42826,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(115), [sym__line_ending] = ACTIONS(117), [sym__soft_line_ending] = ACTIONS(119), - [sym__block_close] = ACTIONS(1847), + [sym__block_close] = ACTIONS(1898), [sym__block_quote_start] = ACTIONS(125), - [sym_atx_h1_marker] = ACTIONS(1847), - [sym_atx_h2_marker] = ACTIONS(1847), - [sym_atx_h3_marker] = ACTIONS(1847), - [sym_atx_h4_marker] = ACTIONS(1847), - [sym_atx_h5_marker] = ACTIONS(1847), - [sym_atx_h6_marker] = ACTIONS(1847), + [sym_atx_h1_marker] = ACTIONS(1898), + [sym_atx_h2_marker] = ACTIONS(1898), + [sym_atx_h3_marker] = ACTIONS(1898), + [sym_atx_h4_marker] = ACTIONS(1898), + [sym_atx_h5_marker] = ACTIONS(1898), + [sym_atx_h6_marker] = ACTIONS(1898), [sym__thematic_break] = ACTIONS(139), [sym__list_marker_minus] = ACTIONS(43), [sym__list_marker_plus] = ACTIONS(45), @@ -42640,7 +42848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), [sym__fenced_code_block_start_backtick] = ACTIONS(141), - [sym_minus_metadata] = ACTIONS(1989), + [sym__minus_metadata_start] = ACTIONS(145), [sym__pipe_table_start] = ACTIONS(147), [sym__fenced_div_start] = ACTIONS(149), [sym_ref_id_specifier] = ACTIONS(151), @@ -42671,962 +42879,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(5), [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), - [sym_grid_table] = ACTIONS(1989), - [sym__caption_start] = ACTIONS(153), + [sym_grid_table] = ACTIONS(2047), + [sym__caption_start] = ACTIONS(155), }, [STATE(130)] = { - [sym_list_marker_dot] = STATE(16), - [sym__list_item_dot] = STATE(130), - [aux_sym__list_dot_repeat1] = STATE(130), - [sym_entity_reference] = ACTIONS(2057), - [sym_numeric_character_reference] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_BANG_LBRACK] = ACTIONS(2057), - [anon_sym_DOLLAR] = ACTIONS(2059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [aux_sym_pandoc_str_token1] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(2057), - [sym__whitespace] = ACTIONS(2057), - [sym__line_ending] = ACTIONS(2057), - [sym__soft_line_ending] = ACTIONS(2057), - [sym__block_close] = ACTIONS(2057), - [sym__block_quote_start] = ACTIONS(2057), - [sym_atx_h1_marker] = ACTIONS(2057), - [sym_atx_h2_marker] = ACTIONS(2057), - [sym_atx_h3_marker] = ACTIONS(2057), - [sym_atx_h4_marker] = ACTIONS(2057), - [sym_atx_h5_marker] = ACTIONS(2057), - [sym_atx_h6_marker] = ACTIONS(2057), - [sym__thematic_break] = ACTIONS(2057), - [sym__list_marker_minus] = ACTIONS(2057), - [sym__list_marker_plus] = ACTIONS(2057), - [sym__list_marker_star] = ACTIONS(2057), - [sym__list_marker_parenthesis] = ACTIONS(2057), - [sym__list_marker_dot] = ACTIONS(2061), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2057), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2057), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2057), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2057), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2061), - [sym__list_marker_example] = ACTIONS(2057), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2057), - [sym__fenced_code_block_start_backtick] = ACTIONS(2057), - [sym_minus_metadata] = ACTIONS(2057), - [sym__pipe_table_start] = ACTIONS(2057), - [sym__fenced_div_start] = ACTIONS(2057), - [sym__fenced_div_end] = ACTIONS(2057), - [sym_ref_id_specifier] = ACTIONS(2057), - [sym__code_span_start] = ACTIONS(2057), - [sym__html_comment] = ACTIONS(2057), - [sym__autolink] = ACTIONS(2057), - [sym__highlight_span_start] = ACTIONS(2057), - [sym__insert_span_start] = ACTIONS(2057), - [sym__delete_span_start] = ACTIONS(2057), - [sym__edit_comment_span_start] = ACTIONS(2057), - [sym__single_quote_span_open] = ACTIONS(2057), - [sym__double_quote_span_open] = ACTIONS(2057), - [sym__shortcode_open_escaped] = ACTIONS(2057), - [sym__shortcode_open] = ACTIONS(2057), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2057), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2057), - [sym__cite_author_in_text] = ACTIONS(2057), - [sym__cite_suppress_author] = ACTIONS(2057), - [sym__strikeout_open] = ACTIONS(2057), - [sym__subscript_open] = ACTIONS(2057), - [sym__superscript_open] = ACTIONS(2057), - [sym__inline_note_start_token] = ACTIONS(2057), - [sym__strong_emphasis_open_star] = ACTIONS(2057), - [sym__strong_emphasis_open_underscore] = ACTIONS(2057), - [sym__emphasis_open_star] = ACTIONS(2057), - [sym__emphasis_open_underscore] = ACTIONS(2057), - [sym_inline_note_reference] = ACTIONS(2057), - [sym_html_element] = ACTIONS(2057), - [sym__pandoc_lt_str] = ACTIONS(2057), - [sym__pandoc_line_break] = ACTIONS(2057), - [sym_grid_table] = ACTIONS(2057), - [sym__caption_start] = ACTIONS(2057), - }, - [STATE(131)] = { - [sym_entity_reference] = ACTIONS(2064), - [sym_numeric_character_reference] = ACTIONS(2064), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_BANG_LBRACK] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2066), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2064), - [anon_sym_LBRACE] = ACTIONS(2064), - [aux_sym_pandoc_str_token1] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2064), - [sym_task_list_marker_checked] = ACTIONS(2064), - [sym_task_list_marker_unchecked] = ACTIONS(2064), - [sym__whitespace] = ACTIONS(2064), - [sym__line_ending] = ACTIONS(2064), - [sym__soft_line_ending] = ACTIONS(2064), - [sym__block_close] = ACTIONS(2064), - [sym_block_continuation] = ACTIONS(2064), - [sym__block_quote_start] = ACTIONS(2064), - [sym_atx_h1_marker] = ACTIONS(2064), - [sym_atx_h2_marker] = ACTIONS(2064), - [sym_atx_h3_marker] = ACTIONS(2064), - [sym_atx_h4_marker] = ACTIONS(2064), - [sym_atx_h5_marker] = ACTIONS(2064), - [sym_atx_h6_marker] = ACTIONS(2064), - [sym__thematic_break] = ACTIONS(2064), - [sym__list_marker_minus] = ACTIONS(2064), - [sym__list_marker_plus] = ACTIONS(2064), - [sym__list_marker_star] = ACTIONS(2064), - [sym__list_marker_parenthesis] = ACTIONS(2064), - [sym__list_marker_dot] = ACTIONS(2064), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2064), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2064), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2064), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2064), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2064), - [sym__list_marker_example] = ACTIONS(2064), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2064), - [sym__fenced_code_block_start_backtick] = ACTIONS(2064), - [sym__blank_line_start] = ACTIONS(2064), - [sym_minus_metadata] = ACTIONS(2064), - [sym__pipe_table_start] = ACTIONS(2064), - [sym__fenced_div_start] = ACTIONS(2064), - [sym_ref_id_specifier] = ACTIONS(2064), - [sym__code_span_start] = ACTIONS(2064), - [sym__html_comment] = ACTIONS(2064), - [sym__autolink] = ACTIONS(2064), - [sym__highlight_span_start] = ACTIONS(2064), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2064), - [sym__edit_comment_span_start] = ACTIONS(2064), - [sym__single_quote_span_open] = ACTIONS(2064), - [sym__double_quote_span_open] = ACTIONS(2064), - [sym__shortcode_open_escaped] = ACTIONS(2064), - [sym__shortcode_open] = ACTIONS(2064), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2064), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2064), - [sym__cite_author_in_text] = ACTIONS(2064), - [sym__cite_suppress_author] = ACTIONS(2064), - [sym__strikeout_open] = ACTIONS(2064), - [sym__subscript_open] = ACTIONS(2064), - [sym__superscript_open] = ACTIONS(2064), - [sym__inline_note_start_token] = ACTIONS(2064), - [sym__strong_emphasis_open_star] = ACTIONS(2064), - [sym__strong_emphasis_open_underscore] = ACTIONS(2064), - [sym__emphasis_open_star] = ACTIONS(2064), - [sym__emphasis_open_underscore] = ACTIONS(2064), - [sym_inline_note_reference] = ACTIONS(2064), - [sym_html_element] = ACTIONS(2064), - [sym__pandoc_lt_str] = ACTIONS(2064), - [sym__pandoc_line_break] = ACTIONS(2064), - [sym_grid_table] = ACTIONS(2064), - [sym__caption_start] = ACTIONS(2064), - }, - [STATE(132)] = { - [sym_entity_reference] = ACTIONS(2068), - [sym_numeric_character_reference] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_BANG_LBRACK] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2070), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2068), - [anon_sym_LBRACE] = ACTIONS(2068), - [aux_sym_pandoc_str_token1] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2068), - [sym_task_list_marker_checked] = ACTIONS(2068), - [sym_task_list_marker_unchecked] = ACTIONS(2068), - [sym__whitespace] = ACTIONS(2068), - [sym__line_ending] = ACTIONS(2068), - [sym__soft_line_ending] = ACTIONS(2068), - [sym__block_close] = ACTIONS(2068), - [sym_block_continuation] = ACTIONS(2068), - [sym__block_quote_start] = ACTIONS(2068), - [sym_atx_h1_marker] = ACTIONS(2068), - [sym_atx_h2_marker] = ACTIONS(2068), - [sym_atx_h3_marker] = ACTIONS(2068), - [sym_atx_h4_marker] = ACTIONS(2068), - [sym_atx_h5_marker] = ACTIONS(2068), - [sym_atx_h6_marker] = ACTIONS(2068), - [sym__thematic_break] = ACTIONS(2068), - [sym__list_marker_minus] = ACTIONS(2068), - [sym__list_marker_plus] = ACTIONS(2068), - [sym__list_marker_star] = ACTIONS(2068), - [sym__list_marker_parenthesis] = ACTIONS(2068), - [sym__list_marker_dot] = ACTIONS(2068), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2068), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2068), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2068), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2068), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2068), - [sym__list_marker_example] = ACTIONS(2068), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2068), - [sym__fenced_code_block_start_backtick] = ACTIONS(2068), - [sym__blank_line_start] = ACTIONS(2068), - [sym_minus_metadata] = ACTIONS(2068), - [sym__pipe_table_start] = ACTIONS(2068), - [sym__fenced_div_start] = ACTIONS(2068), - [sym_ref_id_specifier] = ACTIONS(2068), - [sym__code_span_start] = ACTIONS(2068), - [sym__html_comment] = ACTIONS(2068), - [sym__autolink] = ACTIONS(2068), - [sym__highlight_span_start] = ACTIONS(2068), - [sym__insert_span_start] = ACTIONS(2068), - [sym__delete_span_start] = ACTIONS(2068), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2068), - [sym__double_quote_span_open] = ACTIONS(2068), - [sym__shortcode_open_escaped] = ACTIONS(2068), - [sym__shortcode_open] = ACTIONS(2068), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2068), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2068), - [sym__cite_author_in_text] = ACTIONS(2068), - [sym__cite_suppress_author] = ACTIONS(2068), - [sym__strikeout_open] = ACTIONS(2068), - [sym__subscript_open] = ACTIONS(2068), - [sym__superscript_open] = ACTIONS(2068), - [sym__inline_note_start_token] = ACTIONS(2068), - [sym__strong_emphasis_open_star] = ACTIONS(2068), - [sym__strong_emphasis_open_underscore] = ACTIONS(2068), - [sym__emphasis_open_star] = ACTIONS(2068), - [sym__emphasis_open_underscore] = ACTIONS(2068), - [sym_inline_note_reference] = ACTIONS(2068), - [sym_html_element] = ACTIONS(2068), - [sym__pandoc_lt_str] = ACTIONS(2068), - [sym__pandoc_line_break] = ACTIONS(2068), - [sym_grid_table] = ACTIONS(2068), - [sym__caption_start] = ACTIONS(2068), - }, - [STATE(133)] = { - [sym_entity_reference] = ACTIONS(2072), - [sym_numeric_character_reference] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2074), - [anon_sym_BANG_LBRACK] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(2074), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2072), - [aux_sym_pandoc_str_token1] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2072), - [sym_task_list_marker_checked] = ACTIONS(2072), - [sym_task_list_marker_unchecked] = ACTIONS(2072), - [sym__whitespace] = ACTIONS(2072), - [sym__line_ending] = ACTIONS(2072), - [sym__soft_line_ending] = ACTIONS(2072), - [sym__block_close] = ACTIONS(2072), - [sym_block_continuation] = ACTIONS(2072), - [sym__block_quote_start] = ACTIONS(2072), - [sym_atx_h1_marker] = ACTIONS(2072), - [sym_atx_h2_marker] = ACTIONS(2072), - [sym_atx_h3_marker] = ACTIONS(2072), - [sym_atx_h4_marker] = ACTIONS(2072), - [sym_atx_h5_marker] = ACTIONS(2072), - [sym_atx_h6_marker] = ACTIONS(2072), - [sym__thematic_break] = ACTIONS(2072), - [sym__list_marker_minus] = ACTIONS(2072), - [sym__list_marker_plus] = ACTIONS(2072), - [sym__list_marker_star] = ACTIONS(2072), - [sym__list_marker_parenthesis] = ACTIONS(2072), - [sym__list_marker_dot] = ACTIONS(2072), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2072), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2072), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2072), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2072), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2072), - [sym__list_marker_example] = ACTIONS(2072), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2072), - [sym__fenced_code_block_start_backtick] = ACTIONS(2072), - [sym__blank_line_start] = ACTIONS(2072), - [sym_minus_metadata] = ACTIONS(2072), - [sym__pipe_table_start] = ACTIONS(2072), - [sym__fenced_div_start] = ACTIONS(2072), - [sym_ref_id_specifier] = ACTIONS(2072), - [sym__code_span_start] = ACTIONS(2072), - [sym__html_comment] = ACTIONS(2072), - [sym__autolink] = ACTIONS(2072), - [sym__highlight_span_start] = ACTIONS(2072), - [sym__insert_span_start] = ACTIONS(2072), - [sym__delete_span_start] = ACTIONS(2072), - [sym__edit_comment_span_start] = ACTIONS(2072), - [sym__single_quote_span_open] = ACTIONS(2072), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2072), - [sym__shortcode_open] = ACTIONS(2072), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2072), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2072), - [sym__cite_author_in_text] = ACTIONS(2072), - [sym__cite_suppress_author] = ACTIONS(2072), - [sym__strikeout_open] = ACTIONS(2072), - [sym__subscript_open] = ACTIONS(2072), - [sym__superscript_open] = ACTIONS(2072), - [sym__inline_note_start_token] = ACTIONS(2072), - [sym__strong_emphasis_open_star] = ACTIONS(2072), - [sym__strong_emphasis_open_underscore] = ACTIONS(2072), - [sym__emphasis_open_star] = ACTIONS(2072), - [sym__emphasis_open_underscore] = ACTIONS(2072), - [sym_inline_note_reference] = ACTIONS(2072), - [sym_html_element] = ACTIONS(2072), - [sym__pandoc_lt_str] = ACTIONS(2072), - [sym__pandoc_line_break] = ACTIONS(2072), - [sym_grid_table] = ACTIONS(2072), - [sym__caption_start] = ACTIONS(2072), - }, - [STATE(134)] = { - [sym_list_marker_plus] = STATE(13), - [sym__list_item_plus] = STATE(140), - [aux_sym__list_plus_repeat1] = STATE(140), - [sym_entity_reference] = ACTIONS(2076), - [sym_numeric_character_reference] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_BANG_LBRACK] = ACTIONS(2076), - [anon_sym_DOLLAR] = ACTIONS(2078), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [aux_sym_pandoc_str_token1] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2076), - [sym__whitespace] = ACTIONS(2076), - [sym__line_ending] = ACTIONS(2076), - [sym__soft_line_ending] = ACTIONS(2076), - [sym__block_close] = ACTIONS(2076), - [sym__block_quote_start] = ACTIONS(2076), - [sym_atx_h1_marker] = ACTIONS(2076), - [sym_atx_h2_marker] = ACTIONS(2076), - [sym_atx_h3_marker] = ACTIONS(2076), - [sym_atx_h4_marker] = ACTIONS(2076), - [sym_atx_h5_marker] = ACTIONS(2076), - [sym_atx_h6_marker] = ACTIONS(2076), - [sym__thematic_break] = ACTIONS(2076), - [sym__list_marker_minus] = ACTIONS(2076), - [sym__list_marker_plus] = ACTIONS(45), - [sym__list_marker_star] = ACTIONS(2076), - [sym__list_marker_parenthesis] = ACTIONS(2076), - [sym__list_marker_dot] = ACTIONS(2076), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(45), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_example] = ACTIONS(2076), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2076), - [sym__fenced_code_block_start_backtick] = ACTIONS(2076), - [sym_minus_metadata] = ACTIONS(2076), - [sym__pipe_table_start] = ACTIONS(2076), - [sym__fenced_div_start] = ACTIONS(2076), - [sym__fenced_div_end] = ACTIONS(2076), - [sym_ref_id_specifier] = ACTIONS(2076), - [sym__code_span_start] = ACTIONS(2076), - [sym__html_comment] = ACTIONS(2076), - [sym__autolink] = ACTIONS(2076), - [sym__highlight_span_start] = ACTIONS(2076), - [sym__insert_span_start] = ACTIONS(2076), - [sym__delete_span_start] = ACTIONS(2076), - [sym__edit_comment_span_start] = ACTIONS(2076), - [sym__single_quote_span_open] = ACTIONS(2076), - [sym__double_quote_span_open] = ACTIONS(2076), - [sym__shortcode_open_escaped] = ACTIONS(2076), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2076), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2076), - [sym__cite_author_in_text] = ACTIONS(2076), - [sym__cite_suppress_author] = ACTIONS(2076), - [sym__strikeout_open] = ACTIONS(2076), - [sym__subscript_open] = ACTIONS(2076), - [sym__superscript_open] = ACTIONS(2076), - [sym__inline_note_start_token] = ACTIONS(2076), - [sym__strong_emphasis_open_star] = ACTIONS(2076), - [sym__strong_emphasis_open_underscore] = ACTIONS(2076), - [sym__emphasis_open_star] = ACTIONS(2076), - [sym__emphasis_open_underscore] = ACTIONS(2076), - [sym_inline_note_reference] = ACTIONS(2076), - [sym_html_element] = ACTIONS(2076), - [sym__pandoc_lt_str] = ACTIONS(2076), - [sym__pandoc_line_break] = ACTIONS(2076), - [sym_grid_table] = ACTIONS(2076), - [sym__caption_start] = ACTIONS(2076), - }, - [STATE(135)] = { - [sym_list_marker_minus] = STATE(14), - [sym__list_item_minus] = STATE(141), - [aux_sym__list_minus_repeat1] = STATE(141), - [sym_entity_reference] = ACTIONS(2080), - [sym_numeric_character_reference] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_BANG_LBRACK] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(2082), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2080), - [aux_sym_pandoc_str_token1] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2080), - [sym__whitespace] = ACTIONS(2080), - [sym__line_ending] = ACTIONS(2080), - [sym__soft_line_ending] = ACTIONS(2080), - [sym__block_close] = ACTIONS(2080), - [sym__block_quote_start] = ACTIONS(2080), - [sym_atx_h1_marker] = ACTIONS(2080), - [sym_atx_h2_marker] = ACTIONS(2080), - [sym_atx_h3_marker] = ACTIONS(2080), - [sym_atx_h4_marker] = ACTIONS(2080), - [sym_atx_h5_marker] = ACTIONS(2080), - [sym_atx_h6_marker] = ACTIONS(2080), - [sym__thematic_break] = ACTIONS(2080), - [sym__list_marker_minus] = ACTIONS(43), - [sym__list_marker_plus] = ACTIONS(2080), - [sym__list_marker_star] = ACTIONS(2080), - [sym__list_marker_parenthesis] = ACTIONS(2080), - [sym__list_marker_dot] = ACTIONS(2080), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(43), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_example] = ACTIONS(2080), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2080), - [sym__fenced_code_block_start_backtick] = ACTIONS(2080), - [sym_minus_metadata] = ACTIONS(2080), - [sym__pipe_table_start] = ACTIONS(2080), - [sym__fenced_div_start] = ACTIONS(2080), - [sym__fenced_div_end] = ACTIONS(2080), - [sym_ref_id_specifier] = ACTIONS(2080), - [sym__code_span_start] = ACTIONS(2080), - [sym__html_comment] = ACTIONS(2080), - [sym__autolink] = ACTIONS(2080), - [sym__highlight_span_start] = ACTIONS(2080), - [sym__insert_span_start] = ACTIONS(2080), - [sym__delete_span_start] = ACTIONS(2080), - [sym__edit_comment_span_start] = ACTIONS(2080), - [sym__single_quote_span_open] = ACTIONS(2080), - [sym__double_quote_span_open] = ACTIONS(2080), - [sym__shortcode_open_escaped] = ACTIONS(2080), - [sym__shortcode_open] = ACTIONS(2080), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2080), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2080), - [sym__cite_suppress_author] = ACTIONS(2080), - [sym__strikeout_open] = ACTIONS(2080), - [sym__subscript_open] = ACTIONS(2080), - [sym__superscript_open] = ACTIONS(2080), - [sym__inline_note_start_token] = ACTIONS(2080), - [sym__strong_emphasis_open_star] = ACTIONS(2080), - [sym__strong_emphasis_open_underscore] = ACTIONS(2080), - [sym__emphasis_open_star] = ACTIONS(2080), - [sym__emphasis_open_underscore] = ACTIONS(2080), - [sym_inline_note_reference] = ACTIONS(2080), - [sym_html_element] = ACTIONS(2080), - [sym__pandoc_lt_str] = ACTIONS(2080), - [sym__pandoc_line_break] = ACTIONS(2080), - [sym_grid_table] = ACTIONS(2080), - [sym__caption_start] = ACTIONS(2080), - }, - [STATE(136)] = { - [sym_list_marker_star] = STATE(15), - [sym__list_item_star] = STATE(142), - [aux_sym__list_star_repeat1] = STATE(142), - [sym_entity_reference] = ACTIONS(2084), - [sym_numeric_character_reference] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_BANG_LBRACK] = ACTIONS(2084), - [anon_sym_DOLLAR] = ACTIONS(2086), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [aux_sym_pandoc_str_token1] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2084), - [sym__whitespace] = ACTIONS(2084), - [sym__line_ending] = ACTIONS(2084), - [sym__soft_line_ending] = ACTIONS(2084), - [sym__block_close] = ACTIONS(2084), - [sym__block_quote_start] = ACTIONS(2084), - [sym_atx_h1_marker] = ACTIONS(2084), - [sym_atx_h2_marker] = ACTIONS(2084), - [sym_atx_h3_marker] = ACTIONS(2084), - [sym_atx_h4_marker] = ACTIONS(2084), - [sym_atx_h5_marker] = ACTIONS(2084), - [sym_atx_h6_marker] = ACTIONS(2084), - [sym__thematic_break] = ACTIONS(2084), - [sym__list_marker_minus] = ACTIONS(2084), - [sym__list_marker_plus] = ACTIONS(2084), - [sym__list_marker_star] = ACTIONS(47), - [sym__list_marker_parenthesis] = ACTIONS(2084), - [sym__list_marker_dot] = ACTIONS(2084), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_star_dont_interrupt] = ACTIONS(47), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_example] = ACTIONS(2084), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2084), - [sym__fenced_code_block_start_backtick] = ACTIONS(2084), - [sym_minus_metadata] = ACTIONS(2084), - [sym__pipe_table_start] = ACTIONS(2084), - [sym__fenced_div_start] = ACTIONS(2084), - [sym__fenced_div_end] = ACTIONS(2084), - [sym_ref_id_specifier] = ACTIONS(2084), - [sym__code_span_start] = ACTIONS(2084), - [sym__html_comment] = ACTIONS(2084), - [sym__autolink] = ACTIONS(2084), - [sym__highlight_span_start] = ACTIONS(2084), - [sym__insert_span_start] = ACTIONS(2084), - [sym__delete_span_start] = ACTIONS(2084), - [sym__edit_comment_span_start] = ACTIONS(2084), - [sym__single_quote_span_open] = ACTIONS(2084), - [sym__double_quote_span_open] = ACTIONS(2084), - [sym__shortcode_open_escaped] = ACTIONS(2084), - [sym__shortcode_open] = ACTIONS(2084), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2084), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2084), - [sym__cite_author_in_text] = ACTIONS(2084), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2084), - [sym__subscript_open] = ACTIONS(2084), - [sym__superscript_open] = ACTIONS(2084), - [sym__inline_note_start_token] = ACTIONS(2084), - [sym__strong_emphasis_open_star] = ACTIONS(2084), - [sym__strong_emphasis_open_underscore] = ACTIONS(2084), - [sym__emphasis_open_star] = ACTIONS(2084), - [sym__emphasis_open_underscore] = ACTIONS(2084), - [sym_inline_note_reference] = ACTIONS(2084), - [sym_html_element] = ACTIONS(2084), - [sym__pandoc_lt_str] = ACTIONS(2084), - [sym__pandoc_line_break] = ACTIONS(2084), - [sym_grid_table] = ACTIONS(2084), - [sym__caption_start] = ACTIONS(2084), - }, - [STATE(137)] = { - [sym_list_marker_dot] = STATE(16), + [sym_list_marker_dot] = STATE(17), [sym__list_item_dot] = STATE(130), [aux_sym__list_dot_repeat1] = STATE(130), - [sym_entity_reference] = ACTIONS(2088), - [sym_numeric_character_reference] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_BANG_LBRACK] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2090), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [aux_sym_pandoc_str_token1] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2088), - [sym__whitespace] = ACTIONS(2088), - [sym__line_ending] = ACTIONS(2088), - [sym__soft_line_ending] = ACTIONS(2088), - [sym__block_close] = ACTIONS(2088), - [sym__block_quote_start] = ACTIONS(2088), - [sym_atx_h1_marker] = ACTIONS(2088), - [sym_atx_h2_marker] = ACTIONS(2088), - [sym_atx_h3_marker] = ACTIONS(2088), - [sym_atx_h4_marker] = ACTIONS(2088), - [sym_atx_h5_marker] = ACTIONS(2088), - [sym_atx_h6_marker] = ACTIONS(2088), - [sym__thematic_break] = ACTIONS(2088), - [sym__list_marker_minus] = ACTIONS(2088), - [sym__list_marker_plus] = ACTIONS(2088), - [sym__list_marker_star] = ACTIONS(2088), - [sym__list_marker_parenthesis] = ACTIONS(2088), - [sym__list_marker_dot] = ACTIONS(51), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), - [sym__list_marker_example] = ACTIONS(2088), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2088), - [sym__fenced_code_block_start_backtick] = ACTIONS(2088), - [sym_minus_metadata] = ACTIONS(2088), - [sym__pipe_table_start] = ACTIONS(2088), - [sym__fenced_div_start] = ACTIONS(2088), - [sym__fenced_div_end] = ACTIONS(2088), - [sym_ref_id_specifier] = ACTIONS(2088), - [sym__code_span_start] = ACTIONS(2088), - [sym__html_comment] = ACTIONS(2088), - [sym__autolink] = ACTIONS(2088), - [sym__highlight_span_start] = ACTIONS(2088), - [sym__insert_span_start] = ACTIONS(2088), - [sym__delete_span_start] = ACTIONS(2088), - [sym__edit_comment_span_start] = ACTIONS(2088), - [sym__single_quote_span_open] = ACTIONS(2088), - [sym__double_quote_span_open] = ACTIONS(2088), - [sym__shortcode_open_escaped] = ACTIONS(2088), - [sym__shortcode_open] = ACTIONS(2088), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2088), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2088), - [sym__cite_author_in_text] = ACTIONS(2088), - [sym__cite_suppress_author] = ACTIONS(2088), - [sym__strikeout_open] = ACTIONS(2088), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2088), - [sym__inline_note_start_token] = ACTIONS(2088), - [sym__strong_emphasis_open_star] = ACTIONS(2088), - [sym__strong_emphasis_open_underscore] = ACTIONS(2088), - [sym__emphasis_open_star] = ACTIONS(2088), - [sym__emphasis_open_underscore] = ACTIONS(2088), - [sym_inline_note_reference] = ACTIONS(2088), - [sym_html_element] = ACTIONS(2088), - [sym__pandoc_lt_str] = ACTIONS(2088), - [sym__pandoc_line_break] = ACTIONS(2088), - [sym_grid_table] = ACTIONS(2088), - [sym__caption_start] = ACTIONS(2088), - }, - [STATE(138)] = { - [sym_list_marker_parenthesis] = STATE(17), - [sym__list_item_parenthesis] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(143), - [sym_entity_reference] = ACTIONS(2092), - [sym_numeric_character_reference] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_BANG_LBRACK] = ACTIONS(2092), - [anon_sym_DOLLAR] = ACTIONS(2094), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2092), - [aux_sym_pandoc_str_token1] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2092), - [sym__whitespace] = ACTIONS(2092), - [sym__line_ending] = ACTIONS(2092), - [sym__soft_line_ending] = ACTIONS(2092), - [sym__block_close] = ACTIONS(2092), - [sym__block_quote_start] = ACTIONS(2092), - [sym_atx_h1_marker] = ACTIONS(2092), - [sym_atx_h2_marker] = ACTIONS(2092), - [sym_atx_h3_marker] = ACTIONS(2092), - [sym_atx_h4_marker] = ACTIONS(2092), - [sym_atx_h5_marker] = ACTIONS(2092), - [sym_atx_h6_marker] = ACTIONS(2092), - [sym__thematic_break] = ACTIONS(2092), - [sym__list_marker_minus] = ACTIONS(2092), - [sym__list_marker_plus] = ACTIONS(2092), - [sym__list_marker_star] = ACTIONS(2092), - [sym__list_marker_parenthesis] = ACTIONS(49), - [sym__list_marker_dot] = ACTIONS(2092), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2092), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2092), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2092), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(49), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2092), - [sym__list_marker_example] = ACTIONS(2092), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2092), - [sym__fenced_code_block_start_backtick] = ACTIONS(2092), - [sym_minus_metadata] = ACTIONS(2092), - [sym__pipe_table_start] = ACTIONS(2092), - [sym__fenced_div_start] = ACTIONS(2092), - [sym__fenced_div_end] = ACTIONS(2092), - [sym_ref_id_specifier] = ACTIONS(2092), - [sym__code_span_start] = ACTIONS(2092), - [sym__html_comment] = ACTIONS(2092), - [sym__autolink] = ACTIONS(2092), - [sym__highlight_span_start] = ACTIONS(2092), - [sym__insert_span_start] = ACTIONS(2092), - [sym__delete_span_start] = ACTIONS(2092), - [sym__edit_comment_span_start] = ACTIONS(2092), - [sym__single_quote_span_open] = ACTIONS(2092), - [sym__double_quote_span_open] = ACTIONS(2092), - [sym__shortcode_open_escaped] = ACTIONS(2092), - [sym__shortcode_open] = ACTIONS(2092), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2092), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2092), - [sym__cite_author_in_text] = ACTIONS(2092), - [sym__cite_suppress_author] = ACTIONS(2092), - [sym__strikeout_open] = ACTIONS(2092), - [sym__subscript_open] = ACTIONS(2092), - [sym__superscript_open] = ACTIONS(2092), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2092), - [sym__strong_emphasis_open_underscore] = ACTIONS(2092), - [sym__emphasis_open_star] = ACTIONS(2092), - [sym__emphasis_open_underscore] = ACTIONS(2092), - [sym_inline_note_reference] = ACTIONS(2092), - [sym_html_element] = ACTIONS(2092), - [sym__pandoc_lt_str] = ACTIONS(2092), - [sym__pandoc_line_break] = ACTIONS(2092), - [sym_grid_table] = ACTIONS(2092), - [sym__caption_start] = ACTIONS(2092), - }, - [STATE(139)] = { - [sym_list_marker_example] = STATE(18), - [sym__list_item_example] = STATE(144), - [aux_sym__list_example_repeat1] = STATE(144), - [sym_entity_reference] = ACTIONS(2096), - [sym_numeric_character_reference] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_BANG_LBRACK] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(2096), - [aux_sym_pandoc_str_token1] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [sym__whitespace] = ACTIONS(2096), - [sym__line_ending] = ACTIONS(2096), - [sym__soft_line_ending] = ACTIONS(2096), - [sym__block_close] = ACTIONS(2096), - [sym__block_quote_start] = ACTIONS(2096), - [sym_atx_h1_marker] = ACTIONS(2096), - [sym_atx_h2_marker] = ACTIONS(2096), - [sym_atx_h3_marker] = ACTIONS(2096), - [sym_atx_h4_marker] = ACTIONS(2096), - [sym_atx_h5_marker] = ACTIONS(2096), - [sym_atx_h6_marker] = ACTIONS(2096), - [sym__thematic_break] = ACTIONS(2096), - [sym__list_marker_minus] = ACTIONS(2096), - [sym__list_marker_plus] = ACTIONS(2096), - [sym__list_marker_star] = ACTIONS(2096), - [sym__list_marker_parenthesis] = ACTIONS(2096), - [sym__list_marker_dot] = ACTIONS(2096), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2096), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2096), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2096), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2096), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2096), - [sym__list_marker_example] = ACTIONS(53), - [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(2096), - [sym_minus_metadata] = ACTIONS(2096), - [sym__pipe_table_start] = ACTIONS(2096), - [sym__fenced_div_start] = ACTIONS(2096), - [sym__fenced_div_end] = ACTIONS(2096), - [sym_ref_id_specifier] = ACTIONS(2096), - [sym__code_span_start] = ACTIONS(2096), - [sym__html_comment] = ACTIONS(2096), - [sym__autolink] = ACTIONS(2096), - [sym__highlight_span_start] = ACTIONS(2096), - [sym__insert_span_start] = ACTIONS(2096), - [sym__delete_span_start] = ACTIONS(2096), - [sym__edit_comment_span_start] = ACTIONS(2096), - [sym__single_quote_span_open] = ACTIONS(2096), - [sym__double_quote_span_open] = ACTIONS(2096), - [sym__shortcode_open_escaped] = ACTIONS(2096), - [sym__shortcode_open] = ACTIONS(2096), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2096), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2096), - [sym__cite_author_in_text] = ACTIONS(2096), - [sym__cite_suppress_author] = ACTIONS(2096), - [sym__strikeout_open] = ACTIONS(2096), - [sym__subscript_open] = ACTIONS(2096), - [sym__superscript_open] = ACTIONS(2096), - [sym__inline_note_start_token] = ACTIONS(2096), - [sym__strong_emphasis_open_star] = ACTIONS(2096), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2096), - [sym__emphasis_open_underscore] = ACTIONS(2096), - [sym_inline_note_reference] = ACTIONS(2096), - [sym_html_element] = ACTIONS(2096), - [sym__pandoc_lt_str] = ACTIONS(2096), - [sym__pandoc_line_break] = ACTIONS(2096), - [sym_grid_table] = ACTIONS(2096), - [sym__caption_start] = ACTIONS(2096), - }, - [STATE(140)] = { - [sym_list_marker_plus] = STATE(13), - [sym__list_item_plus] = STATE(140), - [aux_sym__list_plus_repeat1] = STATE(140), - [sym_entity_reference] = ACTIONS(2100), - [sym_numeric_character_reference] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_BANG_LBRACK] = ACTIONS(2100), - [anon_sym_DOLLAR] = ACTIONS(2102), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [aux_sym_pandoc_str_token1] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(2100), - [sym__whitespace] = ACTIONS(2100), - [sym__line_ending] = ACTIONS(2100), - [sym__soft_line_ending] = ACTIONS(2100), - [sym__block_close] = ACTIONS(2100), - [sym__block_quote_start] = ACTIONS(2100), - [sym_atx_h1_marker] = ACTIONS(2100), - [sym_atx_h2_marker] = ACTIONS(2100), - [sym_atx_h3_marker] = ACTIONS(2100), - [sym_atx_h4_marker] = ACTIONS(2100), - [sym_atx_h5_marker] = ACTIONS(2100), - [sym_atx_h6_marker] = ACTIONS(2100), - [sym__thematic_break] = ACTIONS(2100), - [sym__list_marker_minus] = ACTIONS(2100), - [sym__list_marker_plus] = ACTIONS(2104), - [sym__list_marker_star] = ACTIONS(2100), - [sym__list_marker_parenthesis] = ACTIONS(2100), - [sym__list_marker_dot] = ACTIONS(2100), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2100), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2104), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2100), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2100), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2100), - [sym__list_marker_example] = ACTIONS(2100), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2100), - [sym__fenced_code_block_start_backtick] = ACTIONS(2100), - [sym_minus_metadata] = ACTIONS(2100), - [sym__pipe_table_start] = ACTIONS(2100), - [sym__fenced_div_start] = ACTIONS(2100), - [sym__fenced_div_end] = ACTIONS(2100), - [sym_ref_id_specifier] = ACTIONS(2100), - [sym__code_span_start] = ACTIONS(2100), - [sym__html_comment] = ACTIONS(2100), - [sym__autolink] = ACTIONS(2100), - [sym__highlight_span_start] = ACTIONS(2100), - [sym__insert_span_start] = ACTIONS(2100), - [sym__delete_span_start] = ACTIONS(2100), - [sym__edit_comment_span_start] = ACTIONS(2100), - [sym__single_quote_span_open] = ACTIONS(2100), - [sym__double_quote_span_open] = ACTIONS(2100), - [sym__shortcode_open_escaped] = ACTIONS(2100), - [sym__shortcode_open] = ACTIONS(2100), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2100), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2100), - [sym__cite_author_in_text] = ACTIONS(2100), - [sym__cite_suppress_author] = ACTIONS(2100), - [sym__strikeout_open] = ACTIONS(2100), - [sym__subscript_open] = ACTIONS(2100), - [sym__superscript_open] = ACTIONS(2100), - [sym__inline_note_start_token] = ACTIONS(2100), - [sym__strong_emphasis_open_star] = ACTIONS(2100), - [sym__strong_emphasis_open_underscore] = ACTIONS(2100), - [sym__emphasis_open_star] = ACTIONS(2100), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2100), - [sym_html_element] = ACTIONS(2100), - [sym__pandoc_lt_str] = ACTIONS(2100), - [sym__pandoc_line_break] = ACTIONS(2100), - [sym_grid_table] = ACTIONS(2100), - [sym__caption_start] = ACTIONS(2100), - }, - [STATE(141)] = { - [sym_list_marker_minus] = STATE(14), - [sym__list_item_minus] = STATE(141), - [aux_sym__list_minus_repeat1] = STATE(141), - [sym_entity_reference] = ACTIONS(2107), - [sym_numeric_character_reference] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_BANG_LBRACK] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(2109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2107), - [aux_sym_pandoc_str_token1] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2107), - [sym__whitespace] = ACTIONS(2107), - [sym__line_ending] = ACTIONS(2107), - [sym__soft_line_ending] = ACTIONS(2107), - [sym__block_close] = ACTIONS(2107), - [sym__block_quote_start] = ACTIONS(2107), - [sym_atx_h1_marker] = ACTIONS(2107), - [sym_atx_h2_marker] = ACTIONS(2107), - [sym_atx_h3_marker] = ACTIONS(2107), - [sym_atx_h4_marker] = ACTIONS(2107), - [sym_atx_h5_marker] = ACTIONS(2107), - [sym_atx_h6_marker] = ACTIONS(2107), - [sym__thematic_break] = ACTIONS(2107), - [sym__list_marker_minus] = ACTIONS(2111), - [sym__list_marker_plus] = ACTIONS(2107), - [sym__list_marker_star] = ACTIONS(2107), - [sym__list_marker_parenthesis] = ACTIONS(2107), - [sym__list_marker_dot] = ACTIONS(2107), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2111), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2107), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2107), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2107), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2107), - [sym__list_marker_example] = ACTIONS(2107), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2107), - [sym__fenced_code_block_start_backtick] = ACTIONS(2107), - [sym_minus_metadata] = ACTIONS(2107), - [sym__pipe_table_start] = ACTIONS(2107), - [sym__fenced_div_start] = ACTIONS(2107), - [sym__fenced_div_end] = ACTIONS(2107), - [sym_ref_id_specifier] = ACTIONS(2107), - [sym__code_span_start] = ACTIONS(2107), - [sym__html_comment] = ACTIONS(2107), - [sym__autolink] = ACTIONS(2107), - [sym__highlight_span_start] = ACTIONS(2107), - [sym__insert_span_start] = ACTIONS(2107), - [sym__delete_span_start] = ACTIONS(2107), - [sym__edit_comment_span_start] = ACTIONS(2107), - [sym__single_quote_span_open] = ACTIONS(2107), - [sym__double_quote_span_open] = ACTIONS(2107), - [sym__shortcode_open_escaped] = ACTIONS(2107), - [sym__shortcode_open] = ACTIONS(2107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2107), - [sym__cite_suppress_author] = ACTIONS(2107), - [sym__strikeout_open] = ACTIONS(2107), - [sym__subscript_open] = ACTIONS(2107), - [sym__superscript_open] = ACTIONS(2107), - [sym__inline_note_start_token] = ACTIONS(2107), - [sym__strong_emphasis_open_star] = ACTIONS(2107), - [sym__strong_emphasis_open_underscore] = ACTIONS(2107), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2107), - [sym_inline_note_reference] = ACTIONS(2107), - [sym_html_element] = ACTIONS(2107), - [sym__pandoc_lt_str] = ACTIONS(2107), - [sym__pandoc_line_break] = ACTIONS(2107), - [sym_grid_table] = ACTIONS(2107), - [sym__caption_start] = ACTIONS(2107), - }, - [STATE(142)] = { - [sym_list_marker_star] = STATE(15), - [sym__list_item_star] = STATE(142), - [aux_sym__list_star_repeat1] = STATE(142), - [sym_entity_reference] = ACTIONS(2114), - [sym_numeric_character_reference] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_BANG_LBRACK] = ACTIONS(2114), - [anon_sym_DOLLAR] = ACTIONS(2116), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2114), - [aux_sym_pandoc_str_token1] = ACTIONS(2116), - [anon_sym_PIPE] = ACTIONS(2114), - [sym__whitespace] = ACTIONS(2114), - [sym__line_ending] = ACTIONS(2114), - [sym__soft_line_ending] = ACTIONS(2114), - [sym__block_close] = ACTIONS(2114), - [sym__block_quote_start] = ACTIONS(2114), - [sym_atx_h1_marker] = ACTIONS(2114), - [sym_atx_h2_marker] = ACTIONS(2114), - [sym_atx_h3_marker] = ACTIONS(2114), - [sym_atx_h4_marker] = ACTIONS(2114), - [sym_atx_h5_marker] = ACTIONS(2114), - [sym_atx_h6_marker] = ACTIONS(2114), - [sym__thematic_break] = ACTIONS(2114), - [sym__list_marker_minus] = ACTIONS(2114), - [sym__list_marker_plus] = ACTIONS(2114), - [sym__list_marker_star] = ACTIONS(2118), - [sym__list_marker_parenthesis] = ACTIONS(2114), - [sym__list_marker_dot] = ACTIONS(2114), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2114), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2114), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2118), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2114), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2114), - [sym__list_marker_example] = ACTIONS(2114), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2114), - [sym__fenced_code_block_start_backtick] = ACTIONS(2114), - [sym_minus_metadata] = ACTIONS(2114), - [sym__pipe_table_start] = ACTIONS(2114), - [sym__fenced_div_start] = ACTIONS(2114), - [sym__fenced_div_end] = ACTIONS(2114), - [sym_ref_id_specifier] = ACTIONS(2114), - [sym__code_span_start] = ACTIONS(2114), - [sym__html_comment] = ACTIONS(2114), - [sym__autolink] = ACTIONS(2114), - [sym__highlight_span_start] = ACTIONS(2114), - [sym__insert_span_start] = ACTIONS(2114), - [sym__delete_span_start] = ACTIONS(2114), - [sym__edit_comment_span_start] = ACTIONS(2114), - [sym__single_quote_span_open] = ACTIONS(2114), - [sym__double_quote_span_open] = ACTIONS(2114), - [sym__shortcode_open_escaped] = ACTIONS(2114), - [sym__shortcode_open] = ACTIONS(2114), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2114), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2114), - [sym__cite_author_in_text] = ACTIONS(2114), - [sym__cite_suppress_author] = ACTIONS(2114), - [sym__strikeout_open] = ACTIONS(2114), - [sym__subscript_open] = ACTIONS(2114), - [sym__superscript_open] = ACTIONS(2114), - [sym__inline_note_start_token] = ACTIONS(2114), - [sym__strong_emphasis_open_star] = ACTIONS(2114), - [sym__strong_emphasis_open_underscore] = ACTIONS(2114), - [sym__emphasis_open_star] = ACTIONS(2114), - [sym__emphasis_open_underscore] = ACTIONS(2114), - [sym_inline_note_reference] = ACTIONS(2114), - [sym_html_element] = ACTIONS(2114), - [sym__pandoc_lt_str] = ACTIONS(2114), - [sym__pandoc_line_break] = ACTIONS(2114), - [sym_grid_table] = ACTIONS(2114), - [sym__caption_start] = ACTIONS(2114), - }, - [STATE(143)] = { - [sym_list_marker_parenthesis] = STATE(17), - [sym__list_item_parenthesis] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(143), [sym_entity_reference] = ACTIONS(2121), [sym_numeric_character_reference] = ACTIONS(2121), [anon_sym_LBRACK] = ACTIONS(2121), @@ -43651,17 +42910,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_minus] = ACTIONS(2121), [sym__list_marker_plus] = ACTIONS(2121), [sym__list_marker_star] = ACTIONS(2121), - [sym__list_marker_parenthesis] = ACTIONS(2125), - [sym__list_marker_dot] = ACTIONS(2121), + [sym__list_marker_parenthesis] = ACTIONS(2121), + [sym__list_marker_dot] = ACTIONS(2125), [sym__list_marker_minus_dont_interrupt] = ACTIONS(2121), [sym__list_marker_plus_dont_interrupt] = ACTIONS(2121), [sym__list_marker_star_dont_interrupt] = ACTIONS(2121), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2125), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2121), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2121), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2125), [sym__list_marker_example] = ACTIONS(2121), [sym__list_marker_example_dont_interrupt] = ACTIONS(2121), [sym__fenced_code_block_start_backtick] = ACTIONS(2121), - [sym_minus_metadata] = ACTIONS(2121), + [sym__minus_metadata_start] = ACTIONS(2121), [sym__pipe_table_start] = ACTIONS(2121), [sym__fenced_div_start] = ACTIONS(2121), [sym__fenced_div_end] = ACTIONS(2121), @@ -43696,23 +42955,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2121), [sym__caption_start] = ACTIONS(2121), }, - [STATE(144)] = { - [sym_list_marker_example] = STATE(18), - [sym__list_item_example] = STATE(144), - [aux_sym__list_example_repeat1] = STATE(144), + [STATE(131)] = { [sym_entity_reference] = ACTIONS(2128), [sym_numeric_character_reference] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2128), + [anon_sym_LBRACK] = ACTIONS(2130), [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), + [sym_task_list_marker_checked] = ACTIONS(2128), + [sym_task_list_marker_unchecked] = ACTIONS(2128), [sym__whitespace] = ACTIONS(2128), [sym__line_ending] = ACTIONS(2128), [sym__soft_line_ending] = ACTIONS(2128), [sym__block_close] = ACTIONS(2128), + [sym_block_continuation] = ACTIONS(2128), [sym__block_quote_start] = ACTIONS(2128), [sym_atx_h1_marker] = ACTIONS(2128), [sym_atx_h2_marker] = ACTIONS(2128), @@ -43731,13 +42990,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(2128), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2128), [sym__list_marker_dot_dont_interrupt] = ACTIONS(2128), - [sym__list_marker_example] = ACTIONS(2132), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2132), + [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__blank_line_start] = ACTIONS(2128), + [sym__minus_metadata_start] = 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), @@ -43769,1748 +43028,2408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2128), [sym__caption_start] = ACTIONS(2128), }, + [STATE(132)] = { + [sym_entity_reference] = ACTIONS(2132), + [sym_numeric_character_reference] = ACTIONS(2132), + [anon_sym_LBRACK] = ACTIONS(2134), + [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), + [sym_task_list_marker_checked] = ACTIONS(2132), + [sym_task_list_marker_unchecked] = ACTIONS(2132), + [sym__whitespace] = ACTIONS(2132), + [sym__line_ending] = ACTIONS(2132), + [sym__soft_line_ending] = ACTIONS(2132), + [sym__block_close] = ACTIONS(2132), + [sym_block_continuation] = 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(2132), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2132), + [sym__fenced_code_block_start_backtick] = ACTIONS(2132), + [sym__blank_line_start] = ACTIONS(2132), + [sym__minus_metadata_start] = 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_lt_str] = ACTIONS(2132), + [sym__pandoc_line_break] = ACTIONS(2132), + [sym_grid_table] = ACTIONS(2132), + [sym__caption_start] = ACTIONS(2132), + }, + [STATE(133)] = { + [sym_entity_reference] = ACTIONS(2136), + [sym_numeric_character_reference] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2138), + [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), + [sym_task_list_marker_checked] = ACTIONS(2136), + [sym_task_list_marker_unchecked] = ACTIONS(2136), + [sym__whitespace] = ACTIONS(2136), + [sym__line_ending] = ACTIONS(2136), + [sym__soft_line_ending] = ACTIONS(2136), + [sym__block_close] = ACTIONS(2136), + [sym_block_continuation] = 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(2136), + [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(2136), + [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__blank_line_start] = ACTIONS(2136), + [sym__minus_metadata_start] = 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_lt_str] = ACTIONS(2136), + [sym__pandoc_line_break] = ACTIONS(2136), + [sym_grid_table] = ACTIONS(2136), + [sym__caption_start] = ACTIONS(2136), + }, + [STATE(134)] = { + [sym_caption] = STATE(3375), + [sym_pipe_table_row] = STATE(3451), + [sym_pipe_table_cell] = STATE(3010), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym_pipe_table_row_repeat1] = STATE(486), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2156), + [sym__line_ending] = ACTIONS(2158), + [sym__eof] = ACTIONS(2158), + [sym__pipe_table_line_ending] = ACTIONS(2158), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pipe_table_delimiter] = ACTIONS(2202), + [sym__pandoc_line_break] = ACTIONS(2140), + [sym__caption_start] = ACTIONS(2204), + }, + [STATE(135)] = { + [sym_caption] = STATE(3450), + [sym_pipe_table_row] = STATE(3451), + [sym_pipe_table_cell] = STATE(3010), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym_pipe_table_row_repeat1] = STATE(486), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2156), + [sym__line_ending] = ACTIONS(2158), + [sym__eof] = ACTIONS(2158), + [sym__pipe_table_line_ending] = ACTIONS(2158), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pipe_table_delimiter] = ACTIONS(2202), + [sym__pandoc_line_break] = ACTIONS(2140), + [sym__caption_start] = ACTIONS(2204), + }, + [STATE(136)] = { + [sym_list_marker_plus] = STATE(14), + [sym__list_item_plus] = STATE(147), + [aux_sym__list_plus_repeat1] = STATE(147), + [sym_entity_reference] = ACTIONS(2206), + [sym_numeric_character_reference] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_BANG_LBRACK] = ACTIONS(2206), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2206), + [aux_sym_pandoc_str_token1] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2206), + [sym__whitespace] = ACTIONS(2206), + [sym__line_ending] = ACTIONS(2206), + [sym__soft_line_ending] = ACTIONS(2206), + [sym__block_close] = ACTIONS(2206), + [sym__block_quote_start] = ACTIONS(2206), + [sym_atx_h1_marker] = ACTIONS(2206), + [sym_atx_h2_marker] = ACTIONS(2206), + [sym_atx_h3_marker] = ACTIONS(2206), + [sym_atx_h4_marker] = ACTIONS(2206), + [sym_atx_h5_marker] = ACTIONS(2206), + [sym_atx_h6_marker] = ACTIONS(2206), + [sym__thematic_break] = ACTIONS(2206), + [sym__list_marker_minus] = ACTIONS(2206), + [sym__list_marker_plus] = ACTIONS(45), + [sym__list_marker_star] = ACTIONS(2206), + [sym__list_marker_parenthesis] = ACTIONS(2206), + [sym__list_marker_dot] = ACTIONS(2206), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2206), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(45), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2206), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2206), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2206), + [sym__list_marker_example] = ACTIONS(2206), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2206), + [sym__fenced_code_block_start_backtick] = ACTIONS(2206), + [sym__minus_metadata_start] = ACTIONS(2206), + [sym__pipe_table_start] = ACTIONS(2206), + [sym__fenced_div_start] = ACTIONS(2206), + [sym__fenced_div_end] = ACTIONS(2206), + [sym_ref_id_specifier] = ACTIONS(2206), + [sym__code_span_start] = ACTIONS(2206), + [sym__html_comment] = ACTIONS(2206), + [sym__autolink] = ACTIONS(2206), + [sym__highlight_span_start] = ACTIONS(2206), + [sym__insert_span_start] = ACTIONS(2206), + [sym__delete_span_start] = ACTIONS(2206), + [sym__edit_comment_span_start] = ACTIONS(2206), + [sym__single_quote_span_open] = ACTIONS(2206), + [sym__double_quote_span_open] = ACTIONS(2206), + [sym__shortcode_open_escaped] = ACTIONS(2206), + [sym__shortcode_open] = ACTIONS(2206), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2206), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2206), + [sym__cite_author_in_text] = ACTIONS(2206), + [sym__cite_suppress_author] = ACTIONS(2206), + [sym__strikeout_open] = ACTIONS(2206), + [sym__subscript_open] = ACTIONS(2206), + [sym__superscript_open] = ACTIONS(2206), + [sym__inline_note_start_token] = ACTIONS(2206), + [sym__strong_emphasis_open_star] = ACTIONS(2206), + [sym__strong_emphasis_open_underscore] = ACTIONS(2206), + [sym__emphasis_open_star] = ACTIONS(2206), + [sym__emphasis_open_underscore] = ACTIONS(2206), + [sym_inline_note_reference] = ACTIONS(2206), + [sym_html_element] = ACTIONS(2206), + [sym__pandoc_lt_str] = ACTIONS(2206), + [sym__pandoc_line_break] = ACTIONS(2206), + [sym_grid_table] = ACTIONS(2206), + [sym__caption_start] = ACTIONS(2206), + }, + [STATE(137)] = { + [sym_list_marker_minus] = STATE(15), + [sym__list_item_minus] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(148), + [sym_entity_reference] = ACTIONS(2210), + [sym_numeric_character_reference] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_BANG_LBRACK] = ACTIONS(2210), + [anon_sym_DOLLAR] = ACTIONS(2212), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2210), + [aux_sym_pandoc_str_token1] = ACTIONS(2212), + [anon_sym_PIPE] = ACTIONS(2210), + [sym__whitespace] = ACTIONS(2210), + [sym__line_ending] = ACTIONS(2210), + [sym__soft_line_ending] = ACTIONS(2210), + [sym__block_close] = ACTIONS(2210), + [sym__block_quote_start] = ACTIONS(2210), + [sym_atx_h1_marker] = ACTIONS(2210), + [sym_atx_h2_marker] = ACTIONS(2210), + [sym_atx_h3_marker] = ACTIONS(2210), + [sym_atx_h4_marker] = ACTIONS(2210), + [sym_atx_h5_marker] = ACTIONS(2210), + [sym_atx_h6_marker] = ACTIONS(2210), + [sym__thematic_break] = ACTIONS(2210), + [sym__list_marker_minus] = ACTIONS(43), + [sym__list_marker_plus] = ACTIONS(2210), + [sym__list_marker_star] = ACTIONS(2210), + [sym__list_marker_parenthesis] = ACTIONS(2210), + [sym__list_marker_dot] = ACTIONS(2210), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(43), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2210), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2210), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2210), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2210), + [sym__list_marker_example] = ACTIONS(2210), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2210), + [sym__fenced_code_block_start_backtick] = ACTIONS(2210), + [sym__minus_metadata_start] = ACTIONS(2210), + [sym__pipe_table_start] = ACTIONS(2210), + [sym__fenced_div_start] = ACTIONS(2210), + [sym__fenced_div_end] = ACTIONS(2210), + [sym_ref_id_specifier] = ACTIONS(2210), + [sym__code_span_start] = ACTIONS(2210), + [sym__html_comment] = ACTIONS(2210), + [sym__autolink] = ACTIONS(2210), + [sym__highlight_span_start] = ACTIONS(2210), + [sym__insert_span_start] = ACTIONS(2210), + [sym__delete_span_start] = ACTIONS(2210), + [sym__edit_comment_span_start] = ACTIONS(2210), + [sym__single_quote_span_open] = ACTIONS(2210), + [sym__double_quote_span_open] = ACTIONS(2210), + [sym__shortcode_open_escaped] = ACTIONS(2210), + [sym__shortcode_open] = ACTIONS(2210), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2210), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2210), + [sym__cite_author_in_text] = ACTIONS(2210), + [sym__cite_suppress_author] = ACTIONS(2210), + [sym__strikeout_open] = ACTIONS(2210), + [sym__subscript_open] = ACTIONS(2210), + [sym__superscript_open] = ACTIONS(2210), + [sym__inline_note_start_token] = ACTIONS(2210), + [sym__strong_emphasis_open_star] = ACTIONS(2210), + [sym__strong_emphasis_open_underscore] = ACTIONS(2210), + [sym__emphasis_open_star] = ACTIONS(2210), + [sym__emphasis_open_underscore] = ACTIONS(2210), + [sym_inline_note_reference] = ACTIONS(2210), + [sym_html_element] = ACTIONS(2210), + [sym__pandoc_lt_str] = ACTIONS(2210), + [sym__pandoc_line_break] = ACTIONS(2210), + [sym_grid_table] = ACTIONS(2210), + [sym__caption_start] = ACTIONS(2210), + }, + [STATE(138)] = { + [sym_list_marker_star] = STATE(16), + [sym__list_item_star] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(149), + [sym_entity_reference] = ACTIONS(2214), + [sym_numeric_character_reference] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_BANG_LBRACK] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2214), + [aux_sym_pandoc_str_token1] = ACTIONS(2216), + [anon_sym_PIPE] = ACTIONS(2214), + [sym__whitespace] = ACTIONS(2214), + [sym__line_ending] = ACTIONS(2214), + [sym__soft_line_ending] = ACTIONS(2214), + [sym__block_close] = ACTIONS(2214), + [sym__block_quote_start] = ACTIONS(2214), + [sym_atx_h1_marker] = ACTIONS(2214), + [sym_atx_h2_marker] = ACTIONS(2214), + [sym_atx_h3_marker] = ACTIONS(2214), + [sym_atx_h4_marker] = ACTIONS(2214), + [sym_atx_h5_marker] = ACTIONS(2214), + [sym_atx_h6_marker] = ACTIONS(2214), + [sym__thematic_break] = ACTIONS(2214), + [sym__list_marker_minus] = ACTIONS(2214), + [sym__list_marker_plus] = ACTIONS(2214), + [sym__list_marker_star] = ACTIONS(47), + [sym__list_marker_parenthesis] = ACTIONS(2214), + [sym__list_marker_dot] = ACTIONS(2214), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_star_dont_interrupt] = ACTIONS(47), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_example] = ACTIONS(2214), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2214), + [sym__fenced_code_block_start_backtick] = ACTIONS(2214), + [sym__minus_metadata_start] = ACTIONS(2214), + [sym__pipe_table_start] = ACTIONS(2214), + [sym__fenced_div_start] = ACTIONS(2214), + [sym__fenced_div_end] = ACTIONS(2214), + [sym_ref_id_specifier] = ACTIONS(2214), + [sym__code_span_start] = ACTIONS(2214), + [sym__html_comment] = ACTIONS(2214), + [sym__autolink] = ACTIONS(2214), + [sym__highlight_span_start] = ACTIONS(2214), + [sym__insert_span_start] = ACTIONS(2214), + [sym__delete_span_start] = ACTIONS(2214), + [sym__edit_comment_span_start] = ACTIONS(2214), + [sym__single_quote_span_open] = ACTIONS(2214), + [sym__double_quote_span_open] = ACTIONS(2214), + [sym__shortcode_open_escaped] = ACTIONS(2214), + [sym__shortcode_open] = ACTIONS(2214), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2214), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2214), + [sym__cite_author_in_text] = ACTIONS(2214), + [sym__cite_suppress_author] = ACTIONS(2214), + [sym__strikeout_open] = ACTIONS(2214), + [sym__subscript_open] = ACTIONS(2214), + [sym__superscript_open] = ACTIONS(2214), + [sym__inline_note_start_token] = ACTIONS(2214), + [sym__strong_emphasis_open_star] = ACTIONS(2214), + [sym__strong_emphasis_open_underscore] = ACTIONS(2214), + [sym__emphasis_open_star] = ACTIONS(2214), + [sym__emphasis_open_underscore] = ACTIONS(2214), + [sym_inline_note_reference] = ACTIONS(2214), + [sym_html_element] = ACTIONS(2214), + [sym__pandoc_lt_str] = ACTIONS(2214), + [sym__pandoc_line_break] = ACTIONS(2214), + [sym_grid_table] = ACTIONS(2214), + [sym__caption_start] = ACTIONS(2214), + }, + [STATE(139)] = { + [sym_list_marker_dot] = STATE(17), + [sym__list_item_dot] = STATE(130), + [aux_sym__list_dot_repeat1] = STATE(130), + [sym_entity_reference] = ACTIONS(2218), + [sym_numeric_character_reference] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_BANG_LBRACK] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2220), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [aux_sym_pandoc_str_token1] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(2218), + [sym__whitespace] = ACTIONS(2218), + [sym__line_ending] = ACTIONS(2218), + [sym__soft_line_ending] = ACTIONS(2218), + [sym__block_close] = ACTIONS(2218), + [sym__block_quote_start] = ACTIONS(2218), + [sym_atx_h1_marker] = ACTIONS(2218), + [sym_atx_h2_marker] = ACTIONS(2218), + [sym_atx_h3_marker] = ACTIONS(2218), + [sym_atx_h4_marker] = ACTIONS(2218), + [sym_atx_h5_marker] = ACTIONS(2218), + [sym_atx_h6_marker] = ACTIONS(2218), + [sym__thematic_break] = ACTIONS(2218), + [sym__list_marker_minus] = ACTIONS(2218), + [sym__list_marker_plus] = ACTIONS(2218), + [sym__list_marker_star] = ACTIONS(2218), + [sym__list_marker_parenthesis] = ACTIONS(2218), + [sym__list_marker_dot] = ACTIONS(51), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2218), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2218), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2218), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2218), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), + [sym__list_marker_example] = ACTIONS(2218), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2218), + [sym__fenced_code_block_start_backtick] = ACTIONS(2218), + [sym__minus_metadata_start] = ACTIONS(2218), + [sym__pipe_table_start] = ACTIONS(2218), + [sym__fenced_div_start] = ACTIONS(2218), + [sym__fenced_div_end] = ACTIONS(2218), + [sym_ref_id_specifier] = ACTIONS(2218), + [sym__code_span_start] = ACTIONS(2218), + [sym__html_comment] = ACTIONS(2218), + [sym__autolink] = ACTIONS(2218), + [sym__highlight_span_start] = ACTIONS(2218), + [sym__insert_span_start] = ACTIONS(2218), + [sym__delete_span_start] = ACTIONS(2218), + [sym__edit_comment_span_start] = ACTIONS(2218), + [sym__single_quote_span_open] = ACTIONS(2218), + [sym__double_quote_span_open] = ACTIONS(2218), + [sym__shortcode_open_escaped] = ACTIONS(2218), + [sym__shortcode_open] = ACTIONS(2218), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2218), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2218), + [sym__cite_author_in_text] = ACTIONS(2218), + [sym__cite_suppress_author] = ACTIONS(2218), + [sym__strikeout_open] = ACTIONS(2218), + [sym__subscript_open] = ACTIONS(2218), + [sym__superscript_open] = ACTIONS(2218), + [sym__inline_note_start_token] = ACTIONS(2218), + [sym__strong_emphasis_open_star] = ACTIONS(2218), + [sym__strong_emphasis_open_underscore] = ACTIONS(2218), + [sym__emphasis_open_star] = ACTIONS(2218), + [sym__emphasis_open_underscore] = ACTIONS(2218), + [sym_inline_note_reference] = ACTIONS(2218), + [sym_html_element] = ACTIONS(2218), + [sym__pandoc_lt_str] = ACTIONS(2218), + [sym__pandoc_line_break] = ACTIONS(2218), + [sym_grid_table] = ACTIONS(2218), + [sym__caption_start] = ACTIONS(2218), + }, + [STATE(140)] = { + [sym_caption] = STATE(3492), + [sym_pipe_table_row] = STATE(3451), + [sym_pipe_table_cell] = STATE(3010), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym_pipe_table_row_repeat1] = STATE(486), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2156), + [sym__line_ending] = ACTIONS(2158), + [sym__eof] = ACTIONS(2158), + [sym__pipe_table_line_ending] = ACTIONS(2158), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pipe_table_delimiter] = ACTIONS(2202), + [sym__pandoc_line_break] = ACTIONS(2140), + [sym__caption_start] = ACTIONS(2204), + }, + [STATE(141)] = { + [sym_list_marker_parenthesis] = STATE(18), + [sym__list_item_parenthesis] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [sym_entity_reference] = ACTIONS(2222), + [sym_numeric_character_reference] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_BANG_LBRACK] = ACTIONS(2222), + [anon_sym_DOLLAR] = ACTIONS(2224), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [aux_sym_pandoc_str_token1] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2222), + [sym__whitespace] = ACTIONS(2222), + [sym__line_ending] = ACTIONS(2222), + [sym__soft_line_ending] = ACTIONS(2222), + [sym__block_close] = ACTIONS(2222), + [sym__block_quote_start] = ACTIONS(2222), + [sym_atx_h1_marker] = ACTIONS(2222), + [sym_atx_h2_marker] = ACTIONS(2222), + [sym_atx_h3_marker] = ACTIONS(2222), + [sym_atx_h4_marker] = ACTIONS(2222), + [sym_atx_h5_marker] = ACTIONS(2222), + [sym_atx_h6_marker] = ACTIONS(2222), + [sym__thematic_break] = ACTIONS(2222), + [sym__list_marker_minus] = ACTIONS(2222), + [sym__list_marker_plus] = ACTIONS(2222), + [sym__list_marker_star] = ACTIONS(2222), + [sym__list_marker_parenthesis] = ACTIONS(49), + [sym__list_marker_dot] = ACTIONS(2222), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(49), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_example] = ACTIONS(2222), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2222), + [sym__fenced_code_block_start_backtick] = ACTIONS(2222), + [sym__minus_metadata_start] = ACTIONS(2222), + [sym__pipe_table_start] = ACTIONS(2222), + [sym__fenced_div_start] = ACTIONS(2222), + [sym__fenced_div_end] = ACTIONS(2222), + [sym_ref_id_specifier] = ACTIONS(2222), + [sym__code_span_start] = ACTIONS(2222), + [sym__html_comment] = ACTIONS(2222), + [sym__autolink] = ACTIONS(2222), + [sym__highlight_span_start] = ACTIONS(2222), + [sym__insert_span_start] = ACTIONS(2222), + [sym__delete_span_start] = ACTIONS(2222), + [sym__edit_comment_span_start] = ACTIONS(2222), + [sym__single_quote_span_open] = ACTIONS(2222), + [sym__double_quote_span_open] = ACTIONS(2222), + [sym__shortcode_open_escaped] = ACTIONS(2222), + [sym__shortcode_open] = ACTIONS(2222), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2222), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2222), + [sym__cite_author_in_text] = ACTIONS(2222), + [sym__cite_suppress_author] = ACTIONS(2222), + [sym__strikeout_open] = ACTIONS(2222), + [sym__subscript_open] = ACTIONS(2222), + [sym__superscript_open] = ACTIONS(2222), + [sym__inline_note_start_token] = ACTIONS(2222), + [sym__strong_emphasis_open_star] = ACTIONS(2222), + [sym__strong_emphasis_open_underscore] = ACTIONS(2222), + [sym__emphasis_open_star] = ACTIONS(2222), + [sym__emphasis_open_underscore] = ACTIONS(2222), + [sym_inline_note_reference] = ACTIONS(2222), + [sym_html_element] = ACTIONS(2222), + [sym__pandoc_lt_str] = ACTIONS(2222), + [sym__pandoc_line_break] = ACTIONS(2222), + [sym_grid_table] = ACTIONS(2222), + [sym__caption_start] = ACTIONS(2222), + }, + [STATE(142)] = { + [sym_list_marker_example] = STATE(19), + [sym__list_item_example] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(152), + [sym_entity_reference] = ACTIONS(2226), + [sym_numeric_character_reference] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_BANG_LBRACK] = ACTIONS(2226), + [anon_sym_DOLLAR] = ACTIONS(2228), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [aux_sym_pandoc_str_token1] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2226), + [sym__whitespace] = ACTIONS(2226), + [sym__line_ending] = ACTIONS(2226), + [sym__soft_line_ending] = ACTIONS(2226), + [sym__block_close] = ACTIONS(2226), + [sym__block_quote_start] = ACTIONS(2226), + [sym_atx_h1_marker] = ACTIONS(2226), + [sym_atx_h2_marker] = ACTIONS(2226), + [sym_atx_h3_marker] = ACTIONS(2226), + [sym_atx_h4_marker] = ACTIONS(2226), + [sym_atx_h5_marker] = ACTIONS(2226), + [sym_atx_h6_marker] = ACTIONS(2226), + [sym__thematic_break] = ACTIONS(2226), + [sym__list_marker_minus] = ACTIONS(2226), + [sym__list_marker_plus] = ACTIONS(2226), + [sym__list_marker_star] = ACTIONS(2226), + [sym__list_marker_parenthesis] = ACTIONS(2226), + [sym__list_marker_dot] = ACTIONS(2226), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_example] = ACTIONS(53), + [sym__list_marker_example_dont_interrupt] = ACTIONS(53), + [sym__fenced_code_block_start_backtick] = ACTIONS(2226), + [sym__minus_metadata_start] = ACTIONS(2226), + [sym__pipe_table_start] = ACTIONS(2226), + [sym__fenced_div_start] = ACTIONS(2226), + [sym__fenced_div_end] = ACTIONS(2226), + [sym_ref_id_specifier] = ACTIONS(2226), + [sym__code_span_start] = ACTIONS(2226), + [sym__html_comment] = ACTIONS(2226), + [sym__autolink] = ACTIONS(2226), + [sym__highlight_span_start] = ACTIONS(2226), + [sym__insert_span_start] = ACTIONS(2226), + [sym__delete_span_start] = ACTIONS(2226), + [sym__edit_comment_span_start] = ACTIONS(2226), + [sym__single_quote_span_open] = ACTIONS(2226), + [sym__double_quote_span_open] = ACTIONS(2226), + [sym__shortcode_open_escaped] = ACTIONS(2226), + [sym__shortcode_open] = ACTIONS(2226), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2226), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2226), + [sym__cite_author_in_text] = ACTIONS(2226), + [sym__cite_suppress_author] = ACTIONS(2226), + [sym__strikeout_open] = ACTIONS(2226), + [sym__subscript_open] = ACTIONS(2226), + [sym__superscript_open] = ACTIONS(2226), + [sym__inline_note_start_token] = ACTIONS(2226), + [sym__strong_emphasis_open_star] = ACTIONS(2226), + [sym__strong_emphasis_open_underscore] = ACTIONS(2226), + [sym__emphasis_open_star] = ACTIONS(2226), + [sym__emphasis_open_underscore] = ACTIONS(2226), + [sym_inline_note_reference] = ACTIONS(2226), + [sym_html_element] = ACTIONS(2226), + [sym__pandoc_lt_str] = ACTIONS(2226), + [sym__pandoc_line_break] = ACTIONS(2226), + [sym_grid_table] = ACTIONS(2226), + [sym__caption_start] = ACTIONS(2226), + }, + [STATE(143)] = { + [sym_caption] = STATE(3329), + [sym_pipe_table_row] = STATE(3451), + [sym_pipe_table_cell] = STATE(3010), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym_pipe_table_row_repeat1] = STATE(486), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2156), + [sym__line_ending] = ACTIONS(2158), + [sym__eof] = ACTIONS(2158), + [sym__pipe_table_line_ending] = ACTIONS(2158), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pipe_table_delimiter] = ACTIONS(2202), + [sym__pandoc_line_break] = ACTIONS(2140), + [sym__caption_start] = ACTIONS(2204), + }, + [STATE(144)] = { + [sym_caption] = STATE(3524), + [sym_pipe_table_row] = STATE(3451), + [sym_pipe_table_cell] = STATE(3010), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym_pipe_table_row_repeat1] = STATE(486), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2156), + [sym__line_ending] = ACTIONS(2158), + [sym__eof] = ACTIONS(2158), + [sym__pipe_table_line_ending] = ACTIONS(2158), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pipe_table_delimiter] = ACTIONS(2202), + [sym__pandoc_line_break] = ACTIONS(2140), + [sym__caption_start] = ACTIONS(2204), + }, [STATE(145)] = { - [sym_entity_reference] = ACTIONS(2135), - [sym_numeric_character_reference] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_BANG_LBRACK] = ACTIONS(2135), - [anon_sym_DOLLAR] = ACTIONS(2137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [aux_sym_pandoc_str_token1] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2135), - [sym_task_list_marker_checked] = ACTIONS(2135), - [sym_task_list_marker_unchecked] = ACTIONS(2135), - [sym__whitespace] = ACTIONS(2135), - [sym__line_ending] = ACTIONS(2135), - [sym__soft_line_ending] = ACTIONS(2135), - [sym__block_close] = ACTIONS(2135), - [sym_block_continuation] = ACTIONS(2135), - [sym__block_quote_start] = ACTIONS(2135), - [sym_atx_h1_marker] = ACTIONS(2135), - [sym_atx_h2_marker] = ACTIONS(2135), - [sym_atx_h3_marker] = ACTIONS(2135), - [sym_atx_h4_marker] = ACTIONS(2135), - [sym_atx_h5_marker] = ACTIONS(2135), - [sym_atx_h6_marker] = ACTIONS(2135), - [sym__thematic_break] = ACTIONS(2135), - [sym__list_marker_minus] = ACTIONS(2135), - [sym__list_marker_plus] = ACTIONS(2135), - [sym__list_marker_star] = ACTIONS(2135), - [sym__list_marker_parenthesis] = ACTIONS(2135), - [sym__list_marker_dot] = ACTIONS(2135), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2135), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2135), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2135), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2135), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2135), - [sym__list_marker_example] = ACTIONS(2135), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2135), - [sym__fenced_code_block_start_backtick] = ACTIONS(2135), - [sym__blank_line_start] = ACTIONS(2135), - [sym_minus_metadata] = ACTIONS(2135), - [sym__pipe_table_start] = ACTIONS(2135), - [sym__fenced_div_start] = ACTIONS(2135), - [sym_ref_id_specifier] = ACTIONS(2135), - [sym__code_span_start] = ACTIONS(2135), - [sym__html_comment] = ACTIONS(2135), - [sym__autolink] = ACTIONS(2135), - [sym__highlight_span_start] = ACTIONS(2135), - [sym__insert_span_start] = ACTIONS(2135), - [sym__delete_span_start] = ACTIONS(2135), - [sym__edit_comment_span_start] = ACTIONS(2135), - [sym__single_quote_span_open] = ACTIONS(2135), - [sym__double_quote_span_open] = ACTIONS(2135), - [sym__shortcode_open_escaped] = ACTIONS(2135), - [sym__shortcode_open] = ACTIONS(2135), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2135), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2135), - [sym__cite_author_in_text] = ACTIONS(2135), - [sym__cite_suppress_author] = ACTIONS(2135), - [sym__strikeout_open] = ACTIONS(2135), - [sym__subscript_open] = ACTIONS(2135), - [sym__superscript_open] = ACTIONS(2135), - [sym__inline_note_start_token] = ACTIONS(2135), - [sym__strong_emphasis_open_star] = ACTIONS(2135), - [sym__strong_emphasis_open_underscore] = ACTIONS(2135), - [sym__emphasis_open_star] = ACTIONS(2135), - [sym__emphasis_open_underscore] = ACTIONS(2135), - [sym_inline_note_reference] = ACTIONS(2135), - [sym_html_element] = ACTIONS(2135), - [sym__pandoc_lt_str] = ACTIONS(2135), - [sym__pandoc_line_break] = ACTIONS(2135), - [sym_grid_table] = ACTIONS(2135), - [sym__caption_start] = ACTIONS(2135), + [sym_caption] = STATE(3461), + [sym_pipe_table_row] = STATE(3451), + [sym_pipe_table_cell] = STATE(3010), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym_pipe_table_row_repeat1] = STATE(486), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2156), + [sym__line_ending] = ACTIONS(2158), + [sym__eof] = ACTIONS(2158), + [sym__pipe_table_line_ending] = ACTIONS(2158), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pipe_table_delimiter] = ACTIONS(2202), + [sym__pandoc_line_break] = ACTIONS(2140), + [sym__caption_start] = ACTIONS(2204), }, [STATE(146)] = { - [sym_caption] = STATE(3287), - [sym_pipe_table_row] = STATE(3289), - [sym_pipe_table_cell] = STATE(3077), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym_pipe_table_row_repeat1] = STATE(416), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2155), - [sym__line_ending] = ACTIONS(2157), - [sym__eof] = ACTIONS(2157), - [sym__pipe_table_line_ending] = ACTIONS(2157), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pipe_table_delimiter] = ACTIONS(2201), - [sym__pandoc_line_break] = ACTIONS(2139), - [sym__caption_start] = ACTIONS(2203), + [sym_entity_reference] = ACTIONS(2230), + [sym_numeric_character_reference] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_BANG_LBRACK] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2232), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2230), + [aux_sym_pandoc_str_token1] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2230), + [sym_task_list_marker_checked] = ACTIONS(2230), + [sym_task_list_marker_unchecked] = ACTIONS(2230), + [sym__whitespace] = ACTIONS(2230), + [sym__line_ending] = ACTIONS(2230), + [sym__soft_line_ending] = ACTIONS(2230), + [sym__block_close] = ACTIONS(2230), + [sym_block_continuation] = ACTIONS(2230), + [sym__block_quote_start] = ACTIONS(2230), + [sym_atx_h1_marker] = ACTIONS(2230), + [sym_atx_h2_marker] = ACTIONS(2230), + [sym_atx_h3_marker] = ACTIONS(2230), + [sym_atx_h4_marker] = ACTIONS(2230), + [sym_atx_h5_marker] = ACTIONS(2230), + [sym_atx_h6_marker] = ACTIONS(2230), + [sym__thematic_break] = ACTIONS(2230), + [sym__list_marker_minus] = ACTIONS(2230), + [sym__list_marker_plus] = ACTIONS(2230), + [sym__list_marker_star] = ACTIONS(2230), + [sym__list_marker_parenthesis] = ACTIONS(2230), + [sym__list_marker_dot] = ACTIONS(2230), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2230), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2230), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2230), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2230), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2230), + [sym__list_marker_example] = ACTIONS(2230), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2230), + [sym__fenced_code_block_start_backtick] = ACTIONS(2230), + [sym__blank_line_start] = ACTIONS(2230), + [sym__minus_metadata_start] = ACTIONS(2230), + [sym__pipe_table_start] = ACTIONS(2230), + [sym__fenced_div_start] = ACTIONS(2230), + [sym_ref_id_specifier] = ACTIONS(2230), + [sym__code_span_start] = ACTIONS(2230), + [sym__html_comment] = ACTIONS(2230), + [sym__autolink] = ACTIONS(2230), + [sym__highlight_span_start] = ACTIONS(2230), + [sym__insert_span_start] = ACTIONS(2230), + [sym__delete_span_start] = ACTIONS(2230), + [sym__edit_comment_span_start] = ACTIONS(2230), + [sym__single_quote_span_open] = ACTIONS(2230), + [sym__double_quote_span_open] = ACTIONS(2230), + [sym__shortcode_open_escaped] = ACTIONS(2230), + [sym__shortcode_open] = ACTIONS(2230), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2230), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2230), + [sym__cite_author_in_text] = ACTIONS(2230), + [sym__cite_suppress_author] = ACTIONS(2230), + [sym__strikeout_open] = ACTIONS(2230), + [sym__subscript_open] = ACTIONS(2230), + [sym__superscript_open] = ACTIONS(2230), + [sym__inline_note_start_token] = ACTIONS(2230), + [sym__strong_emphasis_open_star] = ACTIONS(2230), + [sym__strong_emphasis_open_underscore] = ACTIONS(2230), + [sym__emphasis_open_star] = ACTIONS(2230), + [sym__emphasis_open_underscore] = ACTIONS(2230), + [sym_inline_note_reference] = ACTIONS(2230), + [sym_html_element] = ACTIONS(2230), + [sym__pandoc_lt_str] = ACTIONS(2230), + [sym__pandoc_line_break] = ACTIONS(2230), + [sym_grid_table] = ACTIONS(2230), + [sym__caption_start] = ACTIONS(2230), }, [STATE(147)] = { - [sym_caption] = STATE(3433), - [sym_pipe_table_row] = STATE(3289), - [sym_pipe_table_cell] = STATE(3077), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym_pipe_table_row_repeat1] = STATE(416), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2155), - [sym__line_ending] = ACTIONS(2157), - [sym__eof] = ACTIONS(2157), - [sym__pipe_table_line_ending] = ACTIONS(2157), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pipe_table_delimiter] = ACTIONS(2201), - [sym__pandoc_line_break] = ACTIONS(2139), - [sym__caption_start] = ACTIONS(2203), + [sym_list_marker_plus] = STATE(14), + [sym__list_item_plus] = STATE(147), + [aux_sym__list_plus_repeat1] = STATE(147), + [sym_entity_reference] = ACTIONS(2234), + [sym_numeric_character_reference] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_BANG_LBRACK] = ACTIONS(2234), + [anon_sym_DOLLAR] = ACTIONS(2236), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [aux_sym_pandoc_str_token1] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(2234), + [sym__whitespace] = ACTIONS(2234), + [sym__line_ending] = ACTIONS(2234), + [sym__soft_line_ending] = ACTIONS(2234), + [sym__block_close] = ACTIONS(2234), + [sym__block_quote_start] = ACTIONS(2234), + [sym_atx_h1_marker] = ACTIONS(2234), + [sym_atx_h2_marker] = ACTIONS(2234), + [sym_atx_h3_marker] = ACTIONS(2234), + [sym_atx_h4_marker] = ACTIONS(2234), + [sym_atx_h5_marker] = ACTIONS(2234), + [sym_atx_h6_marker] = ACTIONS(2234), + [sym__thematic_break] = ACTIONS(2234), + [sym__list_marker_minus] = ACTIONS(2234), + [sym__list_marker_plus] = ACTIONS(2238), + [sym__list_marker_star] = ACTIONS(2234), + [sym__list_marker_parenthesis] = ACTIONS(2234), + [sym__list_marker_dot] = ACTIONS(2234), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2238), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_example] = ACTIONS(2234), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2234), + [sym__fenced_code_block_start_backtick] = ACTIONS(2234), + [sym__minus_metadata_start] = ACTIONS(2234), + [sym__pipe_table_start] = ACTIONS(2234), + [sym__fenced_div_start] = ACTIONS(2234), + [sym__fenced_div_end] = ACTIONS(2234), + [sym_ref_id_specifier] = ACTIONS(2234), + [sym__code_span_start] = ACTIONS(2234), + [sym__html_comment] = ACTIONS(2234), + [sym__autolink] = ACTIONS(2234), + [sym__highlight_span_start] = ACTIONS(2234), + [sym__insert_span_start] = ACTIONS(2234), + [sym__delete_span_start] = ACTIONS(2234), + [sym__edit_comment_span_start] = ACTIONS(2234), + [sym__single_quote_span_open] = ACTIONS(2234), + [sym__double_quote_span_open] = ACTIONS(2234), + [sym__shortcode_open_escaped] = ACTIONS(2234), + [sym__shortcode_open] = ACTIONS(2234), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2234), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2234), + [sym__cite_author_in_text] = ACTIONS(2234), + [sym__cite_suppress_author] = ACTIONS(2234), + [sym__strikeout_open] = ACTIONS(2234), + [sym__subscript_open] = ACTIONS(2234), + [sym__superscript_open] = ACTIONS(2234), + [sym__inline_note_start_token] = ACTIONS(2234), + [sym__strong_emphasis_open_star] = ACTIONS(2234), + [sym__strong_emphasis_open_underscore] = ACTIONS(2234), + [sym__emphasis_open_star] = ACTIONS(2234), + [sym__emphasis_open_underscore] = ACTIONS(2234), + [sym_inline_note_reference] = ACTIONS(2234), + [sym_html_element] = ACTIONS(2234), + [sym__pandoc_lt_str] = ACTIONS(2234), + [sym__pandoc_line_break] = ACTIONS(2234), + [sym_grid_table] = ACTIONS(2234), + [sym__caption_start] = ACTIONS(2234), }, [STATE(148)] = { - [sym_caption] = STATE(3468), - [sym_pipe_table_row] = STATE(3289), - [sym_pipe_table_cell] = STATE(3077), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym_pipe_table_row_repeat1] = STATE(416), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2155), - [sym__line_ending] = ACTIONS(2157), - [sym__eof] = ACTIONS(2157), - [sym__pipe_table_line_ending] = ACTIONS(2157), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pipe_table_delimiter] = ACTIONS(2201), - [sym__pandoc_line_break] = ACTIONS(2139), - [sym__caption_start] = ACTIONS(2203), + [sym_list_marker_minus] = STATE(15), + [sym__list_item_minus] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(148), + [sym_entity_reference] = ACTIONS(2241), + [sym_numeric_character_reference] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_BANG_LBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [aux_sym_pandoc_str_token1] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2241), + [sym__whitespace] = ACTIONS(2241), + [sym__line_ending] = ACTIONS(2241), + [sym__soft_line_ending] = ACTIONS(2241), + [sym__block_close] = ACTIONS(2241), + [sym__block_quote_start] = ACTIONS(2241), + [sym_atx_h1_marker] = ACTIONS(2241), + [sym_atx_h2_marker] = ACTIONS(2241), + [sym_atx_h3_marker] = ACTIONS(2241), + [sym_atx_h4_marker] = ACTIONS(2241), + [sym_atx_h5_marker] = ACTIONS(2241), + [sym_atx_h6_marker] = ACTIONS(2241), + [sym__thematic_break] = ACTIONS(2241), + [sym__list_marker_minus] = ACTIONS(2245), + [sym__list_marker_plus] = ACTIONS(2241), + [sym__list_marker_star] = ACTIONS(2241), + [sym__list_marker_parenthesis] = ACTIONS(2241), + [sym__list_marker_dot] = ACTIONS(2241), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2245), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2241), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2241), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2241), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2241), + [sym__list_marker_example] = ACTIONS(2241), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2241), + [sym__fenced_code_block_start_backtick] = ACTIONS(2241), + [sym__minus_metadata_start] = ACTIONS(2241), + [sym__pipe_table_start] = ACTIONS(2241), + [sym__fenced_div_start] = ACTIONS(2241), + [sym__fenced_div_end] = ACTIONS(2241), + [sym_ref_id_specifier] = ACTIONS(2241), + [sym__code_span_start] = ACTIONS(2241), + [sym__html_comment] = ACTIONS(2241), + [sym__autolink] = ACTIONS(2241), + [sym__highlight_span_start] = ACTIONS(2241), + [sym__insert_span_start] = ACTIONS(2241), + [sym__delete_span_start] = ACTIONS(2241), + [sym__edit_comment_span_start] = ACTIONS(2241), + [sym__single_quote_span_open] = ACTIONS(2241), + [sym__double_quote_span_open] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2241), + [sym__shortcode_open] = ACTIONS(2241), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2241), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2241), + [sym__cite_author_in_text] = ACTIONS(2241), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__strikeout_open] = ACTIONS(2241), + [sym__subscript_open] = ACTIONS(2241), + [sym__superscript_open] = ACTIONS(2241), + [sym__inline_note_start_token] = ACTIONS(2241), + [sym__strong_emphasis_open_star] = ACTIONS(2241), + [sym__strong_emphasis_open_underscore] = ACTIONS(2241), + [sym__emphasis_open_star] = ACTIONS(2241), + [sym__emphasis_open_underscore] = ACTIONS(2241), + [sym_inline_note_reference] = ACTIONS(2241), + [sym_html_element] = ACTIONS(2241), + [sym__pandoc_lt_str] = ACTIONS(2241), + [sym__pandoc_line_break] = ACTIONS(2241), + [sym_grid_table] = ACTIONS(2241), + [sym__caption_start] = ACTIONS(2241), }, [STATE(149)] = { - [sym_entity_reference] = ACTIONS(2205), - [sym_numeric_character_reference] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_BANG_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [aux_sym_pandoc_str_token1] = ACTIONS(2207), - [anon_sym_PIPE] = ACTIONS(2205), - [sym_task_list_marker_checked] = ACTIONS(2205), - [sym_task_list_marker_unchecked] = ACTIONS(2205), - [sym__whitespace] = ACTIONS(2205), - [sym__line_ending] = ACTIONS(2205), - [sym__soft_line_ending] = ACTIONS(2205), - [sym__block_close] = ACTIONS(2205), - [sym_block_continuation] = ACTIONS(2205), - [sym__block_quote_start] = ACTIONS(2205), - [sym_atx_h1_marker] = ACTIONS(2205), - [sym_atx_h2_marker] = ACTIONS(2205), - [sym_atx_h3_marker] = ACTIONS(2205), - [sym_atx_h4_marker] = ACTIONS(2205), - [sym_atx_h5_marker] = ACTIONS(2205), - [sym_atx_h6_marker] = ACTIONS(2205), - [sym__thematic_break] = ACTIONS(2205), - [sym__list_marker_minus] = ACTIONS(2205), - [sym__list_marker_plus] = ACTIONS(2205), - [sym__list_marker_star] = ACTIONS(2205), - [sym__list_marker_parenthesis] = ACTIONS(2205), - [sym__list_marker_dot] = ACTIONS(2205), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2205), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2205), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2205), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2205), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2205), - [sym__list_marker_example] = ACTIONS(2205), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2205), - [sym__fenced_code_block_start_backtick] = ACTIONS(2205), - [sym__blank_line_start] = ACTIONS(2205), - [sym_minus_metadata] = ACTIONS(2205), - [sym__pipe_table_start] = ACTIONS(2205), - [sym__fenced_div_start] = ACTIONS(2205), - [sym_ref_id_specifier] = ACTIONS(2205), - [sym__code_span_start] = ACTIONS(2205), - [sym__html_comment] = ACTIONS(2205), - [sym__autolink] = ACTIONS(2205), - [sym__highlight_span_start] = ACTIONS(2205), - [sym__insert_span_start] = ACTIONS(2205), - [sym__delete_span_start] = ACTIONS(2205), - [sym__edit_comment_span_start] = ACTIONS(2205), - [sym__single_quote_span_open] = ACTIONS(2205), - [sym__double_quote_span_open] = ACTIONS(2205), - [sym__shortcode_open_escaped] = ACTIONS(2205), - [sym__shortcode_open] = ACTIONS(2205), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2205), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2205), - [sym__cite_author_in_text] = ACTIONS(2205), - [sym__cite_suppress_author] = ACTIONS(2205), - [sym__strikeout_open] = ACTIONS(2205), - [sym__subscript_open] = ACTIONS(2205), - [sym__superscript_open] = ACTIONS(2205), - [sym__inline_note_start_token] = ACTIONS(2205), - [sym__strong_emphasis_open_star] = ACTIONS(2205), - [sym__strong_emphasis_open_underscore] = ACTIONS(2205), - [sym__emphasis_open_star] = ACTIONS(2205), - [sym__emphasis_open_underscore] = ACTIONS(2205), - [sym_inline_note_reference] = ACTIONS(2205), - [sym_html_element] = ACTIONS(2205), - [sym__pandoc_lt_str] = ACTIONS(2205), - [sym__pandoc_line_break] = ACTIONS(2205), - [sym_grid_table] = ACTIONS(2205), - [sym__caption_start] = ACTIONS(2205), + [sym_list_marker_star] = STATE(16), + [sym__list_item_star] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(149), + [sym_entity_reference] = ACTIONS(2248), + [sym_numeric_character_reference] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2248), + [anon_sym_BANG_LBRACK] = ACTIONS(2248), + [anon_sym_DOLLAR] = ACTIONS(2250), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2248), + [aux_sym_pandoc_str_token1] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2248), + [sym__whitespace] = ACTIONS(2248), + [sym__line_ending] = ACTIONS(2248), + [sym__soft_line_ending] = ACTIONS(2248), + [sym__block_close] = ACTIONS(2248), + [sym__block_quote_start] = ACTIONS(2248), + [sym_atx_h1_marker] = ACTIONS(2248), + [sym_atx_h2_marker] = ACTIONS(2248), + [sym_atx_h3_marker] = ACTIONS(2248), + [sym_atx_h4_marker] = ACTIONS(2248), + [sym_atx_h5_marker] = ACTIONS(2248), + [sym_atx_h6_marker] = ACTIONS(2248), + [sym__thematic_break] = ACTIONS(2248), + [sym__list_marker_minus] = ACTIONS(2248), + [sym__list_marker_plus] = ACTIONS(2248), + [sym__list_marker_star] = ACTIONS(2252), + [sym__list_marker_parenthesis] = ACTIONS(2248), + [sym__list_marker_dot] = ACTIONS(2248), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2248), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2248), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2252), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2248), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2248), + [sym__list_marker_example] = ACTIONS(2248), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2248), + [sym__fenced_code_block_start_backtick] = ACTIONS(2248), + [sym__minus_metadata_start] = ACTIONS(2248), + [sym__pipe_table_start] = ACTIONS(2248), + [sym__fenced_div_start] = ACTIONS(2248), + [sym__fenced_div_end] = ACTIONS(2248), + [sym_ref_id_specifier] = ACTIONS(2248), + [sym__code_span_start] = ACTIONS(2248), + [sym__html_comment] = ACTIONS(2248), + [sym__autolink] = ACTIONS(2248), + [sym__highlight_span_start] = ACTIONS(2248), + [sym__insert_span_start] = ACTIONS(2248), + [sym__delete_span_start] = ACTIONS(2248), + [sym__edit_comment_span_start] = ACTIONS(2248), + [sym__single_quote_span_open] = ACTIONS(2248), + [sym__double_quote_span_open] = ACTIONS(2248), + [sym__shortcode_open_escaped] = ACTIONS(2248), + [sym__shortcode_open] = ACTIONS(2248), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2248), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2248), + [sym__cite_author_in_text] = ACTIONS(2248), + [sym__cite_suppress_author] = ACTIONS(2248), + [sym__strikeout_open] = ACTIONS(2248), + [sym__subscript_open] = ACTIONS(2248), + [sym__superscript_open] = ACTIONS(2248), + [sym__inline_note_start_token] = ACTIONS(2248), + [sym__strong_emphasis_open_star] = ACTIONS(2248), + [sym__strong_emphasis_open_underscore] = ACTIONS(2248), + [sym__emphasis_open_star] = ACTIONS(2248), + [sym__emphasis_open_underscore] = ACTIONS(2248), + [sym_inline_note_reference] = ACTIONS(2248), + [sym_html_element] = ACTIONS(2248), + [sym__pandoc_lt_str] = ACTIONS(2248), + [sym__pandoc_line_break] = ACTIONS(2248), + [sym_grid_table] = ACTIONS(2248), + [sym__caption_start] = ACTIONS(2248), }, [STATE(150)] = { - [sym_caption] = STATE(3283), - [sym_pipe_table_row] = STATE(3289), - [sym_pipe_table_cell] = STATE(3077), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym_pipe_table_row_repeat1] = STATE(416), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2155), - [sym__line_ending] = ACTIONS(2157), - [sym__eof] = ACTIONS(2157), - [sym__pipe_table_line_ending] = ACTIONS(2157), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pipe_table_delimiter] = ACTIONS(2201), - [sym__pandoc_line_break] = ACTIONS(2139), - [sym__caption_start] = ACTIONS(2203), + [sym_entity_reference] = ACTIONS(2255), + [sym_numeric_character_reference] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2257), + [anon_sym_BANG_LBRACK] = ACTIONS(2255), + [anon_sym_DOLLAR] = ACTIONS(2257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [aux_sym_pandoc_str_token1] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2255), + [sym_task_list_marker_checked] = ACTIONS(2255), + [sym_task_list_marker_unchecked] = ACTIONS(2255), + [sym__whitespace] = ACTIONS(2255), + [sym__line_ending] = ACTIONS(2255), + [sym__soft_line_ending] = ACTIONS(2255), + [sym__block_close] = ACTIONS(2255), + [sym_block_continuation] = ACTIONS(2255), + [sym__block_quote_start] = ACTIONS(2255), + [sym_atx_h1_marker] = ACTIONS(2255), + [sym_atx_h2_marker] = ACTIONS(2255), + [sym_atx_h3_marker] = ACTIONS(2255), + [sym_atx_h4_marker] = ACTIONS(2255), + [sym_atx_h5_marker] = ACTIONS(2255), + [sym_atx_h6_marker] = ACTIONS(2255), + [sym__thematic_break] = ACTIONS(2255), + [sym__list_marker_minus] = ACTIONS(2255), + [sym__list_marker_plus] = ACTIONS(2255), + [sym__list_marker_star] = ACTIONS(2255), + [sym__list_marker_parenthesis] = ACTIONS(2255), + [sym__list_marker_dot] = ACTIONS(2255), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2255), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2255), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2255), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2255), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2255), + [sym__list_marker_example] = ACTIONS(2255), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2255), + [sym__fenced_code_block_start_backtick] = ACTIONS(2255), + [sym__blank_line_start] = ACTIONS(2255), + [sym__minus_metadata_start] = ACTIONS(2255), + [sym__pipe_table_start] = ACTIONS(2255), + [sym__fenced_div_start] = ACTIONS(2255), + [sym_ref_id_specifier] = ACTIONS(2255), + [sym__code_span_start] = ACTIONS(2255), + [sym__html_comment] = ACTIONS(2255), + [sym__autolink] = ACTIONS(2255), + [sym__highlight_span_start] = ACTIONS(2255), + [sym__insert_span_start] = ACTIONS(2255), + [sym__delete_span_start] = ACTIONS(2255), + [sym__edit_comment_span_start] = ACTIONS(2255), + [sym__single_quote_span_open] = ACTIONS(2255), + [sym__double_quote_span_open] = ACTIONS(2255), + [sym__shortcode_open_escaped] = ACTIONS(2255), + [sym__shortcode_open] = ACTIONS(2255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2255), + [sym__cite_author_in_text] = ACTIONS(2255), + [sym__cite_suppress_author] = ACTIONS(2255), + [sym__strikeout_open] = ACTIONS(2255), + [sym__subscript_open] = ACTIONS(2255), + [sym__superscript_open] = ACTIONS(2255), + [sym__inline_note_start_token] = ACTIONS(2255), + [sym__strong_emphasis_open_star] = ACTIONS(2255), + [sym__strong_emphasis_open_underscore] = ACTIONS(2255), + [sym__emphasis_open_star] = ACTIONS(2255), + [sym__emphasis_open_underscore] = ACTIONS(2255), + [sym_inline_note_reference] = ACTIONS(2255), + [sym_html_element] = ACTIONS(2255), + [sym__pandoc_lt_str] = ACTIONS(2255), + [sym__pandoc_line_break] = ACTIONS(2255), + [sym_grid_table] = ACTIONS(2255), + [sym__caption_start] = ACTIONS(2255), }, [STATE(151)] = { - [sym_entity_reference] = ACTIONS(2209), - [sym_numeric_character_reference] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_BANG_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2209), - [aux_sym_pandoc_str_token1] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2209), - [sym_task_list_marker_checked] = ACTIONS(2209), - [sym_task_list_marker_unchecked] = ACTIONS(2209), - [sym__whitespace] = ACTIONS(2209), - [sym__line_ending] = ACTIONS(2209), - [sym__soft_line_ending] = ACTIONS(2209), - [sym__block_close] = ACTIONS(2209), - [sym_block_continuation] = ACTIONS(2209), - [sym__block_quote_start] = ACTIONS(2209), - [sym_atx_h1_marker] = ACTIONS(2209), - [sym_atx_h2_marker] = ACTIONS(2209), - [sym_atx_h3_marker] = ACTIONS(2209), - [sym_atx_h4_marker] = ACTIONS(2209), - [sym_atx_h5_marker] = ACTIONS(2209), - [sym_atx_h6_marker] = ACTIONS(2209), - [sym__thematic_break] = ACTIONS(2209), - [sym__list_marker_minus] = ACTIONS(2209), - [sym__list_marker_plus] = ACTIONS(2209), - [sym__list_marker_star] = ACTIONS(2209), - [sym__list_marker_parenthesis] = ACTIONS(2209), - [sym__list_marker_dot] = ACTIONS(2209), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2209), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2209), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2209), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2209), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2209), - [sym__list_marker_example] = ACTIONS(2209), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2209), - [sym__fenced_code_block_start_backtick] = ACTIONS(2209), - [sym__blank_line_start] = ACTIONS(2209), - [sym_minus_metadata] = ACTIONS(2209), - [sym__pipe_table_start] = ACTIONS(2209), - [sym__fenced_div_start] = ACTIONS(2209), - [sym_ref_id_specifier] = ACTIONS(2209), - [sym__code_span_start] = ACTIONS(2209), - [sym__html_comment] = ACTIONS(2209), - [sym__autolink] = ACTIONS(2209), - [sym__highlight_span_start] = ACTIONS(2209), - [sym__insert_span_start] = ACTIONS(2209), - [sym__delete_span_start] = ACTIONS(2209), - [sym__edit_comment_span_start] = ACTIONS(2209), - [sym__single_quote_span_open] = ACTIONS(2209), - [sym__double_quote_span_open] = ACTIONS(2209), - [sym__shortcode_open_escaped] = ACTIONS(2209), - [sym__shortcode_open] = ACTIONS(2209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2209), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2209), - [sym__cite_author_in_text] = ACTIONS(2209), - [sym__cite_suppress_author] = ACTIONS(2209), - [sym__strikeout_open] = ACTIONS(2209), - [sym__subscript_open] = ACTIONS(2209), - [sym__superscript_open] = ACTIONS(2209), - [sym__inline_note_start_token] = ACTIONS(2209), - [sym__strong_emphasis_open_star] = ACTIONS(2209), - [sym__strong_emphasis_open_underscore] = ACTIONS(2209), - [sym__emphasis_open_star] = ACTIONS(2209), - [sym__emphasis_open_underscore] = ACTIONS(2209), - [sym_inline_note_reference] = ACTIONS(2209), - [sym_html_element] = ACTIONS(2209), - [sym__pandoc_lt_str] = ACTIONS(2209), - [sym__pandoc_line_break] = ACTIONS(2209), - [sym_grid_table] = ACTIONS(2209), - [sym__caption_start] = ACTIONS(2209), + [sym_list_marker_parenthesis] = STATE(18), + [sym__list_item_parenthesis] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(151), + [sym_entity_reference] = ACTIONS(2259), + [sym_numeric_character_reference] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_BANG_LBRACK] = ACTIONS(2259), + [anon_sym_DOLLAR] = ACTIONS(2261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [aux_sym_pandoc_str_token1] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2259), + [sym__whitespace] = ACTIONS(2259), + [sym__line_ending] = ACTIONS(2259), + [sym__soft_line_ending] = ACTIONS(2259), + [sym__block_close] = ACTIONS(2259), + [sym__block_quote_start] = ACTIONS(2259), + [sym_atx_h1_marker] = ACTIONS(2259), + [sym_atx_h2_marker] = ACTIONS(2259), + [sym_atx_h3_marker] = ACTIONS(2259), + [sym_atx_h4_marker] = ACTIONS(2259), + [sym_atx_h5_marker] = ACTIONS(2259), + [sym_atx_h6_marker] = ACTIONS(2259), + [sym__thematic_break] = ACTIONS(2259), + [sym__list_marker_minus] = ACTIONS(2259), + [sym__list_marker_plus] = ACTIONS(2259), + [sym__list_marker_star] = ACTIONS(2259), + [sym__list_marker_parenthesis] = ACTIONS(2263), + [sym__list_marker_dot] = ACTIONS(2259), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2259), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2259), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2259), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2263), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2259), + [sym__list_marker_example] = ACTIONS(2259), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2259), + [sym__fenced_code_block_start_backtick] = ACTIONS(2259), + [sym__minus_metadata_start] = ACTIONS(2259), + [sym__pipe_table_start] = ACTIONS(2259), + [sym__fenced_div_start] = ACTIONS(2259), + [sym__fenced_div_end] = ACTIONS(2259), + [sym_ref_id_specifier] = ACTIONS(2259), + [sym__code_span_start] = ACTIONS(2259), + [sym__html_comment] = ACTIONS(2259), + [sym__autolink] = ACTIONS(2259), + [sym__highlight_span_start] = ACTIONS(2259), + [sym__insert_span_start] = ACTIONS(2259), + [sym__delete_span_start] = ACTIONS(2259), + [sym__edit_comment_span_start] = ACTIONS(2259), + [sym__single_quote_span_open] = ACTIONS(2259), + [sym__double_quote_span_open] = ACTIONS(2259), + [sym__shortcode_open_escaped] = ACTIONS(2259), + [sym__shortcode_open] = ACTIONS(2259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2259), + [sym__cite_author_in_text] = ACTIONS(2259), + [sym__cite_suppress_author] = ACTIONS(2259), + [sym__strikeout_open] = ACTIONS(2259), + [sym__subscript_open] = ACTIONS(2259), + [sym__superscript_open] = ACTIONS(2259), + [sym__inline_note_start_token] = ACTIONS(2259), + [sym__strong_emphasis_open_star] = ACTIONS(2259), + [sym__strong_emphasis_open_underscore] = ACTIONS(2259), + [sym__emphasis_open_star] = ACTIONS(2259), + [sym__emphasis_open_underscore] = ACTIONS(2259), + [sym_inline_note_reference] = ACTIONS(2259), + [sym_html_element] = ACTIONS(2259), + [sym__pandoc_lt_str] = ACTIONS(2259), + [sym__pandoc_line_break] = ACTIONS(2259), + [sym_grid_table] = ACTIONS(2259), + [sym__caption_start] = ACTIONS(2259), }, [STATE(152)] = { - [sym_caption] = STATE(3342), - [sym_pipe_table_row] = STATE(3289), - [sym_pipe_table_cell] = STATE(3077), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym_pipe_table_row_repeat1] = STATE(416), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2155), - [sym__line_ending] = ACTIONS(2157), - [sym__eof] = ACTIONS(2157), - [sym__pipe_table_line_ending] = ACTIONS(2157), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pipe_table_delimiter] = ACTIONS(2201), - [sym__pandoc_line_break] = ACTIONS(2139), - [sym__caption_start] = ACTIONS(2203), + [sym_list_marker_example] = STATE(19), + [sym__list_item_example] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(152), + [sym_entity_reference] = ACTIONS(2266), + [sym_numeric_character_reference] = ACTIONS(2266), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym_BANG_LBRACK] = ACTIONS(2266), + [anon_sym_DOLLAR] = ACTIONS(2268), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2266), + [anon_sym_LBRACE] = ACTIONS(2266), + [aux_sym_pandoc_str_token1] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2266), + [sym__whitespace] = ACTIONS(2266), + [sym__line_ending] = ACTIONS(2266), + [sym__soft_line_ending] = ACTIONS(2266), + [sym__block_close] = ACTIONS(2266), + [sym__block_quote_start] = ACTIONS(2266), + [sym_atx_h1_marker] = ACTIONS(2266), + [sym_atx_h2_marker] = ACTIONS(2266), + [sym_atx_h3_marker] = ACTIONS(2266), + [sym_atx_h4_marker] = ACTIONS(2266), + [sym_atx_h5_marker] = ACTIONS(2266), + [sym_atx_h6_marker] = ACTIONS(2266), + [sym__thematic_break] = ACTIONS(2266), + [sym__list_marker_minus] = ACTIONS(2266), + [sym__list_marker_plus] = ACTIONS(2266), + [sym__list_marker_star] = ACTIONS(2266), + [sym__list_marker_parenthesis] = ACTIONS(2266), + [sym__list_marker_dot] = ACTIONS(2266), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_example] = ACTIONS(2270), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2270), + [sym__fenced_code_block_start_backtick] = ACTIONS(2266), + [sym__minus_metadata_start] = ACTIONS(2266), + [sym__pipe_table_start] = ACTIONS(2266), + [sym__fenced_div_start] = ACTIONS(2266), + [sym__fenced_div_end] = ACTIONS(2266), + [sym_ref_id_specifier] = ACTIONS(2266), + [sym__code_span_start] = ACTIONS(2266), + [sym__html_comment] = ACTIONS(2266), + [sym__autolink] = ACTIONS(2266), + [sym__highlight_span_start] = ACTIONS(2266), + [sym__insert_span_start] = ACTIONS(2266), + [sym__delete_span_start] = ACTIONS(2266), + [sym__edit_comment_span_start] = ACTIONS(2266), + [sym__single_quote_span_open] = ACTIONS(2266), + [sym__double_quote_span_open] = ACTIONS(2266), + [sym__shortcode_open_escaped] = ACTIONS(2266), + [sym__shortcode_open] = ACTIONS(2266), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2266), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2266), + [sym__cite_author_in_text] = ACTIONS(2266), + [sym__cite_suppress_author] = ACTIONS(2266), + [sym__strikeout_open] = ACTIONS(2266), + [sym__subscript_open] = ACTIONS(2266), + [sym__superscript_open] = ACTIONS(2266), + [sym__inline_note_start_token] = ACTIONS(2266), + [sym__strong_emphasis_open_star] = ACTIONS(2266), + [sym__strong_emphasis_open_underscore] = ACTIONS(2266), + [sym__emphasis_open_star] = ACTIONS(2266), + [sym__emphasis_open_underscore] = ACTIONS(2266), + [sym_inline_note_reference] = ACTIONS(2266), + [sym_html_element] = ACTIONS(2266), + [sym__pandoc_lt_str] = ACTIONS(2266), + [sym__pandoc_line_break] = ACTIONS(2266), + [sym_grid_table] = ACTIONS(2266), + [sym__caption_start] = ACTIONS(2266), }, [STATE(153)] = { - [sym_caption] = STATE(3429), - [sym_pipe_table_row] = STATE(3289), - [sym_pipe_table_cell] = STATE(3077), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym_pipe_table_row_repeat1] = STATE(416), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2155), - [sym__line_ending] = ACTIONS(2157), - [sym__eof] = ACTIONS(2157), - [sym__pipe_table_line_ending] = ACTIONS(2157), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pipe_table_delimiter] = ACTIONS(2201), - [sym__pandoc_line_break] = ACTIONS(2139), - [sym__caption_start] = ACTIONS(2203), + [sym_entity_reference] = ACTIONS(2273), + [sym_numeric_character_reference] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2275), + [anon_sym_BANG_LBRACK] = ACTIONS(2273), + [anon_sym_DOLLAR] = ACTIONS(2275), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [aux_sym_pandoc_str_token1] = ACTIONS(2275), + [anon_sym_PIPE] = ACTIONS(2273), + [sym_task_list_marker_checked] = ACTIONS(2273), + [sym_task_list_marker_unchecked] = ACTIONS(2273), + [sym__whitespace] = ACTIONS(2273), + [sym__line_ending] = ACTIONS(2273), + [sym__soft_line_ending] = ACTIONS(2273), + [sym__block_close] = ACTIONS(2273), + [sym_block_continuation] = ACTIONS(2273), + [sym__block_quote_start] = ACTIONS(2273), + [sym_atx_h1_marker] = ACTIONS(2273), + [sym_atx_h2_marker] = ACTIONS(2273), + [sym_atx_h3_marker] = ACTIONS(2273), + [sym_atx_h4_marker] = ACTIONS(2273), + [sym_atx_h5_marker] = ACTIONS(2273), + [sym_atx_h6_marker] = ACTIONS(2273), + [sym__thematic_break] = ACTIONS(2273), + [sym__list_marker_minus] = ACTIONS(2273), + [sym__list_marker_plus] = ACTIONS(2273), + [sym__list_marker_star] = ACTIONS(2273), + [sym__list_marker_parenthesis] = ACTIONS(2273), + [sym__list_marker_dot] = ACTIONS(2273), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2273), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2273), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2273), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2273), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2273), + [sym__list_marker_example] = ACTIONS(2273), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2273), + [sym__fenced_code_block_start_backtick] = ACTIONS(2273), + [sym__blank_line_start] = ACTIONS(2273), + [sym__minus_metadata_start] = ACTIONS(2273), + [sym__pipe_table_start] = ACTIONS(2273), + [sym__fenced_div_start] = ACTIONS(2273), + [sym_ref_id_specifier] = ACTIONS(2273), + [sym__code_span_start] = ACTIONS(2273), + [sym__html_comment] = ACTIONS(2273), + [sym__autolink] = ACTIONS(2273), + [sym__highlight_span_start] = ACTIONS(2273), + [sym__insert_span_start] = ACTIONS(2273), + [sym__delete_span_start] = ACTIONS(2273), + [sym__edit_comment_span_start] = ACTIONS(2273), + [sym__single_quote_span_open] = ACTIONS(2273), + [sym__double_quote_span_open] = ACTIONS(2273), + [sym__shortcode_open_escaped] = ACTIONS(2273), + [sym__shortcode_open] = ACTIONS(2273), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2273), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2273), + [sym__cite_author_in_text] = ACTIONS(2273), + [sym__cite_suppress_author] = ACTIONS(2273), + [sym__strikeout_open] = ACTIONS(2273), + [sym__subscript_open] = ACTIONS(2273), + [sym__superscript_open] = ACTIONS(2273), + [sym__inline_note_start_token] = ACTIONS(2273), + [sym__strong_emphasis_open_star] = ACTIONS(2273), + [sym__strong_emphasis_open_underscore] = ACTIONS(2273), + [sym__emphasis_open_star] = ACTIONS(2273), + [sym__emphasis_open_underscore] = ACTIONS(2273), + [sym_inline_note_reference] = ACTIONS(2273), + [sym_html_element] = ACTIONS(2273), + [sym__pandoc_lt_str] = ACTIONS(2273), + [sym__pandoc_line_break] = ACTIONS(2273), + [sym_grid_table] = ACTIONS(2273), + [sym__caption_start] = ACTIONS(2273), }, [STATE(154)] = { - [sym_list_marker_dot] = STATE(3), - [sym__list_item_dot] = STATE(154), - [aux_sym__list_dot_repeat1] = STATE(154), - [ts_builtin_sym_end] = ACTIONS(2057), - [sym_entity_reference] = ACTIONS(2057), - [sym_numeric_character_reference] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_BANG_LBRACK] = ACTIONS(2057), - [anon_sym_DOLLAR] = ACTIONS(2059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [aux_sym_pandoc_str_token1] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(2057), - [sym__whitespace] = ACTIONS(2057), - [sym__line_ending] = ACTIONS(2057), - [sym__soft_line_ending] = ACTIONS(2057), - [sym__block_quote_start] = ACTIONS(2057), - [sym_atx_h1_marker] = ACTIONS(2057), - [sym_atx_h2_marker] = ACTIONS(2057), - [sym_atx_h3_marker] = ACTIONS(2057), - [sym_atx_h4_marker] = ACTIONS(2057), - [sym_atx_h5_marker] = ACTIONS(2057), - [sym_atx_h6_marker] = ACTIONS(2057), - [sym__thematic_break] = ACTIONS(2057), - [sym__list_marker_minus] = ACTIONS(2057), - [sym__list_marker_plus] = ACTIONS(2057), - [sym__list_marker_star] = ACTIONS(2057), - [sym__list_marker_parenthesis] = ACTIONS(2057), - [sym__list_marker_dot] = ACTIONS(2061), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2057), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2057), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2057), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2057), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2061), - [sym__list_marker_example] = ACTIONS(2057), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2057), - [sym__fenced_code_block_start_backtick] = ACTIONS(2057), - [sym_minus_metadata] = ACTIONS(2057), - [sym__pipe_table_start] = ACTIONS(2057), - [sym__fenced_div_start] = ACTIONS(2057), - [sym_ref_id_specifier] = ACTIONS(2057), - [sym__code_span_start] = ACTIONS(2057), - [sym__html_comment] = ACTIONS(2057), - [sym__autolink] = ACTIONS(2057), - [sym__highlight_span_start] = ACTIONS(2057), - [sym__insert_span_start] = ACTIONS(2057), - [sym__delete_span_start] = ACTIONS(2057), - [sym__edit_comment_span_start] = ACTIONS(2057), - [sym__single_quote_span_open] = ACTIONS(2057), - [sym__double_quote_span_open] = ACTIONS(2057), - [sym__shortcode_open_escaped] = ACTIONS(2057), - [sym__shortcode_open] = ACTIONS(2057), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2057), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2057), - [sym__cite_author_in_text] = ACTIONS(2057), - [sym__cite_suppress_author] = ACTIONS(2057), - [sym__strikeout_open] = ACTIONS(2057), - [sym__subscript_open] = ACTIONS(2057), - [sym__superscript_open] = ACTIONS(2057), - [sym__inline_note_start_token] = ACTIONS(2057), - [sym__strong_emphasis_open_star] = ACTIONS(2057), - [sym__strong_emphasis_open_underscore] = ACTIONS(2057), - [sym__emphasis_open_star] = ACTIONS(2057), - [sym__emphasis_open_underscore] = ACTIONS(2057), - [sym_inline_note_reference] = ACTIONS(2057), - [sym_html_element] = ACTIONS(2057), - [sym__pandoc_lt_str] = ACTIONS(2057), - [sym__pandoc_line_break] = ACTIONS(2057), - [sym_grid_table] = ACTIONS(2057), - [sym__caption_start] = ACTIONS(2057), + [sym_list_marker_star] = STATE(4), + [sym__list_item_star] = STATE(171), + [aux_sym__list_star_repeat1] = STATE(171), + [ts_builtin_sym_end] = ACTIONS(2214), + [sym_entity_reference] = ACTIONS(2214), + [sym_numeric_character_reference] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_BANG_LBRACK] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2214), + [aux_sym_pandoc_str_token1] = ACTIONS(2216), + [anon_sym_PIPE] = ACTIONS(2214), + [sym__whitespace] = ACTIONS(2214), + [sym__line_ending] = ACTIONS(2214), + [sym__soft_line_ending] = ACTIONS(2214), + [sym__block_quote_start] = ACTIONS(2214), + [sym_atx_h1_marker] = ACTIONS(2214), + [sym_atx_h2_marker] = ACTIONS(2214), + [sym_atx_h3_marker] = ACTIONS(2214), + [sym_atx_h4_marker] = ACTIONS(2214), + [sym_atx_h5_marker] = ACTIONS(2214), + [sym_atx_h6_marker] = ACTIONS(2214), + [sym__thematic_break] = ACTIONS(2214), + [sym__list_marker_minus] = ACTIONS(2214), + [sym__list_marker_plus] = ACTIONS(2214), + [sym__list_marker_star] = ACTIONS(47), + [sym__list_marker_parenthesis] = ACTIONS(2214), + [sym__list_marker_dot] = ACTIONS(2214), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_star_dont_interrupt] = ACTIONS(47), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_example] = ACTIONS(2214), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2214), + [sym__fenced_code_block_start_backtick] = ACTIONS(2214), + [sym__minus_metadata_start] = ACTIONS(2214), + [sym__pipe_table_start] = ACTIONS(2214), + [sym__fenced_div_start] = ACTIONS(2214), + [sym_ref_id_specifier] = ACTIONS(2214), + [sym__code_span_start] = ACTIONS(2214), + [sym__html_comment] = ACTIONS(2214), + [sym__autolink] = ACTIONS(2214), + [sym__highlight_span_start] = ACTIONS(2214), + [sym__insert_span_start] = ACTIONS(2214), + [sym__delete_span_start] = ACTIONS(2214), + [sym__edit_comment_span_start] = ACTIONS(2214), + [sym__single_quote_span_open] = ACTIONS(2214), + [sym__double_quote_span_open] = ACTIONS(2214), + [sym__shortcode_open_escaped] = ACTIONS(2214), + [sym__shortcode_open] = ACTIONS(2214), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2214), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2214), + [sym__cite_author_in_text] = ACTIONS(2214), + [sym__cite_suppress_author] = ACTIONS(2214), + [sym__strikeout_open] = ACTIONS(2214), + [sym__subscript_open] = ACTIONS(2214), + [sym__superscript_open] = ACTIONS(2214), + [sym__inline_note_start_token] = ACTIONS(2214), + [sym__strong_emphasis_open_star] = ACTIONS(2214), + [sym__strong_emphasis_open_underscore] = ACTIONS(2214), + [sym__emphasis_open_star] = ACTIONS(2214), + [sym__emphasis_open_underscore] = ACTIONS(2214), + [sym_inline_note_reference] = ACTIONS(2214), + [sym_html_element] = ACTIONS(2214), + [sym__pandoc_lt_str] = ACTIONS(2214), + [sym__pandoc_line_break] = ACTIONS(2214), + [sym_grid_table] = ACTIONS(2214), + [sym__caption_start] = ACTIONS(2214), }, [STATE(155)] = { - [sym_list_marker_example] = STATE(12), - [sym__list_item_example] = STATE(155), - [aux_sym__list_example_repeat1] = STATE(155), - [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), - [sym__whitespace] = ACTIONS(2128), - [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(2128), - [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(2128), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2128), - [sym__list_marker_example] = ACTIONS(2132), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2132), - [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_lt_str] = ACTIONS(2128), - [sym__pandoc_line_break] = ACTIONS(2128), - [sym_grid_table] = ACTIONS(2128), - [sym__caption_start] = ACTIONS(2128), - }, - [STATE(156)] = { [sym_list_marker_dot] = STATE(3), - [sym__list_item_dot] = STATE(154), - [aux_sym__list_dot_repeat1] = STATE(154), - [ts_builtin_sym_end] = ACTIONS(2088), - [sym_entity_reference] = ACTIONS(2088), - [sym_numeric_character_reference] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_BANG_LBRACK] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2090), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [aux_sym_pandoc_str_token1] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2088), - [sym__whitespace] = ACTIONS(2088), - [sym__line_ending] = ACTIONS(2088), - [sym__soft_line_ending] = ACTIONS(2088), - [sym__block_quote_start] = ACTIONS(2088), - [sym_atx_h1_marker] = ACTIONS(2088), - [sym_atx_h2_marker] = ACTIONS(2088), - [sym_atx_h3_marker] = ACTIONS(2088), - [sym_atx_h4_marker] = ACTIONS(2088), - [sym_atx_h5_marker] = ACTIONS(2088), - [sym_atx_h6_marker] = ACTIONS(2088), - [sym__thematic_break] = ACTIONS(2088), - [sym__list_marker_minus] = ACTIONS(2088), - [sym__list_marker_plus] = ACTIONS(2088), - [sym__list_marker_star] = ACTIONS(2088), - [sym__list_marker_parenthesis] = ACTIONS(2088), + [sym__list_item_dot] = STATE(172), + [aux_sym__list_dot_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(2218), + [sym_entity_reference] = ACTIONS(2218), + [sym_numeric_character_reference] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_BANG_LBRACK] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2220), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [aux_sym_pandoc_str_token1] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(2218), + [sym__whitespace] = ACTIONS(2218), + [sym__line_ending] = ACTIONS(2218), + [sym__soft_line_ending] = ACTIONS(2218), + [sym__block_quote_start] = ACTIONS(2218), + [sym_atx_h1_marker] = ACTIONS(2218), + [sym_atx_h2_marker] = ACTIONS(2218), + [sym_atx_h3_marker] = ACTIONS(2218), + [sym_atx_h4_marker] = ACTIONS(2218), + [sym_atx_h5_marker] = ACTIONS(2218), + [sym_atx_h6_marker] = ACTIONS(2218), + [sym__thematic_break] = ACTIONS(2218), + [sym__list_marker_minus] = ACTIONS(2218), + [sym__list_marker_plus] = ACTIONS(2218), + [sym__list_marker_star] = ACTIONS(2218), + [sym__list_marker_parenthesis] = ACTIONS(2218), [sym__list_marker_dot] = ACTIONS(51), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2088), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2218), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2218), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2218), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2218), [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), - [sym__list_marker_example] = ACTIONS(2088), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2088), - [sym__fenced_code_block_start_backtick] = ACTIONS(2088), - [sym_minus_metadata] = ACTIONS(2088), - [sym__pipe_table_start] = ACTIONS(2088), - [sym__fenced_div_start] = ACTIONS(2088), - [sym_ref_id_specifier] = ACTIONS(2088), - [sym__code_span_start] = ACTIONS(2088), - [sym__html_comment] = ACTIONS(2088), - [sym__autolink] = ACTIONS(2088), - [sym__highlight_span_start] = ACTIONS(2088), - [sym__insert_span_start] = ACTIONS(2088), - [sym__delete_span_start] = ACTIONS(2088), - [sym__edit_comment_span_start] = ACTIONS(2088), - [sym__single_quote_span_open] = ACTIONS(2088), - [sym__double_quote_span_open] = ACTIONS(2088), - [sym__shortcode_open_escaped] = ACTIONS(2088), - [sym__shortcode_open] = ACTIONS(2088), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2088), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2088), - [sym__cite_author_in_text] = ACTIONS(2088), - [sym__cite_suppress_author] = ACTIONS(2088), - [sym__strikeout_open] = ACTIONS(2088), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2088), - [sym__inline_note_start_token] = ACTIONS(2088), - [sym__strong_emphasis_open_star] = ACTIONS(2088), - [sym__strong_emphasis_open_underscore] = ACTIONS(2088), - [sym__emphasis_open_star] = ACTIONS(2088), - [sym__emphasis_open_underscore] = ACTIONS(2088), - [sym_inline_note_reference] = ACTIONS(2088), - [sym_html_element] = ACTIONS(2088), - [sym__pandoc_lt_str] = ACTIONS(2088), - [sym__pandoc_line_break] = ACTIONS(2088), - [sym_grid_table] = ACTIONS(2088), - [sym__caption_start] = ACTIONS(2088), + [sym__list_marker_example] = ACTIONS(2218), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2218), + [sym__fenced_code_block_start_backtick] = ACTIONS(2218), + [sym__minus_metadata_start] = ACTIONS(2218), + [sym__pipe_table_start] = ACTIONS(2218), + [sym__fenced_div_start] = ACTIONS(2218), + [sym_ref_id_specifier] = ACTIONS(2218), + [sym__code_span_start] = ACTIONS(2218), + [sym__html_comment] = ACTIONS(2218), + [sym__autolink] = ACTIONS(2218), + [sym__highlight_span_start] = ACTIONS(2218), + [sym__insert_span_start] = ACTIONS(2218), + [sym__delete_span_start] = ACTIONS(2218), + [sym__edit_comment_span_start] = ACTIONS(2218), + [sym__single_quote_span_open] = ACTIONS(2218), + [sym__double_quote_span_open] = ACTIONS(2218), + [sym__shortcode_open_escaped] = ACTIONS(2218), + [sym__shortcode_open] = ACTIONS(2218), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2218), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2218), + [sym__cite_author_in_text] = ACTIONS(2218), + [sym__cite_suppress_author] = ACTIONS(2218), + [sym__strikeout_open] = ACTIONS(2218), + [sym__subscript_open] = ACTIONS(2218), + [sym__superscript_open] = ACTIONS(2218), + [sym__inline_note_start_token] = ACTIONS(2218), + [sym__strong_emphasis_open_star] = ACTIONS(2218), + [sym__strong_emphasis_open_underscore] = ACTIONS(2218), + [sym__emphasis_open_star] = ACTIONS(2218), + [sym__emphasis_open_underscore] = ACTIONS(2218), + [sym_inline_note_reference] = ACTIONS(2218), + [sym_html_element] = ACTIONS(2218), + [sym__pandoc_lt_str] = ACTIONS(2218), + [sym__pandoc_line_break] = ACTIONS(2218), + [sym_grid_table] = ACTIONS(2218), + [sym__caption_start] = ACTIONS(2218), + }, + [STATE(156)] = { + [sym_list_marker_parenthesis] = STATE(5), + [sym__list_item_parenthesis] = STATE(173), + [aux_sym__list_parenthesis_repeat1] = STATE(173), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_entity_reference] = ACTIONS(2222), + [sym_numeric_character_reference] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_BANG_LBRACK] = ACTIONS(2222), + [anon_sym_DOLLAR] = ACTIONS(2224), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [aux_sym_pandoc_str_token1] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2222), + [sym__whitespace] = ACTIONS(2222), + [sym__line_ending] = ACTIONS(2222), + [sym__soft_line_ending] = ACTIONS(2222), + [sym__block_quote_start] = ACTIONS(2222), + [sym_atx_h1_marker] = ACTIONS(2222), + [sym_atx_h2_marker] = ACTIONS(2222), + [sym_atx_h3_marker] = ACTIONS(2222), + [sym_atx_h4_marker] = ACTIONS(2222), + [sym_atx_h5_marker] = ACTIONS(2222), + [sym_atx_h6_marker] = ACTIONS(2222), + [sym__thematic_break] = ACTIONS(2222), + [sym__list_marker_minus] = ACTIONS(2222), + [sym__list_marker_plus] = ACTIONS(2222), + [sym__list_marker_star] = ACTIONS(2222), + [sym__list_marker_parenthesis] = ACTIONS(49), + [sym__list_marker_dot] = ACTIONS(2222), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(49), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_example] = ACTIONS(2222), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2222), + [sym__fenced_code_block_start_backtick] = ACTIONS(2222), + [sym__minus_metadata_start] = ACTIONS(2222), + [sym__pipe_table_start] = ACTIONS(2222), + [sym__fenced_div_start] = ACTIONS(2222), + [sym_ref_id_specifier] = ACTIONS(2222), + [sym__code_span_start] = ACTIONS(2222), + [sym__html_comment] = ACTIONS(2222), + [sym__autolink] = ACTIONS(2222), + [sym__highlight_span_start] = ACTIONS(2222), + [sym__insert_span_start] = ACTIONS(2222), + [sym__delete_span_start] = ACTIONS(2222), + [sym__edit_comment_span_start] = ACTIONS(2222), + [sym__single_quote_span_open] = ACTIONS(2222), + [sym__double_quote_span_open] = ACTIONS(2222), + [sym__shortcode_open_escaped] = ACTIONS(2222), + [sym__shortcode_open] = ACTIONS(2222), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2222), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2222), + [sym__cite_author_in_text] = ACTIONS(2222), + [sym__cite_suppress_author] = ACTIONS(2222), + [sym__strikeout_open] = ACTIONS(2222), + [sym__subscript_open] = ACTIONS(2222), + [sym__superscript_open] = ACTIONS(2222), + [sym__inline_note_start_token] = ACTIONS(2222), + [sym__strong_emphasis_open_star] = ACTIONS(2222), + [sym__strong_emphasis_open_underscore] = ACTIONS(2222), + [sym__emphasis_open_star] = ACTIONS(2222), + [sym__emphasis_open_underscore] = ACTIONS(2222), + [sym_inline_note_reference] = ACTIONS(2222), + [sym_html_element] = ACTIONS(2222), + [sym__pandoc_lt_str] = ACTIONS(2222), + [sym__pandoc_line_break] = ACTIONS(2222), + [sym_grid_table] = ACTIONS(2222), + [sym__caption_start] = ACTIONS(2222), }, [STATE(157)] = { - [sym_list_marker_example] = STATE(5), - [sym__list_item_example] = STATE(171), - [aux_sym__list_example_repeat1] = STATE(171), - [ts_builtin_sym_end] = ACTIONS(2096), - [sym_entity_reference] = ACTIONS(2096), - [sym_numeric_character_reference] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_BANG_LBRACK] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(2096), - [aux_sym_pandoc_str_token1] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [sym__whitespace] = ACTIONS(2096), - [sym__line_ending] = ACTIONS(2096), - [sym__soft_line_ending] = ACTIONS(2096), - [sym__block_quote_start] = ACTIONS(2096), - [sym_atx_h1_marker] = ACTIONS(2096), - [sym_atx_h2_marker] = ACTIONS(2096), - [sym_atx_h3_marker] = ACTIONS(2096), - [sym_atx_h4_marker] = ACTIONS(2096), - [sym_atx_h5_marker] = ACTIONS(2096), - [sym_atx_h6_marker] = ACTIONS(2096), - [sym__thematic_break] = ACTIONS(2096), - [sym__list_marker_minus] = ACTIONS(2096), - [sym__list_marker_plus] = ACTIONS(2096), - [sym__list_marker_star] = ACTIONS(2096), - [sym__list_marker_parenthesis] = ACTIONS(2096), - [sym__list_marker_dot] = ACTIONS(2096), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2096), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2096), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2096), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2096), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2096), + [sym_list_marker_example] = STATE(6), + [sym__list_item_example] = STATE(174), + [aux_sym__list_example_repeat1] = STATE(174), + [ts_builtin_sym_end] = ACTIONS(2226), + [sym_entity_reference] = ACTIONS(2226), + [sym_numeric_character_reference] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_BANG_LBRACK] = ACTIONS(2226), + [anon_sym_DOLLAR] = ACTIONS(2228), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [aux_sym_pandoc_str_token1] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2226), + [sym__whitespace] = ACTIONS(2226), + [sym__line_ending] = ACTIONS(2226), + [sym__soft_line_ending] = ACTIONS(2226), + [sym__block_quote_start] = ACTIONS(2226), + [sym_atx_h1_marker] = ACTIONS(2226), + [sym_atx_h2_marker] = ACTIONS(2226), + [sym_atx_h3_marker] = ACTIONS(2226), + [sym_atx_h4_marker] = ACTIONS(2226), + [sym_atx_h5_marker] = ACTIONS(2226), + [sym_atx_h6_marker] = ACTIONS(2226), + [sym__thematic_break] = ACTIONS(2226), + [sym__list_marker_minus] = ACTIONS(2226), + [sym__list_marker_plus] = ACTIONS(2226), + [sym__list_marker_star] = ACTIONS(2226), + [sym__list_marker_parenthesis] = ACTIONS(2226), + [sym__list_marker_dot] = ACTIONS(2226), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2226), [sym__list_marker_example] = ACTIONS(53), [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(2096), - [sym_minus_metadata] = ACTIONS(2096), - [sym__pipe_table_start] = ACTIONS(2096), - [sym__fenced_div_start] = ACTIONS(2096), - [sym_ref_id_specifier] = ACTIONS(2096), - [sym__code_span_start] = ACTIONS(2096), - [sym__html_comment] = ACTIONS(2096), - [sym__autolink] = ACTIONS(2096), - [sym__highlight_span_start] = ACTIONS(2096), - [sym__insert_span_start] = ACTIONS(2096), - [sym__delete_span_start] = ACTIONS(2096), - [sym__edit_comment_span_start] = ACTIONS(2096), - [sym__single_quote_span_open] = ACTIONS(2096), - [sym__double_quote_span_open] = ACTIONS(2096), - [sym__shortcode_open_escaped] = ACTIONS(2096), - [sym__shortcode_open] = ACTIONS(2096), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2096), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2096), - [sym__cite_author_in_text] = ACTIONS(2096), - [sym__cite_suppress_author] = ACTIONS(2096), - [sym__strikeout_open] = ACTIONS(2096), - [sym__subscript_open] = ACTIONS(2096), - [sym__superscript_open] = ACTIONS(2096), - [sym__inline_note_start_token] = ACTIONS(2096), - [sym__strong_emphasis_open_star] = ACTIONS(2096), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2096), - [sym__emphasis_open_underscore] = ACTIONS(2096), - [sym_inline_note_reference] = ACTIONS(2096), - [sym_html_element] = ACTIONS(2096), - [sym__pandoc_lt_str] = ACTIONS(2096), - [sym__pandoc_line_break] = ACTIONS(2096), - [sym_grid_table] = ACTIONS(2096), - [sym__caption_start] = ACTIONS(2096), + [sym__fenced_code_block_start_backtick] = ACTIONS(2226), + [sym__minus_metadata_start] = ACTIONS(2226), + [sym__pipe_table_start] = ACTIONS(2226), + [sym__fenced_div_start] = ACTIONS(2226), + [sym_ref_id_specifier] = ACTIONS(2226), + [sym__code_span_start] = ACTIONS(2226), + [sym__html_comment] = ACTIONS(2226), + [sym__autolink] = ACTIONS(2226), + [sym__highlight_span_start] = ACTIONS(2226), + [sym__insert_span_start] = ACTIONS(2226), + [sym__delete_span_start] = ACTIONS(2226), + [sym__edit_comment_span_start] = ACTIONS(2226), + [sym__single_quote_span_open] = ACTIONS(2226), + [sym__double_quote_span_open] = ACTIONS(2226), + [sym__shortcode_open_escaped] = ACTIONS(2226), + [sym__shortcode_open] = ACTIONS(2226), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2226), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2226), + [sym__cite_author_in_text] = ACTIONS(2226), + [sym__cite_suppress_author] = ACTIONS(2226), + [sym__strikeout_open] = ACTIONS(2226), + [sym__subscript_open] = ACTIONS(2226), + [sym__superscript_open] = ACTIONS(2226), + [sym__inline_note_start_token] = ACTIONS(2226), + [sym__strong_emphasis_open_star] = ACTIONS(2226), + [sym__strong_emphasis_open_underscore] = ACTIONS(2226), + [sym__emphasis_open_star] = ACTIONS(2226), + [sym__emphasis_open_underscore] = ACTIONS(2226), + [sym_inline_note_reference] = ACTIONS(2226), + [sym_html_element] = ACTIONS(2226), + [sym__pandoc_lt_str] = ACTIONS(2226), + [sym__pandoc_line_break] = ACTIONS(2226), + [sym_grid_table] = ACTIONS(2226), + [sym__caption_start] = ACTIONS(2226), }, [STATE(158)] = { - [sym_list_marker_star] = STATE(9), - [sym__list_item_star] = STATE(168), - [aux_sym__list_star_repeat1] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(2084), - [sym_entity_reference] = ACTIONS(2084), - [sym_numeric_character_reference] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_BANG_LBRACK] = ACTIONS(2084), - [anon_sym_DOLLAR] = ACTIONS(2086), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [aux_sym_pandoc_str_token1] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2084), - [sym__whitespace] = ACTIONS(2084), - [sym__line_ending] = ACTIONS(2084), - [sym__soft_line_ending] = ACTIONS(2084), - [sym__block_quote_start] = ACTIONS(2084), - [sym_atx_h1_marker] = ACTIONS(2084), - [sym_atx_h2_marker] = ACTIONS(2084), - [sym_atx_h3_marker] = ACTIONS(2084), - [sym_atx_h4_marker] = ACTIONS(2084), - [sym_atx_h5_marker] = ACTIONS(2084), - [sym_atx_h6_marker] = ACTIONS(2084), - [sym__thematic_break] = ACTIONS(2084), - [sym__list_marker_minus] = ACTIONS(2084), - [sym__list_marker_plus] = ACTIONS(2084), - [sym__list_marker_star] = ACTIONS(47), - [sym__list_marker_parenthesis] = ACTIONS(2084), - [sym__list_marker_dot] = ACTIONS(2084), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_star_dont_interrupt] = ACTIONS(47), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_example] = ACTIONS(2084), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2084), - [sym__fenced_code_block_start_backtick] = ACTIONS(2084), - [sym_minus_metadata] = ACTIONS(2084), - [sym__pipe_table_start] = ACTIONS(2084), - [sym__fenced_div_start] = ACTIONS(2084), - [sym_ref_id_specifier] = ACTIONS(2084), - [sym__code_span_start] = ACTIONS(2084), - [sym__html_comment] = ACTIONS(2084), - [sym__autolink] = ACTIONS(2084), - [sym__highlight_span_start] = ACTIONS(2084), - [sym__insert_span_start] = ACTIONS(2084), - [sym__delete_span_start] = ACTIONS(2084), - [sym__edit_comment_span_start] = ACTIONS(2084), - [sym__single_quote_span_open] = ACTIONS(2084), - [sym__double_quote_span_open] = ACTIONS(2084), - [sym__shortcode_open_escaped] = ACTIONS(2084), - [sym__shortcode_open] = ACTIONS(2084), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2084), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2084), - [sym__cite_author_in_text] = ACTIONS(2084), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2084), - [sym__subscript_open] = ACTIONS(2084), - [sym__superscript_open] = ACTIONS(2084), - [sym__inline_note_start_token] = ACTIONS(2084), - [sym__strong_emphasis_open_star] = ACTIONS(2084), - [sym__strong_emphasis_open_underscore] = ACTIONS(2084), - [sym__emphasis_open_star] = ACTIONS(2084), - [sym__emphasis_open_underscore] = ACTIONS(2084), - [sym_inline_note_reference] = ACTIONS(2084), - [sym_html_element] = ACTIONS(2084), - [sym__pandoc_lt_str] = ACTIONS(2084), - [sym__pandoc_line_break] = ACTIONS(2084), - [sym_grid_table] = ACTIONS(2084), - [sym__caption_start] = ACTIONS(2084), + [sym_list_marker_example] = STATE(13), + [sym__list_item_example] = STATE(167), + [aux_sym__list_example_repeat1] = STATE(167), + [sym_entity_reference] = ACTIONS(2226), + [sym_numeric_character_reference] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_BANG_LBRACK] = ACTIONS(2226), + [anon_sym_DOLLAR] = ACTIONS(2228), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [aux_sym_pandoc_str_token1] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2226), + [sym__whitespace] = ACTIONS(2226), + [sym__line_ending] = ACTIONS(2226), + [sym__soft_line_ending] = ACTIONS(2226), + [sym__block_close] = ACTIONS(2226), + [sym__block_quote_start] = ACTIONS(2226), + [sym_atx_h1_marker] = ACTIONS(2226), + [sym_atx_h2_marker] = ACTIONS(2226), + [sym_atx_h3_marker] = ACTIONS(2226), + [sym_atx_h4_marker] = ACTIONS(2226), + [sym_atx_h5_marker] = ACTIONS(2226), + [sym_atx_h6_marker] = ACTIONS(2226), + [sym__thematic_break] = ACTIONS(2226), + [sym__list_marker_minus] = ACTIONS(2226), + [sym__list_marker_plus] = ACTIONS(2226), + [sym__list_marker_star] = ACTIONS(2226), + [sym__list_marker_parenthesis] = ACTIONS(2226), + [sym__list_marker_dot] = ACTIONS(2226), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2226), + [sym__list_marker_example] = ACTIONS(53), + [sym__list_marker_example_dont_interrupt] = ACTIONS(53), + [sym__fenced_code_block_start_backtick] = ACTIONS(2226), + [sym__minus_metadata_start] = ACTIONS(2226), + [sym__pipe_table_start] = ACTIONS(2226), + [sym__fenced_div_start] = ACTIONS(2226), + [sym_ref_id_specifier] = ACTIONS(2226), + [sym__code_span_start] = ACTIONS(2226), + [sym__html_comment] = ACTIONS(2226), + [sym__autolink] = ACTIONS(2226), + [sym__highlight_span_start] = ACTIONS(2226), + [sym__insert_span_start] = ACTIONS(2226), + [sym__delete_span_start] = ACTIONS(2226), + [sym__edit_comment_span_start] = ACTIONS(2226), + [sym__single_quote_span_open] = ACTIONS(2226), + [sym__double_quote_span_open] = ACTIONS(2226), + [sym__shortcode_open_escaped] = ACTIONS(2226), + [sym__shortcode_open] = ACTIONS(2226), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2226), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2226), + [sym__cite_author_in_text] = ACTIONS(2226), + [sym__cite_suppress_author] = ACTIONS(2226), + [sym__strikeout_open] = ACTIONS(2226), + [sym__subscript_open] = ACTIONS(2226), + [sym__superscript_open] = ACTIONS(2226), + [sym__inline_note_start_token] = ACTIONS(2226), + [sym__strong_emphasis_open_star] = ACTIONS(2226), + [sym__strong_emphasis_open_underscore] = ACTIONS(2226), + [sym__emphasis_open_star] = ACTIONS(2226), + [sym__emphasis_open_underscore] = ACTIONS(2226), + [sym_inline_note_reference] = ACTIONS(2226), + [sym_html_element] = ACTIONS(2226), + [sym__pandoc_lt_str] = ACTIONS(2226), + [sym__pandoc_line_break] = ACTIONS(2226), + [sym_grid_table] = ACTIONS(2226), + [sym__caption_start] = ACTIONS(2226), }, [STATE(159)] = { - [sym_list_marker_plus] = STATE(7), - [sym__list_item_plus] = STATE(172), - [aux_sym__list_plus_repeat1] = STATE(172), - [sym_entity_reference] = ACTIONS(2076), - [sym_numeric_character_reference] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_BANG_LBRACK] = ACTIONS(2076), - [anon_sym_DOLLAR] = ACTIONS(2078), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [aux_sym_pandoc_str_token1] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2076), - [sym__whitespace] = ACTIONS(2076), - [sym__line_ending] = ACTIONS(2076), - [sym__soft_line_ending] = ACTIONS(2076), - [sym__block_close] = ACTIONS(2076), - [sym__block_quote_start] = ACTIONS(2076), - [sym_atx_h1_marker] = ACTIONS(2076), - [sym_atx_h2_marker] = ACTIONS(2076), - [sym_atx_h3_marker] = ACTIONS(2076), - [sym_atx_h4_marker] = ACTIONS(2076), - [sym_atx_h5_marker] = ACTIONS(2076), - [sym_atx_h6_marker] = ACTIONS(2076), - [sym__thematic_break] = ACTIONS(2076), - [sym__list_marker_minus] = ACTIONS(2076), + [sym_list_marker_plus] = STATE(8), + [sym__list_item_plus] = STATE(161), + [aux_sym__list_plus_repeat1] = STATE(161), + [sym_entity_reference] = ACTIONS(2206), + [sym_numeric_character_reference] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_BANG_LBRACK] = ACTIONS(2206), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2206), + [aux_sym_pandoc_str_token1] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2206), + [sym__whitespace] = ACTIONS(2206), + [sym__line_ending] = ACTIONS(2206), + [sym__soft_line_ending] = ACTIONS(2206), + [sym__block_close] = ACTIONS(2206), + [sym__block_quote_start] = ACTIONS(2206), + [sym_atx_h1_marker] = ACTIONS(2206), + [sym_atx_h2_marker] = ACTIONS(2206), + [sym_atx_h3_marker] = ACTIONS(2206), + [sym_atx_h4_marker] = ACTIONS(2206), + [sym_atx_h5_marker] = ACTIONS(2206), + [sym_atx_h6_marker] = ACTIONS(2206), + [sym__thematic_break] = ACTIONS(2206), + [sym__list_marker_minus] = ACTIONS(2206), [sym__list_marker_plus] = ACTIONS(45), - [sym__list_marker_star] = ACTIONS(2076), - [sym__list_marker_parenthesis] = ACTIONS(2076), - [sym__list_marker_dot] = ACTIONS(2076), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2076), + [sym__list_marker_star] = ACTIONS(2206), + [sym__list_marker_parenthesis] = ACTIONS(2206), + [sym__list_marker_dot] = ACTIONS(2206), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2206), [sym__list_marker_plus_dont_interrupt] = ACTIONS(45), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_example] = ACTIONS(2076), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2076), - [sym__fenced_code_block_start_backtick] = ACTIONS(2076), - [sym_minus_metadata] = ACTIONS(2076), - [sym__pipe_table_start] = ACTIONS(2076), - [sym__fenced_div_start] = ACTIONS(2076), - [sym_ref_id_specifier] = ACTIONS(2076), - [sym__code_span_start] = ACTIONS(2076), - [sym__html_comment] = ACTIONS(2076), - [sym__autolink] = ACTIONS(2076), - [sym__highlight_span_start] = ACTIONS(2076), - [sym__insert_span_start] = ACTIONS(2076), - [sym__delete_span_start] = ACTIONS(2076), - [sym__edit_comment_span_start] = ACTIONS(2076), - [sym__single_quote_span_open] = ACTIONS(2076), - [sym__double_quote_span_open] = ACTIONS(2076), - [sym__shortcode_open_escaped] = ACTIONS(2076), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2076), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2076), - [sym__cite_author_in_text] = ACTIONS(2076), - [sym__cite_suppress_author] = ACTIONS(2076), - [sym__strikeout_open] = ACTIONS(2076), - [sym__subscript_open] = ACTIONS(2076), - [sym__superscript_open] = ACTIONS(2076), - [sym__inline_note_start_token] = ACTIONS(2076), - [sym__strong_emphasis_open_star] = ACTIONS(2076), - [sym__strong_emphasis_open_underscore] = ACTIONS(2076), - [sym__emphasis_open_star] = ACTIONS(2076), - [sym__emphasis_open_underscore] = ACTIONS(2076), - [sym_inline_note_reference] = ACTIONS(2076), - [sym_html_element] = ACTIONS(2076), - [sym__pandoc_lt_str] = ACTIONS(2076), - [sym__pandoc_line_break] = ACTIONS(2076), - [sym_grid_table] = ACTIONS(2076), - [sym__caption_start] = ACTIONS(2076), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2206), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2206), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2206), + [sym__list_marker_example] = ACTIONS(2206), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2206), + [sym__fenced_code_block_start_backtick] = ACTIONS(2206), + [sym__minus_metadata_start] = ACTIONS(2206), + [sym__pipe_table_start] = ACTIONS(2206), + [sym__fenced_div_start] = ACTIONS(2206), + [sym_ref_id_specifier] = ACTIONS(2206), + [sym__code_span_start] = ACTIONS(2206), + [sym__html_comment] = ACTIONS(2206), + [sym__autolink] = ACTIONS(2206), + [sym__highlight_span_start] = ACTIONS(2206), + [sym__insert_span_start] = ACTIONS(2206), + [sym__delete_span_start] = ACTIONS(2206), + [sym__edit_comment_span_start] = ACTIONS(2206), + [sym__single_quote_span_open] = ACTIONS(2206), + [sym__double_quote_span_open] = ACTIONS(2206), + [sym__shortcode_open_escaped] = ACTIONS(2206), + [sym__shortcode_open] = ACTIONS(2206), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2206), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2206), + [sym__cite_author_in_text] = ACTIONS(2206), + [sym__cite_suppress_author] = ACTIONS(2206), + [sym__strikeout_open] = ACTIONS(2206), + [sym__subscript_open] = ACTIONS(2206), + [sym__superscript_open] = ACTIONS(2206), + [sym__inline_note_start_token] = ACTIONS(2206), + [sym__strong_emphasis_open_star] = ACTIONS(2206), + [sym__strong_emphasis_open_underscore] = ACTIONS(2206), + [sym__emphasis_open_star] = ACTIONS(2206), + [sym__emphasis_open_underscore] = ACTIONS(2206), + [sym_inline_note_reference] = ACTIONS(2206), + [sym_html_element] = ACTIONS(2206), + [sym__pandoc_lt_str] = ACTIONS(2206), + [sym__pandoc_line_break] = ACTIONS(2206), + [sym_grid_table] = ACTIONS(2206), + [sym__caption_start] = ACTIONS(2206), }, [STATE(160)] = { - [sym_list_marker_plus] = STATE(19), - [sym__list_item_plus] = STATE(166), - [aux_sym__list_plus_repeat1] = STATE(166), - [ts_builtin_sym_end] = ACTIONS(2076), - [sym_entity_reference] = ACTIONS(2076), - [sym_numeric_character_reference] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_BANG_LBRACK] = ACTIONS(2076), - [anon_sym_DOLLAR] = ACTIONS(2078), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [aux_sym_pandoc_str_token1] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2076), - [sym__whitespace] = ACTIONS(2076), - [sym__line_ending] = ACTIONS(2076), - [sym__soft_line_ending] = ACTIONS(2076), - [sym__block_quote_start] = ACTIONS(2076), - [sym_atx_h1_marker] = ACTIONS(2076), - [sym_atx_h2_marker] = ACTIONS(2076), - [sym_atx_h3_marker] = ACTIONS(2076), - [sym_atx_h4_marker] = ACTIONS(2076), - [sym_atx_h5_marker] = ACTIONS(2076), - [sym_atx_h6_marker] = ACTIONS(2076), - [sym__thematic_break] = ACTIONS(2076), - [sym__list_marker_minus] = ACTIONS(2076), - [sym__list_marker_plus] = ACTIONS(45), - [sym__list_marker_star] = ACTIONS(2076), - [sym__list_marker_parenthesis] = ACTIONS(2076), - [sym__list_marker_dot] = ACTIONS(2076), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(45), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_example] = ACTIONS(2076), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2076), - [sym__fenced_code_block_start_backtick] = ACTIONS(2076), - [sym_minus_metadata] = ACTIONS(2076), - [sym__pipe_table_start] = ACTIONS(2076), - [sym__fenced_div_start] = ACTIONS(2076), - [sym_ref_id_specifier] = ACTIONS(2076), - [sym__code_span_start] = ACTIONS(2076), - [sym__html_comment] = ACTIONS(2076), - [sym__autolink] = ACTIONS(2076), - [sym__highlight_span_start] = ACTIONS(2076), - [sym__insert_span_start] = ACTIONS(2076), - [sym__delete_span_start] = ACTIONS(2076), - [sym__edit_comment_span_start] = ACTIONS(2076), - [sym__single_quote_span_open] = ACTIONS(2076), - [sym__double_quote_span_open] = ACTIONS(2076), - [sym__shortcode_open_escaped] = ACTIONS(2076), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2076), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2076), - [sym__cite_author_in_text] = ACTIONS(2076), - [sym__cite_suppress_author] = ACTIONS(2076), - [sym__strikeout_open] = ACTIONS(2076), - [sym__subscript_open] = ACTIONS(2076), - [sym__superscript_open] = ACTIONS(2076), - [sym__inline_note_start_token] = ACTIONS(2076), - [sym__strong_emphasis_open_star] = ACTIONS(2076), - [sym__strong_emphasis_open_underscore] = ACTIONS(2076), - [sym__emphasis_open_star] = ACTIONS(2076), - [sym__emphasis_open_underscore] = ACTIONS(2076), - [sym_inline_note_reference] = ACTIONS(2076), - [sym_html_element] = ACTIONS(2076), - [sym__pandoc_lt_str] = ACTIONS(2076), - [sym__pandoc_line_break] = ACTIONS(2076), - [sym_grid_table] = ACTIONS(2076), - [sym__caption_start] = ACTIONS(2076), - }, - [STATE(161)] = { - [sym_list_marker_minus] = STATE(8), - [sym__list_item_minus] = STATE(173), - [aux_sym__list_minus_repeat1] = STATE(173), - [sym_entity_reference] = ACTIONS(2080), - [sym_numeric_character_reference] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_BANG_LBRACK] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(2082), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2080), - [aux_sym_pandoc_str_token1] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2080), - [sym__whitespace] = ACTIONS(2080), - [sym__line_ending] = ACTIONS(2080), - [sym__soft_line_ending] = ACTIONS(2080), - [sym__block_close] = ACTIONS(2080), - [sym__block_quote_start] = ACTIONS(2080), - [sym_atx_h1_marker] = ACTIONS(2080), - [sym_atx_h2_marker] = ACTIONS(2080), - [sym_atx_h3_marker] = ACTIONS(2080), - [sym_atx_h4_marker] = ACTIONS(2080), - [sym_atx_h5_marker] = ACTIONS(2080), - [sym_atx_h6_marker] = ACTIONS(2080), - [sym__thematic_break] = ACTIONS(2080), + [sym_list_marker_minus] = STATE(9), + [sym__list_item_minus] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(163), + [sym_entity_reference] = ACTIONS(2210), + [sym_numeric_character_reference] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_BANG_LBRACK] = ACTIONS(2210), + [anon_sym_DOLLAR] = ACTIONS(2212), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2210), + [aux_sym_pandoc_str_token1] = ACTIONS(2212), + [anon_sym_PIPE] = ACTIONS(2210), + [sym__whitespace] = ACTIONS(2210), + [sym__line_ending] = ACTIONS(2210), + [sym__soft_line_ending] = ACTIONS(2210), + [sym__block_close] = ACTIONS(2210), + [sym__block_quote_start] = ACTIONS(2210), + [sym_atx_h1_marker] = ACTIONS(2210), + [sym_atx_h2_marker] = ACTIONS(2210), + [sym_atx_h3_marker] = ACTIONS(2210), + [sym_atx_h4_marker] = ACTIONS(2210), + [sym_atx_h5_marker] = ACTIONS(2210), + [sym_atx_h6_marker] = ACTIONS(2210), + [sym__thematic_break] = ACTIONS(2210), [sym__list_marker_minus] = ACTIONS(43), - [sym__list_marker_plus] = ACTIONS(2080), - [sym__list_marker_star] = ACTIONS(2080), - [sym__list_marker_parenthesis] = ACTIONS(2080), - [sym__list_marker_dot] = ACTIONS(2080), + [sym__list_marker_plus] = ACTIONS(2210), + [sym__list_marker_star] = ACTIONS(2210), + [sym__list_marker_parenthesis] = ACTIONS(2210), + [sym__list_marker_dot] = ACTIONS(2210), [sym__list_marker_minus_dont_interrupt] = ACTIONS(43), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_example] = ACTIONS(2080), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2080), - [sym__fenced_code_block_start_backtick] = ACTIONS(2080), - [sym_minus_metadata] = ACTIONS(2080), - [sym__pipe_table_start] = ACTIONS(2080), - [sym__fenced_div_start] = ACTIONS(2080), - [sym_ref_id_specifier] = ACTIONS(2080), - [sym__code_span_start] = ACTIONS(2080), - [sym__html_comment] = ACTIONS(2080), - [sym__autolink] = ACTIONS(2080), - [sym__highlight_span_start] = ACTIONS(2080), - [sym__insert_span_start] = ACTIONS(2080), - [sym__delete_span_start] = ACTIONS(2080), - [sym__edit_comment_span_start] = ACTIONS(2080), - [sym__single_quote_span_open] = ACTIONS(2080), - [sym__double_quote_span_open] = ACTIONS(2080), - [sym__shortcode_open_escaped] = ACTIONS(2080), - [sym__shortcode_open] = ACTIONS(2080), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2080), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2080), - [sym__cite_suppress_author] = ACTIONS(2080), - [sym__strikeout_open] = ACTIONS(2080), - [sym__subscript_open] = ACTIONS(2080), - [sym__superscript_open] = ACTIONS(2080), - [sym__inline_note_start_token] = ACTIONS(2080), - [sym__strong_emphasis_open_star] = ACTIONS(2080), - [sym__strong_emphasis_open_underscore] = ACTIONS(2080), - [sym__emphasis_open_star] = ACTIONS(2080), - [sym__emphasis_open_underscore] = ACTIONS(2080), - [sym_inline_note_reference] = ACTIONS(2080), - [sym_html_element] = ACTIONS(2080), - [sym__pandoc_lt_str] = ACTIONS(2080), - [sym__pandoc_line_break] = ACTIONS(2080), - [sym_grid_table] = ACTIONS(2080), - [sym__caption_start] = ACTIONS(2080), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2210), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2210), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2210), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2210), + [sym__list_marker_example] = ACTIONS(2210), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2210), + [sym__fenced_code_block_start_backtick] = ACTIONS(2210), + [sym__minus_metadata_start] = ACTIONS(2210), + [sym__pipe_table_start] = ACTIONS(2210), + [sym__fenced_div_start] = ACTIONS(2210), + [sym_ref_id_specifier] = ACTIONS(2210), + [sym__code_span_start] = ACTIONS(2210), + [sym__html_comment] = ACTIONS(2210), + [sym__autolink] = ACTIONS(2210), + [sym__highlight_span_start] = ACTIONS(2210), + [sym__insert_span_start] = ACTIONS(2210), + [sym__delete_span_start] = ACTIONS(2210), + [sym__edit_comment_span_start] = ACTIONS(2210), + [sym__single_quote_span_open] = ACTIONS(2210), + [sym__double_quote_span_open] = ACTIONS(2210), + [sym__shortcode_open_escaped] = ACTIONS(2210), + [sym__shortcode_open] = ACTIONS(2210), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2210), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2210), + [sym__cite_author_in_text] = ACTIONS(2210), + [sym__cite_suppress_author] = ACTIONS(2210), + [sym__strikeout_open] = ACTIONS(2210), + [sym__subscript_open] = ACTIONS(2210), + [sym__superscript_open] = ACTIONS(2210), + [sym__inline_note_start_token] = ACTIONS(2210), + [sym__strong_emphasis_open_star] = ACTIONS(2210), + [sym__strong_emphasis_open_underscore] = ACTIONS(2210), + [sym__emphasis_open_star] = ACTIONS(2210), + [sym__emphasis_open_underscore] = ACTIONS(2210), + [sym_inline_note_reference] = ACTIONS(2210), + [sym_html_element] = ACTIONS(2210), + [sym__pandoc_lt_str] = ACTIONS(2210), + [sym__pandoc_line_break] = ACTIONS(2210), + [sym_grid_table] = ACTIONS(2210), + [sym__caption_start] = ACTIONS(2210), + }, + [STATE(161)] = { + [sym_list_marker_plus] = STATE(8), + [sym__list_item_plus] = STATE(161), + [aux_sym__list_plus_repeat1] = STATE(161), + [sym_entity_reference] = ACTIONS(2234), + [sym_numeric_character_reference] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_BANG_LBRACK] = ACTIONS(2234), + [anon_sym_DOLLAR] = ACTIONS(2236), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [aux_sym_pandoc_str_token1] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(2234), + [sym__whitespace] = ACTIONS(2234), + [sym__line_ending] = ACTIONS(2234), + [sym__soft_line_ending] = ACTIONS(2234), + [sym__block_close] = ACTIONS(2234), + [sym__block_quote_start] = ACTIONS(2234), + [sym_atx_h1_marker] = ACTIONS(2234), + [sym_atx_h2_marker] = ACTIONS(2234), + [sym_atx_h3_marker] = ACTIONS(2234), + [sym_atx_h4_marker] = ACTIONS(2234), + [sym_atx_h5_marker] = ACTIONS(2234), + [sym_atx_h6_marker] = ACTIONS(2234), + [sym__thematic_break] = ACTIONS(2234), + [sym__list_marker_minus] = ACTIONS(2234), + [sym__list_marker_plus] = ACTIONS(2238), + [sym__list_marker_star] = ACTIONS(2234), + [sym__list_marker_parenthesis] = ACTIONS(2234), + [sym__list_marker_dot] = ACTIONS(2234), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2238), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_example] = ACTIONS(2234), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2234), + [sym__fenced_code_block_start_backtick] = ACTIONS(2234), + [sym__minus_metadata_start] = ACTIONS(2234), + [sym__pipe_table_start] = ACTIONS(2234), + [sym__fenced_div_start] = ACTIONS(2234), + [sym_ref_id_specifier] = ACTIONS(2234), + [sym__code_span_start] = ACTIONS(2234), + [sym__html_comment] = ACTIONS(2234), + [sym__autolink] = ACTIONS(2234), + [sym__highlight_span_start] = ACTIONS(2234), + [sym__insert_span_start] = ACTIONS(2234), + [sym__delete_span_start] = ACTIONS(2234), + [sym__edit_comment_span_start] = ACTIONS(2234), + [sym__single_quote_span_open] = ACTIONS(2234), + [sym__double_quote_span_open] = ACTIONS(2234), + [sym__shortcode_open_escaped] = ACTIONS(2234), + [sym__shortcode_open] = ACTIONS(2234), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2234), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2234), + [sym__cite_author_in_text] = ACTIONS(2234), + [sym__cite_suppress_author] = ACTIONS(2234), + [sym__strikeout_open] = ACTIONS(2234), + [sym__subscript_open] = ACTIONS(2234), + [sym__superscript_open] = ACTIONS(2234), + [sym__inline_note_start_token] = ACTIONS(2234), + [sym__strong_emphasis_open_star] = ACTIONS(2234), + [sym__strong_emphasis_open_underscore] = ACTIONS(2234), + [sym__emphasis_open_star] = ACTIONS(2234), + [sym__emphasis_open_underscore] = ACTIONS(2234), + [sym_inline_note_reference] = ACTIONS(2234), + [sym_html_element] = ACTIONS(2234), + [sym__pandoc_lt_str] = ACTIONS(2234), + [sym__pandoc_line_break] = ACTIONS(2234), + [sym_grid_table] = ACTIONS(2234), + [sym__caption_start] = ACTIONS(2234), }, [STATE(162)] = { - [sym_list_marker_star] = STATE(2), - [sym__list_item_star] = STATE(174), - [aux_sym__list_star_repeat1] = STATE(174), - [sym_entity_reference] = ACTIONS(2084), - [sym_numeric_character_reference] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_BANG_LBRACK] = ACTIONS(2084), - [anon_sym_DOLLAR] = ACTIONS(2086), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [aux_sym_pandoc_str_token1] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2084), - [sym__whitespace] = ACTIONS(2084), - [sym__line_ending] = ACTIONS(2084), - [sym__soft_line_ending] = ACTIONS(2084), - [sym__block_close] = ACTIONS(2084), - [sym__block_quote_start] = ACTIONS(2084), - [sym_atx_h1_marker] = ACTIONS(2084), - [sym_atx_h2_marker] = ACTIONS(2084), - [sym_atx_h3_marker] = ACTIONS(2084), - [sym_atx_h4_marker] = ACTIONS(2084), - [sym_atx_h5_marker] = ACTIONS(2084), - [sym_atx_h6_marker] = ACTIONS(2084), - [sym__thematic_break] = ACTIONS(2084), - [sym__list_marker_minus] = ACTIONS(2084), - [sym__list_marker_plus] = ACTIONS(2084), - [sym__list_marker_star] = ACTIONS(47), - [sym__list_marker_parenthesis] = ACTIONS(2084), - [sym__list_marker_dot] = ACTIONS(2084), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_star_dont_interrupt] = ACTIONS(47), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_example] = ACTIONS(2084), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2084), - [sym__fenced_code_block_start_backtick] = ACTIONS(2084), - [sym_minus_metadata] = ACTIONS(2084), - [sym__pipe_table_start] = ACTIONS(2084), - [sym__fenced_div_start] = ACTIONS(2084), - [sym_ref_id_specifier] = ACTIONS(2084), - [sym__code_span_start] = ACTIONS(2084), - [sym__html_comment] = ACTIONS(2084), - [sym__autolink] = ACTIONS(2084), - [sym__highlight_span_start] = ACTIONS(2084), - [sym__insert_span_start] = ACTIONS(2084), - [sym__delete_span_start] = ACTIONS(2084), - [sym__edit_comment_span_start] = ACTIONS(2084), - [sym__single_quote_span_open] = ACTIONS(2084), - [sym__double_quote_span_open] = ACTIONS(2084), - [sym__shortcode_open_escaped] = ACTIONS(2084), - [sym__shortcode_open] = ACTIONS(2084), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2084), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2084), - [sym__cite_author_in_text] = ACTIONS(2084), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2084), - [sym__subscript_open] = ACTIONS(2084), - [sym__superscript_open] = ACTIONS(2084), - [sym__inline_note_start_token] = ACTIONS(2084), - [sym__strong_emphasis_open_star] = ACTIONS(2084), - [sym__strong_emphasis_open_underscore] = ACTIONS(2084), - [sym__emphasis_open_star] = ACTIONS(2084), - [sym__emphasis_open_underscore] = ACTIONS(2084), - [sym_inline_note_reference] = ACTIONS(2084), - [sym_html_element] = ACTIONS(2084), - [sym__pandoc_lt_str] = ACTIONS(2084), - [sym__pandoc_line_break] = ACTIONS(2084), - [sym_grid_table] = ACTIONS(2084), - [sym__caption_start] = ACTIONS(2084), + [sym_list_marker_parenthesis] = STATE(12), + [sym__list_item_parenthesis] = STATE(166), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [sym_entity_reference] = ACTIONS(2222), + [sym_numeric_character_reference] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_BANG_LBRACK] = ACTIONS(2222), + [anon_sym_DOLLAR] = ACTIONS(2224), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [aux_sym_pandoc_str_token1] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2222), + [sym__whitespace] = ACTIONS(2222), + [sym__line_ending] = ACTIONS(2222), + [sym__soft_line_ending] = ACTIONS(2222), + [sym__block_close] = ACTIONS(2222), + [sym__block_quote_start] = ACTIONS(2222), + [sym_atx_h1_marker] = ACTIONS(2222), + [sym_atx_h2_marker] = ACTIONS(2222), + [sym_atx_h3_marker] = ACTIONS(2222), + [sym_atx_h4_marker] = ACTIONS(2222), + [sym_atx_h5_marker] = ACTIONS(2222), + [sym_atx_h6_marker] = ACTIONS(2222), + [sym__thematic_break] = ACTIONS(2222), + [sym__list_marker_minus] = ACTIONS(2222), + [sym__list_marker_plus] = ACTIONS(2222), + [sym__list_marker_star] = ACTIONS(2222), + [sym__list_marker_parenthesis] = ACTIONS(49), + [sym__list_marker_dot] = ACTIONS(2222), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(49), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2222), + [sym__list_marker_example] = ACTIONS(2222), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2222), + [sym__fenced_code_block_start_backtick] = ACTIONS(2222), + [sym__minus_metadata_start] = ACTIONS(2222), + [sym__pipe_table_start] = ACTIONS(2222), + [sym__fenced_div_start] = ACTIONS(2222), + [sym_ref_id_specifier] = ACTIONS(2222), + [sym__code_span_start] = ACTIONS(2222), + [sym__html_comment] = ACTIONS(2222), + [sym__autolink] = ACTIONS(2222), + [sym__highlight_span_start] = ACTIONS(2222), + [sym__insert_span_start] = ACTIONS(2222), + [sym__delete_span_start] = ACTIONS(2222), + [sym__edit_comment_span_start] = ACTIONS(2222), + [sym__single_quote_span_open] = ACTIONS(2222), + [sym__double_quote_span_open] = ACTIONS(2222), + [sym__shortcode_open_escaped] = ACTIONS(2222), + [sym__shortcode_open] = ACTIONS(2222), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2222), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2222), + [sym__cite_author_in_text] = ACTIONS(2222), + [sym__cite_suppress_author] = ACTIONS(2222), + [sym__strikeout_open] = ACTIONS(2222), + [sym__subscript_open] = ACTIONS(2222), + [sym__superscript_open] = ACTIONS(2222), + [sym__inline_note_start_token] = ACTIONS(2222), + [sym__strong_emphasis_open_star] = ACTIONS(2222), + [sym__strong_emphasis_open_underscore] = ACTIONS(2222), + [sym__emphasis_open_star] = ACTIONS(2222), + [sym__emphasis_open_underscore] = ACTIONS(2222), + [sym_inline_note_reference] = ACTIONS(2222), + [sym_html_element] = ACTIONS(2222), + [sym__pandoc_lt_str] = ACTIONS(2222), + [sym__pandoc_line_break] = ACTIONS(2222), + [sym_grid_table] = ACTIONS(2222), + [sym__caption_start] = ACTIONS(2222), }, [STATE(163)] = { - [sym_list_marker_dot] = STATE(10), - [sym__list_item_dot] = STATE(175), - [aux_sym__list_dot_repeat1] = STATE(175), - [sym_entity_reference] = ACTIONS(2088), - [sym_numeric_character_reference] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_BANG_LBRACK] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2090), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [aux_sym_pandoc_str_token1] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2088), - [sym__whitespace] = ACTIONS(2088), - [sym__line_ending] = ACTIONS(2088), - [sym__soft_line_ending] = ACTIONS(2088), - [sym__block_close] = ACTIONS(2088), - [sym__block_quote_start] = ACTIONS(2088), - [sym_atx_h1_marker] = ACTIONS(2088), - [sym_atx_h2_marker] = ACTIONS(2088), - [sym_atx_h3_marker] = ACTIONS(2088), - [sym_atx_h4_marker] = ACTIONS(2088), - [sym_atx_h5_marker] = ACTIONS(2088), - [sym_atx_h6_marker] = ACTIONS(2088), - [sym__thematic_break] = ACTIONS(2088), - [sym__list_marker_minus] = ACTIONS(2088), - [sym__list_marker_plus] = ACTIONS(2088), - [sym__list_marker_star] = ACTIONS(2088), - [sym__list_marker_parenthesis] = ACTIONS(2088), - [sym__list_marker_dot] = ACTIONS(51), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), - [sym__list_marker_example] = ACTIONS(2088), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2088), - [sym__fenced_code_block_start_backtick] = ACTIONS(2088), - [sym_minus_metadata] = ACTIONS(2088), - [sym__pipe_table_start] = ACTIONS(2088), - [sym__fenced_div_start] = ACTIONS(2088), - [sym_ref_id_specifier] = ACTIONS(2088), - [sym__code_span_start] = ACTIONS(2088), - [sym__html_comment] = ACTIONS(2088), - [sym__autolink] = ACTIONS(2088), - [sym__highlight_span_start] = ACTIONS(2088), - [sym__insert_span_start] = ACTIONS(2088), - [sym__delete_span_start] = ACTIONS(2088), - [sym__edit_comment_span_start] = ACTIONS(2088), - [sym__single_quote_span_open] = ACTIONS(2088), - [sym__double_quote_span_open] = ACTIONS(2088), - [sym__shortcode_open_escaped] = ACTIONS(2088), - [sym__shortcode_open] = ACTIONS(2088), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2088), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2088), - [sym__cite_author_in_text] = ACTIONS(2088), - [sym__cite_suppress_author] = ACTIONS(2088), - [sym__strikeout_open] = ACTIONS(2088), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2088), - [sym__inline_note_start_token] = ACTIONS(2088), - [sym__strong_emphasis_open_star] = ACTIONS(2088), - [sym__strong_emphasis_open_underscore] = ACTIONS(2088), - [sym__emphasis_open_star] = ACTIONS(2088), - [sym__emphasis_open_underscore] = ACTIONS(2088), - [sym_inline_note_reference] = ACTIONS(2088), - [sym_html_element] = ACTIONS(2088), - [sym__pandoc_lt_str] = ACTIONS(2088), - [sym__pandoc_line_break] = ACTIONS(2088), - [sym_grid_table] = ACTIONS(2088), - [sym__caption_start] = ACTIONS(2088), + [sym_list_marker_minus] = STATE(9), + [sym__list_item_minus] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(163), + [sym_entity_reference] = ACTIONS(2241), + [sym_numeric_character_reference] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_BANG_LBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [aux_sym_pandoc_str_token1] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2241), + [sym__whitespace] = ACTIONS(2241), + [sym__line_ending] = ACTIONS(2241), + [sym__soft_line_ending] = ACTIONS(2241), + [sym__block_close] = ACTIONS(2241), + [sym__block_quote_start] = ACTIONS(2241), + [sym_atx_h1_marker] = ACTIONS(2241), + [sym_atx_h2_marker] = ACTIONS(2241), + [sym_atx_h3_marker] = ACTIONS(2241), + [sym_atx_h4_marker] = ACTIONS(2241), + [sym_atx_h5_marker] = ACTIONS(2241), + [sym_atx_h6_marker] = ACTIONS(2241), + [sym__thematic_break] = ACTIONS(2241), + [sym__list_marker_minus] = ACTIONS(2245), + [sym__list_marker_plus] = ACTIONS(2241), + [sym__list_marker_star] = ACTIONS(2241), + [sym__list_marker_parenthesis] = ACTIONS(2241), + [sym__list_marker_dot] = ACTIONS(2241), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2245), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2241), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2241), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2241), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2241), + [sym__list_marker_example] = ACTIONS(2241), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2241), + [sym__fenced_code_block_start_backtick] = ACTIONS(2241), + [sym__minus_metadata_start] = ACTIONS(2241), + [sym__pipe_table_start] = ACTIONS(2241), + [sym__fenced_div_start] = ACTIONS(2241), + [sym_ref_id_specifier] = ACTIONS(2241), + [sym__code_span_start] = ACTIONS(2241), + [sym__html_comment] = ACTIONS(2241), + [sym__autolink] = ACTIONS(2241), + [sym__highlight_span_start] = ACTIONS(2241), + [sym__insert_span_start] = ACTIONS(2241), + [sym__delete_span_start] = ACTIONS(2241), + [sym__edit_comment_span_start] = ACTIONS(2241), + [sym__single_quote_span_open] = ACTIONS(2241), + [sym__double_quote_span_open] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2241), + [sym__shortcode_open] = ACTIONS(2241), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2241), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2241), + [sym__cite_author_in_text] = ACTIONS(2241), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__strikeout_open] = ACTIONS(2241), + [sym__subscript_open] = ACTIONS(2241), + [sym__superscript_open] = ACTIONS(2241), + [sym__inline_note_start_token] = ACTIONS(2241), + [sym__strong_emphasis_open_star] = ACTIONS(2241), + [sym__strong_emphasis_open_underscore] = ACTIONS(2241), + [sym__emphasis_open_star] = ACTIONS(2241), + [sym__emphasis_open_underscore] = ACTIONS(2241), + [sym_inline_note_reference] = ACTIONS(2241), + [sym_html_element] = ACTIONS(2241), + [sym__pandoc_lt_str] = ACTIONS(2241), + [sym__pandoc_line_break] = ACTIONS(2241), + [sym_grid_table] = ACTIONS(2241), + [sym__caption_start] = ACTIONS(2241), }, [STATE(164)] = { - [sym_list_marker_parenthesis] = STATE(11), - [sym__list_item_parenthesis] = STATE(176), - [aux_sym__list_parenthesis_repeat1] = STATE(176), - [sym_entity_reference] = ACTIONS(2092), - [sym_numeric_character_reference] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_BANG_LBRACK] = ACTIONS(2092), - [anon_sym_DOLLAR] = ACTIONS(2094), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2092), - [aux_sym_pandoc_str_token1] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2092), - [sym__whitespace] = ACTIONS(2092), - [sym__line_ending] = ACTIONS(2092), - [sym__soft_line_ending] = ACTIONS(2092), - [sym__block_close] = ACTIONS(2092), - [sym__block_quote_start] = ACTIONS(2092), - [sym_atx_h1_marker] = ACTIONS(2092), - [sym_atx_h2_marker] = ACTIONS(2092), - [sym_atx_h3_marker] = ACTIONS(2092), - [sym_atx_h4_marker] = ACTIONS(2092), - [sym_atx_h5_marker] = ACTIONS(2092), - [sym_atx_h6_marker] = ACTIONS(2092), - [sym__thematic_break] = ACTIONS(2092), - [sym__list_marker_minus] = ACTIONS(2092), - [sym__list_marker_plus] = ACTIONS(2092), - [sym__list_marker_star] = ACTIONS(2092), - [sym__list_marker_parenthesis] = ACTIONS(49), - [sym__list_marker_dot] = ACTIONS(2092), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2092), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2092), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2092), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(49), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2092), - [sym__list_marker_example] = ACTIONS(2092), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2092), - [sym__fenced_code_block_start_backtick] = ACTIONS(2092), - [sym_minus_metadata] = ACTIONS(2092), - [sym__pipe_table_start] = ACTIONS(2092), - [sym__fenced_div_start] = ACTIONS(2092), - [sym_ref_id_specifier] = ACTIONS(2092), - [sym__code_span_start] = ACTIONS(2092), - [sym__html_comment] = ACTIONS(2092), - [sym__autolink] = ACTIONS(2092), - [sym__highlight_span_start] = ACTIONS(2092), - [sym__insert_span_start] = ACTIONS(2092), - [sym__delete_span_start] = ACTIONS(2092), - [sym__edit_comment_span_start] = ACTIONS(2092), - [sym__single_quote_span_open] = ACTIONS(2092), - [sym__double_quote_span_open] = ACTIONS(2092), - [sym__shortcode_open_escaped] = ACTIONS(2092), - [sym__shortcode_open] = ACTIONS(2092), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2092), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2092), - [sym__cite_author_in_text] = ACTIONS(2092), - [sym__cite_suppress_author] = ACTIONS(2092), - [sym__strikeout_open] = ACTIONS(2092), - [sym__subscript_open] = ACTIONS(2092), - [sym__superscript_open] = ACTIONS(2092), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2092), - [sym__strong_emphasis_open_underscore] = ACTIONS(2092), - [sym__emphasis_open_star] = ACTIONS(2092), - [sym__emphasis_open_underscore] = ACTIONS(2092), - [sym_inline_note_reference] = ACTIONS(2092), - [sym_html_element] = ACTIONS(2092), - [sym__pandoc_lt_str] = ACTIONS(2092), - [sym__pandoc_line_break] = ACTIONS(2092), - [sym_grid_table] = ACTIONS(2092), - [sym__caption_start] = ACTIONS(2092), + [sym_list_marker_star] = STATE(10), + [sym__list_item_star] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(164), + [sym_entity_reference] = ACTIONS(2248), + [sym_numeric_character_reference] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2248), + [anon_sym_BANG_LBRACK] = ACTIONS(2248), + [anon_sym_DOLLAR] = ACTIONS(2250), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2248), + [aux_sym_pandoc_str_token1] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2248), + [sym__whitespace] = ACTIONS(2248), + [sym__line_ending] = ACTIONS(2248), + [sym__soft_line_ending] = ACTIONS(2248), + [sym__block_close] = ACTIONS(2248), + [sym__block_quote_start] = ACTIONS(2248), + [sym_atx_h1_marker] = ACTIONS(2248), + [sym_atx_h2_marker] = ACTIONS(2248), + [sym_atx_h3_marker] = ACTIONS(2248), + [sym_atx_h4_marker] = ACTIONS(2248), + [sym_atx_h5_marker] = ACTIONS(2248), + [sym_atx_h6_marker] = ACTIONS(2248), + [sym__thematic_break] = ACTIONS(2248), + [sym__list_marker_minus] = ACTIONS(2248), + [sym__list_marker_plus] = ACTIONS(2248), + [sym__list_marker_star] = ACTIONS(2252), + [sym__list_marker_parenthesis] = ACTIONS(2248), + [sym__list_marker_dot] = ACTIONS(2248), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2248), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2248), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2252), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2248), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2248), + [sym__list_marker_example] = ACTIONS(2248), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2248), + [sym__fenced_code_block_start_backtick] = ACTIONS(2248), + [sym__minus_metadata_start] = ACTIONS(2248), + [sym__pipe_table_start] = ACTIONS(2248), + [sym__fenced_div_start] = ACTIONS(2248), + [sym_ref_id_specifier] = ACTIONS(2248), + [sym__code_span_start] = ACTIONS(2248), + [sym__html_comment] = ACTIONS(2248), + [sym__autolink] = ACTIONS(2248), + [sym__highlight_span_start] = ACTIONS(2248), + [sym__insert_span_start] = ACTIONS(2248), + [sym__delete_span_start] = ACTIONS(2248), + [sym__edit_comment_span_start] = ACTIONS(2248), + [sym__single_quote_span_open] = ACTIONS(2248), + [sym__double_quote_span_open] = ACTIONS(2248), + [sym__shortcode_open_escaped] = ACTIONS(2248), + [sym__shortcode_open] = ACTIONS(2248), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2248), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2248), + [sym__cite_author_in_text] = ACTIONS(2248), + [sym__cite_suppress_author] = ACTIONS(2248), + [sym__strikeout_open] = ACTIONS(2248), + [sym__subscript_open] = ACTIONS(2248), + [sym__superscript_open] = ACTIONS(2248), + [sym__inline_note_start_token] = ACTIONS(2248), + [sym__strong_emphasis_open_star] = ACTIONS(2248), + [sym__strong_emphasis_open_underscore] = ACTIONS(2248), + [sym__emphasis_open_star] = ACTIONS(2248), + [sym__emphasis_open_underscore] = ACTIONS(2248), + [sym_inline_note_reference] = ACTIONS(2248), + [sym_html_element] = ACTIONS(2248), + [sym__pandoc_lt_str] = ACTIONS(2248), + [sym__pandoc_line_break] = ACTIONS(2248), + [sym_grid_table] = ACTIONS(2248), + [sym__caption_start] = ACTIONS(2248), }, [STATE(165)] = { - [sym_list_marker_example] = STATE(12), - [sym__list_item_example] = STATE(155), - [aux_sym__list_example_repeat1] = STATE(155), - [sym_entity_reference] = ACTIONS(2096), - [sym_numeric_character_reference] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_BANG_LBRACK] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(2096), - [aux_sym_pandoc_str_token1] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [sym__whitespace] = ACTIONS(2096), - [sym__line_ending] = ACTIONS(2096), - [sym__soft_line_ending] = ACTIONS(2096), - [sym__block_close] = ACTIONS(2096), - [sym__block_quote_start] = ACTIONS(2096), - [sym_atx_h1_marker] = ACTIONS(2096), - [sym_atx_h2_marker] = ACTIONS(2096), - [sym_atx_h3_marker] = ACTIONS(2096), - [sym_atx_h4_marker] = ACTIONS(2096), - [sym_atx_h5_marker] = ACTIONS(2096), - [sym_atx_h6_marker] = ACTIONS(2096), - [sym__thematic_break] = ACTIONS(2096), - [sym__list_marker_minus] = ACTIONS(2096), - [sym__list_marker_plus] = ACTIONS(2096), - [sym__list_marker_star] = ACTIONS(2096), - [sym__list_marker_parenthesis] = ACTIONS(2096), - [sym__list_marker_dot] = ACTIONS(2096), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2096), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2096), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2096), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2096), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2096), - [sym__list_marker_example] = ACTIONS(53), - [sym__list_marker_example_dont_interrupt] = ACTIONS(53), - [sym__fenced_code_block_start_backtick] = ACTIONS(2096), - [sym_minus_metadata] = ACTIONS(2096), - [sym__pipe_table_start] = ACTIONS(2096), - [sym__fenced_div_start] = ACTIONS(2096), - [sym_ref_id_specifier] = ACTIONS(2096), - [sym__code_span_start] = ACTIONS(2096), - [sym__html_comment] = ACTIONS(2096), - [sym__autolink] = ACTIONS(2096), - [sym__highlight_span_start] = ACTIONS(2096), - [sym__insert_span_start] = ACTIONS(2096), - [sym__delete_span_start] = ACTIONS(2096), - [sym__edit_comment_span_start] = ACTIONS(2096), - [sym__single_quote_span_open] = ACTIONS(2096), - [sym__double_quote_span_open] = ACTIONS(2096), - [sym__shortcode_open_escaped] = ACTIONS(2096), - [sym__shortcode_open] = ACTIONS(2096), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2096), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2096), - [sym__cite_author_in_text] = ACTIONS(2096), - [sym__cite_suppress_author] = ACTIONS(2096), - [sym__strikeout_open] = ACTIONS(2096), - [sym__subscript_open] = ACTIONS(2096), - [sym__superscript_open] = ACTIONS(2096), - [sym__inline_note_start_token] = ACTIONS(2096), - [sym__strong_emphasis_open_star] = ACTIONS(2096), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2096), - [sym__emphasis_open_underscore] = ACTIONS(2096), - [sym_inline_note_reference] = ACTIONS(2096), - [sym_html_element] = ACTIONS(2096), - [sym__pandoc_lt_str] = ACTIONS(2096), - [sym__pandoc_line_break] = ACTIONS(2096), - [sym_grid_table] = ACTIONS(2096), - [sym__caption_start] = ACTIONS(2096), - }, - [STATE(166)] = { - [sym_list_marker_plus] = STATE(19), - [sym__list_item_plus] = STATE(166), - [aux_sym__list_plus_repeat1] = STATE(166), - [ts_builtin_sym_end] = ACTIONS(2100), - [sym_entity_reference] = ACTIONS(2100), - [sym_numeric_character_reference] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_BANG_LBRACK] = ACTIONS(2100), - [anon_sym_DOLLAR] = ACTIONS(2102), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [aux_sym_pandoc_str_token1] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(2100), - [sym__whitespace] = ACTIONS(2100), - [sym__line_ending] = ACTIONS(2100), - [sym__soft_line_ending] = ACTIONS(2100), - [sym__block_quote_start] = ACTIONS(2100), - [sym_atx_h1_marker] = ACTIONS(2100), - [sym_atx_h2_marker] = ACTIONS(2100), - [sym_atx_h3_marker] = ACTIONS(2100), - [sym_atx_h4_marker] = ACTIONS(2100), - [sym_atx_h5_marker] = ACTIONS(2100), - [sym_atx_h6_marker] = ACTIONS(2100), - [sym__thematic_break] = ACTIONS(2100), - [sym__list_marker_minus] = ACTIONS(2100), - [sym__list_marker_plus] = ACTIONS(2104), - [sym__list_marker_star] = ACTIONS(2100), - [sym__list_marker_parenthesis] = ACTIONS(2100), - [sym__list_marker_dot] = ACTIONS(2100), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2100), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2104), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2100), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2100), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2100), - [sym__list_marker_example] = ACTIONS(2100), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2100), - [sym__fenced_code_block_start_backtick] = ACTIONS(2100), - [sym_minus_metadata] = ACTIONS(2100), - [sym__pipe_table_start] = ACTIONS(2100), - [sym__fenced_div_start] = ACTIONS(2100), - [sym_ref_id_specifier] = ACTIONS(2100), - [sym__code_span_start] = ACTIONS(2100), - [sym__html_comment] = ACTIONS(2100), - [sym__autolink] = ACTIONS(2100), - [sym__highlight_span_start] = ACTIONS(2100), - [sym__insert_span_start] = ACTIONS(2100), - [sym__delete_span_start] = ACTIONS(2100), - [sym__edit_comment_span_start] = ACTIONS(2100), - [sym__single_quote_span_open] = ACTIONS(2100), - [sym__double_quote_span_open] = ACTIONS(2100), - [sym__shortcode_open_escaped] = ACTIONS(2100), - [sym__shortcode_open] = ACTIONS(2100), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2100), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2100), - [sym__cite_author_in_text] = ACTIONS(2100), - [sym__cite_suppress_author] = ACTIONS(2100), - [sym__strikeout_open] = ACTIONS(2100), - [sym__subscript_open] = ACTIONS(2100), - [sym__superscript_open] = ACTIONS(2100), - [sym__inline_note_start_token] = ACTIONS(2100), - [sym__strong_emphasis_open_star] = ACTIONS(2100), - [sym__strong_emphasis_open_underscore] = ACTIONS(2100), - [sym__emphasis_open_star] = ACTIONS(2100), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2100), - [sym_html_element] = ACTIONS(2100), - [sym__pandoc_lt_str] = ACTIONS(2100), - [sym__pandoc_line_break] = ACTIONS(2100), - [sym_grid_table] = ACTIONS(2100), - [sym__caption_start] = ACTIONS(2100), - }, - [STATE(167)] = { - [sym_list_marker_minus] = STATE(6), - [sym__list_item_minus] = STATE(167), - [aux_sym__list_minus_repeat1] = STATE(167), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_entity_reference] = ACTIONS(2107), - [sym_numeric_character_reference] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_BANG_LBRACK] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(2109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2107), - [aux_sym_pandoc_str_token1] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2107), - [sym__whitespace] = ACTIONS(2107), - [sym__line_ending] = ACTIONS(2107), - [sym__soft_line_ending] = ACTIONS(2107), - [sym__block_quote_start] = ACTIONS(2107), - [sym_atx_h1_marker] = ACTIONS(2107), - [sym_atx_h2_marker] = ACTIONS(2107), - [sym_atx_h3_marker] = ACTIONS(2107), - [sym_atx_h4_marker] = ACTIONS(2107), - [sym_atx_h5_marker] = ACTIONS(2107), - [sym_atx_h6_marker] = ACTIONS(2107), - [sym__thematic_break] = ACTIONS(2107), - [sym__list_marker_minus] = ACTIONS(2111), - [sym__list_marker_plus] = ACTIONS(2107), - [sym__list_marker_star] = ACTIONS(2107), - [sym__list_marker_parenthesis] = ACTIONS(2107), - [sym__list_marker_dot] = ACTIONS(2107), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2111), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2107), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2107), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2107), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2107), - [sym__list_marker_example] = ACTIONS(2107), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2107), - [sym__fenced_code_block_start_backtick] = ACTIONS(2107), - [sym_minus_metadata] = ACTIONS(2107), - [sym__pipe_table_start] = ACTIONS(2107), - [sym__fenced_div_start] = ACTIONS(2107), - [sym_ref_id_specifier] = ACTIONS(2107), - [sym__code_span_start] = ACTIONS(2107), - [sym__html_comment] = ACTIONS(2107), - [sym__autolink] = ACTIONS(2107), - [sym__highlight_span_start] = ACTIONS(2107), - [sym__insert_span_start] = ACTIONS(2107), - [sym__delete_span_start] = ACTIONS(2107), - [sym__edit_comment_span_start] = ACTIONS(2107), - [sym__single_quote_span_open] = ACTIONS(2107), - [sym__double_quote_span_open] = ACTIONS(2107), - [sym__shortcode_open_escaped] = ACTIONS(2107), - [sym__shortcode_open] = ACTIONS(2107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2107), - [sym__cite_suppress_author] = ACTIONS(2107), - [sym__strikeout_open] = ACTIONS(2107), - [sym__subscript_open] = ACTIONS(2107), - [sym__superscript_open] = ACTIONS(2107), - [sym__inline_note_start_token] = ACTIONS(2107), - [sym__strong_emphasis_open_star] = ACTIONS(2107), - [sym__strong_emphasis_open_underscore] = ACTIONS(2107), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2107), - [sym_inline_note_reference] = ACTIONS(2107), - [sym_html_element] = ACTIONS(2107), - [sym__pandoc_lt_str] = ACTIONS(2107), - [sym__pandoc_line_break] = ACTIONS(2107), - [sym_grid_table] = ACTIONS(2107), - [sym__caption_start] = ACTIONS(2107), - }, - [STATE(168)] = { - [sym_list_marker_star] = STATE(9), - [sym__list_item_star] = STATE(168), - [aux_sym__list_star_repeat1] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(2114), - [sym_entity_reference] = ACTIONS(2114), - [sym_numeric_character_reference] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_BANG_LBRACK] = ACTIONS(2114), - [anon_sym_DOLLAR] = ACTIONS(2116), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2114), - [aux_sym_pandoc_str_token1] = ACTIONS(2116), - [anon_sym_PIPE] = ACTIONS(2114), - [sym__whitespace] = ACTIONS(2114), - [sym__line_ending] = ACTIONS(2114), - [sym__soft_line_ending] = ACTIONS(2114), - [sym__block_quote_start] = ACTIONS(2114), - [sym_atx_h1_marker] = ACTIONS(2114), - [sym_atx_h2_marker] = ACTIONS(2114), - [sym_atx_h3_marker] = ACTIONS(2114), - [sym_atx_h4_marker] = ACTIONS(2114), - [sym_atx_h5_marker] = ACTIONS(2114), - [sym_atx_h6_marker] = ACTIONS(2114), - [sym__thematic_break] = ACTIONS(2114), - [sym__list_marker_minus] = ACTIONS(2114), - [sym__list_marker_plus] = ACTIONS(2114), - [sym__list_marker_star] = ACTIONS(2118), - [sym__list_marker_parenthesis] = ACTIONS(2114), - [sym__list_marker_dot] = ACTIONS(2114), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2114), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2114), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2118), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2114), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2114), - [sym__list_marker_example] = ACTIONS(2114), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2114), - [sym__fenced_code_block_start_backtick] = ACTIONS(2114), - [sym_minus_metadata] = ACTIONS(2114), - [sym__pipe_table_start] = ACTIONS(2114), - [sym__fenced_div_start] = ACTIONS(2114), - [sym_ref_id_specifier] = ACTIONS(2114), - [sym__code_span_start] = ACTIONS(2114), - [sym__html_comment] = ACTIONS(2114), - [sym__autolink] = ACTIONS(2114), - [sym__highlight_span_start] = ACTIONS(2114), - [sym__insert_span_start] = ACTIONS(2114), - [sym__delete_span_start] = ACTIONS(2114), - [sym__edit_comment_span_start] = ACTIONS(2114), - [sym__single_quote_span_open] = ACTIONS(2114), - [sym__double_quote_span_open] = ACTIONS(2114), - [sym__shortcode_open_escaped] = ACTIONS(2114), - [sym__shortcode_open] = ACTIONS(2114), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2114), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2114), - [sym__cite_author_in_text] = ACTIONS(2114), - [sym__cite_suppress_author] = ACTIONS(2114), - [sym__strikeout_open] = ACTIONS(2114), - [sym__subscript_open] = ACTIONS(2114), - [sym__superscript_open] = ACTIONS(2114), - [sym__inline_note_start_token] = ACTIONS(2114), - [sym__strong_emphasis_open_star] = ACTIONS(2114), - [sym__strong_emphasis_open_underscore] = ACTIONS(2114), - [sym__emphasis_open_star] = ACTIONS(2114), - [sym__emphasis_open_underscore] = ACTIONS(2114), - [sym_inline_note_reference] = ACTIONS(2114), - [sym_html_element] = ACTIONS(2114), - [sym__pandoc_lt_str] = ACTIONS(2114), - [sym__pandoc_line_break] = ACTIONS(2114), - [sym_grid_table] = ACTIONS(2114), - [sym__caption_start] = ACTIONS(2114), - }, - [STATE(169)] = { - [sym_list_marker_parenthesis] = STATE(4), - [sym__list_item_parenthesis] = STATE(169), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [ts_builtin_sym_end] = ACTIONS(2121), + [sym_list_marker_dot] = STATE(11), + [sym__list_item_dot] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(165), [sym_entity_reference] = ACTIONS(2121), [sym_numeric_character_reference] = ACTIONS(2121), [anon_sym_LBRACK] = ACTIONS(2121), @@ -45523,6 +45442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(2121), [sym__line_ending] = ACTIONS(2121), [sym__soft_line_ending] = ACTIONS(2121), + [sym__block_close] = ACTIONS(2121), [sym__block_quote_start] = ACTIONS(2121), [sym_atx_h1_marker] = ACTIONS(2121), [sym_atx_h2_marker] = ACTIONS(2121), @@ -45534,17 +45454,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_minus] = ACTIONS(2121), [sym__list_marker_plus] = ACTIONS(2121), [sym__list_marker_star] = ACTIONS(2121), - [sym__list_marker_parenthesis] = ACTIONS(2125), - [sym__list_marker_dot] = ACTIONS(2121), + [sym__list_marker_parenthesis] = ACTIONS(2121), + [sym__list_marker_dot] = ACTIONS(2125), [sym__list_marker_minus_dont_interrupt] = ACTIONS(2121), [sym__list_marker_plus_dont_interrupt] = ACTIONS(2121), [sym__list_marker_star_dont_interrupt] = ACTIONS(2121), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2125), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2121), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2121), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2125), [sym__list_marker_example] = ACTIONS(2121), [sym__list_marker_example_dont_interrupt] = ACTIONS(2121), [sym__fenced_code_block_start_backtick] = ACTIONS(2121), - [sym_minus_metadata] = ACTIONS(2121), + [sym__minus_metadata_start] = ACTIONS(2121), [sym__pipe_table_start] = ACTIONS(2121), [sym__fenced_div_start] = ACTIONS(2121), [sym_ref_id_specifier] = ACTIONS(2121), @@ -45578,442 +45498,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2121), [sym__caption_start] = ACTIONS(2121), }, - [STATE(170)] = { - [sym_list_marker_minus] = STATE(6), - [sym__list_item_minus] = STATE(167), - [aux_sym__list_minus_repeat1] = STATE(167), - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_entity_reference] = ACTIONS(2080), - [sym_numeric_character_reference] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_BANG_LBRACK] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(2082), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2080), - [aux_sym_pandoc_str_token1] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2080), - [sym__whitespace] = ACTIONS(2080), - [sym__line_ending] = ACTIONS(2080), - [sym__soft_line_ending] = ACTIONS(2080), - [sym__block_quote_start] = ACTIONS(2080), - [sym_atx_h1_marker] = ACTIONS(2080), - [sym_atx_h2_marker] = ACTIONS(2080), - [sym_atx_h3_marker] = ACTIONS(2080), - [sym_atx_h4_marker] = ACTIONS(2080), - [sym_atx_h5_marker] = ACTIONS(2080), - [sym_atx_h6_marker] = ACTIONS(2080), - [sym__thematic_break] = ACTIONS(2080), - [sym__list_marker_minus] = ACTIONS(43), - [sym__list_marker_plus] = ACTIONS(2080), - [sym__list_marker_star] = ACTIONS(2080), - [sym__list_marker_parenthesis] = ACTIONS(2080), - [sym__list_marker_dot] = ACTIONS(2080), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(43), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_example] = ACTIONS(2080), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2080), - [sym__fenced_code_block_start_backtick] = ACTIONS(2080), - [sym_minus_metadata] = ACTIONS(2080), - [sym__pipe_table_start] = ACTIONS(2080), - [sym__fenced_div_start] = ACTIONS(2080), - [sym_ref_id_specifier] = ACTIONS(2080), - [sym__code_span_start] = ACTIONS(2080), - [sym__html_comment] = ACTIONS(2080), - [sym__autolink] = ACTIONS(2080), - [sym__highlight_span_start] = ACTIONS(2080), - [sym__insert_span_start] = ACTIONS(2080), - [sym__delete_span_start] = ACTIONS(2080), - [sym__edit_comment_span_start] = ACTIONS(2080), - [sym__single_quote_span_open] = ACTIONS(2080), - [sym__double_quote_span_open] = ACTIONS(2080), - [sym__shortcode_open_escaped] = ACTIONS(2080), - [sym__shortcode_open] = ACTIONS(2080), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2080), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2080), - [sym__cite_suppress_author] = ACTIONS(2080), - [sym__strikeout_open] = ACTIONS(2080), - [sym__subscript_open] = ACTIONS(2080), - [sym__superscript_open] = ACTIONS(2080), - [sym__inline_note_start_token] = ACTIONS(2080), - [sym__strong_emphasis_open_star] = ACTIONS(2080), - [sym__strong_emphasis_open_underscore] = ACTIONS(2080), - [sym__emphasis_open_star] = ACTIONS(2080), - [sym__emphasis_open_underscore] = ACTIONS(2080), - [sym_inline_note_reference] = ACTIONS(2080), - [sym_html_element] = ACTIONS(2080), - [sym__pandoc_lt_str] = ACTIONS(2080), - [sym__pandoc_line_break] = ACTIONS(2080), - [sym_grid_table] = ACTIONS(2080), - [sym__caption_start] = ACTIONS(2080), + [STATE(166)] = { + [sym_list_marker_parenthesis] = STATE(12), + [sym__list_item_parenthesis] = STATE(166), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [sym_entity_reference] = ACTIONS(2259), + [sym_numeric_character_reference] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_BANG_LBRACK] = ACTIONS(2259), + [anon_sym_DOLLAR] = ACTIONS(2261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [aux_sym_pandoc_str_token1] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2259), + [sym__whitespace] = ACTIONS(2259), + [sym__line_ending] = ACTIONS(2259), + [sym__soft_line_ending] = ACTIONS(2259), + [sym__block_close] = ACTIONS(2259), + [sym__block_quote_start] = ACTIONS(2259), + [sym_atx_h1_marker] = ACTIONS(2259), + [sym_atx_h2_marker] = ACTIONS(2259), + [sym_atx_h3_marker] = ACTIONS(2259), + [sym_atx_h4_marker] = ACTIONS(2259), + [sym_atx_h5_marker] = ACTIONS(2259), + [sym_atx_h6_marker] = ACTIONS(2259), + [sym__thematic_break] = ACTIONS(2259), + [sym__list_marker_minus] = ACTIONS(2259), + [sym__list_marker_plus] = ACTIONS(2259), + [sym__list_marker_star] = ACTIONS(2259), + [sym__list_marker_parenthesis] = ACTIONS(2263), + [sym__list_marker_dot] = ACTIONS(2259), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2259), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2259), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2259), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2263), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2259), + [sym__list_marker_example] = ACTIONS(2259), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2259), + [sym__fenced_code_block_start_backtick] = ACTIONS(2259), + [sym__minus_metadata_start] = ACTIONS(2259), + [sym__pipe_table_start] = ACTIONS(2259), + [sym__fenced_div_start] = ACTIONS(2259), + [sym_ref_id_specifier] = ACTIONS(2259), + [sym__code_span_start] = ACTIONS(2259), + [sym__html_comment] = ACTIONS(2259), + [sym__autolink] = ACTIONS(2259), + [sym__highlight_span_start] = ACTIONS(2259), + [sym__insert_span_start] = ACTIONS(2259), + [sym__delete_span_start] = ACTIONS(2259), + [sym__edit_comment_span_start] = ACTIONS(2259), + [sym__single_quote_span_open] = ACTIONS(2259), + [sym__double_quote_span_open] = ACTIONS(2259), + [sym__shortcode_open_escaped] = ACTIONS(2259), + [sym__shortcode_open] = ACTIONS(2259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2259), + [sym__cite_author_in_text] = ACTIONS(2259), + [sym__cite_suppress_author] = ACTIONS(2259), + [sym__strikeout_open] = ACTIONS(2259), + [sym__subscript_open] = ACTIONS(2259), + [sym__superscript_open] = ACTIONS(2259), + [sym__inline_note_start_token] = ACTIONS(2259), + [sym__strong_emphasis_open_star] = ACTIONS(2259), + [sym__strong_emphasis_open_underscore] = ACTIONS(2259), + [sym__emphasis_open_star] = ACTIONS(2259), + [sym__emphasis_open_underscore] = ACTIONS(2259), + [sym_inline_note_reference] = ACTIONS(2259), + [sym_html_element] = ACTIONS(2259), + [sym__pandoc_lt_str] = ACTIONS(2259), + [sym__pandoc_line_break] = ACTIONS(2259), + [sym_grid_table] = ACTIONS(2259), + [sym__caption_start] = ACTIONS(2259), }, - [STATE(171)] = { - [sym_list_marker_example] = STATE(5), - [sym__list_item_example] = STATE(171), - [aux_sym__list_example_repeat1] = STATE(171), - [ts_builtin_sym_end] = 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), - [sym__whitespace] = ACTIONS(2128), - [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(2128), - [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(2128), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2128), - [sym__list_marker_example] = ACTIONS(2132), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2132), - [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_lt_str] = ACTIONS(2128), - [sym__pandoc_line_break] = ACTIONS(2128), - [sym_grid_table] = ACTIONS(2128), - [sym__caption_start] = ACTIONS(2128), + [STATE(167)] = { + [sym_list_marker_example] = STATE(13), + [sym__list_item_example] = STATE(167), + [aux_sym__list_example_repeat1] = STATE(167), + [sym_entity_reference] = ACTIONS(2266), + [sym_numeric_character_reference] = ACTIONS(2266), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym_BANG_LBRACK] = ACTIONS(2266), + [anon_sym_DOLLAR] = ACTIONS(2268), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2266), + [anon_sym_LBRACE] = ACTIONS(2266), + [aux_sym_pandoc_str_token1] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2266), + [sym__whitespace] = ACTIONS(2266), + [sym__line_ending] = ACTIONS(2266), + [sym__soft_line_ending] = ACTIONS(2266), + [sym__block_close] = ACTIONS(2266), + [sym__block_quote_start] = ACTIONS(2266), + [sym_atx_h1_marker] = ACTIONS(2266), + [sym_atx_h2_marker] = ACTIONS(2266), + [sym_atx_h3_marker] = ACTIONS(2266), + [sym_atx_h4_marker] = ACTIONS(2266), + [sym_atx_h5_marker] = ACTIONS(2266), + [sym_atx_h6_marker] = ACTIONS(2266), + [sym__thematic_break] = ACTIONS(2266), + [sym__list_marker_minus] = ACTIONS(2266), + [sym__list_marker_plus] = ACTIONS(2266), + [sym__list_marker_star] = ACTIONS(2266), + [sym__list_marker_parenthesis] = ACTIONS(2266), + [sym__list_marker_dot] = ACTIONS(2266), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_example] = ACTIONS(2270), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2270), + [sym__fenced_code_block_start_backtick] = ACTIONS(2266), + [sym__minus_metadata_start] = ACTIONS(2266), + [sym__pipe_table_start] = ACTIONS(2266), + [sym__fenced_div_start] = ACTIONS(2266), + [sym_ref_id_specifier] = ACTIONS(2266), + [sym__code_span_start] = ACTIONS(2266), + [sym__html_comment] = ACTIONS(2266), + [sym__autolink] = ACTIONS(2266), + [sym__highlight_span_start] = ACTIONS(2266), + [sym__insert_span_start] = ACTIONS(2266), + [sym__delete_span_start] = ACTIONS(2266), + [sym__edit_comment_span_start] = ACTIONS(2266), + [sym__single_quote_span_open] = ACTIONS(2266), + [sym__double_quote_span_open] = ACTIONS(2266), + [sym__shortcode_open_escaped] = ACTIONS(2266), + [sym__shortcode_open] = ACTIONS(2266), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2266), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2266), + [sym__cite_author_in_text] = ACTIONS(2266), + [sym__cite_suppress_author] = ACTIONS(2266), + [sym__strikeout_open] = ACTIONS(2266), + [sym__subscript_open] = ACTIONS(2266), + [sym__superscript_open] = ACTIONS(2266), + [sym__inline_note_start_token] = ACTIONS(2266), + [sym__strong_emphasis_open_star] = ACTIONS(2266), + [sym__strong_emphasis_open_underscore] = ACTIONS(2266), + [sym__emphasis_open_star] = ACTIONS(2266), + [sym__emphasis_open_underscore] = ACTIONS(2266), + [sym_inline_note_reference] = ACTIONS(2266), + [sym_html_element] = ACTIONS(2266), + [sym__pandoc_lt_str] = ACTIONS(2266), + [sym__pandoc_line_break] = ACTIONS(2266), + [sym_grid_table] = ACTIONS(2266), + [sym__caption_start] = ACTIONS(2266), }, - [STATE(172)] = { - [sym_list_marker_plus] = STATE(7), - [sym__list_item_plus] = STATE(172), - [aux_sym__list_plus_repeat1] = STATE(172), - [sym_entity_reference] = ACTIONS(2100), - [sym_numeric_character_reference] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_BANG_LBRACK] = ACTIONS(2100), - [anon_sym_DOLLAR] = ACTIONS(2102), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [aux_sym_pandoc_str_token1] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(2100), - [sym__whitespace] = ACTIONS(2100), - [sym__line_ending] = ACTIONS(2100), - [sym__soft_line_ending] = ACTIONS(2100), - [sym__block_close] = ACTIONS(2100), - [sym__block_quote_start] = ACTIONS(2100), - [sym_atx_h1_marker] = ACTIONS(2100), - [sym_atx_h2_marker] = ACTIONS(2100), - [sym_atx_h3_marker] = ACTIONS(2100), - [sym_atx_h4_marker] = ACTIONS(2100), - [sym_atx_h5_marker] = ACTIONS(2100), - [sym_atx_h6_marker] = ACTIONS(2100), - [sym__thematic_break] = ACTIONS(2100), - [sym__list_marker_minus] = ACTIONS(2100), - [sym__list_marker_plus] = ACTIONS(2104), - [sym__list_marker_star] = ACTIONS(2100), - [sym__list_marker_parenthesis] = ACTIONS(2100), - [sym__list_marker_dot] = ACTIONS(2100), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2100), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2104), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2100), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2100), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2100), - [sym__list_marker_example] = ACTIONS(2100), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2100), - [sym__fenced_code_block_start_backtick] = ACTIONS(2100), - [sym_minus_metadata] = ACTIONS(2100), - [sym__pipe_table_start] = ACTIONS(2100), - [sym__fenced_div_start] = ACTIONS(2100), - [sym_ref_id_specifier] = ACTIONS(2100), - [sym__code_span_start] = ACTIONS(2100), - [sym__html_comment] = ACTIONS(2100), - [sym__autolink] = ACTIONS(2100), - [sym__highlight_span_start] = ACTIONS(2100), - [sym__insert_span_start] = ACTIONS(2100), - [sym__delete_span_start] = ACTIONS(2100), - [sym__edit_comment_span_start] = ACTIONS(2100), - [sym__single_quote_span_open] = ACTIONS(2100), - [sym__double_quote_span_open] = ACTIONS(2100), - [sym__shortcode_open_escaped] = ACTIONS(2100), - [sym__shortcode_open] = ACTIONS(2100), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2100), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2100), - [sym__cite_author_in_text] = ACTIONS(2100), - [sym__cite_suppress_author] = ACTIONS(2100), - [sym__strikeout_open] = ACTIONS(2100), - [sym__subscript_open] = ACTIONS(2100), - [sym__superscript_open] = ACTIONS(2100), - [sym__inline_note_start_token] = ACTIONS(2100), - [sym__strong_emphasis_open_star] = ACTIONS(2100), - [sym__strong_emphasis_open_underscore] = ACTIONS(2100), - [sym__emphasis_open_star] = ACTIONS(2100), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2100), - [sym_html_element] = ACTIONS(2100), - [sym__pandoc_lt_str] = ACTIONS(2100), - [sym__pandoc_line_break] = ACTIONS(2100), - [sym_grid_table] = ACTIONS(2100), - [sym__caption_start] = ACTIONS(2100), + [STATE(168)] = { + [sym_list_marker_star] = STATE(10), + [sym__list_item_star] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(164), + [sym_entity_reference] = ACTIONS(2214), + [sym_numeric_character_reference] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_BANG_LBRACK] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2214), + [aux_sym_pandoc_str_token1] = ACTIONS(2216), + [anon_sym_PIPE] = ACTIONS(2214), + [sym__whitespace] = ACTIONS(2214), + [sym__line_ending] = ACTIONS(2214), + [sym__soft_line_ending] = ACTIONS(2214), + [sym__block_close] = ACTIONS(2214), + [sym__block_quote_start] = ACTIONS(2214), + [sym_atx_h1_marker] = ACTIONS(2214), + [sym_atx_h2_marker] = ACTIONS(2214), + [sym_atx_h3_marker] = ACTIONS(2214), + [sym_atx_h4_marker] = ACTIONS(2214), + [sym_atx_h5_marker] = ACTIONS(2214), + [sym_atx_h6_marker] = ACTIONS(2214), + [sym__thematic_break] = ACTIONS(2214), + [sym__list_marker_minus] = ACTIONS(2214), + [sym__list_marker_plus] = ACTIONS(2214), + [sym__list_marker_star] = ACTIONS(47), + [sym__list_marker_parenthesis] = ACTIONS(2214), + [sym__list_marker_dot] = ACTIONS(2214), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_star_dont_interrupt] = ACTIONS(47), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2214), + [sym__list_marker_example] = ACTIONS(2214), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2214), + [sym__fenced_code_block_start_backtick] = ACTIONS(2214), + [sym__minus_metadata_start] = ACTIONS(2214), + [sym__pipe_table_start] = ACTIONS(2214), + [sym__fenced_div_start] = ACTIONS(2214), + [sym_ref_id_specifier] = ACTIONS(2214), + [sym__code_span_start] = ACTIONS(2214), + [sym__html_comment] = ACTIONS(2214), + [sym__autolink] = ACTIONS(2214), + [sym__highlight_span_start] = ACTIONS(2214), + [sym__insert_span_start] = ACTIONS(2214), + [sym__delete_span_start] = ACTIONS(2214), + [sym__edit_comment_span_start] = ACTIONS(2214), + [sym__single_quote_span_open] = ACTIONS(2214), + [sym__double_quote_span_open] = ACTIONS(2214), + [sym__shortcode_open_escaped] = ACTIONS(2214), + [sym__shortcode_open] = ACTIONS(2214), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2214), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2214), + [sym__cite_author_in_text] = ACTIONS(2214), + [sym__cite_suppress_author] = ACTIONS(2214), + [sym__strikeout_open] = ACTIONS(2214), + [sym__subscript_open] = ACTIONS(2214), + [sym__superscript_open] = ACTIONS(2214), + [sym__inline_note_start_token] = ACTIONS(2214), + [sym__strong_emphasis_open_star] = ACTIONS(2214), + [sym__strong_emphasis_open_underscore] = ACTIONS(2214), + [sym__emphasis_open_star] = ACTIONS(2214), + [sym__emphasis_open_underscore] = ACTIONS(2214), + [sym_inline_note_reference] = ACTIONS(2214), + [sym_html_element] = ACTIONS(2214), + [sym__pandoc_lt_str] = ACTIONS(2214), + [sym__pandoc_line_break] = ACTIONS(2214), + [sym_grid_table] = ACTIONS(2214), + [sym__caption_start] = ACTIONS(2214), }, - [STATE(173)] = { - [sym_list_marker_minus] = STATE(8), - [sym__list_item_minus] = STATE(173), - [aux_sym__list_minus_repeat1] = STATE(173), - [sym_entity_reference] = ACTIONS(2107), - [sym_numeric_character_reference] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_BANG_LBRACK] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(2109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2107), - [aux_sym_pandoc_str_token1] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2107), - [sym__whitespace] = ACTIONS(2107), - [sym__line_ending] = ACTIONS(2107), - [sym__soft_line_ending] = ACTIONS(2107), - [sym__block_close] = ACTIONS(2107), - [sym__block_quote_start] = ACTIONS(2107), - [sym_atx_h1_marker] = ACTIONS(2107), - [sym_atx_h2_marker] = ACTIONS(2107), - [sym_atx_h3_marker] = ACTIONS(2107), - [sym_atx_h4_marker] = ACTIONS(2107), - [sym_atx_h5_marker] = ACTIONS(2107), - [sym_atx_h6_marker] = ACTIONS(2107), - [sym__thematic_break] = ACTIONS(2107), - [sym__list_marker_minus] = ACTIONS(2111), - [sym__list_marker_plus] = ACTIONS(2107), - [sym__list_marker_star] = ACTIONS(2107), - [sym__list_marker_parenthesis] = ACTIONS(2107), - [sym__list_marker_dot] = ACTIONS(2107), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2111), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2107), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2107), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2107), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2107), - [sym__list_marker_example] = ACTIONS(2107), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2107), - [sym__fenced_code_block_start_backtick] = ACTIONS(2107), - [sym_minus_metadata] = ACTIONS(2107), - [sym__pipe_table_start] = ACTIONS(2107), - [sym__fenced_div_start] = ACTIONS(2107), - [sym_ref_id_specifier] = ACTIONS(2107), - [sym__code_span_start] = ACTIONS(2107), - [sym__html_comment] = ACTIONS(2107), - [sym__autolink] = ACTIONS(2107), - [sym__highlight_span_start] = ACTIONS(2107), - [sym__insert_span_start] = ACTIONS(2107), - [sym__delete_span_start] = ACTIONS(2107), - [sym__edit_comment_span_start] = ACTIONS(2107), - [sym__single_quote_span_open] = ACTIONS(2107), - [sym__double_quote_span_open] = ACTIONS(2107), - [sym__shortcode_open_escaped] = ACTIONS(2107), - [sym__shortcode_open] = ACTIONS(2107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2107), - [sym__cite_suppress_author] = ACTIONS(2107), - [sym__strikeout_open] = ACTIONS(2107), - [sym__subscript_open] = ACTIONS(2107), - [sym__superscript_open] = ACTIONS(2107), - [sym__inline_note_start_token] = ACTIONS(2107), - [sym__strong_emphasis_open_star] = ACTIONS(2107), - [sym__strong_emphasis_open_underscore] = ACTIONS(2107), - [sym__emphasis_open_star] = ACTIONS(2107), - [sym__emphasis_open_underscore] = ACTIONS(2107), - [sym_inline_note_reference] = ACTIONS(2107), - [sym_html_element] = ACTIONS(2107), - [sym__pandoc_lt_str] = ACTIONS(2107), - [sym__pandoc_line_break] = ACTIONS(2107), - [sym_grid_table] = ACTIONS(2107), - [sym__caption_start] = ACTIONS(2107), + [STATE(169)] = { + [sym_list_marker_plus] = STATE(2), + [sym__list_item_plus] = STATE(169), + [aux_sym__list_plus_repeat1] = STATE(169), + [ts_builtin_sym_end] = ACTIONS(2234), + [sym_entity_reference] = ACTIONS(2234), + [sym_numeric_character_reference] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_BANG_LBRACK] = ACTIONS(2234), + [anon_sym_DOLLAR] = ACTIONS(2236), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [aux_sym_pandoc_str_token1] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(2234), + [sym__whitespace] = ACTIONS(2234), + [sym__line_ending] = ACTIONS(2234), + [sym__soft_line_ending] = ACTIONS(2234), + [sym__block_quote_start] = ACTIONS(2234), + [sym_atx_h1_marker] = ACTIONS(2234), + [sym_atx_h2_marker] = ACTIONS(2234), + [sym_atx_h3_marker] = ACTIONS(2234), + [sym_atx_h4_marker] = ACTIONS(2234), + [sym_atx_h5_marker] = ACTIONS(2234), + [sym_atx_h6_marker] = ACTIONS(2234), + [sym__thematic_break] = ACTIONS(2234), + [sym__list_marker_minus] = ACTIONS(2234), + [sym__list_marker_plus] = ACTIONS(2238), + [sym__list_marker_star] = ACTIONS(2234), + [sym__list_marker_parenthesis] = ACTIONS(2234), + [sym__list_marker_dot] = ACTIONS(2234), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2238), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2234), + [sym__list_marker_example] = ACTIONS(2234), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2234), + [sym__fenced_code_block_start_backtick] = ACTIONS(2234), + [sym__minus_metadata_start] = ACTIONS(2234), + [sym__pipe_table_start] = ACTIONS(2234), + [sym__fenced_div_start] = ACTIONS(2234), + [sym_ref_id_specifier] = ACTIONS(2234), + [sym__code_span_start] = ACTIONS(2234), + [sym__html_comment] = ACTIONS(2234), + [sym__autolink] = ACTIONS(2234), + [sym__highlight_span_start] = ACTIONS(2234), + [sym__insert_span_start] = ACTIONS(2234), + [sym__delete_span_start] = ACTIONS(2234), + [sym__edit_comment_span_start] = ACTIONS(2234), + [sym__single_quote_span_open] = ACTIONS(2234), + [sym__double_quote_span_open] = ACTIONS(2234), + [sym__shortcode_open_escaped] = ACTIONS(2234), + [sym__shortcode_open] = ACTIONS(2234), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2234), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2234), + [sym__cite_author_in_text] = ACTIONS(2234), + [sym__cite_suppress_author] = ACTIONS(2234), + [sym__strikeout_open] = ACTIONS(2234), + [sym__subscript_open] = ACTIONS(2234), + [sym__superscript_open] = ACTIONS(2234), + [sym__inline_note_start_token] = ACTIONS(2234), + [sym__strong_emphasis_open_star] = ACTIONS(2234), + [sym__strong_emphasis_open_underscore] = ACTIONS(2234), + [sym__emphasis_open_star] = ACTIONS(2234), + [sym__emphasis_open_underscore] = ACTIONS(2234), + [sym_inline_note_reference] = ACTIONS(2234), + [sym_html_element] = ACTIONS(2234), + [sym__pandoc_lt_str] = ACTIONS(2234), + [sym__pandoc_line_break] = ACTIONS(2234), + [sym_grid_table] = ACTIONS(2234), + [sym__caption_start] = ACTIONS(2234), }, - [STATE(174)] = { - [sym_list_marker_star] = STATE(2), - [sym__list_item_star] = STATE(174), - [aux_sym__list_star_repeat1] = STATE(174), - [sym_entity_reference] = ACTIONS(2114), - [sym_numeric_character_reference] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_BANG_LBRACK] = ACTIONS(2114), - [anon_sym_DOLLAR] = ACTIONS(2116), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2114), - [aux_sym_pandoc_str_token1] = ACTIONS(2116), - [anon_sym_PIPE] = ACTIONS(2114), - [sym__whitespace] = ACTIONS(2114), - [sym__line_ending] = ACTIONS(2114), - [sym__soft_line_ending] = ACTIONS(2114), - [sym__block_close] = ACTIONS(2114), - [sym__block_quote_start] = ACTIONS(2114), - [sym_atx_h1_marker] = ACTIONS(2114), - [sym_atx_h2_marker] = ACTIONS(2114), - [sym_atx_h3_marker] = ACTIONS(2114), - [sym_atx_h4_marker] = ACTIONS(2114), - [sym_atx_h5_marker] = ACTIONS(2114), - [sym_atx_h6_marker] = ACTIONS(2114), - [sym__thematic_break] = ACTIONS(2114), - [sym__list_marker_minus] = ACTIONS(2114), - [sym__list_marker_plus] = ACTIONS(2114), - [sym__list_marker_star] = ACTIONS(2118), - [sym__list_marker_parenthesis] = ACTIONS(2114), - [sym__list_marker_dot] = ACTIONS(2114), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2114), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2114), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2118), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2114), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2114), - [sym__list_marker_example] = ACTIONS(2114), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2114), - [sym__fenced_code_block_start_backtick] = ACTIONS(2114), - [sym_minus_metadata] = ACTIONS(2114), - [sym__pipe_table_start] = ACTIONS(2114), - [sym__fenced_div_start] = ACTIONS(2114), - [sym_ref_id_specifier] = ACTIONS(2114), - [sym__code_span_start] = ACTIONS(2114), - [sym__html_comment] = ACTIONS(2114), - [sym__autolink] = ACTIONS(2114), - [sym__highlight_span_start] = ACTIONS(2114), - [sym__insert_span_start] = ACTIONS(2114), - [sym__delete_span_start] = ACTIONS(2114), - [sym__edit_comment_span_start] = ACTIONS(2114), - [sym__single_quote_span_open] = ACTIONS(2114), - [sym__double_quote_span_open] = ACTIONS(2114), - [sym__shortcode_open_escaped] = ACTIONS(2114), - [sym__shortcode_open] = ACTIONS(2114), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2114), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2114), - [sym__cite_author_in_text] = ACTIONS(2114), - [sym__cite_suppress_author] = ACTIONS(2114), - [sym__strikeout_open] = ACTIONS(2114), - [sym__subscript_open] = ACTIONS(2114), - [sym__superscript_open] = ACTIONS(2114), - [sym__inline_note_start_token] = ACTIONS(2114), - [sym__strong_emphasis_open_star] = ACTIONS(2114), - [sym__strong_emphasis_open_underscore] = ACTIONS(2114), - [sym__emphasis_open_star] = ACTIONS(2114), - [sym__emphasis_open_underscore] = ACTIONS(2114), - [sym_inline_note_reference] = ACTIONS(2114), - [sym_html_element] = ACTIONS(2114), - [sym__pandoc_lt_str] = ACTIONS(2114), - [sym__pandoc_line_break] = ACTIONS(2114), - [sym_grid_table] = ACTIONS(2114), - [sym__caption_start] = ACTIONS(2114), + [STATE(170)] = { + [sym_list_marker_minus] = STATE(7), + [sym__list_item_minus] = STATE(170), + [aux_sym__list_minus_repeat1] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(2241), + [sym_entity_reference] = ACTIONS(2241), + [sym_numeric_character_reference] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_BANG_LBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [aux_sym_pandoc_str_token1] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2241), + [sym__whitespace] = ACTIONS(2241), + [sym__line_ending] = ACTIONS(2241), + [sym__soft_line_ending] = ACTIONS(2241), + [sym__block_quote_start] = ACTIONS(2241), + [sym_atx_h1_marker] = ACTIONS(2241), + [sym_atx_h2_marker] = ACTIONS(2241), + [sym_atx_h3_marker] = ACTIONS(2241), + [sym_atx_h4_marker] = ACTIONS(2241), + [sym_atx_h5_marker] = ACTIONS(2241), + [sym_atx_h6_marker] = ACTIONS(2241), + [sym__thematic_break] = ACTIONS(2241), + [sym__list_marker_minus] = ACTIONS(2245), + [sym__list_marker_plus] = ACTIONS(2241), + [sym__list_marker_star] = ACTIONS(2241), + [sym__list_marker_parenthesis] = ACTIONS(2241), + [sym__list_marker_dot] = ACTIONS(2241), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2245), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2241), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2241), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2241), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2241), + [sym__list_marker_example] = ACTIONS(2241), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2241), + [sym__fenced_code_block_start_backtick] = ACTIONS(2241), + [sym__minus_metadata_start] = ACTIONS(2241), + [sym__pipe_table_start] = ACTIONS(2241), + [sym__fenced_div_start] = ACTIONS(2241), + [sym_ref_id_specifier] = ACTIONS(2241), + [sym__code_span_start] = ACTIONS(2241), + [sym__html_comment] = ACTIONS(2241), + [sym__autolink] = ACTIONS(2241), + [sym__highlight_span_start] = ACTIONS(2241), + [sym__insert_span_start] = ACTIONS(2241), + [sym__delete_span_start] = ACTIONS(2241), + [sym__edit_comment_span_start] = ACTIONS(2241), + [sym__single_quote_span_open] = ACTIONS(2241), + [sym__double_quote_span_open] = ACTIONS(2241), + [sym__shortcode_open_escaped] = ACTIONS(2241), + [sym__shortcode_open] = ACTIONS(2241), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2241), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2241), + [sym__cite_author_in_text] = ACTIONS(2241), + [sym__cite_suppress_author] = ACTIONS(2241), + [sym__strikeout_open] = ACTIONS(2241), + [sym__subscript_open] = ACTIONS(2241), + [sym__superscript_open] = ACTIONS(2241), + [sym__inline_note_start_token] = ACTIONS(2241), + [sym__strong_emphasis_open_star] = ACTIONS(2241), + [sym__strong_emphasis_open_underscore] = ACTIONS(2241), + [sym__emphasis_open_star] = ACTIONS(2241), + [sym__emphasis_open_underscore] = ACTIONS(2241), + [sym_inline_note_reference] = ACTIONS(2241), + [sym_html_element] = ACTIONS(2241), + [sym__pandoc_lt_str] = ACTIONS(2241), + [sym__pandoc_line_break] = ACTIONS(2241), + [sym_grid_table] = ACTIONS(2241), + [sym__caption_start] = ACTIONS(2241), }, - [STATE(175)] = { - [sym_list_marker_dot] = STATE(10), - [sym__list_item_dot] = STATE(175), - [aux_sym__list_dot_repeat1] = STATE(175), - [sym_entity_reference] = ACTIONS(2057), - [sym_numeric_character_reference] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_BANG_LBRACK] = ACTIONS(2057), - [anon_sym_DOLLAR] = ACTIONS(2059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [aux_sym_pandoc_str_token1] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(2057), - [sym__whitespace] = ACTIONS(2057), - [sym__line_ending] = ACTIONS(2057), - [sym__soft_line_ending] = ACTIONS(2057), - [sym__block_close] = ACTIONS(2057), - [sym__block_quote_start] = ACTIONS(2057), - [sym_atx_h1_marker] = ACTIONS(2057), - [sym_atx_h2_marker] = ACTIONS(2057), - [sym_atx_h3_marker] = ACTIONS(2057), - [sym_atx_h4_marker] = ACTIONS(2057), - [sym_atx_h5_marker] = ACTIONS(2057), - [sym_atx_h6_marker] = ACTIONS(2057), - [sym__thematic_break] = ACTIONS(2057), - [sym__list_marker_minus] = ACTIONS(2057), - [sym__list_marker_plus] = ACTIONS(2057), - [sym__list_marker_star] = ACTIONS(2057), - [sym__list_marker_parenthesis] = ACTIONS(2057), - [sym__list_marker_dot] = ACTIONS(2061), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2057), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2057), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2057), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2057), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2061), - [sym__list_marker_example] = ACTIONS(2057), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2057), - [sym__fenced_code_block_start_backtick] = ACTIONS(2057), - [sym_minus_metadata] = ACTIONS(2057), - [sym__pipe_table_start] = ACTIONS(2057), - [sym__fenced_div_start] = ACTIONS(2057), - [sym_ref_id_specifier] = ACTIONS(2057), - [sym__code_span_start] = ACTIONS(2057), - [sym__html_comment] = ACTIONS(2057), - [sym__autolink] = ACTIONS(2057), - [sym__highlight_span_start] = ACTIONS(2057), - [sym__insert_span_start] = ACTIONS(2057), - [sym__delete_span_start] = ACTIONS(2057), - [sym__edit_comment_span_start] = ACTIONS(2057), - [sym__single_quote_span_open] = ACTIONS(2057), - [sym__double_quote_span_open] = ACTIONS(2057), - [sym__shortcode_open_escaped] = ACTIONS(2057), - [sym__shortcode_open] = ACTIONS(2057), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2057), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2057), - [sym__cite_author_in_text] = ACTIONS(2057), - [sym__cite_suppress_author] = ACTIONS(2057), - [sym__strikeout_open] = ACTIONS(2057), - [sym__subscript_open] = ACTIONS(2057), - [sym__superscript_open] = ACTIONS(2057), - [sym__inline_note_start_token] = ACTIONS(2057), - [sym__strong_emphasis_open_star] = ACTIONS(2057), - [sym__strong_emphasis_open_underscore] = ACTIONS(2057), - [sym__emphasis_open_star] = ACTIONS(2057), - [sym__emphasis_open_underscore] = ACTIONS(2057), - [sym_inline_note_reference] = ACTIONS(2057), - [sym_html_element] = ACTIONS(2057), - [sym__pandoc_lt_str] = ACTIONS(2057), - [sym__pandoc_line_break] = ACTIONS(2057), - [sym_grid_table] = ACTIONS(2057), - [sym__caption_start] = ACTIONS(2057), + [STATE(171)] = { + [sym_list_marker_star] = STATE(4), + [sym__list_item_star] = STATE(171), + [aux_sym__list_star_repeat1] = STATE(171), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_entity_reference] = ACTIONS(2248), + [sym_numeric_character_reference] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2248), + [anon_sym_BANG_LBRACK] = ACTIONS(2248), + [anon_sym_DOLLAR] = ACTIONS(2250), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2248), + [aux_sym_pandoc_str_token1] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2248), + [sym__whitespace] = ACTIONS(2248), + [sym__line_ending] = ACTIONS(2248), + [sym__soft_line_ending] = ACTIONS(2248), + [sym__block_quote_start] = ACTIONS(2248), + [sym_atx_h1_marker] = ACTIONS(2248), + [sym_atx_h2_marker] = ACTIONS(2248), + [sym_atx_h3_marker] = ACTIONS(2248), + [sym_atx_h4_marker] = ACTIONS(2248), + [sym_atx_h5_marker] = ACTIONS(2248), + [sym_atx_h6_marker] = ACTIONS(2248), + [sym__thematic_break] = ACTIONS(2248), + [sym__list_marker_minus] = ACTIONS(2248), + [sym__list_marker_plus] = ACTIONS(2248), + [sym__list_marker_star] = ACTIONS(2252), + [sym__list_marker_parenthesis] = ACTIONS(2248), + [sym__list_marker_dot] = ACTIONS(2248), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2248), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2248), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2252), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2248), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2248), + [sym__list_marker_example] = ACTIONS(2248), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2248), + [sym__fenced_code_block_start_backtick] = ACTIONS(2248), + [sym__minus_metadata_start] = ACTIONS(2248), + [sym__pipe_table_start] = ACTIONS(2248), + [sym__fenced_div_start] = ACTIONS(2248), + [sym_ref_id_specifier] = ACTIONS(2248), + [sym__code_span_start] = ACTIONS(2248), + [sym__html_comment] = ACTIONS(2248), + [sym__autolink] = ACTIONS(2248), + [sym__highlight_span_start] = ACTIONS(2248), + [sym__insert_span_start] = ACTIONS(2248), + [sym__delete_span_start] = ACTIONS(2248), + [sym__edit_comment_span_start] = ACTIONS(2248), + [sym__single_quote_span_open] = ACTIONS(2248), + [sym__double_quote_span_open] = ACTIONS(2248), + [sym__shortcode_open_escaped] = ACTIONS(2248), + [sym__shortcode_open] = ACTIONS(2248), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2248), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2248), + [sym__cite_author_in_text] = ACTIONS(2248), + [sym__cite_suppress_author] = ACTIONS(2248), + [sym__strikeout_open] = ACTIONS(2248), + [sym__subscript_open] = ACTIONS(2248), + [sym__superscript_open] = ACTIONS(2248), + [sym__inline_note_start_token] = ACTIONS(2248), + [sym__strong_emphasis_open_star] = ACTIONS(2248), + [sym__strong_emphasis_open_underscore] = ACTIONS(2248), + [sym__emphasis_open_star] = ACTIONS(2248), + [sym__emphasis_open_underscore] = ACTIONS(2248), + [sym_inline_note_reference] = ACTIONS(2248), + [sym_html_element] = ACTIONS(2248), + [sym__pandoc_lt_str] = ACTIONS(2248), + [sym__pandoc_line_break] = ACTIONS(2248), + [sym_grid_table] = ACTIONS(2248), + [sym__caption_start] = ACTIONS(2248), }, - [STATE(176)] = { - [sym_list_marker_parenthesis] = STATE(11), - [sym__list_item_parenthesis] = STATE(176), - [aux_sym__list_parenthesis_repeat1] = STATE(176), + [STATE(172)] = { + [sym_list_marker_dot] = STATE(3), + [sym__list_item_dot] = STATE(172), + [aux_sym__list_dot_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(2121), [sym_entity_reference] = ACTIONS(2121), [sym_numeric_character_reference] = ACTIONS(2121), [anon_sym_LBRACK] = ACTIONS(2121), @@ -46026,7 +45947,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(2121), [sym__line_ending] = ACTIONS(2121), [sym__soft_line_ending] = ACTIONS(2121), - [sym__block_close] = ACTIONS(2121), [sym__block_quote_start] = ACTIONS(2121), [sym_atx_h1_marker] = ACTIONS(2121), [sym_atx_h2_marker] = ACTIONS(2121), @@ -46038,17 +45958,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_minus] = ACTIONS(2121), [sym__list_marker_plus] = ACTIONS(2121), [sym__list_marker_star] = ACTIONS(2121), - [sym__list_marker_parenthesis] = ACTIONS(2125), - [sym__list_marker_dot] = ACTIONS(2121), + [sym__list_marker_parenthesis] = ACTIONS(2121), + [sym__list_marker_dot] = ACTIONS(2125), [sym__list_marker_minus_dont_interrupt] = ACTIONS(2121), [sym__list_marker_plus_dont_interrupt] = ACTIONS(2121), [sym__list_marker_star_dont_interrupt] = ACTIONS(2121), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2125), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2121), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2121), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2125), [sym__list_marker_example] = ACTIONS(2121), [sym__list_marker_example_dont_interrupt] = ACTIONS(2121), [sym__fenced_code_block_start_backtick] = ACTIONS(2121), - [sym_minus_metadata] = ACTIONS(2121), + [sym__minus_metadata_start] = ACTIONS(2121), [sym__pipe_table_start] = ACTIONS(2121), [sym__fenced_div_start] = ACTIONS(2121), [sym_ref_id_specifier] = ACTIONS(2121), @@ -46082,2903 +46002,1645 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2121), [sym__caption_start] = ACTIONS(2121), }, + [STATE(173)] = { + [sym_list_marker_parenthesis] = STATE(5), + [sym__list_item_parenthesis] = STATE(173), + [aux_sym__list_parenthesis_repeat1] = STATE(173), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_entity_reference] = ACTIONS(2259), + [sym_numeric_character_reference] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_BANG_LBRACK] = ACTIONS(2259), + [anon_sym_DOLLAR] = ACTIONS(2261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [aux_sym_pandoc_str_token1] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2259), + [sym__whitespace] = ACTIONS(2259), + [sym__line_ending] = ACTIONS(2259), + [sym__soft_line_ending] = ACTIONS(2259), + [sym__block_quote_start] = ACTIONS(2259), + [sym_atx_h1_marker] = ACTIONS(2259), + [sym_atx_h2_marker] = ACTIONS(2259), + [sym_atx_h3_marker] = ACTIONS(2259), + [sym_atx_h4_marker] = ACTIONS(2259), + [sym_atx_h5_marker] = ACTIONS(2259), + [sym_atx_h6_marker] = ACTIONS(2259), + [sym__thematic_break] = ACTIONS(2259), + [sym__list_marker_minus] = ACTIONS(2259), + [sym__list_marker_plus] = ACTIONS(2259), + [sym__list_marker_star] = ACTIONS(2259), + [sym__list_marker_parenthesis] = ACTIONS(2263), + [sym__list_marker_dot] = ACTIONS(2259), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2259), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2259), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2259), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2263), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2259), + [sym__list_marker_example] = ACTIONS(2259), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2259), + [sym__fenced_code_block_start_backtick] = ACTIONS(2259), + [sym__minus_metadata_start] = ACTIONS(2259), + [sym__pipe_table_start] = ACTIONS(2259), + [sym__fenced_div_start] = ACTIONS(2259), + [sym_ref_id_specifier] = ACTIONS(2259), + [sym__code_span_start] = ACTIONS(2259), + [sym__html_comment] = ACTIONS(2259), + [sym__autolink] = ACTIONS(2259), + [sym__highlight_span_start] = ACTIONS(2259), + [sym__insert_span_start] = ACTIONS(2259), + [sym__delete_span_start] = ACTIONS(2259), + [sym__edit_comment_span_start] = ACTIONS(2259), + [sym__single_quote_span_open] = ACTIONS(2259), + [sym__double_quote_span_open] = ACTIONS(2259), + [sym__shortcode_open_escaped] = ACTIONS(2259), + [sym__shortcode_open] = ACTIONS(2259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2259), + [sym__cite_author_in_text] = ACTIONS(2259), + [sym__cite_suppress_author] = ACTIONS(2259), + [sym__strikeout_open] = ACTIONS(2259), + [sym__subscript_open] = ACTIONS(2259), + [sym__superscript_open] = ACTIONS(2259), + [sym__inline_note_start_token] = ACTIONS(2259), + [sym__strong_emphasis_open_star] = ACTIONS(2259), + [sym__strong_emphasis_open_underscore] = ACTIONS(2259), + [sym__emphasis_open_star] = ACTIONS(2259), + [sym__emphasis_open_underscore] = ACTIONS(2259), + [sym_inline_note_reference] = ACTIONS(2259), + [sym_html_element] = ACTIONS(2259), + [sym__pandoc_lt_str] = ACTIONS(2259), + [sym__pandoc_line_break] = ACTIONS(2259), + [sym_grid_table] = ACTIONS(2259), + [sym__caption_start] = ACTIONS(2259), + }, + [STATE(174)] = { + [sym_list_marker_example] = STATE(6), + [sym__list_item_example] = STATE(174), + [aux_sym__list_example_repeat1] = STATE(174), + [ts_builtin_sym_end] = ACTIONS(2266), + [sym_entity_reference] = ACTIONS(2266), + [sym_numeric_character_reference] = ACTIONS(2266), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym_BANG_LBRACK] = ACTIONS(2266), + [anon_sym_DOLLAR] = ACTIONS(2268), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2266), + [anon_sym_LBRACE] = ACTIONS(2266), + [aux_sym_pandoc_str_token1] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2266), + [sym__whitespace] = ACTIONS(2266), + [sym__line_ending] = ACTIONS(2266), + [sym__soft_line_ending] = ACTIONS(2266), + [sym__block_quote_start] = ACTIONS(2266), + [sym_atx_h1_marker] = ACTIONS(2266), + [sym_atx_h2_marker] = ACTIONS(2266), + [sym_atx_h3_marker] = ACTIONS(2266), + [sym_atx_h4_marker] = ACTIONS(2266), + [sym_atx_h5_marker] = ACTIONS(2266), + [sym_atx_h6_marker] = ACTIONS(2266), + [sym__thematic_break] = ACTIONS(2266), + [sym__list_marker_minus] = ACTIONS(2266), + [sym__list_marker_plus] = ACTIONS(2266), + [sym__list_marker_star] = ACTIONS(2266), + [sym__list_marker_parenthesis] = ACTIONS(2266), + [sym__list_marker_dot] = ACTIONS(2266), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2266), + [sym__list_marker_example] = ACTIONS(2270), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2270), + [sym__fenced_code_block_start_backtick] = ACTIONS(2266), + [sym__minus_metadata_start] = ACTIONS(2266), + [sym__pipe_table_start] = ACTIONS(2266), + [sym__fenced_div_start] = ACTIONS(2266), + [sym_ref_id_specifier] = ACTIONS(2266), + [sym__code_span_start] = ACTIONS(2266), + [sym__html_comment] = ACTIONS(2266), + [sym__autolink] = ACTIONS(2266), + [sym__highlight_span_start] = ACTIONS(2266), + [sym__insert_span_start] = ACTIONS(2266), + [sym__delete_span_start] = ACTIONS(2266), + [sym__edit_comment_span_start] = ACTIONS(2266), + [sym__single_quote_span_open] = ACTIONS(2266), + [sym__double_quote_span_open] = ACTIONS(2266), + [sym__shortcode_open_escaped] = ACTIONS(2266), + [sym__shortcode_open] = ACTIONS(2266), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2266), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2266), + [sym__cite_author_in_text] = ACTIONS(2266), + [sym__cite_suppress_author] = ACTIONS(2266), + [sym__strikeout_open] = ACTIONS(2266), + [sym__subscript_open] = ACTIONS(2266), + [sym__superscript_open] = ACTIONS(2266), + [sym__inline_note_start_token] = ACTIONS(2266), + [sym__strong_emphasis_open_star] = ACTIONS(2266), + [sym__strong_emphasis_open_underscore] = ACTIONS(2266), + [sym__emphasis_open_star] = ACTIONS(2266), + [sym__emphasis_open_underscore] = ACTIONS(2266), + [sym_inline_note_reference] = ACTIONS(2266), + [sym_html_element] = ACTIONS(2266), + [sym__pandoc_lt_str] = ACTIONS(2266), + [sym__pandoc_line_break] = ACTIONS(2266), + [sym_grid_table] = ACTIONS(2266), + [sym__caption_start] = ACTIONS(2266), + }, + [STATE(175)] = { + [sym_list_marker_dot] = STATE(11), + [sym__list_item_dot] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(165), + [sym_entity_reference] = ACTIONS(2218), + [sym_numeric_character_reference] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_BANG_LBRACK] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2220), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [aux_sym_pandoc_str_token1] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(2218), + [sym__whitespace] = ACTIONS(2218), + [sym__line_ending] = ACTIONS(2218), + [sym__soft_line_ending] = ACTIONS(2218), + [sym__block_close] = ACTIONS(2218), + [sym__block_quote_start] = ACTIONS(2218), + [sym_atx_h1_marker] = ACTIONS(2218), + [sym_atx_h2_marker] = ACTIONS(2218), + [sym_atx_h3_marker] = ACTIONS(2218), + [sym_atx_h4_marker] = ACTIONS(2218), + [sym_atx_h5_marker] = ACTIONS(2218), + [sym_atx_h6_marker] = ACTIONS(2218), + [sym__thematic_break] = ACTIONS(2218), + [sym__list_marker_minus] = ACTIONS(2218), + [sym__list_marker_plus] = ACTIONS(2218), + [sym__list_marker_star] = ACTIONS(2218), + [sym__list_marker_parenthesis] = ACTIONS(2218), + [sym__list_marker_dot] = ACTIONS(51), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2218), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2218), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2218), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2218), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(51), + [sym__list_marker_example] = ACTIONS(2218), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2218), + [sym__fenced_code_block_start_backtick] = ACTIONS(2218), + [sym__minus_metadata_start] = ACTIONS(2218), + [sym__pipe_table_start] = ACTIONS(2218), + [sym__fenced_div_start] = ACTIONS(2218), + [sym_ref_id_specifier] = ACTIONS(2218), + [sym__code_span_start] = ACTIONS(2218), + [sym__html_comment] = ACTIONS(2218), + [sym__autolink] = ACTIONS(2218), + [sym__highlight_span_start] = ACTIONS(2218), + [sym__insert_span_start] = ACTIONS(2218), + [sym__delete_span_start] = ACTIONS(2218), + [sym__edit_comment_span_start] = ACTIONS(2218), + [sym__single_quote_span_open] = ACTIONS(2218), + [sym__double_quote_span_open] = ACTIONS(2218), + [sym__shortcode_open_escaped] = ACTIONS(2218), + [sym__shortcode_open] = ACTIONS(2218), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2218), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2218), + [sym__cite_author_in_text] = ACTIONS(2218), + [sym__cite_suppress_author] = ACTIONS(2218), + [sym__strikeout_open] = ACTIONS(2218), + [sym__subscript_open] = ACTIONS(2218), + [sym__superscript_open] = ACTIONS(2218), + [sym__inline_note_start_token] = ACTIONS(2218), + [sym__strong_emphasis_open_star] = ACTIONS(2218), + [sym__strong_emphasis_open_underscore] = ACTIONS(2218), + [sym__emphasis_open_star] = ACTIONS(2218), + [sym__emphasis_open_underscore] = ACTIONS(2218), + [sym_inline_note_reference] = ACTIONS(2218), + [sym_html_element] = ACTIONS(2218), + [sym__pandoc_lt_str] = ACTIONS(2218), + [sym__pandoc_line_break] = ACTIONS(2218), + [sym_grid_table] = ACTIONS(2218), + [sym__caption_start] = ACTIONS(2218), + }, + [STATE(176)] = { + [sym_list_marker_plus] = STATE(2), + [sym__list_item_plus] = STATE(169), + [aux_sym__list_plus_repeat1] = STATE(169), + [ts_builtin_sym_end] = ACTIONS(2206), + [sym_entity_reference] = ACTIONS(2206), + [sym_numeric_character_reference] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_BANG_LBRACK] = ACTIONS(2206), + [anon_sym_DOLLAR] = ACTIONS(2208), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2206), + [aux_sym_pandoc_str_token1] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2206), + [sym__whitespace] = ACTIONS(2206), + [sym__line_ending] = ACTIONS(2206), + [sym__soft_line_ending] = ACTIONS(2206), + [sym__block_quote_start] = ACTIONS(2206), + [sym_atx_h1_marker] = ACTIONS(2206), + [sym_atx_h2_marker] = ACTIONS(2206), + [sym_atx_h3_marker] = ACTIONS(2206), + [sym_atx_h4_marker] = ACTIONS(2206), + [sym_atx_h5_marker] = ACTIONS(2206), + [sym_atx_h6_marker] = ACTIONS(2206), + [sym__thematic_break] = ACTIONS(2206), + [sym__list_marker_minus] = ACTIONS(2206), + [sym__list_marker_plus] = ACTIONS(45), + [sym__list_marker_star] = ACTIONS(2206), + [sym__list_marker_parenthesis] = ACTIONS(2206), + [sym__list_marker_dot] = ACTIONS(2206), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2206), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(45), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2206), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2206), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2206), + [sym__list_marker_example] = ACTIONS(2206), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2206), + [sym__fenced_code_block_start_backtick] = ACTIONS(2206), + [sym__minus_metadata_start] = ACTIONS(2206), + [sym__pipe_table_start] = ACTIONS(2206), + [sym__fenced_div_start] = ACTIONS(2206), + [sym_ref_id_specifier] = ACTIONS(2206), + [sym__code_span_start] = ACTIONS(2206), + [sym__html_comment] = ACTIONS(2206), + [sym__autolink] = ACTIONS(2206), + [sym__highlight_span_start] = ACTIONS(2206), + [sym__insert_span_start] = ACTIONS(2206), + [sym__delete_span_start] = ACTIONS(2206), + [sym__edit_comment_span_start] = ACTIONS(2206), + [sym__single_quote_span_open] = ACTIONS(2206), + [sym__double_quote_span_open] = ACTIONS(2206), + [sym__shortcode_open_escaped] = ACTIONS(2206), + [sym__shortcode_open] = ACTIONS(2206), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2206), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2206), + [sym__cite_author_in_text] = ACTIONS(2206), + [sym__cite_suppress_author] = ACTIONS(2206), + [sym__strikeout_open] = ACTIONS(2206), + [sym__subscript_open] = ACTIONS(2206), + [sym__superscript_open] = ACTIONS(2206), + [sym__inline_note_start_token] = ACTIONS(2206), + [sym__strong_emphasis_open_star] = ACTIONS(2206), + [sym__strong_emphasis_open_underscore] = ACTIONS(2206), + [sym__emphasis_open_star] = ACTIONS(2206), + [sym__emphasis_open_underscore] = ACTIONS(2206), + [sym_inline_note_reference] = ACTIONS(2206), + [sym_html_element] = ACTIONS(2206), + [sym__pandoc_lt_str] = ACTIONS(2206), + [sym__pandoc_line_break] = ACTIONS(2206), + [sym_grid_table] = ACTIONS(2206), + [sym__caption_start] = ACTIONS(2206), + }, [STATE(177)] = { - [sym_list_marker_parenthesis] = STATE(4), - [sym__list_item_parenthesis] = STATE(169), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [ts_builtin_sym_end] = ACTIONS(2092), - [sym_entity_reference] = ACTIONS(2092), - [sym_numeric_character_reference] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_BANG_LBRACK] = ACTIONS(2092), - [anon_sym_DOLLAR] = ACTIONS(2094), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2092), - [aux_sym_pandoc_str_token1] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2092), - [sym__whitespace] = ACTIONS(2092), - [sym__line_ending] = ACTIONS(2092), - [sym__soft_line_ending] = ACTIONS(2092), - [sym__block_quote_start] = ACTIONS(2092), - [sym_atx_h1_marker] = ACTIONS(2092), - [sym_atx_h2_marker] = ACTIONS(2092), - [sym_atx_h3_marker] = ACTIONS(2092), - [sym_atx_h4_marker] = ACTIONS(2092), - [sym_atx_h5_marker] = ACTIONS(2092), - [sym_atx_h6_marker] = ACTIONS(2092), - [sym__thematic_break] = ACTIONS(2092), - [sym__list_marker_minus] = ACTIONS(2092), - [sym__list_marker_plus] = ACTIONS(2092), - [sym__list_marker_star] = ACTIONS(2092), - [sym__list_marker_parenthesis] = ACTIONS(49), - [sym__list_marker_dot] = ACTIONS(2092), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2092), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2092), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2092), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(49), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2092), - [sym__list_marker_example] = ACTIONS(2092), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2092), - [sym__fenced_code_block_start_backtick] = ACTIONS(2092), - [sym_minus_metadata] = ACTIONS(2092), - [sym__pipe_table_start] = ACTIONS(2092), - [sym__fenced_div_start] = ACTIONS(2092), - [sym_ref_id_specifier] = ACTIONS(2092), - [sym__code_span_start] = ACTIONS(2092), - [sym__html_comment] = ACTIONS(2092), - [sym__autolink] = ACTIONS(2092), - [sym__highlight_span_start] = ACTIONS(2092), - [sym__insert_span_start] = ACTIONS(2092), - [sym__delete_span_start] = ACTIONS(2092), - [sym__edit_comment_span_start] = ACTIONS(2092), - [sym__single_quote_span_open] = ACTIONS(2092), - [sym__double_quote_span_open] = ACTIONS(2092), - [sym__shortcode_open_escaped] = ACTIONS(2092), - [sym__shortcode_open] = ACTIONS(2092), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2092), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2092), - [sym__cite_author_in_text] = ACTIONS(2092), - [sym__cite_suppress_author] = ACTIONS(2092), - [sym__strikeout_open] = ACTIONS(2092), - [sym__subscript_open] = ACTIONS(2092), - [sym__superscript_open] = ACTIONS(2092), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2092), - [sym__strong_emphasis_open_underscore] = ACTIONS(2092), - [sym__emphasis_open_star] = ACTIONS(2092), - [sym__emphasis_open_underscore] = ACTIONS(2092), - [sym_inline_note_reference] = ACTIONS(2092), - [sym_html_element] = ACTIONS(2092), - [sym__pandoc_lt_str] = ACTIONS(2092), - [sym__pandoc_line_break] = ACTIONS(2092), - [sym_grid_table] = ACTIONS(2092), - [sym__caption_start] = ACTIONS(2092), + [sym_list_marker_minus] = STATE(7), + [sym__list_item_minus] = STATE(170), + [aux_sym__list_minus_repeat1] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(2210), + [sym_entity_reference] = ACTIONS(2210), + [sym_numeric_character_reference] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_BANG_LBRACK] = ACTIONS(2210), + [anon_sym_DOLLAR] = ACTIONS(2212), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2210), + [aux_sym_pandoc_str_token1] = ACTIONS(2212), + [anon_sym_PIPE] = ACTIONS(2210), + [sym__whitespace] = ACTIONS(2210), + [sym__line_ending] = ACTIONS(2210), + [sym__soft_line_ending] = ACTIONS(2210), + [sym__block_quote_start] = ACTIONS(2210), + [sym_atx_h1_marker] = ACTIONS(2210), + [sym_atx_h2_marker] = ACTIONS(2210), + [sym_atx_h3_marker] = ACTIONS(2210), + [sym_atx_h4_marker] = ACTIONS(2210), + [sym_atx_h5_marker] = ACTIONS(2210), + [sym_atx_h6_marker] = ACTIONS(2210), + [sym__thematic_break] = ACTIONS(2210), + [sym__list_marker_minus] = ACTIONS(43), + [sym__list_marker_plus] = ACTIONS(2210), + [sym__list_marker_star] = ACTIONS(2210), + [sym__list_marker_parenthesis] = ACTIONS(2210), + [sym__list_marker_dot] = ACTIONS(2210), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(43), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2210), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2210), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2210), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2210), + [sym__list_marker_example] = ACTIONS(2210), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2210), + [sym__fenced_code_block_start_backtick] = ACTIONS(2210), + [sym__minus_metadata_start] = ACTIONS(2210), + [sym__pipe_table_start] = ACTIONS(2210), + [sym__fenced_div_start] = ACTIONS(2210), + [sym_ref_id_specifier] = ACTIONS(2210), + [sym__code_span_start] = ACTIONS(2210), + [sym__html_comment] = ACTIONS(2210), + [sym__autolink] = ACTIONS(2210), + [sym__highlight_span_start] = ACTIONS(2210), + [sym__insert_span_start] = ACTIONS(2210), + [sym__delete_span_start] = ACTIONS(2210), + [sym__edit_comment_span_start] = ACTIONS(2210), + [sym__single_quote_span_open] = ACTIONS(2210), + [sym__double_quote_span_open] = ACTIONS(2210), + [sym__shortcode_open_escaped] = ACTIONS(2210), + [sym__shortcode_open] = ACTIONS(2210), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2210), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2210), + [sym__cite_author_in_text] = ACTIONS(2210), + [sym__cite_suppress_author] = ACTIONS(2210), + [sym__strikeout_open] = ACTIONS(2210), + [sym__subscript_open] = ACTIONS(2210), + [sym__superscript_open] = ACTIONS(2210), + [sym__inline_note_start_token] = ACTIONS(2210), + [sym__strong_emphasis_open_star] = ACTIONS(2210), + [sym__strong_emphasis_open_underscore] = ACTIONS(2210), + [sym__emphasis_open_star] = ACTIONS(2210), + [sym__emphasis_open_underscore] = ACTIONS(2210), + [sym_inline_note_reference] = ACTIONS(2210), + [sym_html_element] = ACTIONS(2210), + [sym__pandoc_lt_str] = ACTIONS(2210), + [sym__pandoc_line_break] = ACTIONS(2210), + [sym_grid_table] = ACTIONS(2210), + [sym__caption_start] = ACTIONS(2210), }, [STATE(178)] = { - [sym_entity_reference] = ACTIONS(2213), - [sym_numeric_character_reference] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_BANG_LBRACK] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2215), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [aux_sym_pandoc_str_token1] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2213), - [sym__whitespace] = ACTIONS(2213), - [sym__line_ending] = ACTIONS(2213), - [sym__soft_line_ending] = ACTIONS(2213), - [sym__block_close] = ACTIONS(2213), - [sym_block_continuation] = ACTIONS(2217), - [sym__block_quote_start] = ACTIONS(2213), - [sym_atx_h1_marker] = ACTIONS(2213), - [sym_atx_h2_marker] = ACTIONS(2213), - [sym_atx_h3_marker] = ACTIONS(2213), - [sym_atx_h4_marker] = ACTIONS(2213), - [sym_atx_h5_marker] = ACTIONS(2213), - [sym_atx_h6_marker] = ACTIONS(2213), - [sym__thematic_break] = ACTIONS(2213), - [sym__list_marker_minus] = ACTIONS(2213), - [sym__list_marker_plus] = ACTIONS(2213), - [sym__list_marker_star] = ACTIONS(2213), - [sym__list_marker_parenthesis] = ACTIONS(2213), - [sym__list_marker_dot] = ACTIONS(2213), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_example] = ACTIONS(2213), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2213), - [sym__fenced_code_block_start_backtick] = ACTIONS(2213), - [sym_minus_metadata] = ACTIONS(2213), - [sym__pipe_table_start] = ACTIONS(2213), - [sym__fenced_div_start] = ACTIONS(2213), - [sym__fenced_div_end] = ACTIONS(2213), - [sym_ref_id_specifier] = ACTIONS(2213), - [sym__code_span_start] = ACTIONS(2213), - [sym__html_comment] = ACTIONS(2213), - [sym__autolink] = ACTIONS(2213), - [sym__highlight_span_start] = ACTIONS(2213), - [sym__insert_span_start] = ACTIONS(2213), - [sym__delete_span_start] = ACTIONS(2213), - [sym__edit_comment_span_start] = ACTIONS(2213), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2213), - [sym__shortcode_open_escaped] = ACTIONS(2213), - [sym__shortcode_open] = ACTIONS(2213), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2213), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2213), - [sym__cite_author_in_text] = ACTIONS(2213), - [sym__cite_suppress_author] = ACTIONS(2213), - [sym__strikeout_open] = ACTIONS(2213), - [sym__subscript_open] = ACTIONS(2213), - [sym__superscript_open] = ACTIONS(2213), - [sym__inline_note_start_token] = ACTIONS(2213), - [sym__strong_emphasis_open_star] = ACTIONS(2213), - [sym__strong_emphasis_open_underscore] = ACTIONS(2213), - [sym__emphasis_open_star] = ACTIONS(2213), - [sym__emphasis_open_underscore] = ACTIONS(2213), - [sym_inline_note_reference] = ACTIONS(2213), - [sym_html_element] = ACTIONS(2213), - [sym__pandoc_lt_str] = ACTIONS(2213), - [sym__pandoc_line_break] = ACTIONS(2213), - [sym_grid_table] = ACTIONS(2213), - [sym__caption_start] = ACTIONS(2213), + [sym_entity_reference] = ACTIONS(2277), + [sym_numeric_character_reference] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_BANG_LBRACK] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2277), + [aux_sym_pandoc_str_token1] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2277), + [sym__whitespace] = ACTIONS(2277), + [sym__line_ending] = ACTIONS(2277), + [sym__soft_line_ending] = ACTIONS(2277), + [sym__block_close] = ACTIONS(2277), + [sym_block_continuation] = ACTIONS(2281), + [sym__block_quote_start] = ACTIONS(2277), + [sym_atx_h1_marker] = ACTIONS(2277), + [sym_atx_h2_marker] = ACTIONS(2277), + [sym_atx_h3_marker] = ACTIONS(2277), + [sym_atx_h4_marker] = ACTIONS(2277), + [sym_atx_h5_marker] = ACTIONS(2277), + [sym_atx_h6_marker] = ACTIONS(2277), + [sym__thematic_break] = ACTIONS(2277), + [sym__list_marker_minus] = ACTIONS(2277), + [sym__list_marker_plus] = ACTIONS(2277), + [sym__list_marker_star] = ACTIONS(2277), + [sym__list_marker_parenthesis] = ACTIONS(2277), + [sym__list_marker_dot] = ACTIONS(2277), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_example] = ACTIONS(2277), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2277), + [sym__fenced_code_block_start_backtick] = ACTIONS(2277), + [sym__minus_metadata_start] = ACTIONS(2277), + [sym__pipe_table_start] = ACTIONS(2277), + [sym__fenced_div_start] = ACTIONS(2277), + [sym__fenced_div_end] = ACTIONS(2277), + [sym_ref_id_specifier] = ACTIONS(2277), + [sym__code_span_start] = ACTIONS(2277), + [sym__html_comment] = ACTIONS(2277), + [sym__autolink] = ACTIONS(2277), + [sym__highlight_span_start] = ACTIONS(2277), + [sym__insert_span_start] = ACTIONS(2277), + [sym__delete_span_start] = ACTIONS(2277), + [sym__edit_comment_span_start] = ACTIONS(2277), + [sym__single_quote_span_open] = ACTIONS(2277), + [sym__double_quote_span_open] = ACTIONS(2277), + [sym__shortcode_open_escaped] = ACTIONS(2277), + [sym__shortcode_open] = ACTIONS(2277), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2277), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2277), + [sym__cite_author_in_text] = ACTIONS(2277), + [sym__cite_suppress_author] = ACTIONS(2277), + [sym__strikeout_open] = ACTIONS(2277), + [sym__subscript_open] = ACTIONS(2277), + [sym__superscript_open] = ACTIONS(2277), + [sym__inline_note_start_token] = ACTIONS(2277), + [sym__strong_emphasis_open_star] = ACTIONS(2277), + [sym__strong_emphasis_open_underscore] = ACTIONS(2277), + [sym__emphasis_open_star] = ACTIONS(2277), + [sym__emphasis_open_underscore] = ACTIONS(2277), + [sym_inline_note_reference] = ACTIONS(2277), + [sym_html_element] = ACTIONS(2277), + [sym__pandoc_lt_str] = ACTIONS(2277), + [sym__pandoc_line_break] = ACTIONS(2277), + [sym_grid_table] = ACTIONS(2277), + [sym__caption_start] = ACTIONS(2277), }, [STATE(179)] = { - [sym_entity_reference] = ACTIONS(2219), - [sym_numeric_character_reference] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_BANG_LBRACK] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [aux_sym_pandoc_str_token1] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [sym__whitespace] = ACTIONS(2219), - [sym__line_ending] = ACTIONS(2219), - [sym__soft_line_ending] = ACTIONS(2219), - [sym__block_close] = ACTIONS(2219), - [sym_block_continuation] = ACTIONS(2223), - [sym__block_quote_start] = ACTIONS(2219), - [sym_atx_h1_marker] = ACTIONS(2219), - [sym_atx_h2_marker] = ACTIONS(2219), - [sym_atx_h3_marker] = ACTIONS(2219), - [sym_atx_h4_marker] = ACTIONS(2219), - [sym_atx_h5_marker] = ACTIONS(2219), - [sym_atx_h6_marker] = ACTIONS(2219), - [sym__thematic_break] = ACTIONS(2219), - [sym__list_marker_minus] = ACTIONS(2219), - [sym__list_marker_plus] = ACTIONS(2219), - [sym__list_marker_star] = ACTIONS(2219), - [sym__list_marker_parenthesis] = ACTIONS(2219), - [sym__list_marker_dot] = ACTIONS(2219), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_example] = ACTIONS(2219), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2219), - [sym__fenced_code_block_start_backtick] = ACTIONS(2219), - [sym_minus_metadata] = ACTIONS(2219), - [sym__pipe_table_start] = ACTIONS(2219), - [sym__fenced_div_start] = ACTIONS(2219), - [sym__fenced_div_end] = ACTIONS(2219), - [sym_ref_id_specifier] = ACTIONS(2219), - [sym__code_span_start] = ACTIONS(2219), - [sym__html_comment] = ACTIONS(2219), - [sym__autolink] = ACTIONS(2219), - [sym__highlight_span_start] = ACTIONS(2219), - [sym__insert_span_start] = ACTIONS(2219), - [sym__delete_span_start] = ACTIONS(2219), - [sym__edit_comment_span_start] = ACTIONS(2219), - [sym__single_quote_span_open] = ACTIONS(2219), - [sym__double_quote_span_open] = ACTIONS(2219), - [sym__shortcode_open_escaped] = ACTIONS(2219), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2219), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2219), - [sym__cite_author_in_text] = ACTIONS(2219), - [sym__cite_suppress_author] = ACTIONS(2219), - [sym__strikeout_open] = ACTIONS(2219), - [sym__subscript_open] = ACTIONS(2219), - [sym__superscript_open] = ACTIONS(2219), - [sym__inline_note_start_token] = ACTIONS(2219), - [sym__strong_emphasis_open_star] = ACTIONS(2219), - [sym__strong_emphasis_open_underscore] = ACTIONS(2219), - [sym__emphasis_open_star] = ACTIONS(2219), - [sym__emphasis_open_underscore] = ACTIONS(2219), - [sym_inline_note_reference] = ACTIONS(2219), - [sym_html_element] = ACTIONS(2219), - [sym__pandoc_lt_str] = ACTIONS(2219), - [sym__pandoc_line_break] = ACTIONS(2219), - [sym_grid_table] = ACTIONS(2219), - [sym__caption_start] = ACTIONS(2219), + [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), + [sym__whitespace] = ACTIONS(2283), + [sym__line_ending] = ACTIONS(2283), + [sym__soft_line_ending] = ACTIONS(2283), + [sym__block_close] = ACTIONS(2283), + [sym_block_continuation] = ACTIONS(2287), + [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(2283), + [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(2283), + [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_start] = 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), + [sym__pandoc_lt_str] = ACTIONS(2283), + [sym__pandoc_line_break] = ACTIONS(2283), + [sym_grid_table] = ACTIONS(2283), + [sym__caption_start] = ACTIONS(2283), }, [STATE(180)] = { - [sym_entity_reference] = ACTIONS(2225), - [sym_numeric_character_reference] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_BANG_LBRACK] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [aux_sym_pandoc_str_token1] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2225), - [sym__whitespace] = ACTIONS(2225), - [sym__line_ending] = ACTIONS(2225), - [sym__soft_line_ending] = ACTIONS(2225), - [sym__block_close] = ACTIONS(2225), - [sym_block_continuation] = ACTIONS(2229), - [sym__block_quote_start] = ACTIONS(2225), - [sym_atx_h1_marker] = ACTIONS(2225), - [sym_atx_h2_marker] = ACTIONS(2225), - [sym_atx_h3_marker] = ACTIONS(2225), - [sym_atx_h4_marker] = ACTIONS(2225), - [sym_atx_h5_marker] = ACTIONS(2225), - [sym_atx_h6_marker] = ACTIONS(2225), - [sym__thematic_break] = ACTIONS(2225), - [sym__list_marker_minus] = ACTIONS(2225), - [sym__list_marker_plus] = ACTIONS(2225), - [sym__list_marker_star] = ACTIONS(2225), - [sym__list_marker_parenthesis] = ACTIONS(2225), - [sym__list_marker_dot] = ACTIONS(2225), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_example] = ACTIONS(2225), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2225), - [sym__fenced_code_block_start_backtick] = ACTIONS(2225), - [sym_minus_metadata] = ACTIONS(2225), - [sym__pipe_table_start] = ACTIONS(2225), - [sym__fenced_div_start] = ACTIONS(2225), - [sym__fenced_div_end] = ACTIONS(2225), - [sym_ref_id_specifier] = ACTIONS(2225), - [sym__code_span_start] = ACTIONS(2225), - [sym__html_comment] = ACTIONS(2225), - [sym__autolink] = ACTIONS(2225), - [sym__highlight_span_start] = ACTIONS(2225), - [sym__insert_span_start] = ACTIONS(2225), - [sym__delete_span_start] = ACTIONS(2225), - [sym__edit_comment_span_start] = ACTIONS(2225), - [sym__single_quote_span_open] = ACTIONS(2225), - [sym__double_quote_span_open] = ACTIONS(2225), - [sym__shortcode_open_escaped] = ACTIONS(2225), - [sym__shortcode_open] = ACTIONS(2225), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2225), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2225), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2225), - [sym__strikeout_open] = ACTIONS(2225), - [sym__subscript_open] = ACTIONS(2225), - [sym__superscript_open] = ACTIONS(2225), - [sym__inline_note_start_token] = ACTIONS(2225), - [sym__strong_emphasis_open_star] = ACTIONS(2225), - [sym__strong_emphasis_open_underscore] = ACTIONS(2225), - [sym__emphasis_open_star] = ACTIONS(2225), - [sym__emphasis_open_underscore] = ACTIONS(2225), - [sym_inline_note_reference] = ACTIONS(2225), - [sym_html_element] = ACTIONS(2225), - [sym__pandoc_lt_str] = ACTIONS(2225), - [sym__pandoc_line_break] = ACTIONS(2225), - [sym_grid_table] = ACTIONS(2225), - [sym__caption_start] = ACTIONS(2225), + [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), + [sym__whitespace] = ACTIONS(2289), + [sym__line_ending] = ACTIONS(2289), + [sym__soft_line_ending] = ACTIONS(2289), + [sym__block_close] = ACTIONS(2289), + [sym_block_continuation] = ACTIONS(2293), + [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(2289), + [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(2289), + [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_start] = 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_lt_str] = ACTIONS(2289), + [sym__pandoc_line_break] = ACTIONS(2289), + [sym_grid_table] = ACTIONS(2289), + [sym__caption_start] = ACTIONS(2289), }, [STATE(181)] = { - [sym_entity_reference] = ACTIONS(2231), - [sym_numeric_character_reference] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_BANG_LBRACK] = ACTIONS(2231), - [anon_sym_DOLLAR] = ACTIONS(2233), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [aux_sym_pandoc_str_token1] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2231), - [sym__whitespace] = ACTIONS(2231), - [sym__line_ending] = ACTIONS(2231), - [sym__soft_line_ending] = ACTIONS(2231), - [sym__block_close] = ACTIONS(2231), - [sym_block_continuation] = ACTIONS(2235), - [sym__block_quote_start] = ACTIONS(2231), - [sym_atx_h1_marker] = ACTIONS(2231), - [sym_atx_h2_marker] = ACTIONS(2231), - [sym_atx_h3_marker] = ACTIONS(2231), - [sym_atx_h4_marker] = ACTIONS(2231), - [sym_atx_h5_marker] = ACTIONS(2231), - [sym_atx_h6_marker] = ACTIONS(2231), - [sym__thematic_break] = ACTIONS(2231), - [sym__list_marker_minus] = ACTIONS(2231), - [sym__list_marker_plus] = ACTIONS(2231), - [sym__list_marker_star] = ACTIONS(2231), - [sym__list_marker_parenthesis] = ACTIONS(2231), - [sym__list_marker_dot] = ACTIONS(2231), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_example] = ACTIONS(2231), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2231), - [sym__fenced_code_block_start_backtick] = ACTIONS(2231), - [sym_minus_metadata] = ACTIONS(2231), - [sym__pipe_table_start] = ACTIONS(2231), - [sym__fenced_div_start] = ACTIONS(2231), - [sym__fenced_div_end] = ACTIONS(2231), - [sym_ref_id_specifier] = ACTIONS(2231), - [sym__code_span_start] = ACTIONS(2231), - [sym__html_comment] = ACTIONS(2231), - [sym__autolink] = ACTIONS(2231), - [sym__highlight_span_start] = ACTIONS(2231), - [sym__insert_span_start] = ACTIONS(2231), - [sym__delete_span_start] = ACTIONS(2231), - [sym__edit_comment_span_start] = ACTIONS(2231), - [sym__single_quote_span_open] = ACTIONS(2231), - [sym__double_quote_span_open] = ACTIONS(2231), - [sym__shortcode_open_escaped] = ACTIONS(2231), - [sym__shortcode_open] = ACTIONS(2231), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2231), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2231), - [sym__cite_author_in_text] = ACTIONS(2231), - [sym__cite_suppress_author] = ACTIONS(2231), - [sym__strikeout_open] = ACTIONS(2231), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2231), - [sym__inline_note_start_token] = ACTIONS(2231), - [sym__strong_emphasis_open_star] = ACTIONS(2231), - [sym__strong_emphasis_open_underscore] = ACTIONS(2231), - [sym__emphasis_open_star] = ACTIONS(2231), - [sym__emphasis_open_underscore] = ACTIONS(2231), - [sym_inline_note_reference] = ACTIONS(2231), - [sym_html_element] = ACTIONS(2231), - [sym__pandoc_lt_str] = ACTIONS(2231), - [sym__pandoc_line_break] = ACTIONS(2231), - [sym_grid_table] = ACTIONS(2231), - [sym__caption_start] = ACTIONS(2231), + [sym_entity_reference] = ACTIONS(2295), + [sym_numeric_character_reference] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_BANG_LBRACK] = ACTIONS(2295), + [anon_sym_DOLLAR] = ACTIONS(2297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [aux_sym_pandoc_str_token1] = ACTIONS(2297), + [anon_sym_PIPE] = ACTIONS(2295), + [sym__whitespace] = ACTIONS(2295), + [sym__line_ending] = ACTIONS(2295), + [sym__soft_line_ending] = ACTIONS(2295), + [sym__block_close] = ACTIONS(2295), + [sym_block_continuation] = ACTIONS(2299), + [sym__block_quote_start] = ACTIONS(2295), + [sym_atx_h1_marker] = ACTIONS(2295), + [sym_atx_h2_marker] = ACTIONS(2295), + [sym_atx_h3_marker] = ACTIONS(2295), + [sym_atx_h4_marker] = ACTIONS(2295), + [sym_atx_h5_marker] = ACTIONS(2295), + [sym_atx_h6_marker] = ACTIONS(2295), + [sym__thematic_break] = ACTIONS(2295), + [sym__list_marker_minus] = ACTIONS(2295), + [sym__list_marker_plus] = ACTIONS(2295), + [sym__list_marker_star] = ACTIONS(2295), + [sym__list_marker_parenthesis] = ACTIONS(2295), + [sym__list_marker_dot] = ACTIONS(2295), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_example] = ACTIONS(2295), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2295), + [sym__fenced_code_block_start_backtick] = ACTIONS(2295), + [sym__minus_metadata_start] = ACTIONS(2295), + [sym__pipe_table_start] = ACTIONS(2295), + [sym__fenced_div_start] = ACTIONS(2295), + [sym__fenced_div_end] = ACTIONS(2295), + [sym_ref_id_specifier] = ACTIONS(2295), + [sym__code_span_start] = ACTIONS(2295), + [sym__html_comment] = ACTIONS(2295), + [sym__autolink] = ACTIONS(2295), + [sym__highlight_span_start] = ACTIONS(2295), + [sym__insert_span_start] = ACTIONS(2295), + [sym__delete_span_start] = ACTIONS(2295), + [sym__edit_comment_span_start] = ACTIONS(2295), + [sym__single_quote_span_open] = ACTIONS(2295), + [sym__double_quote_span_open] = ACTIONS(2295), + [sym__shortcode_open_escaped] = ACTIONS(2295), + [sym__shortcode_open] = ACTIONS(2295), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2295), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2295), + [sym__cite_author_in_text] = ACTIONS(2295), + [sym__cite_suppress_author] = ACTIONS(2295), + [sym__strikeout_open] = ACTIONS(2295), + [sym__subscript_open] = ACTIONS(2295), + [sym__superscript_open] = ACTIONS(2295), + [sym__inline_note_start_token] = ACTIONS(2295), + [sym__strong_emphasis_open_star] = ACTIONS(2295), + [sym__strong_emphasis_open_underscore] = ACTIONS(2295), + [sym__emphasis_open_star] = ACTIONS(2295), + [sym__emphasis_open_underscore] = ACTIONS(2295), + [sym_inline_note_reference] = ACTIONS(2295), + [sym_html_element] = ACTIONS(2295), + [sym__pandoc_lt_str] = ACTIONS(2295), + [sym__pandoc_line_break] = ACTIONS(2295), + [sym_grid_table] = ACTIONS(2295), + [sym__caption_start] = ACTIONS(2295), }, [STATE(182)] = { - [sym_entity_reference] = ACTIONS(2237), - [sym_numeric_character_reference] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_BANG_LBRACK] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [aux_sym_pandoc_str_token1] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2237), - [sym__whitespace] = ACTIONS(2237), - [sym__line_ending] = ACTIONS(2237), - [sym__soft_line_ending] = ACTIONS(2237), - [sym__block_close] = ACTIONS(2237), - [sym_block_continuation] = ACTIONS(2241), - [sym__block_quote_start] = ACTIONS(2237), - [sym_atx_h1_marker] = ACTIONS(2237), - [sym_atx_h2_marker] = ACTIONS(2237), - [sym_atx_h3_marker] = ACTIONS(2237), - [sym_atx_h4_marker] = ACTIONS(2237), - [sym_atx_h5_marker] = ACTIONS(2237), - [sym_atx_h6_marker] = ACTIONS(2237), - [sym__thematic_break] = ACTIONS(2237), - [sym__list_marker_minus] = ACTIONS(2237), - [sym__list_marker_plus] = ACTIONS(2237), - [sym__list_marker_star] = ACTIONS(2237), - [sym__list_marker_parenthesis] = ACTIONS(2237), - [sym__list_marker_dot] = ACTIONS(2237), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_example] = ACTIONS(2237), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2237), - [sym__fenced_code_block_start_backtick] = ACTIONS(2237), - [sym_minus_metadata] = ACTIONS(2237), - [sym__pipe_table_start] = ACTIONS(2237), - [sym__fenced_div_start] = ACTIONS(2237), - [sym__fenced_div_end] = ACTIONS(2237), - [sym_ref_id_specifier] = ACTIONS(2237), - [sym__code_span_start] = ACTIONS(2237), - [sym__html_comment] = ACTIONS(2237), - [sym__autolink] = ACTIONS(2237), - [sym__highlight_span_start] = ACTIONS(2237), - [sym__insert_span_start] = ACTIONS(2237), - [sym__delete_span_start] = ACTIONS(2237), - [sym__edit_comment_span_start] = ACTIONS(2237), - [sym__single_quote_span_open] = ACTIONS(2237), - [sym__double_quote_span_open] = ACTIONS(2237), - [sym__shortcode_open_escaped] = ACTIONS(2237), - [sym__shortcode_open] = ACTIONS(2237), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2237), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), - [sym__cite_author_in_text] = ACTIONS(2237), - [sym__cite_suppress_author] = ACTIONS(2237), - [sym__strikeout_open] = ACTIONS(2237), - [sym__subscript_open] = ACTIONS(2237), - [sym__superscript_open] = ACTIONS(2237), - [sym__inline_note_start_token] = ACTIONS(2237), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2237), - [sym__emphasis_open_star] = ACTIONS(2237), - [sym__emphasis_open_underscore] = ACTIONS(2237), - [sym_inline_note_reference] = ACTIONS(2237), - [sym_html_element] = ACTIONS(2237), - [sym__pandoc_lt_str] = ACTIONS(2237), - [sym__pandoc_line_break] = ACTIONS(2237), - [sym_grid_table] = ACTIONS(2237), - [sym__caption_start] = ACTIONS(2237), + [sym_entity_reference] = ACTIONS(2301), + [sym_numeric_character_reference] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_BANG_LBRACK] = ACTIONS(2301), + [anon_sym_DOLLAR] = ACTIONS(2303), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2301), + [aux_sym_pandoc_str_token1] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2301), + [sym__whitespace] = ACTIONS(2301), + [sym__line_ending] = ACTIONS(2301), + [sym__soft_line_ending] = ACTIONS(2301), + [sym__block_close] = ACTIONS(2301), + [sym_block_continuation] = ACTIONS(2305), + [sym__block_quote_start] = ACTIONS(2301), + [sym_atx_h1_marker] = ACTIONS(2301), + [sym_atx_h2_marker] = ACTIONS(2301), + [sym_atx_h3_marker] = ACTIONS(2301), + [sym_atx_h4_marker] = ACTIONS(2301), + [sym_atx_h5_marker] = ACTIONS(2301), + [sym_atx_h6_marker] = ACTIONS(2301), + [sym__thematic_break] = ACTIONS(2301), + [sym__list_marker_minus] = ACTIONS(2301), + [sym__list_marker_plus] = ACTIONS(2301), + [sym__list_marker_star] = ACTIONS(2301), + [sym__list_marker_parenthesis] = ACTIONS(2301), + [sym__list_marker_dot] = ACTIONS(2301), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_example] = ACTIONS(2301), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2301), + [sym__fenced_code_block_start_backtick] = ACTIONS(2301), + [sym__minus_metadata_start] = ACTIONS(2301), + [sym__pipe_table_start] = ACTIONS(2301), + [sym__fenced_div_start] = ACTIONS(2301), + [sym__fenced_div_end] = ACTIONS(2301), + [sym_ref_id_specifier] = ACTIONS(2301), + [sym__code_span_start] = ACTIONS(2301), + [sym__html_comment] = ACTIONS(2301), + [sym__autolink] = ACTIONS(2301), + [sym__highlight_span_start] = ACTIONS(2301), + [sym__insert_span_start] = ACTIONS(2301), + [sym__delete_span_start] = ACTIONS(2301), + [sym__edit_comment_span_start] = ACTIONS(2301), + [sym__single_quote_span_open] = ACTIONS(2301), + [sym__double_quote_span_open] = ACTIONS(2301), + [sym__shortcode_open_escaped] = ACTIONS(2301), + [sym__shortcode_open] = ACTIONS(2301), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2301), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2301), + [sym__cite_author_in_text] = ACTIONS(2301), + [sym__cite_suppress_author] = ACTIONS(2301), + [sym__strikeout_open] = ACTIONS(2301), + [sym__subscript_open] = ACTIONS(2301), + [sym__superscript_open] = ACTIONS(2301), + [sym__inline_note_start_token] = ACTIONS(2301), + [sym__strong_emphasis_open_star] = ACTIONS(2301), + [sym__strong_emphasis_open_underscore] = ACTIONS(2301), + [sym__emphasis_open_star] = ACTIONS(2301), + [sym__emphasis_open_underscore] = ACTIONS(2301), + [sym_inline_note_reference] = ACTIONS(2301), + [sym_html_element] = ACTIONS(2301), + [sym__pandoc_lt_str] = ACTIONS(2301), + [sym__pandoc_line_break] = ACTIONS(2301), + [sym_grid_table] = ACTIONS(2301), + [sym__caption_start] = ACTIONS(2301), }, [STATE(183)] = { - [sym_entity_reference] = ACTIONS(2243), - [sym_numeric_character_reference] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_BANG_LBRACK] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [aux_sym_pandoc_str_token1] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2243), - [sym__whitespace] = ACTIONS(2243), - [sym__line_ending] = ACTIONS(2243), - [sym__soft_line_ending] = ACTIONS(2243), - [sym__block_close] = ACTIONS(2243), - [sym_block_continuation] = ACTIONS(2247), - [sym__block_quote_start] = ACTIONS(2243), - [sym_atx_h1_marker] = ACTIONS(2243), - [sym_atx_h2_marker] = ACTIONS(2243), - [sym_atx_h3_marker] = ACTIONS(2243), - [sym_atx_h4_marker] = ACTIONS(2243), - [sym_atx_h5_marker] = ACTIONS(2243), - [sym_atx_h6_marker] = ACTIONS(2243), - [sym__thematic_break] = ACTIONS(2243), - [sym__list_marker_minus] = ACTIONS(2243), - [sym__list_marker_plus] = ACTIONS(2243), - [sym__list_marker_star] = ACTIONS(2243), - [sym__list_marker_parenthesis] = ACTIONS(2243), - [sym__list_marker_dot] = ACTIONS(2243), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_example] = ACTIONS(2243), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2243), - [sym__fenced_code_block_start_backtick] = ACTIONS(2243), - [sym_minus_metadata] = ACTIONS(2243), - [sym__pipe_table_start] = ACTIONS(2243), - [sym__fenced_div_start] = ACTIONS(2243), - [sym__fenced_div_end] = ACTIONS(2243), - [sym_ref_id_specifier] = ACTIONS(2243), - [sym__code_span_start] = ACTIONS(2243), - [sym__html_comment] = ACTIONS(2243), - [sym__autolink] = ACTIONS(2243), - [sym__highlight_span_start] = ACTIONS(2243), - [sym__insert_span_start] = ACTIONS(2243), - [sym__delete_span_start] = ACTIONS(2243), - [sym__edit_comment_span_start] = ACTIONS(2243), - [sym__single_quote_span_open] = ACTIONS(2243), - [sym__double_quote_span_open] = ACTIONS(2243), - [sym__shortcode_open_escaped] = ACTIONS(2243), - [sym__shortcode_open] = ACTIONS(2243), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2243), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2243), - [sym__cite_author_in_text] = ACTIONS(2243), - [sym__cite_suppress_author] = ACTIONS(2243), - [sym__strikeout_open] = ACTIONS(2243), - [sym__subscript_open] = ACTIONS(2243), - [sym__superscript_open] = ACTIONS(2243), - [sym__inline_note_start_token] = ACTIONS(2243), - [sym__strong_emphasis_open_star] = ACTIONS(2243), - [sym__strong_emphasis_open_underscore] = ACTIONS(2243), - [sym__emphasis_open_star] = ACTIONS(2243), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2243), - [sym_html_element] = ACTIONS(2243), - [sym__pandoc_lt_str] = ACTIONS(2243), - [sym__pandoc_line_break] = ACTIONS(2243), - [sym_grid_table] = ACTIONS(2243), - [sym__caption_start] = ACTIONS(2243), + [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), + [sym__whitespace] = ACTIONS(2307), + [sym__line_ending] = ACTIONS(2307), + [sym__soft_line_ending] = ACTIONS(2307), + [sym__block_close] = ACTIONS(2307), + [sym_block_continuation] = ACTIONS(2311), + [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(2307), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2307), + [sym__fenced_code_block_start_backtick] = ACTIONS(2307), + [sym__minus_metadata_start] = 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_lt_str] = ACTIONS(2307), + [sym__pandoc_line_break] = ACTIONS(2307), + [sym_grid_table] = ACTIONS(2307), + [sym__caption_start] = ACTIONS(2307), }, [STATE(184)] = { - [sym_entity_reference] = ACTIONS(2249), - [sym_numeric_character_reference] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_BANG_LBRACK] = ACTIONS(2249), - [anon_sym_DOLLAR] = ACTIONS(2251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [aux_sym_pandoc_str_token1] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2249), - [sym__whitespace] = ACTIONS(2249), - [sym__line_ending] = ACTIONS(2249), - [sym__soft_line_ending] = ACTIONS(2249), - [sym__block_close] = ACTIONS(2249), - [sym_block_continuation] = ACTIONS(2253), - [sym__block_quote_start] = ACTIONS(2249), - [sym_atx_h1_marker] = ACTIONS(2249), - [sym_atx_h2_marker] = ACTIONS(2249), - [sym_atx_h3_marker] = ACTIONS(2249), - [sym_atx_h4_marker] = ACTIONS(2249), - [sym_atx_h5_marker] = ACTIONS(2249), - [sym_atx_h6_marker] = ACTIONS(2249), - [sym__thematic_break] = ACTIONS(2249), - [sym__list_marker_minus] = ACTIONS(2249), - [sym__list_marker_plus] = ACTIONS(2249), - [sym__list_marker_star] = ACTIONS(2249), - [sym__list_marker_parenthesis] = ACTIONS(2249), - [sym__list_marker_dot] = ACTIONS(2249), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_example] = ACTIONS(2249), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2249), - [sym__fenced_code_block_start_backtick] = ACTIONS(2249), - [sym_minus_metadata] = ACTIONS(2249), - [sym__pipe_table_start] = ACTIONS(2249), - [sym__fenced_div_start] = ACTIONS(2249), - [sym__fenced_div_end] = ACTIONS(2249), - [sym_ref_id_specifier] = ACTIONS(2249), - [sym__code_span_start] = ACTIONS(2249), - [sym__html_comment] = ACTIONS(2249), - [sym__autolink] = ACTIONS(2249), - [sym__highlight_span_start] = ACTIONS(2249), - [sym__insert_span_start] = ACTIONS(2249), - [sym__delete_span_start] = ACTIONS(2249), - [sym__edit_comment_span_start] = ACTIONS(2249), - [sym__single_quote_span_open] = ACTIONS(2249), - [sym__double_quote_span_open] = ACTIONS(2249), - [sym__shortcode_open_escaped] = ACTIONS(2249), - [sym__shortcode_open] = ACTIONS(2249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2249), - [sym__cite_author_in_text] = ACTIONS(2249), - [sym__cite_suppress_author] = ACTIONS(2249), - [sym__strikeout_open] = ACTIONS(2249), - [sym__subscript_open] = ACTIONS(2249), - [sym__superscript_open] = ACTIONS(2249), - [sym__inline_note_start_token] = ACTIONS(2249), - [sym__strong_emphasis_open_star] = ACTIONS(2249), - [sym__strong_emphasis_open_underscore] = ACTIONS(2249), - [sym__emphasis_open_star] = ACTIONS(2249), - [sym__emphasis_open_underscore] = ACTIONS(2249), - [sym_inline_note_reference] = ACTIONS(2249), - [sym_html_element] = ACTIONS(2249), - [sym__pandoc_lt_str] = ACTIONS(2249), - [sym__pandoc_line_break] = ACTIONS(2249), - [sym_grid_table] = ACTIONS(2249), - [sym__caption_start] = ACTIONS(2249), + [sym_entity_reference] = ACTIONS(2313), + [sym_numeric_character_reference] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_BANG_LBRACK] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2313), + [aux_sym_pandoc_str_token1] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2313), + [sym__whitespace] = ACTIONS(2313), + [sym__line_ending] = ACTIONS(2313), + [sym__soft_line_ending] = ACTIONS(2313), + [sym__block_close] = ACTIONS(2313), + [sym_block_continuation] = ACTIONS(2317), + [sym__block_quote_start] = ACTIONS(2313), + [sym_atx_h1_marker] = ACTIONS(2313), + [sym_atx_h2_marker] = ACTIONS(2313), + [sym_atx_h3_marker] = ACTIONS(2313), + [sym_atx_h4_marker] = ACTIONS(2313), + [sym_atx_h5_marker] = ACTIONS(2313), + [sym_atx_h6_marker] = ACTIONS(2313), + [sym__thematic_break] = ACTIONS(2313), + [sym__list_marker_minus] = ACTIONS(2313), + [sym__list_marker_plus] = ACTIONS(2313), + [sym__list_marker_star] = ACTIONS(2313), + [sym__list_marker_parenthesis] = ACTIONS(2313), + [sym__list_marker_dot] = ACTIONS(2313), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_example] = ACTIONS(2313), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2313), + [sym__fenced_code_block_start_backtick] = ACTIONS(2313), + [sym__minus_metadata_start] = ACTIONS(2313), + [sym__pipe_table_start] = ACTIONS(2313), + [sym__fenced_div_start] = ACTIONS(2313), + [sym__fenced_div_end] = ACTIONS(2313), + [sym_ref_id_specifier] = ACTIONS(2313), + [sym__code_span_start] = ACTIONS(2313), + [sym__html_comment] = ACTIONS(2313), + [sym__autolink] = ACTIONS(2313), + [sym__highlight_span_start] = ACTIONS(2313), + [sym__insert_span_start] = ACTIONS(2313), + [sym__delete_span_start] = ACTIONS(2313), + [sym__edit_comment_span_start] = ACTIONS(2313), + [sym__single_quote_span_open] = ACTIONS(2313), + [sym__double_quote_span_open] = ACTIONS(2313), + [sym__shortcode_open_escaped] = ACTIONS(2313), + [sym__shortcode_open] = ACTIONS(2313), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2313), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2313), + [sym__cite_author_in_text] = ACTIONS(2313), + [sym__cite_suppress_author] = ACTIONS(2313), + [sym__strikeout_open] = ACTIONS(2313), + [sym__subscript_open] = ACTIONS(2313), + [sym__superscript_open] = ACTIONS(2313), + [sym__inline_note_start_token] = ACTIONS(2313), + [sym__strong_emphasis_open_star] = ACTIONS(2313), + [sym__strong_emphasis_open_underscore] = ACTIONS(2313), + [sym__emphasis_open_star] = ACTIONS(2313), + [sym__emphasis_open_underscore] = ACTIONS(2313), + [sym_inline_note_reference] = ACTIONS(2313), + [sym_html_element] = ACTIONS(2313), + [sym__pandoc_lt_str] = ACTIONS(2313), + [sym__pandoc_line_break] = ACTIONS(2313), + [sym_grid_table] = ACTIONS(2313), + [sym__caption_start] = ACTIONS(2313), }, [STATE(185)] = { - [sym_entity_reference] = ACTIONS(2255), - [sym_numeric_character_reference] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_BANG_LBRACK] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2257), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [aux_sym_pandoc_str_token1] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2255), - [sym__whitespace] = ACTIONS(2255), - [sym__line_ending] = ACTIONS(2255), - [sym__soft_line_ending] = ACTIONS(2255), - [sym__block_close] = ACTIONS(2255), - [sym_block_continuation] = ACTIONS(2259), - [sym__block_quote_start] = ACTIONS(2255), - [sym_atx_h1_marker] = ACTIONS(2255), - [sym_atx_h2_marker] = ACTIONS(2255), - [sym_atx_h3_marker] = ACTIONS(2255), - [sym_atx_h4_marker] = ACTIONS(2255), - [sym_atx_h5_marker] = ACTIONS(2255), - [sym_atx_h6_marker] = ACTIONS(2255), - [sym__thematic_break] = ACTIONS(2255), - [sym__list_marker_minus] = ACTIONS(2255), - [sym__list_marker_plus] = ACTIONS(2255), - [sym__list_marker_star] = ACTIONS(2255), - [sym__list_marker_parenthesis] = ACTIONS(2255), - [sym__list_marker_dot] = ACTIONS(2255), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_example] = ACTIONS(2255), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2255), - [sym__fenced_code_block_start_backtick] = ACTIONS(2255), - [sym_minus_metadata] = ACTIONS(2255), - [sym__pipe_table_start] = ACTIONS(2255), - [sym__fenced_div_start] = ACTIONS(2255), - [sym__fenced_div_end] = ACTIONS(2255), - [sym_ref_id_specifier] = ACTIONS(2255), - [sym__code_span_start] = ACTIONS(2255), - [sym__html_comment] = ACTIONS(2255), - [sym__autolink] = ACTIONS(2255), - [sym__highlight_span_start] = ACTIONS(2255), - [sym__insert_span_start] = ACTIONS(2255), - [sym__delete_span_start] = ACTIONS(2255), - [sym__edit_comment_span_start] = ACTIONS(2255), - [sym__single_quote_span_open] = ACTIONS(2255), - [sym__double_quote_span_open] = ACTIONS(2255), - [sym__shortcode_open_escaped] = ACTIONS(2255), - [sym__shortcode_open] = ACTIONS(2255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2255), - [sym__cite_author_in_text] = ACTIONS(2255), - [sym__cite_suppress_author] = ACTIONS(2255), - [sym__strikeout_open] = ACTIONS(2255), - [sym__subscript_open] = ACTIONS(2255), - [sym__superscript_open] = ACTIONS(2255), - [sym__inline_note_start_token] = ACTIONS(2255), - [sym__strong_emphasis_open_star] = ACTIONS(2255), - [sym__strong_emphasis_open_underscore] = ACTIONS(2255), - [sym__emphasis_open_star] = ACTIONS(2255), - [sym__emphasis_open_underscore] = ACTIONS(2255), - [sym_inline_note_reference] = ACTIONS(2255), - [sym_html_element] = ACTIONS(2255), - [sym__pandoc_lt_str] = ACTIONS(2255), - [sym__pandoc_line_break] = ACTIONS(2255), - [sym_grid_table] = ACTIONS(2255), - [sym__caption_start] = ACTIONS(2255), + [sym_entity_reference] = ACTIONS(2319), + [sym_numeric_character_reference] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_BANG_LBRACK] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [aux_sym_pandoc_str_token1] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(2319), + [sym__whitespace] = ACTIONS(2319), + [sym__line_ending] = ACTIONS(2319), + [sym__soft_line_ending] = ACTIONS(2319), + [sym__block_close] = ACTIONS(2319), + [sym_block_continuation] = ACTIONS(2323), + [sym__block_quote_start] = ACTIONS(2319), + [sym_atx_h1_marker] = ACTIONS(2319), + [sym_atx_h2_marker] = ACTIONS(2319), + [sym_atx_h3_marker] = ACTIONS(2319), + [sym_atx_h4_marker] = ACTIONS(2319), + [sym_atx_h5_marker] = ACTIONS(2319), + [sym_atx_h6_marker] = ACTIONS(2319), + [sym__thematic_break] = ACTIONS(2319), + [sym__list_marker_minus] = ACTIONS(2319), + [sym__list_marker_plus] = ACTIONS(2319), + [sym__list_marker_star] = ACTIONS(2319), + [sym__list_marker_parenthesis] = ACTIONS(2319), + [sym__list_marker_dot] = ACTIONS(2319), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_example] = ACTIONS(2319), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2319), + [sym__fenced_code_block_start_backtick] = ACTIONS(2319), + [sym__minus_metadata_start] = ACTIONS(2319), + [sym__pipe_table_start] = ACTIONS(2319), + [sym__fenced_div_start] = ACTIONS(2319), + [sym__fenced_div_end] = ACTIONS(2319), + [sym_ref_id_specifier] = ACTIONS(2319), + [sym__code_span_start] = ACTIONS(2319), + [sym__html_comment] = ACTIONS(2319), + [sym__autolink] = ACTIONS(2319), + [sym__highlight_span_start] = ACTIONS(2319), + [sym__insert_span_start] = ACTIONS(2319), + [sym__delete_span_start] = ACTIONS(2319), + [sym__edit_comment_span_start] = ACTIONS(2319), + [sym__single_quote_span_open] = ACTIONS(2319), + [sym__double_quote_span_open] = ACTIONS(2319), + [sym__shortcode_open_escaped] = ACTIONS(2319), + [sym__shortcode_open] = ACTIONS(2319), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2319), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2319), + [sym__cite_author_in_text] = ACTIONS(2319), + [sym__cite_suppress_author] = ACTIONS(2319), + [sym__strikeout_open] = ACTIONS(2319), + [sym__subscript_open] = ACTIONS(2319), + [sym__superscript_open] = ACTIONS(2319), + [sym__inline_note_start_token] = ACTIONS(2319), + [sym__strong_emphasis_open_star] = ACTIONS(2319), + [sym__strong_emphasis_open_underscore] = ACTIONS(2319), + [sym__emphasis_open_star] = ACTIONS(2319), + [sym__emphasis_open_underscore] = ACTIONS(2319), + [sym_inline_note_reference] = ACTIONS(2319), + [sym_html_element] = ACTIONS(2319), + [sym__pandoc_lt_str] = ACTIONS(2319), + [sym__pandoc_line_break] = ACTIONS(2319), + [sym_grid_table] = ACTIONS(2319), + [sym__caption_start] = ACTIONS(2319), }, [STATE(186)] = { - [sym_entity_reference] = ACTIONS(2261), - [sym_numeric_character_reference] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2261), - [anon_sym_BANG_LBRACK] = ACTIONS(2261), - [anon_sym_DOLLAR] = ACTIONS(2263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2261), - [aux_sym_pandoc_str_token1] = ACTIONS(2263), - [anon_sym_PIPE] = ACTIONS(2261), - [sym__whitespace] = ACTIONS(2261), - [sym__line_ending] = ACTIONS(2261), - [sym__soft_line_ending] = ACTIONS(2261), - [sym__block_close] = ACTIONS(2261), - [sym_block_continuation] = ACTIONS(2265), - [sym__block_quote_start] = ACTIONS(2261), - [sym_atx_h1_marker] = ACTIONS(2261), - [sym_atx_h2_marker] = ACTIONS(2261), - [sym_atx_h3_marker] = ACTIONS(2261), - [sym_atx_h4_marker] = ACTIONS(2261), - [sym_atx_h5_marker] = ACTIONS(2261), - [sym_atx_h6_marker] = ACTIONS(2261), - [sym__thematic_break] = ACTIONS(2261), - [sym__list_marker_minus] = ACTIONS(2261), - [sym__list_marker_plus] = ACTIONS(2261), - [sym__list_marker_star] = ACTIONS(2261), - [sym__list_marker_parenthesis] = ACTIONS(2261), - [sym__list_marker_dot] = ACTIONS(2261), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_example] = ACTIONS(2261), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2261), - [sym__fenced_code_block_start_backtick] = ACTIONS(2261), - [sym_minus_metadata] = ACTIONS(2261), - [sym__pipe_table_start] = ACTIONS(2261), - [sym__fenced_div_start] = ACTIONS(2261), - [sym__fenced_div_end] = ACTIONS(2261), - [sym_ref_id_specifier] = ACTIONS(2261), - [sym__code_span_start] = ACTIONS(2261), - [sym__html_comment] = ACTIONS(2261), - [sym__autolink] = ACTIONS(2261), - [sym__highlight_span_start] = ACTIONS(2261), - [sym__insert_span_start] = ACTIONS(2261), - [sym__delete_span_start] = ACTIONS(2261), - [sym__edit_comment_span_start] = ACTIONS(2261), - [sym__single_quote_span_open] = ACTIONS(2261), - [sym__double_quote_span_open] = ACTIONS(2261), - [sym__shortcode_open_escaped] = ACTIONS(2261), - [sym__shortcode_open] = ACTIONS(2261), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2261), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2261), - [sym__cite_author_in_text] = ACTIONS(2261), - [sym__cite_suppress_author] = ACTIONS(2261), - [sym__strikeout_open] = ACTIONS(2261), - [sym__subscript_open] = ACTIONS(2261), - [sym__superscript_open] = ACTIONS(2261), - [sym__inline_note_start_token] = ACTIONS(2261), - [sym__strong_emphasis_open_star] = ACTIONS(2261), - [sym__strong_emphasis_open_underscore] = ACTIONS(2261), - [sym__emphasis_open_star] = ACTIONS(2261), - [sym__emphasis_open_underscore] = ACTIONS(2261), - [sym_inline_note_reference] = ACTIONS(2261), - [sym_html_element] = ACTIONS(2261), - [sym__pandoc_lt_str] = ACTIONS(2261), - [sym__pandoc_line_break] = ACTIONS(2261), - [sym_grid_table] = ACTIONS(2261), - [sym__caption_start] = ACTIONS(2261), + [sym_entity_reference] = ACTIONS(2325), + [sym_numeric_character_reference] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_BANG_LBRACK] = ACTIONS(2325), + [anon_sym_DOLLAR] = ACTIONS(2327), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2325), + [aux_sym_pandoc_str_token1] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2325), + [sym__whitespace] = ACTIONS(2325), + [sym__line_ending] = ACTIONS(2325), + [sym__soft_line_ending] = ACTIONS(2325), + [sym__block_close] = ACTIONS(2325), + [sym_block_continuation] = ACTIONS(2329), + [sym__block_quote_start] = ACTIONS(2325), + [sym_atx_h1_marker] = ACTIONS(2325), + [sym_atx_h2_marker] = ACTIONS(2325), + [sym_atx_h3_marker] = ACTIONS(2325), + [sym_atx_h4_marker] = ACTIONS(2325), + [sym_atx_h5_marker] = ACTIONS(2325), + [sym_atx_h6_marker] = ACTIONS(2325), + [sym__thematic_break] = ACTIONS(2325), + [sym__list_marker_minus] = ACTIONS(2325), + [sym__list_marker_plus] = ACTIONS(2325), + [sym__list_marker_star] = ACTIONS(2325), + [sym__list_marker_parenthesis] = ACTIONS(2325), + [sym__list_marker_dot] = ACTIONS(2325), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_example] = ACTIONS(2325), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2325), + [sym__fenced_code_block_start_backtick] = ACTIONS(2325), + [sym__minus_metadata_start] = ACTIONS(2325), + [sym__pipe_table_start] = ACTIONS(2325), + [sym__fenced_div_start] = ACTIONS(2325), + [sym__fenced_div_end] = ACTIONS(2325), + [sym_ref_id_specifier] = ACTIONS(2325), + [sym__code_span_start] = ACTIONS(2325), + [sym__html_comment] = ACTIONS(2325), + [sym__autolink] = ACTIONS(2325), + [sym__highlight_span_start] = ACTIONS(2325), + [sym__insert_span_start] = ACTIONS(2325), + [sym__delete_span_start] = ACTIONS(2325), + [sym__edit_comment_span_start] = ACTIONS(2325), + [sym__single_quote_span_open] = ACTIONS(2325), + [sym__double_quote_span_open] = ACTIONS(2325), + [sym__shortcode_open_escaped] = ACTIONS(2325), + [sym__shortcode_open] = ACTIONS(2325), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2325), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2325), + [sym__cite_author_in_text] = ACTIONS(2325), + [sym__cite_suppress_author] = ACTIONS(2325), + [sym__strikeout_open] = ACTIONS(2325), + [sym__subscript_open] = ACTIONS(2325), + [sym__superscript_open] = ACTIONS(2325), + [sym__inline_note_start_token] = ACTIONS(2325), + [sym__strong_emphasis_open_star] = ACTIONS(2325), + [sym__strong_emphasis_open_underscore] = ACTIONS(2325), + [sym__emphasis_open_star] = ACTIONS(2325), + [sym__emphasis_open_underscore] = ACTIONS(2325), + [sym_inline_note_reference] = ACTIONS(2325), + [sym_html_element] = ACTIONS(2325), + [sym__pandoc_lt_str] = ACTIONS(2325), + [sym__pandoc_line_break] = ACTIONS(2325), + [sym_grid_table] = ACTIONS(2325), + [sym__caption_start] = ACTIONS(2325), }, [STATE(187)] = { - [sym_entity_reference] = ACTIONS(2267), - [sym_numeric_character_reference] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_BANG_LBRACK] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [aux_sym_pandoc_str_token1] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2267), - [sym__whitespace] = ACTIONS(2267), - [sym__line_ending] = ACTIONS(2267), - [sym__soft_line_ending] = ACTIONS(2267), - [sym__block_close] = ACTIONS(2267), - [sym_block_continuation] = ACTIONS(2271), - [sym__block_quote_start] = ACTIONS(2267), - [sym_atx_h1_marker] = ACTIONS(2267), - [sym_atx_h2_marker] = ACTIONS(2267), - [sym_atx_h3_marker] = ACTIONS(2267), - [sym_atx_h4_marker] = ACTIONS(2267), - [sym_atx_h5_marker] = ACTIONS(2267), - [sym_atx_h6_marker] = ACTIONS(2267), - [sym__thematic_break] = ACTIONS(2267), - [sym__list_marker_minus] = ACTIONS(2267), - [sym__list_marker_plus] = ACTIONS(2267), - [sym__list_marker_star] = ACTIONS(2267), - [sym__list_marker_parenthesis] = ACTIONS(2267), - [sym__list_marker_dot] = ACTIONS(2267), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_example] = ACTIONS(2267), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2267), - [sym__fenced_code_block_start_backtick] = ACTIONS(2267), - [sym_minus_metadata] = ACTIONS(2267), - [sym__pipe_table_start] = ACTIONS(2267), - [sym__fenced_div_start] = ACTIONS(2267), - [sym__fenced_div_end] = ACTIONS(2267), - [sym_ref_id_specifier] = ACTIONS(2267), - [sym__code_span_start] = ACTIONS(2267), - [sym__html_comment] = ACTIONS(2267), - [sym__autolink] = ACTIONS(2267), - [sym__highlight_span_start] = ACTIONS(2267), - [sym__insert_span_start] = ACTIONS(2267), - [sym__delete_span_start] = ACTIONS(2267), - [sym__edit_comment_span_start] = ACTIONS(2267), - [sym__single_quote_span_open] = ACTIONS(2267), - [sym__double_quote_span_open] = ACTIONS(2267), - [sym__shortcode_open_escaped] = ACTIONS(2267), - [sym__shortcode_open] = ACTIONS(2267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2267), - [sym__cite_author_in_text] = ACTIONS(2267), - [sym__cite_suppress_author] = ACTIONS(2267), - [sym__strikeout_open] = ACTIONS(2267), - [sym__subscript_open] = ACTIONS(2267), - [sym__superscript_open] = ACTIONS(2267), - [sym__inline_note_start_token] = ACTIONS(2267), - [sym__strong_emphasis_open_star] = ACTIONS(2267), - [sym__strong_emphasis_open_underscore] = ACTIONS(2267), - [sym__emphasis_open_star] = ACTIONS(2267), - [sym__emphasis_open_underscore] = ACTIONS(2267), - [sym_inline_note_reference] = ACTIONS(2267), - [sym_html_element] = ACTIONS(2267), - [sym__pandoc_lt_str] = ACTIONS(2267), - [sym__pandoc_line_break] = ACTIONS(2267), - [sym_grid_table] = ACTIONS(2267), - [sym__caption_start] = ACTIONS(2267), + [sym_entity_reference] = ACTIONS(2331), + [sym_numeric_character_reference] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2331), + [anon_sym_BANG_LBRACK] = ACTIONS(2331), + [anon_sym_DOLLAR] = ACTIONS(2333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [aux_sym_pandoc_str_token1] = ACTIONS(2333), + [anon_sym_PIPE] = ACTIONS(2331), + [sym__whitespace] = ACTIONS(2331), + [sym__line_ending] = ACTIONS(2331), + [sym__soft_line_ending] = ACTIONS(2331), + [sym__block_close] = ACTIONS(2331), + [sym_block_continuation] = ACTIONS(2335), + [sym__block_quote_start] = ACTIONS(2331), + [sym_atx_h1_marker] = ACTIONS(2331), + [sym_atx_h2_marker] = ACTIONS(2331), + [sym_atx_h3_marker] = ACTIONS(2331), + [sym_atx_h4_marker] = ACTIONS(2331), + [sym_atx_h5_marker] = ACTIONS(2331), + [sym_atx_h6_marker] = ACTIONS(2331), + [sym__thematic_break] = ACTIONS(2331), + [sym__list_marker_minus] = ACTIONS(2331), + [sym__list_marker_plus] = ACTIONS(2331), + [sym__list_marker_star] = ACTIONS(2331), + [sym__list_marker_parenthesis] = ACTIONS(2331), + [sym__list_marker_dot] = ACTIONS(2331), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_example] = ACTIONS(2331), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2331), + [sym__fenced_code_block_start_backtick] = ACTIONS(2331), + [sym__minus_metadata_start] = ACTIONS(2331), + [sym__pipe_table_start] = ACTIONS(2331), + [sym__fenced_div_start] = ACTIONS(2331), + [sym__fenced_div_end] = ACTIONS(2331), + [sym_ref_id_specifier] = ACTIONS(2331), + [sym__code_span_start] = ACTIONS(2331), + [sym__html_comment] = ACTIONS(2331), + [sym__autolink] = ACTIONS(2331), + [sym__highlight_span_start] = ACTIONS(2331), + [sym__insert_span_start] = ACTIONS(2331), + [sym__delete_span_start] = ACTIONS(2331), + [sym__edit_comment_span_start] = ACTIONS(2331), + [sym__single_quote_span_open] = ACTIONS(2331), + [sym__double_quote_span_open] = ACTIONS(2331), + [sym__shortcode_open_escaped] = ACTIONS(2331), + [sym__shortcode_open] = ACTIONS(2331), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2331), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2331), + [sym__cite_author_in_text] = ACTIONS(2331), + [sym__cite_suppress_author] = ACTIONS(2331), + [sym__strikeout_open] = ACTIONS(2331), + [sym__subscript_open] = ACTIONS(2331), + [sym__superscript_open] = ACTIONS(2331), + [sym__inline_note_start_token] = ACTIONS(2331), + [sym__strong_emphasis_open_star] = ACTIONS(2331), + [sym__strong_emphasis_open_underscore] = ACTIONS(2331), + [sym__emphasis_open_star] = ACTIONS(2331), + [sym__emphasis_open_underscore] = ACTIONS(2331), + [sym_inline_note_reference] = ACTIONS(2331), + [sym_html_element] = ACTIONS(2331), + [sym__pandoc_lt_str] = ACTIONS(2331), + [sym__pandoc_line_break] = ACTIONS(2331), + [sym_grid_table] = ACTIONS(2331), + [sym__caption_start] = ACTIONS(2331), }, [STATE(188)] = { - [sym_entity_reference] = ACTIONS(2273), - [sym_numeric_character_reference] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2273), - [anon_sym_BANG_LBRACK] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [aux_sym_pandoc_str_token1] = ACTIONS(2275), - [anon_sym_PIPE] = ACTIONS(2273), - [sym__whitespace] = ACTIONS(2273), - [sym__line_ending] = ACTIONS(2273), - [sym__soft_line_ending] = ACTIONS(2273), - [sym__block_close] = ACTIONS(2273), - [sym_block_continuation] = ACTIONS(2277), - [sym__block_quote_start] = ACTIONS(2273), - [sym_atx_h1_marker] = ACTIONS(2273), - [sym_atx_h2_marker] = ACTIONS(2273), - [sym_atx_h3_marker] = ACTIONS(2273), - [sym_atx_h4_marker] = ACTIONS(2273), - [sym_atx_h5_marker] = ACTIONS(2273), - [sym_atx_h6_marker] = ACTIONS(2273), - [sym__thematic_break] = ACTIONS(2273), - [sym__list_marker_minus] = ACTIONS(2273), - [sym__list_marker_plus] = ACTIONS(2273), - [sym__list_marker_star] = ACTIONS(2273), - [sym__list_marker_parenthesis] = ACTIONS(2273), - [sym__list_marker_dot] = ACTIONS(2273), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_example] = ACTIONS(2273), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2273), - [sym__fenced_code_block_start_backtick] = ACTIONS(2273), - [sym_minus_metadata] = ACTIONS(2273), - [sym__pipe_table_start] = ACTIONS(2273), - [sym__fenced_div_start] = ACTIONS(2273), - [sym__fenced_div_end] = ACTIONS(2273), - [sym_ref_id_specifier] = ACTIONS(2273), - [sym__code_span_start] = ACTIONS(2273), - [sym__html_comment] = ACTIONS(2273), - [sym__autolink] = ACTIONS(2273), - [sym__highlight_span_start] = ACTIONS(2273), - [sym__insert_span_start] = ACTIONS(2273), - [sym__delete_span_start] = ACTIONS(2273), - [sym__edit_comment_span_start] = ACTIONS(2273), - [sym__single_quote_span_open] = ACTIONS(2273), - [sym__double_quote_span_open] = ACTIONS(2273), - [sym__shortcode_open_escaped] = ACTIONS(2273), - [sym__shortcode_open] = ACTIONS(2273), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2273), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2273), - [sym__cite_author_in_text] = ACTIONS(2273), - [sym__cite_suppress_author] = ACTIONS(2273), - [sym__strikeout_open] = ACTIONS(2273), - [sym__subscript_open] = ACTIONS(2273), - [sym__superscript_open] = ACTIONS(2273), - [sym__inline_note_start_token] = ACTIONS(2273), - [sym__strong_emphasis_open_star] = ACTIONS(2273), - [sym__strong_emphasis_open_underscore] = ACTIONS(2273), - [sym__emphasis_open_star] = ACTIONS(2273), - [sym__emphasis_open_underscore] = ACTIONS(2273), - [sym_inline_note_reference] = ACTIONS(2273), - [sym_html_element] = ACTIONS(2273), - [sym__pandoc_lt_str] = ACTIONS(2273), - [sym__pandoc_line_break] = ACTIONS(2273), - [sym_grid_table] = ACTIONS(2273), - [sym__caption_start] = ACTIONS(2273), + [sym_pipe_table_row] = STATE(3451), + [sym_pipe_table_cell] = STATE(3010), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym_pipe_table_row_repeat1] = STATE(486), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2156), + [sym__line_ending] = ACTIONS(2158), + [sym__eof] = ACTIONS(2158), + [sym__pipe_table_line_ending] = ACTIONS(2158), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pipe_table_delimiter] = ACTIONS(2202), + [sym__pandoc_line_break] = ACTIONS(2140), }, [STATE(189)] = { - [sym_entity_reference] = ACTIONS(2279), - [sym_numeric_character_reference] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_BANG_LBRACK] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [aux_sym_pandoc_str_token1] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [sym__whitespace] = ACTIONS(2279), - [sym__line_ending] = ACTIONS(2279), - [sym__soft_line_ending] = ACTIONS(2279), - [sym__block_close] = ACTIONS(2279), - [sym_block_continuation] = ACTIONS(2283), - [sym__block_quote_start] = ACTIONS(2279), - [sym_atx_h1_marker] = ACTIONS(2279), - [sym_atx_h2_marker] = ACTIONS(2279), - [sym_atx_h3_marker] = ACTIONS(2279), - [sym_atx_h4_marker] = ACTIONS(2279), - [sym_atx_h5_marker] = ACTIONS(2279), - [sym_atx_h6_marker] = ACTIONS(2279), - [sym__thematic_break] = ACTIONS(2279), - [sym__list_marker_minus] = ACTIONS(2279), - [sym__list_marker_plus] = ACTIONS(2279), - [sym__list_marker_star] = ACTIONS(2279), - [sym__list_marker_parenthesis] = ACTIONS(2279), - [sym__list_marker_dot] = ACTIONS(2279), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_example] = ACTIONS(2279), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2279), - [sym__fenced_code_block_start_backtick] = ACTIONS(2279), - [sym_minus_metadata] = ACTIONS(2279), - [sym__pipe_table_start] = ACTIONS(2279), - [sym__fenced_div_start] = ACTIONS(2279), - [sym__fenced_div_end] = ACTIONS(2279), - [sym_ref_id_specifier] = ACTIONS(2279), - [sym__code_span_start] = ACTIONS(2279), - [sym__html_comment] = ACTIONS(2279), - [sym__autolink] = ACTIONS(2279), - [sym__highlight_span_start] = ACTIONS(2279), - [sym__insert_span_start] = ACTIONS(2279), - [sym__delete_span_start] = ACTIONS(2279), - [sym__edit_comment_span_start] = ACTIONS(2279), - [sym__single_quote_span_open] = ACTIONS(2279), - [sym__double_quote_span_open] = ACTIONS(2279), - [sym__shortcode_open_escaped] = ACTIONS(2279), - [sym__shortcode_open] = ACTIONS(2279), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2279), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2279), - [sym__cite_author_in_text] = ACTIONS(2279), - [sym__cite_suppress_author] = ACTIONS(2279), - [sym__strikeout_open] = ACTIONS(2279), - [sym__subscript_open] = ACTIONS(2279), - [sym__superscript_open] = ACTIONS(2279), - [sym__inline_note_start_token] = ACTIONS(2279), - [sym__strong_emphasis_open_star] = ACTIONS(2279), - [sym__strong_emphasis_open_underscore] = ACTIONS(2279), - [sym__emphasis_open_star] = ACTIONS(2279), - [sym__emphasis_open_underscore] = ACTIONS(2279), - [sym_inline_note_reference] = ACTIONS(2279), - [sym_html_element] = ACTIONS(2279), - [sym__pandoc_lt_str] = ACTIONS(2279), - [sym__pandoc_line_break] = ACTIONS(2279), - [sym_grid_table] = ACTIONS(2279), - [sym__caption_start] = ACTIONS(2279), + [sym_entity_reference] = ACTIONS(2337), + [sym_numeric_character_reference] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_BANG_LBRACK] = ACTIONS(2337), + [anon_sym_DOLLAR] = ACTIONS(2339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [aux_sym_pandoc_str_token1] = ACTIONS(2339), + [anon_sym_PIPE] = ACTIONS(2337), + [sym__whitespace] = ACTIONS(2337), + [sym__line_ending] = ACTIONS(2337), + [sym__soft_line_ending] = ACTIONS(2337), + [sym__block_close] = ACTIONS(2337), + [sym_block_continuation] = ACTIONS(2341), + [sym__block_quote_start] = ACTIONS(2337), + [sym_atx_h1_marker] = ACTIONS(2337), + [sym_atx_h2_marker] = ACTIONS(2337), + [sym_atx_h3_marker] = ACTIONS(2337), + [sym_atx_h4_marker] = ACTIONS(2337), + [sym_atx_h5_marker] = ACTIONS(2337), + [sym_atx_h6_marker] = ACTIONS(2337), + [sym__thematic_break] = ACTIONS(2337), + [sym__list_marker_minus] = ACTIONS(2337), + [sym__list_marker_plus] = ACTIONS(2337), + [sym__list_marker_star] = ACTIONS(2337), + [sym__list_marker_parenthesis] = ACTIONS(2337), + [sym__list_marker_dot] = ACTIONS(2337), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_example] = ACTIONS(2337), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2337), + [sym__fenced_code_block_start_backtick] = ACTIONS(2337), + [sym__minus_metadata_start] = ACTIONS(2337), + [sym__pipe_table_start] = ACTIONS(2337), + [sym__fenced_div_start] = ACTIONS(2337), + [sym__fenced_div_end] = ACTIONS(2337), + [sym_ref_id_specifier] = ACTIONS(2337), + [sym__code_span_start] = ACTIONS(2337), + [sym__html_comment] = ACTIONS(2337), + [sym__autolink] = ACTIONS(2337), + [sym__highlight_span_start] = ACTIONS(2337), + [sym__insert_span_start] = ACTIONS(2337), + [sym__delete_span_start] = ACTIONS(2337), + [sym__edit_comment_span_start] = ACTIONS(2337), + [sym__single_quote_span_open] = ACTIONS(2337), + [sym__double_quote_span_open] = ACTIONS(2337), + [sym__shortcode_open_escaped] = ACTIONS(2337), + [sym__shortcode_open] = ACTIONS(2337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2337), + [sym__cite_author_in_text] = ACTIONS(2337), + [sym__cite_suppress_author] = ACTIONS(2337), + [sym__strikeout_open] = ACTIONS(2337), + [sym__subscript_open] = ACTIONS(2337), + [sym__superscript_open] = ACTIONS(2337), + [sym__inline_note_start_token] = ACTIONS(2337), + [sym__strong_emphasis_open_star] = ACTIONS(2337), + [sym__strong_emphasis_open_underscore] = ACTIONS(2337), + [sym__emphasis_open_star] = ACTIONS(2337), + [sym__emphasis_open_underscore] = ACTIONS(2337), + [sym_inline_note_reference] = ACTIONS(2337), + [sym_html_element] = ACTIONS(2337), + [sym__pandoc_lt_str] = ACTIONS(2337), + [sym__pandoc_line_break] = ACTIONS(2337), + [sym_grid_table] = ACTIONS(2337), + [sym__caption_start] = ACTIONS(2337), }, [STATE(190)] = { - [sym_entity_reference] = ACTIONS(2285), - [sym_numeric_character_reference] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_BANG_LBRACK] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [aux_sym_pandoc_str_token1] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2285), - [sym__whitespace] = ACTIONS(2285), - [sym__line_ending] = ACTIONS(2285), - [sym__soft_line_ending] = ACTIONS(2285), - [sym__block_close] = ACTIONS(2285), - [sym_block_continuation] = ACTIONS(2289), - [sym__block_quote_start] = ACTIONS(2285), - [sym_atx_h1_marker] = ACTIONS(2285), - [sym_atx_h2_marker] = ACTIONS(2285), - [sym_atx_h3_marker] = ACTIONS(2285), - [sym_atx_h4_marker] = ACTIONS(2285), - [sym_atx_h5_marker] = ACTIONS(2285), - [sym_atx_h6_marker] = ACTIONS(2285), - [sym__thematic_break] = ACTIONS(2285), - [sym__list_marker_minus] = ACTIONS(2285), - [sym__list_marker_plus] = ACTIONS(2285), - [sym__list_marker_star] = ACTIONS(2285), - [sym__list_marker_parenthesis] = ACTIONS(2285), - [sym__list_marker_dot] = ACTIONS(2285), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_example] = ACTIONS(2285), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2285), - [sym__fenced_code_block_start_backtick] = ACTIONS(2285), - [sym_minus_metadata] = ACTIONS(2285), - [sym__pipe_table_start] = ACTIONS(2285), - [sym__fenced_div_start] = ACTIONS(2285), - [sym__fenced_div_end] = ACTIONS(2285), - [sym_ref_id_specifier] = ACTIONS(2285), - [sym__code_span_start] = ACTIONS(2285), - [sym__html_comment] = ACTIONS(2285), - [sym__autolink] = ACTIONS(2285), - [sym__highlight_span_start] = ACTIONS(2285), - [sym__insert_span_start] = ACTIONS(2285), - [sym__delete_span_start] = ACTIONS(2285), - [sym__edit_comment_span_start] = ACTIONS(2285), - [sym__single_quote_span_open] = ACTIONS(2285), - [sym__double_quote_span_open] = ACTIONS(2285), - [sym__shortcode_open_escaped] = ACTIONS(2285), - [sym__shortcode_open] = ACTIONS(2285), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2285), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2285), - [sym__cite_author_in_text] = ACTIONS(2285), - [sym__cite_suppress_author] = ACTIONS(2285), - [sym__strikeout_open] = ACTIONS(2285), - [sym__subscript_open] = ACTIONS(2285), - [sym__superscript_open] = ACTIONS(2285), - [sym__inline_note_start_token] = ACTIONS(2285), - [sym__strong_emphasis_open_star] = ACTIONS(2285), - [sym__strong_emphasis_open_underscore] = ACTIONS(2285), - [sym__emphasis_open_star] = ACTIONS(2285), - [sym__emphasis_open_underscore] = ACTIONS(2285), - [sym_inline_note_reference] = ACTIONS(2285), - [sym_html_element] = ACTIONS(2285), - [sym__pandoc_lt_str] = ACTIONS(2285), - [sym__pandoc_line_break] = ACTIONS(2285), - [sym_grid_table] = ACTIONS(2285), - [sym__caption_start] = ACTIONS(2285), + [sym_entity_reference] = ACTIONS(2343), + [sym_numeric_character_reference] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_BANG_LBRACK] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [aux_sym_pandoc_str_token1] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2343), + [sym__whitespace] = ACTIONS(2343), + [sym__line_ending] = ACTIONS(2343), + [sym__soft_line_ending] = ACTIONS(2343), + [sym__block_close] = ACTIONS(2343), + [sym_block_continuation] = ACTIONS(2347), + [sym__block_quote_start] = ACTIONS(2343), + [sym_atx_h1_marker] = ACTIONS(2343), + [sym_atx_h2_marker] = ACTIONS(2343), + [sym_atx_h3_marker] = ACTIONS(2343), + [sym_atx_h4_marker] = ACTIONS(2343), + [sym_atx_h5_marker] = ACTIONS(2343), + [sym_atx_h6_marker] = ACTIONS(2343), + [sym__thematic_break] = ACTIONS(2343), + [sym__list_marker_minus] = ACTIONS(2343), + [sym__list_marker_plus] = ACTIONS(2343), + [sym__list_marker_star] = ACTIONS(2343), + [sym__list_marker_parenthesis] = ACTIONS(2343), + [sym__list_marker_dot] = ACTIONS(2343), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_example] = ACTIONS(2343), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2343), + [sym__fenced_code_block_start_backtick] = ACTIONS(2343), + [sym__minus_metadata_start] = ACTIONS(2343), + [sym__pipe_table_start] = ACTIONS(2343), + [sym__fenced_div_start] = ACTIONS(2343), + [sym__fenced_div_end] = ACTIONS(2343), + [sym_ref_id_specifier] = ACTIONS(2343), + [sym__code_span_start] = ACTIONS(2343), + [sym__html_comment] = ACTIONS(2343), + [sym__autolink] = ACTIONS(2343), + [sym__highlight_span_start] = ACTIONS(2343), + [sym__insert_span_start] = ACTIONS(2343), + [sym__delete_span_start] = ACTIONS(2343), + [sym__edit_comment_span_start] = ACTIONS(2343), + [sym__single_quote_span_open] = ACTIONS(2343), + [sym__double_quote_span_open] = ACTIONS(2343), + [sym__shortcode_open_escaped] = ACTIONS(2343), + [sym__shortcode_open] = ACTIONS(2343), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2343), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2343), + [sym__cite_author_in_text] = ACTIONS(2343), + [sym__cite_suppress_author] = ACTIONS(2343), + [sym__strikeout_open] = ACTIONS(2343), + [sym__subscript_open] = ACTIONS(2343), + [sym__superscript_open] = ACTIONS(2343), + [sym__inline_note_start_token] = ACTIONS(2343), + [sym__strong_emphasis_open_star] = ACTIONS(2343), + [sym__strong_emphasis_open_underscore] = ACTIONS(2343), + [sym__emphasis_open_star] = ACTIONS(2343), + [sym__emphasis_open_underscore] = ACTIONS(2343), + [sym_inline_note_reference] = ACTIONS(2343), + [sym_html_element] = ACTIONS(2343), + [sym__pandoc_lt_str] = ACTIONS(2343), + [sym__pandoc_line_break] = ACTIONS(2343), + [sym_grid_table] = ACTIONS(2343), + [sym__caption_start] = ACTIONS(2343), }, [STATE(191)] = { - [sym_entity_reference] = ACTIONS(2291), - [sym_numeric_character_reference] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_BANG_LBRACK] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2293), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [aux_sym_pandoc_str_token1] = ACTIONS(2293), - [anon_sym_PIPE] = ACTIONS(2291), - [sym__whitespace] = ACTIONS(2291), - [sym__line_ending] = ACTIONS(2291), - [sym__soft_line_ending] = ACTIONS(2291), - [sym__block_close] = ACTIONS(2291), - [sym_block_continuation] = ACTIONS(2295), - [sym__block_quote_start] = ACTIONS(2291), - [sym_atx_h1_marker] = ACTIONS(2291), - [sym_atx_h2_marker] = ACTIONS(2291), - [sym_atx_h3_marker] = ACTIONS(2291), - [sym_atx_h4_marker] = ACTIONS(2291), - [sym_atx_h5_marker] = ACTIONS(2291), - [sym_atx_h6_marker] = ACTIONS(2291), - [sym__thematic_break] = ACTIONS(2291), - [sym__list_marker_minus] = ACTIONS(2291), - [sym__list_marker_plus] = ACTIONS(2291), - [sym__list_marker_star] = ACTIONS(2291), - [sym__list_marker_parenthesis] = ACTIONS(2291), - [sym__list_marker_dot] = ACTIONS(2291), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_example] = ACTIONS(2291), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2291), - [sym__fenced_code_block_start_backtick] = ACTIONS(2291), - [sym_minus_metadata] = ACTIONS(2291), - [sym__pipe_table_start] = ACTIONS(2291), - [sym__fenced_div_start] = ACTIONS(2291), - [sym__fenced_div_end] = ACTIONS(2291), - [sym_ref_id_specifier] = ACTIONS(2291), - [sym__code_span_start] = ACTIONS(2291), - [sym__html_comment] = ACTIONS(2291), - [sym__autolink] = ACTIONS(2291), - [sym__highlight_span_start] = ACTIONS(2291), - [sym__insert_span_start] = ACTIONS(2291), - [sym__delete_span_start] = ACTIONS(2291), - [sym__edit_comment_span_start] = ACTIONS(2291), - [sym__single_quote_span_open] = ACTIONS(2291), - [sym__double_quote_span_open] = ACTIONS(2291), - [sym__shortcode_open_escaped] = ACTIONS(2291), - [sym__shortcode_open] = ACTIONS(2291), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2291), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2291), - [sym__cite_author_in_text] = ACTIONS(2291), - [sym__cite_suppress_author] = ACTIONS(2291), - [sym__strikeout_open] = ACTIONS(2291), - [sym__subscript_open] = ACTIONS(2291), - [sym__superscript_open] = ACTIONS(2291), - [sym__inline_note_start_token] = ACTIONS(2291), - [sym__strong_emphasis_open_star] = ACTIONS(2291), - [sym__strong_emphasis_open_underscore] = ACTIONS(2291), - [sym__emphasis_open_star] = ACTIONS(2291), - [sym__emphasis_open_underscore] = ACTIONS(2291), - [sym_inline_note_reference] = ACTIONS(2291), - [sym_html_element] = ACTIONS(2291), - [sym__pandoc_lt_str] = ACTIONS(2291), - [sym__pandoc_line_break] = ACTIONS(2291), - [sym_grid_table] = ACTIONS(2291), - [sym__caption_start] = ACTIONS(2291), + [sym_entity_reference] = ACTIONS(2349), + [sym_numeric_character_reference] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_BANG_LBRACK] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [aux_sym_pandoc_str_token1] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(2349), + [sym__whitespace] = ACTIONS(2349), + [sym__line_ending] = ACTIONS(2349), + [sym__soft_line_ending] = ACTIONS(2349), + [sym__block_close] = ACTIONS(2349), + [sym_block_continuation] = ACTIONS(2353), + [sym__block_quote_start] = ACTIONS(2349), + [sym_atx_h1_marker] = ACTIONS(2349), + [sym_atx_h2_marker] = ACTIONS(2349), + [sym_atx_h3_marker] = ACTIONS(2349), + [sym_atx_h4_marker] = ACTIONS(2349), + [sym_atx_h5_marker] = ACTIONS(2349), + [sym_atx_h6_marker] = ACTIONS(2349), + [sym__thematic_break] = ACTIONS(2349), + [sym__list_marker_minus] = ACTIONS(2349), + [sym__list_marker_plus] = ACTIONS(2349), + [sym__list_marker_star] = ACTIONS(2349), + [sym__list_marker_parenthesis] = ACTIONS(2349), + [sym__list_marker_dot] = ACTIONS(2349), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_example] = ACTIONS(2349), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2349), + [sym__fenced_code_block_start_backtick] = ACTIONS(2349), + [sym__minus_metadata_start] = ACTIONS(2349), + [sym__pipe_table_start] = ACTIONS(2349), + [sym__fenced_div_start] = ACTIONS(2349), + [sym__fenced_div_end] = ACTIONS(2349), + [sym_ref_id_specifier] = ACTIONS(2349), + [sym__code_span_start] = ACTIONS(2349), + [sym__html_comment] = ACTIONS(2349), + [sym__autolink] = ACTIONS(2349), + [sym__highlight_span_start] = ACTIONS(2349), + [sym__insert_span_start] = ACTIONS(2349), + [sym__delete_span_start] = ACTIONS(2349), + [sym__edit_comment_span_start] = ACTIONS(2349), + [sym__single_quote_span_open] = ACTIONS(2349), + [sym__double_quote_span_open] = ACTIONS(2349), + [sym__shortcode_open_escaped] = ACTIONS(2349), + [sym__shortcode_open] = ACTIONS(2349), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2349), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2349), + [sym__cite_author_in_text] = ACTIONS(2349), + [sym__cite_suppress_author] = ACTIONS(2349), + [sym__strikeout_open] = ACTIONS(2349), + [sym__subscript_open] = ACTIONS(2349), + [sym__superscript_open] = ACTIONS(2349), + [sym__inline_note_start_token] = ACTIONS(2349), + [sym__strong_emphasis_open_star] = ACTIONS(2349), + [sym__strong_emphasis_open_underscore] = ACTIONS(2349), + [sym__emphasis_open_star] = ACTIONS(2349), + [sym__emphasis_open_underscore] = ACTIONS(2349), + [sym_inline_note_reference] = ACTIONS(2349), + [sym_html_element] = ACTIONS(2349), + [sym__pandoc_lt_str] = ACTIONS(2349), + [sym__pandoc_line_break] = ACTIONS(2349), + [sym_grid_table] = ACTIONS(2349), + [sym__caption_start] = ACTIONS(2349), }, [STATE(192)] = { - [sym_entity_reference] = ACTIONS(2297), - [sym_numeric_character_reference] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_BANG_LBRACK] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [aux_sym_pandoc_str_token1] = ACTIONS(2299), - [anon_sym_PIPE] = ACTIONS(2297), - [sym__whitespace] = ACTIONS(2297), - [sym__line_ending] = ACTIONS(2297), - [sym__soft_line_ending] = ACTIONS(2297), - [sym__block_close] = ACTIONS(2297), - [sym_block_continuation] = ACTIONS(2301), - [sym__block_quote_start] = ACTIONS(2297), - [sym_atx_h1_marker] = ACTIONS(2297), - [sym_atx_h2_marker] = ACTIONS(2297), - [sym_atx_h3_marker] = ACTIONS(2297), - [sym_atx_h4_marker] = ACTIONS(2297), - [sym_atx_h5_marker] = ACTIONS(2297), - [sym_atx_h6_marker] = ACTIONS(2297), - [sym__thematic_break] = ACTIONS(2297), - [sym__list_marker_minus] = ACTIONS(2297), - [sym__list_marker_plus] = ACTIONS(2297), - [sym__list_marker_star] = ACTIONS(2297), - [sym__list_marker_parenthesis] = ACTIONS(2297), - [sym__list_marker_dot] = ACTIONS(2297), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_example] = ACTIONS(2297), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2297), - [sym__fenced_code_block_start_backtick] = ACTIONS(2297), - [sym_minus_metadata] = ACTIONS(2297), - [sym__pipe_table_start] = ACTIONS(2297), - [sym__fenced_div_start] = ACTIONS(2297), - [sym__fenced_div_end] = ACTIONS(2297), - [sym_ref_id_specifier] = ACTIONS(2297), - [sym__code_span_start] = ACTIONS(2297), - [sym__html_comment] = ACTIONS(2297), - [sym__autolink] = ACTIONS(2297), - [sym__highlight_span_start] = ACTIONS(2297), - [sym__insert_span_start] = ACTIONS(2297), - [sym__delete_span_start] = ACTIONS(2297), - [sym__edit_comment_span_start] = ACTIONS(2297), - [sym__single_quote_span_open] = ACTIONS(2297), - [sym__double_quote_span_open] = ACTIONS(2297), - [sym__shortcode_open_escaped] = ACTIONS(2297), - [sym__shortcode_open] = ACTIONS(2297), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2297), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2297), - [sym__cite_author_in_text] = ACTIONS(2297), - [sym__cite_suppress_author] = ACTIONS(2297), - [sym__strikeout_open] = ACTIONS(2297), - [sym__subscript_open] = ACTIONS(2297), - [sym__superscript_open] = ACTIONS(2297), - [sym__inline_note_start_token] = ACTIONS(2297), - [sym__strong_emphasis_open_star] = ACTIONS(2297), - [sym__strong_emphasis_open_underscore] = ACTIONS(2297), - [sym__emphasis_open_star] = ACTIONS(2297), - [sym__emphasis_open_underscore] = ACTIONS(2297), - [sym_inline_note_reference] = ACTIONS(2297), - [sym_html_element] = ACTIONS(2297), - [sym__pandoc_lt_str] = ACTIONS(2297), - [sym__pandoc_line_break] = ACTIONS(2297), - [sym_grid_table] = ACTIONS(2297), - [sym__caption_start] = ACTIONS(2297), + [sym_entity_reference] = ACTIONS(2355), + [sym_numeric_character_reference] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_BANG_LBRACK] = ACTIONS(2355), + [anon_sym_DOLLAR] = ACTIONS(2357), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2355), + [sym__whitespace] = ACTIONS(2355), + [sym__line_ending] = ACTIONS(2355), + [sym__soft_line_ending] = ACTIONS(2355), + [sym__block_close] = ACTIONS(2355), + [sym_block_continuation] = ACTIONS(2359), + [sym__block_quote_start] = ACTIONS(2355), + [sym_atx_h1_marker] = ACTIONS(2355), + [sym_atx_h2_marker] = ACTIONS(2355), + [sym_atx_h3_marker] = ACTIONS(2355), + [sym_atx_h4_marker] = ACTIONS(2355), + [sym_atx_h5_marker] = ACTIONS(2355), + [sym_atx_h6_marker] = ACTIONS(2355), + [sym__thematic_break] = ACTIONS(2355), + [sym__list_marker_minus] = ACTIONS(2355), + [sym__list_marker_plus] = ACTIONS(2355), + [sym__list_marker_star] = ACTIONS(2355), + [sym__list_marker_parenthesis] = ACTIONS(2355), + [sym__list_marker_dot] = ACTIONS(2355), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_example] = ACTIONS(2355), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2355), + [sym__fenced_code_block_start_backtick] = ACTIONS(2355), + [sym__minus_metadata_start] = ACTIONS(2355), + [sym__pipe_table_start] = ACTIONS(2355), + [sym__fenced_div_start] = ACTIONS(2355), + [sym__fenced_div_end] = ACTIONS(2355), + [sym_ref_id_specifier] = ACTIONS(2355), + [sym__code_span_start] = ACTIONS(2355), + [sym__html_comment] = ACTIONS(2355), + [sym__autolink] = ACTIONS(2355), + [sym__highlight_span_start] = ACTIONS(2355), + [sym__insert_span_start] = ACTIONS(2355), + [sym__delete_span_start] = ACTIONS(2355), + [sym__edit_comment_span_start] = ACTIONS(2355), + [sym__single_quote_span_open] = ACTIONS(2355), + [sym__double_quote_span_open] = ACTIONS(2355), + [sym__shortcode_open_escaped] = ACTIONS(2355), + [sym__shortcode_open] = ACTIONS(2355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2355), + [sym__cite_author_in_text] = ACTIONS(2355), + [sym__cite_suppress_author] = ACTIONS(2355), + [sym__strikeout_open] = ACTIONS(2355), + [sym__subscript_open] = ACTIONS(2355), + [sym__superscript_open] = ACTIONS(2355), + [sym__inline_note_start_token] = ACTIONS(2355), + [sym__strong_emphasis_open_star] = ACTIONS(2355), + [sym__strong_emphasis_open_underscore] = ACTIONS(2355), + [sym__emphasis_open_star] = ACTIONS(2355), + [sym__emphasis_open_underscore] = ACTIONS(2355), + [sym_inline_note_reference] = ACTIONS(2355), + [sym_html_element] = ACTIONS(2355), + [sym__pandoc_lt_str] = ACTIONS(2355), + [sym__pandoc_line_break] = ACTIONS(2355), + [sym_grid_table] = ACTIONS(2355), + [sym__caption_start] = ACTIONS(2355), }, [STATE(193)] = { - [sym_entity_reference] = ACTIONS(2303), - [sym_numeric_character_reference] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_BANG_LBRACK] = ACTIONS(2303), - [anon_sym_DOLLAR] = ACTIONS(2305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [aux_sym_pandoc_str_token1] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2303), - [sym__whitespace] = ACTIONS(2303), - [sym__line_ending] = ACTIONS(2303), - [sym__soft_line_ending] = ACTIONS(2303), - [sym__block_close] = ACTIONS(2303), - [sym_block_continuation] = ACTIONS(2307), - [sym__block_quote_start] = ACTIONS(2303), - [sym_atx_h1_marker] = ACTIONS(2303), - [sym_atx_h2_marker] = ACTIONS(2303), - [sym_atx_h3_marker] = ACTIONS(2303), - [sym_atx_h4_marker] = ACTIONS(2303), - [sym_atx_h5_marker] = ACTIONS(2303), - [sym_atx_h6_marker] = ACTIONS(2303), - [sym__thematic_break] = ACTIONS(2303), - [sym__list_marker_minus] = ACTIONS(2303), - [sym__list_marker_plus] = ACTIONS(2303), - [sym__list_marker_star] = ACTIONS(2303), - [sym__list_marker_parenthesis] = ACTIONS(2303), - [sym__list_marker_dot] = ACTIONS(2303), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_example] = ACTIONS(2303), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2303), - [sym__fenced_code_block_start_backtick] = ACTIONS(2303), - [sym_minus_metadata] = ACTIONS(2303), - [sym__pipe_table_start] = ACTIONS(2303), - [sym__fenced_div_start] = ACTIONS(2303), - [sym__fenced_div_end] = ACTIONS(2303), - [sym_ref_id_specifier] = ACTIONS(2303), - [sym__code_span_start] = ACTIONS(2303), - [sym__html_comment] = ACTIONS(2303), - [sym__autolink] = ACTIONS(2303), - [sym__highlight_span_start] = ACTIONS(2303), - [sym__insert_span_start] = ACTIONS(2303), - [sym__delete_span_start] = ACTIONS(2303), - [sym__edit_comment_span_start] = ACTIONS(2303), - [sym__single_quote_span_open] = ACTIONS(2303), - [sym__double_quote_span_open] = ACTIONS(2303), - [sym__shortcode_open_escaped] = ACTIONS(2303), - [sym__shortcode_open] = ACTIONS(2303), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2303), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2303), - [sym__cite_author_in_text] = ACTIONS(2303), - [sym__cite_suppress_author] = ACTIONS(2303), - [sym__strikeout_open] = ACTIONS(2303), - [sym__subscript_open] = ACTIONS(2303), - [sym__superscript_open] = ACTIONS(2303), - [sym__inline_note_start_token] = ACTIONS(2303), - [sym__strong_emphasis_open_star] = ACTIONS(2303), - [sym__strong_emphasis_open_underscore] = ACTIONS(2303), - [sym__emphasis_open_star] = ACTIONS(2303), - [sym__emphasis_open_underscore] = ACTIONS(2303), - [sym_inline_note_reference] = ACTIONS(2303), - [sym_html_element] = ACTIONS(2303), - [sym__pandoc_lt_str] = ACTIONS(2303), - [sym__pandoc_line_break] = ACTIONS(2303), - [sym_grid_table] = ACTIONS(2303), - [sym__caption_start] = ACTIONS(2303), - }, - [STATE(194)] = { - [sym_entity_reference] = ACTIONS(2309), - [sym_numeric_character_reference] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_BANG_LBRACK] = ACTIONS(2309), - [anon_sym_DOLLAR] = ACTIONS(2311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [aux_sym_pandoc_str_token1] = ACTIONS(2311), - [anon_sym_PIPE] = ACTIONS(2309), - [sym__whitespace] = ACTIONS(2309), - [sym__line_ending] = ACTIONS(2309), - [sym__soft_line_ending] = ACTIONS(2309), - [sym__block_close] = ACTIONS(2309), - [sym_block_continuation] = ACTIONS(2313), - [sym__block_quote_start] = ACTIONS(2309), - [sym_atx_h1_marker] = ACTIONS(2309), - [sym_atx_h2_marker] = ACTIONS(2309), - [sym_atx_h3_marker] = ACTIONS(2309), - [sym_atx_h4_marker] = ACTIONS(2309), - [sym_atx_h5_marker] = ACTIONS(2309), - [sym_atx_h6_marker] = ACTIONS(2309), - [sym__thematic_break] = ACTIONS(2309), - [sym__list_marker_minus] = ACTIONS(2309), - [sym__list_marker_plus] = ACTIONS(2309), - [sym__list_marker_star] = ACTIONS(2309), - [sym__list_marker_parenthesis] = ACTIONS(2309), - [sym__list_marker_dot] = ACTIONS(2309), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_example] = ACTIONS(2309), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2309), - [sym__fenced_code_block_start_backtick] = ACTIONS(2309), - [sym_minus_metadata] = ACTIONS(2309), - [sym__pipe_table_start] = ACTIONS(2309), - [sym__fenced_div_start] = ACTIONS(2309), - [sym__fenced_div_end] = ACTIONS(2309), - [sym_ref_id_specifier] = ACTIONS(2309), - [sym__code_span_start] = ACTIONS(2309), - [sym__html_comment] = ACTIONS(2309), - [sym__autolink] = ACTIONS(2309), - [sym__highlight_span_start] = ACTIONS(2309), - [sym__insert_span_start] = ACTIONS(2309), - [sym__delete_span_start] = ACTIONS(2309), - [sym__edit_comment_span_start] = ACTIONS(2309), - [sym__single_quote_span_open] = ACTIONS(2309), - [sym__double_quote_span_open] = ACTIONS(2309), - [sym__shortcode_open_escaped] = ACTIONS(2309), - [sym__shortcode_open] = ACTIONS(2309), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2309), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2309), - [sym__cite_author_in_text] = ACTIONS(2309), - [sym__cite_suppress_author] = ACTIONS(2309), - [sym__strikeout_open] = ACTIONS(2309), - [sym__subscript_open] = ACTIONS(2309), - [sym__superscript_open] = ACTIONS(2309), - [sym__inline_note_start_token] = ACTIONS(2309), - [sym__strong_emphasis_open_star] = ACTIONS(2309), - [sym__strong_emphasis_open_underscore] = ACTIONS(2309), - [sym__emphasis_open_star] = ACTIONS(2309), - [sym__emphasis_open_underscore] = ACTIONS(2309), - [sym_inline_note_reference] = ACTIONS(2309), - [sym_html_element] = ACTIONS(2309), - [sym__pandoc_lt_str] = ACTIONS(2309), - [sym__pandoc_line_break] = ACTIONS(2309), - [sym_grid_table] = ACTIONS(2309), - [sym__caption_start] = ACTIONS(2309), - }, - [STATE(195)] = { - [sym_entity_reference] = ACTIONS(2315), - [sym_numeric_character_reference] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_BANG_LBRACK] = ACTIONS(2315), - [anon_sym_DOLLAR] = ACTIONS(2317), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [aux_sym_pandoc_str_token1] = ACTIONS(2317), - [anon_sym_PIPE] = ACTIONS(2315), - [sym__whitespace] = ACTIONS(2315), - [sym__line_ending] = ACTIONS(2315), - [sym__soft_line_ending] = ACTIONS(2315), - [sym__block_close] = ACTIONS(2315), - [sym_block_continuation] = ACTIONS(2319), - [sym__block_quote_start] = ACTIONS(2315), - [sym_atx_h1_marker] = ACTIONS(2315), - [sym_atx_h2_marker] = ACTIONS(2315), - [sym_atx_h3_marker] = ACTIONS(2315), - [sym_atx_h4_marker] = ACTIONS(2315), - [sym_atx_h5_marker] = ACTIONS(2315), - [sym_atx_h6_marker] = ACTIONS(2315), - [sym__thematic_break] = ACTIONS(2315), - [sym__list_marker_minus] = ACTIONS(2315), - [sym__list_marker_plus] = ACTIONS(2315), - [sym__list_marker_star] = ACTIONS(2315), - [sym__list_marker_parenthesis] = ACTIONS(2315), - [sym__list_marker_dot] = ACTIONS(2315), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_example] = ACTIONS(2315), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2315), - [sym__fenced_code_block_start_backtick] = ACTIONS(2315), - [sym_minus_metadata] = ACTIONS(2315), - [sym__pipe_table_start] = ACTIONS(2315), - [sym__fenced_div_start] = ACTIONS(2315), - [sym__fenced_div_end] = ACTIONS(2315), - [sym_ref_id_specifier] = ACTIONS(2315), - [sym__code_span_start] = ACTIONS(2315), - [sym__html_comment] = ACTIONS(2315), - [sym__autolink] = ACTIONS(2315), - [sym__highlight_span_start] = ACTIONS(2315), - [sym__insert_span_start] = ACTIONS(2315), - [sym__delete_span_start] = ACTIONS(2315), - [sym__edit_comment_span_start] = ACTIONS(2315), - [sym__single_quote_span_open] = ACTIONS(2315), - [sym__double_quote_span_open] = ACTIONS(2315), - [sym__shortcode_open_escaped] = ACTIONS(2315), - [sym__shortcode_open] = ACTIONS(2315), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2315), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2315), - [sym__cite_author_in_text] = ACTIONS(2315), - [sym__cite_suppress_author] = ACTIONS(2315), - [sym__strikeout_open] = ACTIONS(2315), - [sym__subscript_open] = ACTIONS(2315), - [sym__superscript_open] = ACTIONS(2315), - [sym__inline_note_start_token] = ACTIONS(2315), - [sym__strong_emphasis_open_star] = ACTIONS(2315), - [sym__strong_emphasis_open_underscore] = ACTIONS(2315), - [sym__emphasis_open_star] = ACTIONS(2315), - [sym__emphasis_open_underscore] = ACTIONS(2315), - [sym_inline_note_reference] = ACTIONS(2315), - [sym_html_element] = ACTIONS(2315), - [sym__pandoc_lt_str] = ACTIONS(2315), - [sym__pandoc_line_break] = ACTIONS(2315), - [sym_grid_table] = ACTIONS(2315), - [sym__caption_start] = ACTIONS(2315), - }, - [STATE(196)] = { - [sym_entity_reference] = ACTIONS(2321), - [sym_numeric_character_reference] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_BANG_LBRACK] = ACTIONS(2321), - [anon_sym_DOLLAR] = ACTIONS(2323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [aux_sym_pandoc_str_token1] = ACTIONS(2323), - [anon_sym_PIPE] = ACTIONS(2321), - [sym__whitespace] = ACTIONS(2325), - [sym__line_ending] = ACTIONS(2321), - [sym__soft_line_ending] = ACTIONS(2321), - [sym__block_close] = ACTIONS(2321), - [sym_block_continuation] = ACTIONS(2327), - [sym__block_quote_start] = ACTIONS(2321), - [sym_atx_h1_marker] = ACTIONS(2321), - [sym_atx_h2_marker] = ACTIONS(2321), - [sym_atx_h3_marker] = ACTIONS(2321), - [sym_atx_h4_marker] = ACTIONS(2321), - [sym_atx_h5_marker] = ACTIONS(2321), - [sym_atx_h6_marker] = ACTIONS(2321), - [sym__thematic_break] = ACTIONS(2321), - [sym__list_marker_minus] = ACTIONS(2321), - [sym__list_marker_plus] = ACTIONS(2321), - [sym__list_marker_star] = ACTIONS(2321), - [sym__list_marker_parenthesis] = ACTIONS(2321), - [sym__list_marker_dot] = ACTIONS(2321), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_example] = ACTIONS(2321), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2321), - [sym__fenced_code_block_start_backtick] = ACTIONS(2321), - [sym_minus_metadata] = ACTIONS(2321), - [sym__pipe_table_start] = ACTIONS(2321), - [sym__fenced_div_start] = ACTIONS(2321), - [sym__fenced_div_end] = ACTIONS(2321), - [sym_ref_id_specifier] = ACTIONS(2321), - [sym__code_span_start] = ACTIONS(2321), - [sym__html_comment] = ACTIONS(2321), - [sym__autolink] = ACTIONS(2321), - [sym__highlight_span_start] = ACTIONS(2321), - [sym__insert_span_start] = ACTIONS(2321), - [sym__delete_span_start] = ACTIONS(2321), - [sym__edit_comment_span_start] = ACTIONS(2321), - [sym__single_quote_span_open] = ACTIONS(2321), - [sym__double_quote_span_open] = ACTIONS(2321), - [sym__shortcode_open_escaped] = ACTIONS(2321), - [sym__shortcode_open] = ACTIONS(2321), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2321), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2321), - [sym__cite_author_in_text] = ACTIONS(2321), - [sym__cite_suppress_author] = ACTIONS(2321), - [sym__strikeout_open] = ACTIONS(2321), - [sym__subscript_open] = ACTIONS(2321), - [sym__superscript_open] = ACTIONS(2321), - [sym__inline_note_start_token] = ACTIONS(2321), - [sym__strong_emphasis_open_star] = ACTIONS(2321), - [sym__strong_emphasis_open_underscore] = ACTIONS(2321), - [sym__emphasis_open_star] = ACTIONS(2321), - [sym__emphasis_open_underscore] = ACTIONS(2321), - [sym_inline_note_reference] = ACTIONS(2321), - [sym_html_element] = ACTIONS(2321), - [sym__pandoc_lt_str] = ACTIONS(2321), - [sym__pandoc_line_break] = ACTIONS(2321), - [sym_grid_table] = ACTIONS(2321), - [sym__caption_start] = ACTIONS(2321), - }, - [STATE(197)] = { - [sym_entity_reference] = ACTIONS(2329), - [sym_numeric_character_reference] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_BANG_LBRACK] = ACTIONS(2329), - [anon_sym_DOLLAR] = ACTIONS(2331), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2329), - [aux_sym_pandoc_str_token1] = ACTIONS(2331), - [anon_sym_PIPE] = ACTIONS(2329), - [sym__whitespace] = ACTIONS(2329), - [sym__line_ending] = ACTIONS(2329), - [sym__soft_line_ending] = ACTIONS(2329), - [sym__block_close] = ACTIONS(2329), - [sym_block_continuation] = ACTIONS(2333), - [sym__block_quote_start] = ACTIONS(2329), - [sym_atx_h1_marker] = ACTIONS(2329), - [sym_atx_h2_marker] = ACTIONS(2329), - [sym_atx_h3_marker] = ACTIONS(2329), - [sym_atx_h4_marker] = ACTIONS(2329), - [sym_atx_h5_marker] = ACTIONS(2329), - [sym_atx_h6_marker] = ACTIONS(2329), - [sym__thematic_break] = ACTIONS(2329), - [sym__list_marker_minus] = ACTIONS(2329), - [sym__list_marker_plus] = ACTIONS(2329), - [sym__list_marker_star] = ACTIONS(2329), - [sym__list_marker_parenthesis] = ACTIONS(2329), - [sym__list_marker_dot] = ACTIONS(2329), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_example] = ACTIONS(2329), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2329), - [sym__fenced_code_block_start_backtick] = ACTIONS(2329), - [sym_minus_metadata] = ACTIONS(2329), - [sym__pipe_table_start] = ACTIONS(2329), - [sym__fenced_div_start] = ACTIONS(2329), - [sym__fenced_div_end] = ACTIONS(2329), - [sym_ref_id_specifier] = ACTIONS(2329), - [sym__code_span_start] = ACTIONS(2329), - [sym__html_comment] = ACTIONS(2329), - [sym__autolink] = ACTIONS(2329), - [sym__highlight_span_start] = ACTIONS(2329), - [sym__insert_span_start] = ACTIONS(2329), - [sym__delete_span_start] = ACTIONS(2329), - [sym__edit_comment_span_start] = ACTIONS(2329), - [sym__single_quote_span_open] = ACTIONS(2329), - [sym__double_quote_span_open] = ACTIONS(2329), - [sym__shortcode_open_escaped] = ACTIONS(2329), - [sym__shortcode_open] = ACTIONS(2329), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2329), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2329), - [sym__cite_author_in_text] = ACTIONS(2329), - [sym__cite_suppress_author] = ACTIONS(2329), - [sym__strikeout_open] = ACTIONS(2329), - [sym__subscript_open] = ACTIONS(2329), - [sym__superscript_open] = ACTIONS(2329), - [sym__inline_note_start_token] = ACTIONS(2329), - [sym__strong_emphasis_open_star] = ACTIONS(2329), - [sym__strong_emphasis_open_underscore] = ACTIONS(2329), - [sym__emphasis_open_star] = ACTIONS(2329), - [sym__emphasis_open_underscore] = ACTIONS(2329), - [sym_inline_note_reference] = ACTIONS(2329), - [sym_html_element] = ACTIONS(2329), - [sym__pandoc_lt_str] = ACTIONS(2329), - [sym__pandoc_line_break] = ACTIONS(2329), - [sym_grid_table] = ACTIONS(2329), - [sym__caption_start] = ACTIONS(2329), - }, - [STATE(198)] = { - [sym_entity_reference] = ACTIONS(2335), - [sym_numeric_character_reference] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_BANG_LBRACK] = ACTIONS(2335), - [anon_sym_DOLLAR] = ACTIONS(2337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [aux_sym_pandoc_str_token1] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2335), - [sym__whitespace] = ACTIONS(2335), - [sym__line_ending] = ACTIONS(2335), - [sym__soft_line_ending] = ACTIONS(2335), - [sym__block_close] = ACTIONS(2335), - [sym_block_continuation] = ACTIONS(2339), - [sym__block_quote_start] = ACTIONS(2335), - [sym_atx_h1_marker] = ACTIONS(2335), - [sym_atx_h2_marker] = ACTIONS(2335), - [sym_atx_h3_marker] = ACTIONS(2335), - [sym_atx_h4_marker] = ACTIONS(2335), - [sym_atx_h5_marker] = ACTIONS(2335), - [sym_atx_h6_marker] = ACTIONS(2335), - [sym__thematic_break] = ACTIONS(2335), - [sym__list_marker_minus] = ACTIONS(2335), - [sym__list_marker_plus] = ACTIONS(2335), - [sym__list_marker_star] = ACTIONS(2335), - [sym__list_marker_parenthesis] = ACTIONS(2335), - [sym__list_marker_dot] = ACTIONS(2335), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_example] = ACTIONS(2335), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2335), - [sym__fenced_code_block_start_backtick] = ACTIONS(2335), - [sym_minus_metadata] = ACTIONS(2335), - [sym__pipe_table_start] = ACTIONS(2335), - [sym__fenced_div_start] = ACTIONS(2335), - [sym__fenced_div_end] = ACTIONS(2335), - [sym_ref_id_specifier] = ACTIONS(2335), - [sym__code_span_start] = ACTIONS(2335), - [sym__html_comment] = ACTIONS(2335), - [sym__autolink] = ACTIONS(2335), - [sym__highlight_span_start] = ACTIONS(2335), - [sym__insert_span_start] = ACTIONS(2335), - [sym__delete_span_start] = ACTIONS(2335), - [sym__edit_comment_span_start] = ACTIONS(2335), - [sym__single_quote_span_open] = ACTIONS(2335), - [sym__double_quote_span_open] = ACTIONS(2335), - [sym__shortcode_open_escaped] = ACTIONS(2335), - [sym__shortcode_open] = ACTIONS(2335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2335), - [sym__cite_author_in_text] = ACTIONS(2335), - [sym__cite_suppress_author] = ACTIONS(2335), - [sym__strikeout_open] = ACTIONS(2335), - [sym__subscript_open] = ACTIONS(2335), - [sym__superscript_open] = ACTIONS(2335), - [sym__inline_note_start_token] = ACTIONS(2335), - [sym__strong_emphasis_open_star] = ACTIONS(2335), - [sym__strong_emphasis_open_underscore] = ACTIONS(2335), - [sym__emphasis_open_star] = ACTIONS(2335), - [sym__emphasis_open_underscore] = ACTIONS(2335), - [sym_inline_note_reference] = ACTIONS(2335), - [sym_html_element] = ACTIONS(2335), - [sym__pandoc_lt_str] = ACTIONS(2335), - [sym__pandoc_line_break] = ACTIONS(2335), - [sym_grid_table] = ACTIONS(2335), - [sym__caption_start] = ACTIONS(2335), - }, - [STATE(199)] = { - [sym_entity_reference] = ACTIONS(2341), - [sym_numeric_character_reference] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_BANG_LBRACK] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2341), - [aux_sym_pandoc_str_token1] = ACTIONS(2343), - [anon_sym_PIPE] = ACTIONS(2341), - [sym__whitespace] = ACTIONS(2341), - [sym__line_ending] = ACTIONS(2341), - [sym__soft_line_ending] = ACTIONS(2341), - [sym__block_close] = ACTIONS(2341), - [sym_block_continuation] = ACTIONS(2345), - [sym__block_quote_start] = ACTIONS(2341), - [sym_atx_h1_marker] = ACTIONS(2341), - [sym_atx_h2_marker] = ACTIONS(2341), - [sym_atx_h3_marker] = ACTIONS(2341), - [sym_atx_h4_marker] = ACTIONS(2341), - [sym_atx_h5_marker] = ACTIONS(2341), - [sym_atx_h6_marker] = ACTIONS(2341), - [sym__thematic_break] = ACTIONS(2341), - [sym__list_marker_minus] = ACTIONS(2341), - [sym__list_marker_plus] = ACTIONS(2341), - [sym__list_marker_star] = ACTIONS(2341), - [sym__list_marker_parenthesis] = ACTIONS(2341), - [sym__list_marker_dot] = ACTIONS(2341), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_example] = ACTIONS(2341), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2341), - [sym__fenced_code_block_start_backtick] = ACTIONS(2341), - [sym_minus_metadata] = ACTIONS(2341), - [sym__pipe_table_start] = ACTIONS(2341), - [sym__fenced_div_start] = ACTIONS(2341), - [sym__fenced_div_end] = ACTIONS(2341), - [sym_ref_id_specifier] = ACTIONS(2341), - [sym__code_span_start] = ACTIONS(2341), - [sym__html_comment] = ACTIONS(2341), - [sym__autolink] = ACTIONS(2341), - [sym__highlight_span_start] = ACTIONS(2341), - [sym__insert_span_start] = ACTIONS(2341), - [sym__delete_span_start] = ACTIONS(2341), - [sym__edit_comment_span_start] = ACTIONS(2341), - [sym__single_quote_span_open] = ACTIONS(2341), - [sym__double_quote_span_open] = ACTIONS(2341), - [sym__shortcode_open_escaped] = ACTIONS(2341), - [sym__shortcode_open] = ACTIONS(2341), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2341), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2341), - [sym__cite_author_in_text] = ACTIONS(2341), - [sym__cite_suppress_author] = ACTIONS(2341), - [sym__strikeout_open] = ACTIONS(2341), - [sym__subscript_open] = ACTIONS(2341), - [sym__superscript_open] = ACTIONS(2341), - [sym__inline_note_start_token] = ACTIONS(2341), - [sym__strong_emphasis_open_star] = ACTIONS(2341), - [sym__strong_emphasis_open_underscore] = ACTIONS(2341), - [sym__emphasis_open_star] = ACTIONS(2341), - [sym__emphasis_open_underscore] = ACTIONS(2341), - [sym_inline_note_reference] = ACTIONS(2341), - [sym_html_element] = ACTIONS(2341), - [sym__pandoc_lt_str] = ACTIONS(2341), - [sym__pandoc_line_break] = ACTIONS(2341), - [sym_grid_table] = ACTIONS(2341), - [sym__caption_start] = ACTIONS(2341), - }, - [STATE(200)] = { - [sym_pipe_table_row] = STATE(3289), - [sym_pipe_table_cell] = STATE(3077), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym_pipe_table_row_repeat1] = STATE(416), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2155), - [sym__line_ending] = ACTIONS(2157), - [sym__eof] = ACTIONS(2157), - [sym__pipe_table_line_ending] = ACTIONS(2157), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pipe_table_delimiter] = ACTIONS(2201), - [sym__pandoc_line_break] = ACTIONS(2139), - }, - [STATE(201)] = { - [sym_entity_reference] = ACTIONS(2347), - [sym_numeric_character_reference] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_BANG_LBRACK] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [aux_sym_pandoc_str_token1] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2347), - [sym__whitespace] = ACTIONS(2347), - [sym__line_ending] = ACTIONS(2347), - [sym__soft_line_ending] = ACTIONS(2347), - [sym__block_close] = ACTIONS(2347), - [sym_block_continuation] = ACTIONS(2351), - [sym__block_quote_start] = ACTIONS(2347), - [sym_atx_h1_marker] = ACTIONS(2347), - [sym_atx_h2_marker] = ACTIONS(2347), - [sym_atx_h3_marker] = ACTIONS(2347), - [sym_atx_h4_marker] = ACTIONS(2347), - [sym_atx_h5_marker] = ACTIONS(2347), - [sym_atx_h6_marker] = ACTIONS(2347), - [sym__thematic_break] = ACTIONS(2347), - [sym__list_marker_minus] = ACTIONS(2347), - [sym__list_marker_plus] = ACTIONS(2347), - [sym__list_marker_star] = ACTIONS(2347), - [sym__list_marker_parenthesis] = ACTIONS(2347), - [sym__list_marker_dot] = ACTIONS(2347), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_example] = ACTIONS(2347), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2347), - [sym__fenced_code_block_start_backtick] = ACTIONS(2347), - [sym_minus_metadata] = ACTIONS(2347), - [sym__pipe_table_start] = ACTIONS(2347), - [sym__fenced_div_start] = ACTIONS(2347), - [sym__fenced_div_end] = ACTIONS(2347), - [sym_ref_id_specifier] = ACTIONS(2347), - [sym__code_span_start] = ACTIONS(2347), - [sym__html_comment] = ACTIONS(2347), - [sym__autolink] = ACTIONS(2347), - [sym__highlight_span_start] = ACTIONS(2347), - [sym__insert_span_start] = ACTIONS(2347), - [sym__delete_span_start] = ACTIONS(2347), - [sym__edit_comment_span_start] = ACTIONS(2347), - [sym__single_quote_span_open] = ACTIONS(2347), - [sym__double_quote_span_open] = ACTIONS(2347), - [sym__shortcode_open_escaped] = ACTIONS(2347), - [sym__shortcode_open] = ACTIONS(2347), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2347), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2347), - [sym__cite_author_in_text] = ACTIONS(2347), - [sym__cite_suppress_author] = ACTIONS(2347), - [sym__strikeout_open] = ACTIONS(2347), - [sym__subscript_open] = ACTIONS(2347), - [sym__superscript_open] = ACTIONS(2347), - [sym__inline_note_start_token] = ACTIONS(2347), - [sym__strong_emphasis_open_star] = ACTIONS(2347), - [sym__strong_emphasis_open_underscore] = ACTIONS(2347), - [sym__emphasis_open_star] = ACTIONS(2347), - [sym__emphasis_open_underscore] = ACTIONS(2347), - [sym_inline_note_reference] = ACTIONS(2347), - [sym_html_element] = ACTIONS(2347), - [sym__pandoc_lt_str] = ACTIONS(2347), - [sym__pandoc_line_break] = ACTIONS(2347), - [sym_grid_table] = ACTIONS(2347), - [sym__caption_start] = ACTIONS(2347), - }, - [STATE(202)] = { - [sym_entity_reference] = ACTIONS(2353), - [sym_numeric_character_reference] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_BANG_LBRACK] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [aux_sym_pandoc_str_token1] = ACTIONS(2355), - [anon_sym_PIPE] = ACTIONS(2353), - [sym__whitespace] = ACTIONS(2353), - [sym__line_ending] = ACTIONS(2353), - [sym__soft_line_ending] = ACTIONS(2353), - [sym__block_close] = ACTIONS(2353), - [sym__block_quote_start] = ACTIONS(2353), - [sym_atx_h1_marker] = ACTIONS(2353), - [sym_atx_h2_marker] = ACTIONS(2353), - [sym_atx_h3_marker] = ACTIONS(2353), - [sym_atx_h4_marker] = ACTIONS(2353), - [sym_atx_h5_marker] = ACTIONS(2353), - [sym_atx_h6_marker] = ACTIONS(2353), - [sym__thematic_break] = ACTIONS(2353), - [sym__list_marker_minus] = ACTIONS(2353), - [sym__list_marker_plus] = ACTIONS(2353), - [sym__list_marker_star] = ACTIONS(2353), - [sym__list_marker_parenthesis] = ACTIONS(2353), - [sym__list_marker_dot] = ACTIONS(2353), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_example] = ACTIONS(2353), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2353), - [sym__fenced_code_block_start_backtick] = ACTIONS(2353), - [sym_minus_metadata] = ACTIONS(2353), - [sym__pipe_table_start] = ACTIONS(2353), - [sym__fenced_div_start] = ACTIONS(2353), - [sym__fenced_div_end] = ACTIONS(2353), - [sym_ref_id_specifier] = ACTIONS(2353), - [sym__code_span_start] = ACTIONS(2353), - [sym__html_comment] = ACTIONS(2353), - [sym__autolink] = ACTIONS(2353), - [sym__highlight_span_start] = ACTIONS(2353), - [sym__insert_span_start] = ACTIONS(2353), - [sym__delete_span_start] = ACTIONS(2353), - [sym__edit_comment_span_start] = ACTIONS(2353), - [sym__single_quote_span_open] = ACTIONS(2353), - [sym__double_quote_span_open] = ACTIONS(2353), - [sym__shortcode_open_escaped] = ACTIONS(2353), - [sym__shortcode_open] = ACTIONS(2353), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2353), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2353), - [sym__cite_author_in_text] = ACTIONS(2353), - [sym__cite_suppress_author] = ACTIONS(2353), - [sym__strikeout_open] = ACTIONS(2353), - [sym__subscript_open] = ACTIONS(2353), - [sym__superscript_open] = ACTIONS(2353), - [sym__inline_note_start_token] = ACTIONS(2353), - [sym__strong_emphasis_open_star] = ACTIONS(2353), - [sym__strong_emphasis_open_underscore] = ACTIONS(2353), - [sym__emphasis_open_star] = ACTIONS(2353), - [sym__emphasis_open_underscore] = ACTIONS(2353), - [sym_inline_note_reference] = ACTIONS(2353), - [sym_html_element] = ACTIONS(2353), - [sym__pandoc_lt_str] = ACTIONS(2353), - [sym__pandoc_line_break] = ACTIONS(2353), - [sym_grid_table] = ACTIONS(2353), - [sym__caption_start] = ACTIONS(2353), - }, - [STATE(203)] = { - [sym_entity_reference] = ACTIONS(2357), - [sym_numeric_character_reference] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_BANG_LBRACK] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [aux_sym_pandoc_str_token1] = ACTIONS(2359), - [anon_sym_PIPE] = ACTIONS(2357), - [sym__whitespace] = ACTIONS(2357), - [sym__line_ending] = ACTIONS(2357), - [sym__soft_line_ending] = ACTIONS(2357), - [sym__block_close] = ACTIONS(2357), - [sym__block_quote_start] = ACTIONS(2357), - [sym_atx_h1_marker] = ACTIONS(2357), - [sym_atx_h2_marker] = ACTIONS(2357), - [sym_atx_h3_marker] = ACTIONS(2357), - [sym_atx_h4_marker] = ACTIONS(2357), - [sym_atx_h5_marker] = ACTIONS(2357), - [sym_atx_h6_marker] = ACTIONS(2357), - [sym__thematic_break] = ACTIONS(2357), - [sym__list_marker_minus] = ACTIONS(2357), - [sym__list_marker_plus] = ACTIONS(2357), - [sym__list_marker_star] = ACTIONS(2357), - [sym__list_marker_parenthesis] = ACTIONS(2357), - [sym__list_marker_dot] = ACTIONS(2357), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_example] = ACTIONS(2357), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2357), - [sym__fenced_code_block_start_backtick] = ACTIONS(2357), - [sym_minus_metadata] = ACTIONS(2357), - [sym__pipe_table_start] = ACTIONS(2357), - [sym__fenced_div_start] = ACTIONS(2357), - [sym__fenced_div_end] = ACTIONS(2357), - [sym_ref_id_specifier] = ACTIONS(2357), - [sym__code_span_start] = ACTIONS(2357), - [sym__html_comment] = ACTIONS(2357), - [sym__autolink] = ACTIONS(2357), - [sym__highlight_span_start] = ACTIONS(2357), - [sym__insert_span_start] = ACTIONS(2357), - [sym__delete_span_start] = ACTIONS(2357), - [sym__edit_comment_span_start] = ACTIONS(2357), - [sym__single_quote_span_open] = ACTIONS(2357), - [sym__double_quote_span_open] = ACTIONS(2357), - [sym__shortcode_open_escaped] = ACTIONS(2357), - [sym__shortcode_open] = ACTIONS(2357), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2357), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2357), - [sym__cite_author_in_text] = ACTIONS(2357), - [sym__cite_suppress_author] = ACTIONS(2357), - [sym__strikeout_open] = ACTIONS(2357), - [sym__subscript_open] = ACTIONS(2357), - [sym__superscript_open] = ACTIONS(2357), - [sym__inline_note_start_token] = ACTIONS(2357), - [sym__strong_emphasis_open_star] = ACTIONS(2357), - [sym__strong_emphasis_open_underscore] = ACTIONS(2357), - [sym__emphasis_open_star] = ACTIONS(2357), - [sym__emphasis_open_underscore] = ACTIONS(2357), - [sym_inline_note_reference] = ACTIONS(2357), - [sym_html_element] = ACTIONS(2357), - [sym__pandoc_lt_str] = ACTIONS(2357), - [sym__pandoc_line_break] = ACTIONS(2357), - [sym_grid_table] = ACTIONS(2357), - [sym__caption_start] = ACTIONS(2357), - }, - [STATE(204)] = { - [ts_builtin_sym_end] = ACTIONS(2335), - [sym_entity_reference] = ACTIONS(2335), - [sym_numeric_character_reference] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_BANG_LBRACK] = ACTIONS(2335), - [anon_sym_DOLLAR] = ACTIONS(2337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [aux_sym_pandoc_str_token1] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2335), - [sym__whitespace] = ACTIONS(2335), - [sym__line_ending] = ACTIONS(2335), - [sym__soft_line_ending] = ACTIONS(2335), - [sym_block_continuation] = ACTIONS(2361), - [sym__block_quote_start] = ACTIONS(2335), - [sym_atx_h1_marker] = ACTIONS(2335), - [sym_atx_h2_marker] = ACTIONS(2335), - [sym_atx_h3_marker] = ACTIONS(2335), - [sym_atx_h4_marker] = ACTIONS(2335), - [sym_atx_h5_marker] = ACTIONS(2335), - [sym_atx_h6_marker] = ACTIONS(2335), - [sym__thematic_break] = ACTIONS(2335), - [sym__list_marker_minus] = ACTIONS(2335), - [sym__list_marker_plus] = ACTIONS(2335), - [sym__list_marker_star] = ACTIONS(2335), - [sym__list_marker_parenthesis] = ACTIONS(2335), - [sym__list_marker_dot] = ACTIONS(2335), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_example] = ACTIONS(2335), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2335), - [sym__fenced_code_block_start_backtick] = ACTIONS(2335), - [sym_minus_metadata] = ACTIONS(2335), - [sym__pipe_table_start] = ACTIONS(2335), - [sym__fenced_div_start] = ACTIONS(2335), - [sym_ref_id_specifier] = ACTIONS(2335), - [sym__code_span_start] = ACTIONS(2335), - [sym__html_comment] = ACTIONS(2335), - [sym__autolink] = ACTIONS(2335), - [sym__highlight_span_start] = ACTIONS(2335), - [sym__insert_span_start] = ACTIONS(2335), - [sym__delete_span_start] = ACTIONS(2335), - [sym__edit_comment_span_start] = ACTIONS(2335), - [sym__single_quote_span_open] = ACTIONS(2335), - [sym__double_quote_span_open] = ACTIONS(2335), - [sym__shortcode_open_escaped] = ACTIONS(2335), - [sym__shortcode_open] = ACTIONS(2335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2335), - [sym__cite_author_in_text] = ACTIONS(2335), - [sym__cite_suppress_author] = ACTIONS(2335), - [sym__strikeout_open] = ACTIONS(2335), - [sym__subscript_open] = ACTIONS(2335), - [sym__superscript_open] = ACTIONS(2335), - [sym__inline_note_start_token] = ACTIONS(2335), - [sym__strong_emphasis_open_star] = ACTIONS(2335), - [sym__strong_emphasis_open_underscore] = ACTIONS(2335), - [sym__emphasis_open_star] = ACTIONS(2335), - [sym__emphasis_open_underscore] = ACTIONS(2335), - [sym_inline_note_reference] = ACTIONS(2335), - [sym_html_element] = ACTIONS(2335), - [sym__pandoc_lt_str] = ACTIONS(2335), - [sym__pandoc_line_break] = ACTIONS(2335), - [sym_grid_table] = ACTIONS(2335), - [sym__caption_start] = ACTIONS(2335), - }, - [STATE(205)] = { - [ts_builtin_sym_end] = ACTIONS(2261), - [sym_entity_reference] = ACTIONS(2261), - [sym_numeric_character_reference] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2261), - [anon_sym_BANG_LBRACK] = ACTIONS(2261), - [anon_sym_DOLLAR] = ACTIONS(2263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2261), - [aux_sym_pandoc_str_token1] = ACTIONS(2263), - [anon_sym_PIPE] = ACTIONS(2261), - [sym__whitespace] = ACTIONS(2261), - [sym__line_ending] = ACTIONS(2261), - [sym__soft_line_ending] = ACTIONS(2261), - [sym_block_continuation] = ACTIONS(2363), - [sym__block_quote_start] = ACTIONS(2261), - [sym_atx_h1_marker] = ACTIONS(2261), - [sym_atx_h2_marker] = ACTIONS(2261), - [sym_atx_h3_marker] = ACTIONS(2261), - [sym_atx_h4_marker] = ACTIONS(2261), - [sym_atx_h5_marker] = ACTIONS(2261), - [sym_atx_h6_marker] = ACTIONS(2261), - [sym__thematic_break] = ACTIONS(2261), - [sym__list_marker_minus] = ACTIONS(2261), - [sym__list_marker_plus] = ACTIONS(2261), - [sym__list_marker_star] = ACTIONS(2261), - [sym__list_marker_parenthesis] = ACTIONS(2261), - [sym__list_marker_dot] = ACTIONS(2261), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_example] = ACTIONS(2261), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2261), - [sym__fenced_code_block_start_backtick] = ACTIONS(2261), - [sym_minus_metadata] = ACTIONS(2261), - [sym__pipe_table_start] = ACTIONS(2261), - [sym__fenced_div_start] = ACTIONS(2261), - [sym_ref_id_specifier] = ACTIONS(2261), - [sym__code_span_start] = ACTIONS(2261), - [sym__html_comment] = ACTIONS(2261), - [sym__autolink] = ACTIONS(2261), - [sym__highlight_span_start] = ACTIONS(2261), - [sym__insert_span_start] = ACTIONS(2261), - [sym__delete_span_start] = ACTIONS(2261), - [sym__edit_comment_span_start] = ACTIONS(2261), - [sym__single_quote_span_open] = ACTIONS(2261), - [sym__double_quote_span_open] = ACTIONS(2261), - [sym__shortcode_open_escaped] = ACTIONS(2261), - [sym__shortcode_open] = ACTIONS(2261), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2261), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2261), - [sym__cite_author_in_text] = ACTIONS(2261), - [sym__cite_suppress_author] = ACTIONS(2261), - [sym__strikeout_open] = ACTIONS(2261), - [sym__subscript_open] = ACTIONS(2261), - [sym__superscript_open] = ACTIONS(2261), - [sym__inline_note_start_token] = ACTIONS(2261), - [sym__strong_emphasis_open_star] = ACTIONS(2261), - [sym__strong_emphasis_open_underscore] = ACTIONS(2261), - [sym__emphasis_open_star] = ACTIONS(2261), - [sym__emphasis_open_underscore] = ACTIONS(2261), - [sym_inline_note_reference] = ACTIONS(2261), - [sym_html_element] = ACTIONS(2261), - [sym__pandoc_lt_str] = ACTIONS(2261), - [sym__pandoc_line_break] = ACTIONS(2261), - [sym_grid_table] = ACTIONS(2261), - [sym__caption_start] = ACTIONS(2261), - }, - [STATE(206)] = { - [sym_entity_reference] = ACTIONS(2249), - [sym_numeric_character_reference] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_BANG_LBRACK] = ACTIONS(2249), - [anon_sym_DOLLAR] = ACTIONS(2251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [aux_sym_pandoc_str_token1] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2249), - [sym__whitespace] = ACTIONS(2249), - [sym__line_ending] = ACTIONS(2249), - [sym__soft_line_ending] = ACTIONS(2249), - [sym__block_close] = ACTIONS(2249), + [sym_entity_reference] = ACTIONS(2361), + [sym_numeric_character_reference] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_BANG_LBRACK] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2361), + [aux_sym_pandoc_str_token1] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2361), + [sym__whitespace] = ACTIONS(2361), + [sym__line_ending] = ACTIONS(2361), + [sym__soft_line_ending] = ACTIONS(2361), + [sym__block_close] = ACTIONS(2361), [sym_block_continuation] = ACTIONS(2365), - [sym__block_quote_start] = ACTIONS(2249), - [sym_atx_h1_marker] = ACTIONS(2249), - [sym_atx_h2_marker] = ACTIONS(2249), - [sym_atx_h3_marker] = ACTIONS(2249), - [sym_atx_h4_marker] = ACTIONS(2249), - [sym_atx_h5_marker] = ACTIONS(2249), - [sym_atx_h6_marker] = ACTIONS(2249), - [sym__thematic_break] = ACTIONS(2249), - [sym__list_marker_minus] = ACTIONS(2249), - [sym__list_marker_plus] = ACTIONS(2249), - [sym__list_marker_star] = ACTIONS(2249), - [sym__list_marker_parenthesis] = ACTIONS(2249), - [sym__list_marker_dot] = ACTIONS(2249), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_example] = ACTIONS(2249), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2249), - [sym__fenced_code_block_start_backtick] = ACTIONS(2249), - [sym_minus_metadata] = ACTIONS(2249), - [sym__pipe_table_start] = ACTIONS(2249), - [sym__fenced_div_start] = ACTIONS(2249), - [sym_ref_id_specifier] = ACTIONS(2249), - [sym__code_span_start] = ACTIONS(2249), - [sym__html_comment] = ACTIONS(2249), - [sym__autolink] = ACTIONS(2249), - [sym__highlight_span_start] = ACTIONS(2249), - [sym__insert_span_start] = ACTIONS(2249), - [sym__delete_span_start] = ACTIONS(2249), - [sym__edit_comment_span_start] = ACTIONS(2249), - [sym__single_quote_span_open] = ACTIONS(2249), - [sym__double_quote_span_open] = ACTIONS(2249), - [sym__shortcode_open_escaped] = ACTIONS(2249), - [sym__shortcode_open] = ACTIONS(2249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2249), - [sym__cite_author_in_text] = ACTIONS(2249), - [sym__cite_suppress_author] = ACTIONS(2249), - [sym__strikeout_open] = ACTIONS(2249), - [sym__subscript_open] = ACTIONS(2249), - [sym__superscript_open] = ACTIONS(2249), - [sym__inline_note_start_token] = ACTIONS(2249), - [sym__strong_emphasis_open_star] = ACTIONS(2249), - [sym__strong_emphasis_open_underscore] = ACTIONS(2249), - [sym__emphasis_open_star] = ACTIONS(2249), - [sym__emphasis_open_underscore] = ACTIONS(2249), - [sym_inline_note_reference] = ACTIONS(2249), - [sym_html_element] = ACTIONS(2249), - [sym__pandoc_lt_str] = ACTIONS(2249), - [sym__pandoc_line_break] = ACTIONS(2249), - [sym_grid_table] = ACTIONS(2249), - [sym__caption_start] = ACTIONS(2249), - }, - [STATE(207)] = { - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_entity_reference] = ACTIONS(2267), - [sym_numeric_character_reference] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_BANG_LBRACK] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [aux_sym_pandoc_str_token1] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2267), - [sym__whitespace] = ACTIONS(2267), - [sym__line_ending] = ACTIONS(2267), - [sym__soft_line_ending] = ACTIONS(2267), - [sym_block_continuation] = ACTIONS(2367), - [sym__block_quote_start] = ACTIONS(2267), - [sym_atx_h1_marker] = ACTIONS(2267), - [sym_atx_h2_marker] = ACTIONS(2267), - [sym_atx_h3_marker] = ACTIONS(2267), - [sym_atx_h4_marker] = ACTIONS(2267), - [sym_atx_h5_marker] = ACTIONS(2267), - [sym_atx_h6_marker] = ACTIONS(2267), - [sym__thematic_break] = ACTIONS(2267), - [sym__list_marker_minus] = ACTIONS(2267), - [sym__list_marker_plus] = ACTIONS(2267), - [sym__list_marker_star] = ACTIONS(2267), - [sym__list_marker_parenthesis] = ACTIONS(2267), - [sym__list_marker_dot] = ACTIONS(2267), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_example] = ACTIONS(2267), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2267), - [sym__fenced_code_block_start_backtick] = ACTIONS(2267), - [sym_minus_metadata] = ACTIONS(2267), - [sym__pipe_table_start] = ACTIONS(2267), - [sym__fenced_div_start] = ACTIONS(2267), - [sym_ref_id_specifier] = ACTIONS(2267), - [sym__code_span_start] = ACTIONS(2267), - [sym__html_comment] = ACTIONS(2267), - [sym__autolink] = ACTIONS(2267), - [sym__highlight_span_start] = ACTIONS(2267), - [sym__insert_span_start] = ACTIONS(2267), - [sym__delete_span_start] = ACTIONS(2267), - [sym__edit_comment_span_start] = ACTIONS(2267), - [sym__single_quote_span_open] = ACTIONS(2267), - [sym__double_quote_span_open] = ACTIONS(2267), - [sym__shortcode_open_escaped] = ACTIONS(2267), - [sym__shortcode_open] = ACTIONS(2267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2267), - [sym__cite_author_in_text] = ACTIONS(2267), - [sym__cite_suppress_author] = ACTIONS(2267), - [sym__strikeout_open] = ACTIONS(2267), - [sym__subscript_open] = ACTIONS(2267), - [sym__superscript_open] = ACTIONS(2267), - [sym__inline_note_start_token] = ACTIONS(2267), - [sym__strong_emphasis_open_star] = ACTIONS(2267), - [sym__strong_emphasis_open_underscore] = ACTIONS(2267), - [sym__emphasis_open_star] = ACTIONS(2267), - [sym__emphasis_open_underscore] = ACTIONS(2267), - [sym_inline_note_reference] = ACTIONS(2267), - [sym_html_element] = ACTIONS(2267), - [sym__pandoc_lt_str] = ACTIONS(2267), - [sym__pandoc_line_break] = ACTIONS(2267), - [sym_grid_table] = ACTIONS(2267), - [sym__caption_start] = ACTIONS(2267), - }, - [STATE(208)] = { - [ts_builtin_sym_end] = ACTIONS(2273), - [sym_entity_reference] = ACTIONS(2273), - [sym_numeric_character_reference] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2273), - [anon_sym_BANG_LBRACK] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [aux_sym_pandoc_str_token1] = ACTIONS(2275), - [anon_sym_PIPE] = ACTIONS(2273), - [sym__whitespace] = ACTIONS(2273), - [sym__line_ending] = ACTIONS(2273), - [sym__soft_line_ending] = ACTIONS(2273), - [sym_block_continuation] = ACTIONS(2369), - [sym__block_quote_start] = ACTIONS(2273), - [sym_atx_h1_marker] = ACTIONS(2273), - [sym_atx_h2_marker] = ACTIONS(2273), - [sym_atx_h3_marker] = ACTIONS(2273), - [sym_atx_h4_marker] = ACTIONS(2273), - [sym_atx_h5_marker] = ACTIONS(2273), - [sym_atx_h6_marker] = ACTIONS(2273), - [sym__thematic_break] = ACTIONS(2273), - [sym__list_marker_minus] = ACTIONS(2273), - [sym__list_marker_plus] = ACTIONS(2273), - [sym__list_marker_star] = ACTIONS(2273), - [sym__list_marker_parenthesis] = ACTIONS(2273), - [sym__list_marker_dot] = ACTIONS(2273), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_example] = ACTIONS(2273), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2273), - [sym__fenced_code_block_start_backtick] = ACTIONS(2273), - [sym_minus_metadata] = ACTIONS(2273), - [sym__pipe_table_start] = ACTIONS(2273), - [sym__fenced_div_start] = ACTIONS(2273), - [sym_ref_id_specifier] = ACTIONS(2273), - [sym__code_span_start] = ACTIONS(2273), - [sym__html_comment] = ACTIONS(2273), - [sym__autolink] = ACTIONS(2273), - [sym__highlight_span_start] = ACTIONS(2273), - [sym__insert_span_start] = ACTIONS(2273), - [sym__delete_span_start] = ACTIONS(2273), - [sym__edit_comment_span_start] = ACTIONS(2273), - [sym__single_quote_span_open] = ACTIONS(2273), - [sym__double_quote_span_open] = ACTIONS(2273), - [sym__shortcode_open_escaped] = ACTIONS(2273), - [sym__shortcode_open] = ACTIONS(2273), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2273), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2273), - [sym__cite_author_in_text] = ACTIONS(2273), - [sym__cite_suppress_author] = ACTIONS(2273), - [sym__strikeout_open] = ACTIONS(2273), - [sym__subscript_open] = ACTIONS(2273), - [sym__superscript_open] = ACTIONS(2273), - [sym__inline_note_start_token] = ACTIONS(2273), - [sym__strong_emphasis_open_star] = ACTIONS(2273), - [sym__strong_emphasis_open_underscore] = ACTIONS(2273), - [sym__emphasis_open_star] = ACTIONS(2273), - [sym__emphasis_open_underscore] = ACTIONS(2273), - [sym_inline_note_reference] = ACTIONS(2273), - [sym_html_element] = ACTIONS(2273), - [sym__pandoc_lt_str] = ACTIONS(2273), - [sym__pandoc_line_break] = ACTIONS(2273), - [sym_grid_table] = ACTIONS(2273), - [sym__caption_start] = ACTIONS(2273), - }, - [STATE(209)] = { - [sym_entity_reference] = ACTIONS(2347), - [sym_numeric_character_reference] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_BANG_LBRACK] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [aux_sym_pandoc_str_token1] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2347), - [sym__whitespace] = ACTIONS(2347), - [sym__line_ending] = ACTIONS(2347), - [sym__soft_line_ending] = ACTIONS(2347), - [sym__block_close] = ACTIONS(2347), - [sym__block_quote_start] = ACTIONS(2347), - [sym_atx_h1_marker] = ACTIONS(2347), - [sym_atx_h2_marker] = ACTIONS(2347), - [sym_atx_h3_marker] = ACTIONS(2347), - [sym_atx_h4_marker] = ACTIONS(2347), - [sym_atx_h5_marker] = ACTIONS(2347), - [sym_atx_h6_marker] = ACTIONS(2347), - [sym__thematic_break] = ACTIONS(2347), - [sym__list_marker_minus] = ACTIONS(2347), - [sym__list_marker_plus] = ACTIONS(2347), - [sym__list_marker_star] = ACTIONS(2347), - [sym__list_marker_parenthesis] = ACTIONS(2347), - [sym__list_marker_dot] = ACTIONS(2347), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_example] = ACTIONS(2347), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2347), - [sym__fenced_code_block_start_backtick] = ACTIONS(2347), - [sym_minus_metadata] = ACTIONS(2347), - [sym__pipe_table_start] = ACTIONS(2347), - [sym__fenced_div_start] = ACTIONS(2347), - [sym__fenced_div_end] = ACTIONS(2347), - [sym_ref_id_specifier] = ACTIONS(2347), - [sym__code_span_start] = ACTIONS(2347), - [sym__html_comment] = ACTIONS(2347), - [sym__autolink] = ACTIONS(2347), - [sym__highlight_span_start] = ACTIONS(2347), - [sym__insert_span_start] = ACTIONS(2347), - [sym__delete_span_start] = ACTIONS(2347), - [sym__edit_comment_span_start] = ACTIONS(2347), - [sym__single_quote_span_open] = ACTIONS(2347), - [sym__double_quote_span_open] = ACTIONS(2347), - [sym__shortcode_open_escaped] = ACTIONS(2347), - [sym__shortcode_open] = ACTIONS(2347), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2347), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2347), - [sym__cite_author_in_text] = ACTIONS(2347), - [sym__cite_suppress_author] = ACTIONS(2347), - [sym__strikeout_open] = ACTIONS(2347), - [sym__subscript_open] = ACTIONS(2347), - [sym__superscript_open] = ACTIONS(2347), - [sym__inline_note_start_token] = ACTIONS(2347), - [sym__strong_emphasis_open_star] = ACTIONS(2347), - [sym__strong_emphasis_open_underscore] = ACTIONS(2347), - [sym__emphasis_open_star] = ACTIONS(2347), - [sym__emphasis_open_underscore] = ACTIONS(2347), - [sym_inline_note_reference] = ACTIONS(2347), - [sym_html_element] = ACTIONS(2347), - [sym__pandoc_lt_str] = ACTIONS(2347), - [sym__pandoc_line_break] = ACTIONS(2347), - [sym_grid_table] = ACTIONS(2347), - [sym__caption_start] = ACTIONS(2347), + [sym__block_quote_start] = ACTIONS(2361), + [sym_atx_h1_marker] = ACTIONS(2361), + [sym_atx_h2_marker] = ACTIONS(2361), + [sym_atx_h3_marker] = ACTIONS(2361), + [sym_atx_h4_marker] = ACTIONS(2361), + [sym_atx_h5_marker] = ACTIONS(2361), + [sym_atx_h6_marker] = ACTIONS(2361), + [sym__thematic_break] = ACTIONS(2361), + [sym__list_marker_minus] = ACTIONS(2361), + [sym__list_marker_plus] = ACTIONS(2361), + [sym__list_marker_star] = ACTIONS(2361), + [sym__list_marker_parenthesis] = ACTIONS(2361), + [sym__list_marker_dot] = ACTIONS(2361), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_example] = ACTIONS(2361), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2361), + [sym__fenced_code_block_start_backtick] = ACTIONS(2361), + [sym__minus_metadata_start] = ACTIONS(2361), + [sym__pipe_table_start] = ACTIONS(2361), + [sym__fenced_div_start] = ACTIONS(2361), + [sym__fenced_div_end] = ACTIONS(2361), + [sym_ref_id_specifier] = ACTIONS(2361), + [sym__code_span_start] = ACTIONS(2361), + [sym__html_comment] = ACTIONS(2361), + [sym__autolink] = ACTIONS(2361), + [sym__highlight_span_start] = ACTIONS(2361), + [sym__insert_span_start] = ACTIONS(2361), + [sym__delete_span_start] = ACTIONS(2361), + [sym__edit_comment_span_start] = ACTIONS(2361), + [sym__single_quote_span_open] = ACTIONS(2361), + [sym__double_quote_span_open] = ACTIONS(2361), + [sym__shortcode_open_escaped] = ACTIONS(2361), + [sym__shortcode_open] = ACTIONS(2361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2361), + [sym__cite_author_in_text] = ACTIONS(2361), + [sym__cite_suppress_author] = ACTIONS(2361), + [sym__strikeout_open] = ACTIONS(2361), + [sym__subscript_open] = ACTIONS(2361), + [sym__superscript_open] = ACTIONS(2361), + [sym__inline_note_start_token] = ACTIONS(2361), + [sym__strong_emphasis_open_star] = ACTIONS(2361), + [sym__strong_emphasis_open_underscore] = ACTIONS(2361), + [sym__emphasis_open_star] = ACTIONS(2361), + [sym__emphasis_open_underscore] = ACTIONS(2361), + [sym_inline_note_reference] = ACTIONS(2361), + [sym_html_element] = ACTIONS(2361), + [sym__pandoc_lt_str] = ACTIONS(2361), + [sym__pandoc_line_break] = ACTIONS(2361), + [sym_grid_table] = ACTIONS(2361), + [sym__caption_start] = ACTIONS(2361), }, - [STATE(210)] = { - [sym_entity_reference] = ACTIONS(2255), - [sym_numeric_character_reference] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_BANG_LBRACK] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2257), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [aux_sym_pandoc_str_token1] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2255), - [sym__whitespace] = ACTIONS(2255), - [sym__line_ending] = ACTIONS(2255), - [sym__soft_line_ending] = ACTIONS(2255), - [sym__block_close] = ACTIONS(2255), + [STATE(194)] = { + [sym_entity_reference] = ACTIONS(2367), + [sym_numeric_character_reference] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2367), + [anon_sym_BANG_LBRACK] = ACTIONS(2367), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [aux_sym_pandoc_str_token1] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2367), + [sym__whitespace] = ACTIONS(2367), + [sym__line_ending] = ACTIONS(2367), + [sym__soft_line_ending] = ACTIONS(2367), + [sym__block_close] = ACTIONS(2367), [sym_block_continuation] = ACTIONS(2371), - [sym__block_quote_start] = ACTIONS(2255), - [sym_atx_h1_marker] = ACTIONS(2255), - [sym_atx_h2_marker] = ACTIONS(2255), - [sym_atx_h3_marker] = ACTIONS(2255), - [sym_atx_h4_marker] = ACTIONS(2255), - [sym_atx_h5_marker] = ACTIONS(2255), - [sym_atx_h6_marker] = ACTIONS(2255), - [sym__thematic_break] = ACTIONS(2255), - [sym__list_marker_minus] = ACTIONS(2255), - [sym__list_marker_plus] = ACTIONS(2255), - [sym__list_marker_star] = ACTIONS(2255), - [sym__list_marker_parenthesis] = ACTIONS(2255), - [sym__list_marker_dot] = ACTIONS(2255), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_example] = ACTIONS(2255), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2255), - [sym__fenced_code_block_start_backtick] = ACTIONS(2255), - [sym_minus_metadata] = ACTIONS(2255), - [sym__pipe_table_start] = ACTIONS(2255), - [sym__fenced_div_start] = ACTIONS(2255), - [sym_ref_id_specifier] = ACTIONS(2255), - [sym__code_span_start] = ACTIONS(2255), - [sym__html_comment] = ACTIONS(2255), - [sym__autolink] = ACTIONS(2255), - [sym__highlight_span_start] = ACTIONS(2255), - [sym__insert_span_start] = ACTIONS(2255), - [sym__delete_span_start] = ACTIONS(2255), - [sym__edit_comment_span_start] = ACTIONS(2255), - [sym__single_quote_span_open] = ACTIONS(2255), - [sym__double_quote_span_open] = ACTIONS(2255), - [sym__shortcode_open_escaped] = ACTIONS(2255), - [sym__shortcode_open] = ACTIONS(2255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2255), - [sym__cite_author_in_text] = ACTIONS(2255), - [sym__cite_suppress_author] = ACTIONS(2255), - [sym__strikeout_open] = ACTIONS(2255), - [sym__subscript_open] = ACTIONS(2255), - [sym__superscript_open] = ACTIONS(2255), - [sym__inline_note_start_token] = ACTIONS(2255), - [sym__strong_emphasis_open_star] = ACTIONS(2255), - [sym__strong_emphasis_open_underscore] = ACTIONS(2255), - [sym__emphasis_open_star] = ACTIONS(2255), - [sym__emphasis_open_underscore] = ACTIONS(2255), - [sym_inline_note_reference] = ACTIONS(2255), - [sym_html_element] = ACTIONS(2255), - [sym__pandoc_lt_str] = ACTIONS(2255), - [sym__pandoc_line_break] = ACTIONS(2255), - [sym_grid_table] = ACTIONS(2255), - [sym__caption_start] = ACTIONS(2255), - }, - [STATE(211)] = { - [sym_entity_reference] = ACTIONS(2225), - [sym_numeric_character_reference] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_BANG_LBRACK] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [aux_sym_pandoc_str_token1] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2225), - [sym__whitespace] = ACTIONS(2225), - [sym__line_ending] = ACTIONS(2225), - [sym__soft_line_ending] = ACTIONS(2225), - [sym__block_close] = ACTIONS(2225), - [sym__block_quote_start] = ACTIONS(2225), - [sym_atx_h1_marker] = ACTIONS(2225), - [sym_atx_h2_marker] = ACTIONS(2225), - [sym_atx_h3_marker] = ACTIONS(2225), - [sym_atx_h4_marker] = ACTIONS(2225), - [sym_atx_h5_marker] = ACTIONS(2225), - [sym_atx_h6_marker] = ACTIONS(2225), - [sym__thematic_break] = ACTIONS(2225), - [sym__list_marker_minus] = ACTIONS(2225), - [sym__list_marker_plus] = ACTIONS(2225), - [sym__list_marker_star] = ACTIONS(2225), - [sym__list_marker_parenthesis] = ACTIONS(2225), - [sym__list_marker_dot] = ACTIONS(2225), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_example] = ACTIONS(2225), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2225), - [sym__fenced_code_block_start_backtick] = ACTIONS(2225), - [sym_minus_metadata] = ACTIONS(2225), - [sym__pipe_table_start] = ACTIONS(2225), - [sym__fenced_div_start] = ACTIONS(2225), - [sym__fenced_div_end] = ACTIONS(2225), - [sym_ref_id_specifier] = ACTIONS(2225), - [sym__code_span_start] = ACTIONS(2225), - [sym__html_comment] = ACTIONS(2225), - [sym__autolink] = ACTIONS(2225), - [sym__highlight_span_start] = ACTIONS(2225), - [sym__insert_span_start] = ACTIONS(2225), - [sym__delete_span_start] = ACTIONS(2225), - [sym__edit_comment_span_start] = ACTIONS(2225), - [sym__single_quote_span_open] = ACTIONS(2225), - [sym__double_quote_span_open] = ACTIONS(2225), - [sym__shortcode_open_escaped] = ACTIONS(2225), - [sym__shortcode_open] = ACTIONS(2225), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2225), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2225), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2225), - [sym__strikeout_open] = ACTIONS(2225), - [sym__subscript_open] = ACTIONS(2225), - [sym__superscript_open] = ACTIONS(2225), - [sym__inline_note_start_token] = ACTIONS(2225), - [sym__strong_emphasis_open_star] = ACTIONS(2225), - [sym__strong_emphasis_open_underscore] = ACTIONS(2225), - [sym__emphasis_open_star] = ACTIONS(2225), - [sym__emphasis_open_underscore] = ACTIONS(2225), - [sym_inline_note_reference] = ACTIONS(2225), - [sym_html_element] = ACTIONS(2225), - [sym__pandoc_lt_str] = ACTIONS(2225), - [sym__pandoc_line_break] = ACTIONS(2225), - [sym_grid_table] = ACTIONS(2225), - [sym__caption_start] = ACTIONS(2225), - }, - [STATE(212)] = { - [sym_entity_reference] = ACTIONS(2261), - [sym_numeric_character_reference] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2261), - [anon_sym_BANG_LBRACK] = ACTIONS(2261), - [anon_sym_DOLLAR] = ACTIONS(2263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2261), - [aux_sym_pandoc_str_token1] = ACTIONS(2263), - [anon_sym_PIPE] = ACTIONS(2261), - [sym__whitespace] = ACTIONS(2261), - [sym__line_ending] = ACTIONS(2261), - [sym__soft_line_ending] = ACTIONS(2261), - [sym__block_close] = ACTIONS(2261), - [sym_block_continuation] = ACTIONS(2373), - [sym__block_quote_start] = ACTIONS(2261), - [sym_atx_h1_marker] = ACTIONS(2261), - [sym_atx_h2_marker] = ACTIONS(2261), - [sym_atx_h3_marker] = ACTIONS(2261), - [sym_atx_h4_marker] = ACTIONS(2261), - [sym_atx_h5_marker] = ACTIONS(2261), - [sym_atx_h6_marker] = ACTIONS(2261), - [sym__thematic_break] = ACTIONS(2261), - [sym__list_marker_minus] = ACTIONS(2261), - [sym__list_marker_plus] = ACTIONS(2261), - [sym__list_marker_star] = ACTIONS(2261), - [sym__list_marker_parenthesis] = ACTIONS(2261), - [sym__list_marker_dot] = ACTIONS(2261), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_example] = ACTIONS(2261), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2261), - [sym__fenced_code_block_start_backtick] = ACTIONS(2261), - [sym_minus_metadata] = ACTIONS(2261), - [sym__pipe_table_start] = ACTIONS(2261), - [sym__fenced_div_start] = ACTIONS(2261), - [sym_ref_id_specifier] = ACTIONS(2261), - [sym__code_span_start] = ACTIONS(2261), - [sym__html_comment] = ACTIONS(2261), - [sym__autolink] = ACTIONS(2261), - [sym__highlight_span_start] = ACTIONS(2261), - [sym__insert_span_start] = ACTIONS(2261), - [sym__delete_span_start] = ACTIONS(2261), - [sym__edit_comment_span_start] = ACTIONS(2261), - [sym__single_quote_span_open] = ACTIONS(2261), - [sym__double_quote_span_open] = ACTIONS(2261), - [sym__shortcode_open_escaped] = ACTIONS(2261), - [sym__shortcode_open] = ACTIONS(2261), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2261), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2261), - [sym__cite_author_in_text] = ACTIONS(2261), - [sym__cite_suppress_author] = ACTIONS(2261), - [sym__strikeout_open] = ACTIONS(2261), - [sym__subscript_open] = ACTIONS(2261), - [sym__superscript_open] = ACTIONS(2261), - [sym__inline_note_start_token] = ACTIONS(2261), - [sym__strong_emphasis_open_star] = ACTIONS(2261), - [sym__strong_emphasis_open_underscore] = ACTIONS(2261), - [sym__emphasis_open_star] = ACTIONS(2261), - [sym__emphasis_open_underscore] = ACTIONS(2261), - [sym_inline_note_reference] = ACTIONS(2261), - [sym_html_element] = ACTIONS(2261), - [sym__pandoc_lt_str] = ACTIONS(2261), - [sym__pandoc_line_break] = ACTIONS(2261), - [sym_grid_table] = ACTIONS(2261), - [sym__caption_start] = ACTIONS(2261), + [sym__block_quote_start] = ACTIONS(2367), + [sym_atx_h1_marker] = ACTIONS(2367), + [sym_atx_h2_marker] = ACTIONS(2367), + [sym_atx_h3_marker] = ACTIONS(2367), + [sym_atx_h4_marker] = ACTIONS(2367), + [sym_atx_h5_marker] = ACTIONS(2367), + [sym_atx_h6_marker] = ACTIONS(2367), + [sym__thematic_break] = ACTIONS(2367), + [sym__list_marker_minus] = ACTIONS(2367), + [sym__list_marker_plus] = ACTIONS(2367), + [sym__list_marker_star] = ACTIONS(2367), + [sym__list_marker_parenthesis] = ACTIONS(2367), + [sym__list_marker_dot] = ACTIONS(2367), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_example] = ACTIONS(2367), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2367), + [sym__fenced_code_block_start_backtick] = ACTIONS(2367), + [sym__minus_metadata_start] = ACTIONS(2367), + [sym__pipe_table_start] = ACTIONS(2367), + [sym__fenced_div_start] = ACTIONS(2367), + [sym__fenced_div_end] = ACTIONS(2367), + [sym_ref_id_specifier] = ACTIONS(2367), + [sym__code_span_start] = ACTIONS(2367), + [sym__html_comment] = ACTIONS(2367), + [sym__autolink] = ACTIONS(2367), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2367), + [sym__delete_span_start] = ACTIONS(2367), + [sym__edit_comment_span_start] = ACTIONS(2367), + [sym__single_quote_span_open] = ACTIONS(2367), + [sym__double_quote_span_open] = ACTIONS(2367), + [sym__shortcode_open_escaped] = ACTIONS(2367), + [sym__shortcode_open] = ACTIONS(2367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2367), + [sym__cite_author_in_text] = ACTIONS(2367), + [sym__cite_suppress_author] = ACTIONS(2367), + [sym__strikeout_open] = ACTIONS(2367), + [sym__subscript_open] = ACTIONS(2367), + [sym__superscript_open] = ACTIONS(2367), + [sym__inline_note_start_token] = ACTIONS(2367), + [sym__strong_emphasis_open_star] = ACTIONS(2367), + [sym__strong_emphasis_open_underscore] = ACTIONS(2367), + [sym__emphasis_open_star] = ACTIONS(2367), + [sym__emphasis_open_underscore] = ACTIONS(2367), + [sym_inline_note_reference] = ACTIONS(2367), + [sym_html_element] = ACTIONS(2367), + [sym__pandoc_lt_str] = ACTIONS(2367), + [sym__pandoc_line_break] = ACTIONS(2367), + [sym_grid_table] = ACTIONS(2367), + [sym__caption_start] = ACTIONS(2367), }, - [STATE(213)] = { - [sym_entity_reference] = ACTIONS(2231), - [sym_numeric_character_reference] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_BANG_LBRACK] = ACTIONS(2231), - [anon_sym_DOLLAR] = ACTIONS(2233), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [aux_sym_pandoc_str_token1] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2231), - [sym__whitespace] = ACTIONS(2231), - [sym__line_ending] = ACTIONS(2231), - [sym__soft_line_ending] = ACTIONS(2231), - [sym__block_close] = ACTIONS(2231), - [sym__block_quote_start] = ACTIONS(2231), - [sym_atx_h1_marker] = ACTIONS(2231), - [sym_atx_h2_marker] = ACTIONS(2231), - [sym_atx_h3_marker] = ACTIONS(2231), - [sym_atx_h4_marker] = ACTIONS(2231), - [sym_atx_h5_marker] = ACTIONS(2231), - [sym_atx_h6_marker] = ACTIONS(2231), - [sym__thematic_break] = ACTIONS(2231), - [sym__list_marker_minus] = ACTIONS(2231), - [sym__list_marker_plus] = ACTIONS(2231), - [sym__list_marker_star] = ACTIONS(2231), - [sym__list_marker_parenthesis] = ACTIONS(2231), - [sym__list_marker_dot] = ACTIONS(2231), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_example] = ACTIONS(2231), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2231), - [sym__fenced_code_block_start_backtick] = ACTIONS(2231), - [sym_minus_metadata] = ACTIONS(2231), - [sym__pipe_table_start] = ACTIONS(2231), - [sym__fenced_div_start] = ACTIONS(2231), - [sym__fenced_div_end] = ACTIONS(2231), - [sym_ref_id_specifier] = ACTIONS(2231), - [sym__code_span_start] = ACTIONS(2231), - [sym__html_comment] = ACTIONS(2231), - [sym__autolink] = ACTIONS(2231), - [sym__highlight_span_start] = ACTIONS(2231), - [sym__insert_span_start] = ACTIONS(2231), - [sym__delete_span_start] = ACTIONS(2231), - [sym__edit_comment_span_start] = ACTIONS(2231), - [sym__single_quote_span_open] = ACTIONS(2231), - [sym__double_quote_span_open] = ACTIONS(2231), - [sym__shortcode_open_escaped] = ACTIONS(2231), - [sym__shortcode_open] = ACTIONS(2231), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2231), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2231), - [sym__cite_author_in_text] = ACTIONS(2231), - [sym__cite_suppress_author] = ACTIONS(2231), - [sym__strikeout_open] = ACTIONS(2231), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2231), - [sym__inline_note_start_token] = ACTIONS(2231), - [sym__strong_emphasis_open_star] = ACTIONS(2231), - [sym__strong_emphasis_open_underscore] = ACTIONS(2231), - [sym__emphasis_open_star] = ACTIONS(2231), - [sym__emphasis_open_underscore] = ACTIONS(2231), - [sym_inline_note_reference] = ACTIONS(2231), - [sym_html_element] = ACTIONS(2231), - [sym__pandoc_lt_str] = ACTIONS(2231), - [sym__pandoc_line_break] = ACTIONS(2231), - [sym_grid_table] = ACTIONS(2231), - [sym__caption_start] = ACTIONS(2231), - }, - [STATE(214)] = { - [sym_entity_reference] = ACTIONS(2267), - [sym_numeric_character_reference] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_BANG_LBRACK] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [aux_sym_pandoc_str_token1] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2267), - [sym__whitespace] = ACTIONS(2267), - [sym__line_ending] = ACTIONS(2267), - [sym__soft_line_ending] = ACTIONS(2267), - [sym__block_close] = ACTIONS(2267), - [sym_block_continuation] = ACTIONS(2375), - [sym__block_quote_start] = ACTIONS(2267), - [sym_atx_h1_marker] = ACTIONS(2267), - [sym_atx_h2_marker] = ACTIONS(2267), - [sym_atx_h3_marker] = ACTIONS(2267), - [sym_atx_h4_marker] = ACTIONS(2267), - [sym_atx_h5_marker] = ACTIONS(2267), - [sym_atx_h6_marker] = ACTIONS(2267), - [sym__thematic_break] = ACTIONS(2267), - [sym__list_marker_minus] = ACTIONS(2267), - [sym__list_marker_plus] = ACTIONS(2267), - [sym__list_marker_star] = ACTIONS(2267), - [sym__list_marker_parenthesis] = ACTIONS(2267), - [sym__list_marker_dot] = ACTIONS(2267), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_example] = ACTIONS(2267), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2267), - [sym__fenced_code_block_start_backtick] = ACTIONS(2267), - [sym_minus_metadata] = ACTIONS(2267), - [sym__pipe_table_start] = ACTIONS(2267), - [sym__fenced_div_start] = ACTIONS(2267), - [sym_ref_id_specifier] = ACTIONS(2267), - [sym__code_span_start] = ACTIONS(2267), - [sym__html_comment] = ACTIONS(2267), - [sym__autolink] = ACTIONS(2267), - [sym__highlight_span_start] = ACTIONS(2267), - [sym__insert_span_start] = ACTIONS(2267), - [sym__delete_span_start] = ACTIONS(2267), - [sym__edit_comment_span_start] = ACTIONS(2267), - [sym__single_quote_span_open] = ACTIONS(2267), - [sym__double_quote_span_open] = ACTIONS(2267), - [sym__shortcode_open_escaped] = ACTIONS(2267), - [sym__shortcode_open] = ACTIONS(2267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2267), - [sym__cite_author_in_text] = ACTIONS(2267), - [sym__cite_suppress_author] = ACTIONS(2267), - [sym__strikeout_open] = ACTIONS(2267), - [sym__subscript_open] = ACTIONS(2267), - [sym__superscript_open] = ACTIONS(2267), - [sym__inline_note_start_token] = ACTIONS(2267), - [sym__strong_emphasis_open_star] = ACTIONS(2267), - [sym__strong_emphasis_open_underscore] = ACTIONS(2267), - [sym__emphasis_open_star] = ACTIONS(2267), - [sym__emphasis_open_underscore] = ACTIONS(2267), - [sym_inline_note_reference] = ACTIONS(2267), - [sym_html_element] = ACTIONS(2267), - [sym__pandoc_lt_str] = ACTIONS(2267), - [sym__pandoc_line_break] = ACTIONS(2267), - [sym_grid_table] = ACTIONS(2267), - [sym__caption_start] = ACTIONS(2267), - }, - [STATE(215)] = { - [sym_entity_reference] = ACTIONS(2237), - [sym_numeric_character_reference] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_BANG_LBRACK] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [aux_sym_pandoc_str_token1] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2237), - [sym__whitespace] = ACTIONS(2237), - [sym__line_ending] = ACTIONS(2237), - [sym__soft_line_ending] = ACTIONS(2237), - [sym__block_close] = ACTIONS(2237), - [sym__block_quote_start] = ACTIONS(2237), - [sym_atx_h1_marker] = ACTIONS(2237), - [sym_atx_h2_marker] = ACTIONS(2237), - [sym_atx_h3_marker] = ACTIONS(2237), - [sym_atx_h4_marker] = ACTIONS(2237), - [sym_atx_h5_marker] = ACTIONS(2237), - [sym_atx_h6_marker] = ACTIONS(2237), - [sym__thematic_break] = ACTIONS(2237), - [sym__list_marker_minus] = ACTIONS(2237), - [sym__list_marker_plus] = ACTIONS(2237), - [sym__list_marker_star] = ACTIONS(2237), - [sym__list_marker_parenthesis] = ACTIONS(2237), - [sym__list_marker_dot] = ACTIONS(2237), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_example] = ACTIONS(2237), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2237), - [sym__fenced_code_block_start_backtick] = ACTIONS(2237), - [sym_minus_metadata] = ACTIONS(2237), - [sym__pipe_table_start] = ACTIONS(2237), - [sym__fenced_div_start] = ACTIONS(2237), - [sym__fenced_div_end] = ACTIONS(2237), - [sym_ref_id_specifier] = ACTIONS(2237), - [sym__code_span_start] = ACTIONS(2237), - [sym__html_comment] = ACTIONS(2237), - [sym__autolink] = ACTIONS(2237), - [sym__highlight_span_start] = ACTIONS(2237), - [sym__insert_span_start] = ACTIONS(2237), - [sym__delete_span_start] = ACTIONS(2237), - [sym__edit_comment_span_start] = ACTIONS(2237), - [sym__single_quote_span_open] = ACTIONS(2237), - [sym__double_quote_span_open] = ACTIONS(2237), - [sym__shortcode_open_escaped] = ACTIONS(2237), - [sym__shortcode_open] = ACTIONS(2237), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2237), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), - [sym__cite_author_in_text] = ACTIONS(2237), - [sym__cite_suppress_author] = ACTIONS(2237), - [sym__strikeout_open] = ACTIONS(2237), - [sym__subscript_open] = ACTIONS(2237), - [sym__superscript_open] = ACTIONS(2237), - [sym__inline_note_start_token] = ACTIONS(2237), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2237), - [sym__emphasis_open_star] = ACTIONS(2237), - [sym__emphasis_open_underscore] = ACTIONS(2237), - [sym_inline_note_reference] = ACTIONS(2237), - [sym_html_element] = ACTIONS(2237), - [sym__pandoc_lt_str] = ACTIONS(2237), - [sym__pandoc_line_break] = ACTIONS(2237), - [sym_grid_table] = ACTIONS(2237), - [sym__caption_start] = ACTIONS(2237), - }, - [STATE(216)] = { - [sym_entity_reference] = ACTIONS(2273), - [sym_numeric_character_reference] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2273), - [anon_sym_BANG_LBRACK] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [aux_sym_pandoc_str_token1] = ACTIONS(2275), - [anon_sym_PIPE] = ACTIONS(2273), - [sym__whitespace] = ACTIONS(2273), - [sym__line_ending] = ACTIONS(2273), - [sym__soft_line_ending] = ACTIONS(2273), - [sym__block_close] = ACTIONS(2273), + [STATE(195)] = { + [sym_entity_reference] = ACTIONS(2373), + [sym_numeric_character_reference] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_BANG_LBRACK] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [aux_sym_pandoc_str_token1] = ACTIONS(2375), + [anon_sym_PIPE] = ACTIONS(2373), + [sym__whitespace] = ACTIONS(2373), + [sym__line_ending] = ACTIONS(2373), + [sym__soft_line_ending] = ACTIONS(2373), + [sym__block_close] = ACTIONS(2373), [sym_block_continuation] = ACTIONS(2377), - [sym__block_quote_start] = ACTIONS(2273), - [sym_atx_h1_marker] = ACTIONS(2273), - [sym_atx_h2_marker] = ACTIONS(2273), - [sym_atx_h3_marker] = ACTIONS(2273), - [sym_atx_h4_marker] = ACTIONS(2273), - [sym_atx_h5_marker] = ACTIONS(2273), - [sym_atx_h6_marker] = ACTIONS(2273), - [sym__thematic_break] = ACTIONS(2273), - [sym__list_marker_minus] = ACTIONS(2273), - [sym__list_marker_plus] = ACTIONS(2273), - [sym__list_marker_star] = ACTIONS(2273), - [sym__list_marker_parenthesis] = ACTIONS(2273), - [sym__list_marker_dot] = ACTIONS(2273), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_example] = ACTIONS(2273), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2273), - [sym__fenced_code_block_start_backtick] = ACTIONS(2273), - [sym_minus_metadata] = ACTIONS(2273), - [sym__pipe_table_start] = ACTIONS(2273), - [sym__fenced_div_start] = ACTIONS(2273), - [sym_ref_id_specifier] = ACTIONS(2273), - [sym__code_span_start] = ACTIONS(2273), - [sym__html_comment] = ACTIONS(2273), - [sym__autolink] = ACTIONS(2273), - [sym__highlight_span_start] = ACTIONS(2273), - [sym__insert_span_start] = ACTIONS(2273), - [sym__delete_span_start] = ACTIONS(2273), - [sym__edit_comment_span_start] = ACTIONS(2273), - [sym__single_quote_span_open] = ACTIONS(2273), - [sym__double_quote_span_open] = ACTIONS(2273), - [sym__shortcode_open_escaped] = ACTIONS(2273), - [sym__shortcode_open] = ACTIONS(2273), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2273), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2273), - [sym__cite_author_in_text] = ACTIONS(2273), - [sym__cite_suppress_author] = ACTIONS(2273), - [sym__strikeout_open] = ACTIONS(2273), - [sym__subscript_open] = ACTIONS(2273), - [sym__superscript_open] = ACTIONS(2273), - [sym__inline_note_start_token] = ACTIONS(2273), - [sym__strong_emphasis_open_star] = ACTIONS(2273), - [sym__strong_emphasis_open_underscore] = ACTIONS(2273), - [sym__emphasis_open_star] = ACTIONS(2273), - [sym__emphasis_open_underscore] = ACTIONS(2273), - [sym_inline_note_reference] = ACTIONS(2273), - [sym_html_element] = ACTIONS(2273), - [sym__pandoc_lt_str] = ACTIONS(2273), - [sym__pandoc_line_break] = ACTIONS(2273), - [sym_grid_table] = ACTIONS(2273), - [sym__caption_start] = ACTIONS(2273), - }, - [STATE(217)] = { - [sym_entity_reference] = ACTIONS(2243), - [sym_numeric_character_reference] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_BANG_LBRACK] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [aux_sym_pandoc_str_token1] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2243), - [sym__whitespace] = ACTIONS(2243), - [sym__line_ending] = ACTIONS(2243), - [sym__soft_line_ending] = ACTIONS(2243), - [sym__block_close] = ACTIONS(2243), - [sym__block_quote_start] = ACTIONS(2243), - [sym_atx_h1_marker] = ACTIONS(2243), - [sym_atx_h2_marker] = ACTIONS(2243), - [sym_atx_h3_marker] = ACTIONS(2243), - [sym_atx_h4_marker] = ACTIONS(2243), - [sym_atx_h5_marker] = ACTIONS(2243), - [sym_atx_h6_marker] = ACTIONS(2243), - [sym__thematic_break] = ACTIONS(2243), - [sym__list_marker_minus] = ACTIONS(2243), - [sym__list_marker_plus] = ACTIONS(2243), - [sym__list_marker_star] = ACTIONS(2243), - [sym__list_marker_parenthesis] = ACTIONS(2243), - [sym__list_marker_dot] = ACTIONS(2243), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_example] = ACTIONS(2243), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2243), - [sym__fenced_code_block_start_backtick] = ACTIONS(2243), - [sym_minus_metadata] = ACTIONS(2243), - [sym__pipe_table_start] = ACTIONS(2243), - [sym__fenced_div_start] = ACTIONS(2243), - [sym__fenced_div_end] = ACTIONS(2243), - [sym_ref_id_specifier] = ACTIONS(2243), - [sym__code_span_start] = ACTIONS(2243), - [sym__html_comment] = ACTIONS(2243), - [sym__autolink] = ACTIONS(2243), - [sym__highlight_span_start] = ACTIONS(2243), - [sym__insert_span_start] = ACTIONS(2243), - [sym__delete_span_start] = ACTIONS(2243), - [sym__edit_comment_span_start] = ACTIONS(2243), - [sym__single_quote_span_open] = ACTIONS(2243), - [sym__double_quote_span_open] = ACTIONS(2243), - [sym__shortcode_open_escaped] = ACTIONS(2243), - [sym__shortcode_open] = ACTIONS(2243), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2243), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2243), - [sym__cite_author_in_text] = ACTIONS(2243), - [sym__cite_suppress_author] = ACTIONS(2243), - [sym__strikeout_open] = ACTIONS(2243), - [sym__subscript_open] = ACTIONS(2243), - [sym__superscript_open] = ACTIONS(2243), - [sym__inline_note_start_token] = ACTIONS(2243), - [sym__strong_emphasis_open_star] = ACTIONS(2243), - [sym__strong_emphasis_open_underscore] = ACTIONS(2243), - [sym__emphasis_open_star] = ACTIONS(2243), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2243), - [sym_html_element] = ACTIONS(2243), - [sym__pandoc_lt_str] = ACTIONS(2243), - [sym__pandoc_line_break] = ACTIONS(2243), - [sym_grid_table] = ACTIONS(2243), - [sym__caption_start] = ACTIONS(2243), + [sym__block_quote_start] = ACTIONS(2373), + [sym_atx_h1_marker] = ACTIONS(2373), + [sym_atx_h2_marker] = ACTIONS(2373), + [sym_atx_h3_marker] = ACTIONS(2373), + [sym_atx_h4_marker] = ACTIONS(2373), + [sym_atx_h5_marker] = ACTIONS(2373), + [sym_atx_h6_marker] = ACTIONS(2373), + [sym__thematic_break] = ACTIONS(2373), + [sym__list_marker_minus] = ACTIONS(2373), + [sym__list_marker_plus] = ACTIONS(2373), + [sym__list_marker_star] = ACTIONS(2373), + [sym__list_marker_parenthesis] = ACTIONS(2373), + [sym__list_marker_dot] = ACTIONS(2373), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_example] = ACTIONS(2373), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2373), + [sym__fenced_code_block_start_backtick] = ACTIONS(2373), + [sym__minus_metadata_start] = ACTIONS(2373), + [sym__pipe_table_start] = ACTIONS(2373), + [sym__fenced_div_start] = ACTIONS(2373), + [sym__fenced_div_end] = ACTIONS(2373), + [sym_ref_id_specifier] = ACTIONS(2373), + [sym__code_span_start] = ACTIONS(2373), + [sym__html_comment] = ACTIONS(2373), + [sym__autolink] = ACTIONS(2373), + [sym__highlight_span_start] = ACTIONS(2373), + [sym__insert_span_start] = ACTIONS(2373), + [sym__delete_span_start] = ACTIONS(2373), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2373), + [sym__double_quote_span_open] = ACTIONS(2373), + [sym__shortcode_open_escaped] = ACTIONS(2373), + [sym__shortcode_open] = ACTIONS(2373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2373), + [sym__cite_author_in_text] = ACTIONS(2373), + [sym__cite_suppress_author] = ACTIONS(2373), + [sym__strikeout_open] = ACTIONS(2373), + [sym__subscript_open] = ACTIONS(2373), + [sym__superscript_open] = ACTIONS(2373), + [sym__inline_note_start_token] = ACTIONS(2373), + [sym__strong_emphasis_open_star] = ACTIONS(2373), + [sym__strong_emphasis_open_underscore] = ACTIONS(2373), + [sym__emphasis_open_star] = ACTIONS(2373), + [sym__emphasis_open_underscore] = ACTIONS(2373), + [sym_inline_note_reference] = ACTIONS(2373), + [sym_html_element] = ACTIONS(2373), + [sym__pandoc_lt_str] = ACTIONS(2373), + [sym__pandoc_line_break] = ACTIONS(2373), + [sym_grid_table] = ACTIONS(2373), + [sym__caption_start] = ACTIONS(2373), }, - [STATE(218)] = { + [STATE(196)] = { [sym_entity_reference] = ACTIONS(2379), [sym_numeric_character_reference] = ACTIONS(2379), [anon_sym_LBRACK] = ACTIONS(2379), @@ -48992,6 +47654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(2379), [sym__soft_line_ending] = ACTIONS(2379), [sym__block_close] = ACTIONS(2379), + [sym_block_continuation] = ACTIONS(2383), [sym__block_quote_start] = ACTIONS(2379), [sym_atx_h1_marker] = ACTIONS(2379), [sym_atx_h2_marker] = ACTIONS(2379), @@ -49013,7 +47676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2379), [sym__list_marker_example_dont_interrupt] = ACTIONS(2379), [sym__fenced_code_block_start_backtick] = ACTIONS(2379), - [sym_minus_metadata] = ACTIONS(2379), + [sym__minus_metadata_start] = ACTIONS(2379), [sym__pipe_table_start] = ACTIONS(2379), [sym__fenced_div_start] = ACTIONS(2379), [sym__fenced_div_end] = ACTIONS(2379), @@ -49048,287 +47711,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2379), [sym__caption_start] = ACTIONS(2379), }, - [STATE(219)] = { - [sym_entity_reference] = ACTIONS(2249), - [sym_numeric_character_reference] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_BANG_LBRACK] = ACTIONS(2249), - [anon_sym_DOLLAR] = ACTIONS(2251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [aux_sym_pandoc_str_token1] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2249), - [sym__whitespace] = ACTIONS(2249), - [sym__line_ending] = ACTIONS(2249), - [sym__soft_line_ending] = ACTIONS(2249), - [sym__block_close] = ACTIONS(2249), - [sym__block_quote_start] = ACTIONS(2249), - [sym_atx_h1_marker] = ACTIONS(2249), - [sym_atx_h2_marker] = ACTIONS(2249), - [sym_atx_h3_marker] = ACTIONS(2249), - [sym_atx_h4_marker] = ACTIONS(2249), - [sym_atx_h5_marker] = ACTIONS(2249), - [sym_atx_h6_marker] = ACTIONS(2249), - [sym__thematic_break] = ACTIONS(2249), - [sym__list_marker_minus] = ACTIONS(2249), - [sym__list_marker_plus] = ACTIONS(2249), - [sym__list_marker_star] = ACTIONS(2249), - [sym__list_marker_parenthesis] = ACTIONS(2249), - [sym__list_marker_dot] = ACTIONS(2249), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_example] = ACTIONS(2249), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2249), - [sym__fenced_code_block_start_backtick] = ACTIONS(2249), - [sym_minus_metadata] = ACTIONS(2249), - [sym__pipe_table_start] = ACTIONS(2249), - [sym__fenced_div_start] = ACTIONS(2249), - [sym__fenced_div_end] = ACTIONS(2249), - [sym_ref_id_specifier] = ACTIONS(2249), - [sym__code_span_start] = ACTIONS(2249), - [sym__html_comment] = ACTIONS(2249), - [sym__autolink] = ACTIONS(2249), - [sym__highlight_span_start] = ACTIONS(2249), - [sym__insert_span_start] = ACTIONS(2249), - [sym__delete_span_start] = ACTIONS(2249), - [sym__edit_comment_span_start] = ACTIONS(2249), - [sym__single_quote_span_open] = ACTIONS(2249), - [sym__double_quote_span_open] = ACTIONS(2249), - [sym__shortcode_open_escaped] = ACTIONS(2249), - [sym__shortcode_open] = ACTIONS(2249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2249), - [sym__cite_author_in_text] = ACTIONS(2249), - [sym__cite_suppress_author] = ACTIONS(2249), - [sym__strikeout_open] = ACTIONS(2249), - [sym__subscript_open] = ACTIONS(2249), - [sym__superscript_open] = ACTIONS(2249), - [sym__inline_note_start_token] = ACTIONS(2249), - [sym__strong_emphasis_open_star] = ACTIONS(2249), - [sym__strong_emphasis_open_underscore] = ACTIONS(2249), - [sym__emphasis_open_star] = ACTIONS(2249), - [sym__emphasis_open_underscore] = ACTIONS(2249), - [sym_inline_note_reference] = ACTIONS(2249), - [sym_html_element] = ACTIONS(2249), - [sym__pandoc_lt_str] = ACTIONS(2249), - [sym__pandoc_line_break] = ACTIONS(2249), - [sym_grid_table] = ACTIONS(2249), - [sym__caption_start] = ACTIONS(2249), - }, - [STATE(220)] = { - [sym_entity_reference] = ACTIONS(2383), - [sym_numeric_character_reference] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_BANG_LBRACK] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [aux_sym_pandoc_str_token1] = ACTIONS(2385), - [anon_sym_PIPE] = ACTIONS(2383), - [sym__whitespace] = ACTIONS(2383), - [sym__line_ending] = ACTIONS(2383), - [sym__soft_line_ending] = ACTIONS(2383), - [sym__block_close] = ACTIONS(2383), - [sym__block_quote_start] = ACTIONS(2383), - [sym_atx_h1_marker] = ACTIONS(2383), - [sym_atx_h2_marker] = ACTIONS(2383), - [sym_atx_h3_marker] = ACTIONS(2383), - [sym_atx_h4_marker] = ACTIONS(2383), - [sym_atx_h5_marker] = ACTIONS(2383), - [sym_atx_h6_marker] = ACTIONS(2383), - [sym__thematic_break] = ACTIONS(2383), - [sym__list_marker_minus] = ACTIONS(2383), - [sym__list_marker_plus] = ACTIONS(2383), - [sym__list_marker_star] = ACTIONS(2383), - [sym__list_marker_parenthesis] = ACTIONS(2383), - [sym__list_marker_dot] = ACTIONS(2383), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_example] = ACTIONS(2383), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2383), - [sym__fenced_code_block_start_backtick] = ACTIONS(2383), - [sym_minus_metadata] = ACTIONS(2383), - [sym__pipe_table_start] = ACTIONS(2383), - [sym__fenced_div_start] = ACTIONS(2383), - [sym__fenced_div_end] = ACTIONS(2383), - [sym_ref_id_specifier] = ACTIONS(2383), - [sym__code_span_start] = ACTIONS(2383), - [sym__html_comment] = ACTIONS(2383), - [sym__autolink] = ACTIONS(2383), - [sym__highlight_span_start] = ACTIONS(2383), - [sym__insert_span_start] = ACTIONS(2383), - [sym__delete_span_start] = ACTIONS(2383), - [sym__edit_comment_span_start] = ACTIONS(2383), - [sym__single_quote_span_open] = ACTIONS(2383), - [sym__double_quote_span_open] = ACTIONS(2383), - [sym__shortcode_open_escaped] = ACTIONS(2383), - [sym__shortcode_open] = ACTIONS(2383), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2383), - [sym__cite_author_in_text] = ACTIONS(2383), - [sym__cite_suppress_author] = ACTIONS(2383), - [sym__strikeout_open] = ACTIONS(2383), - [sym__subscript_open] = ACTIONS(2383), - [sym__superscript_open] = ACTIONS(2383), - [sym__inline_note_start_token] = ACTIONS(2383), - [sym__strong_emphasis_open_star] = ACTIONS(2383), - [sym__strong_emphasis_open_underscore] = ACTIONS(2383), - [sym__emphasis_open_star] = ACTIONS(2383), - [sym__emphasis_open_underscore] = ACTIONS(2383), - [sym_inline_note_reference] = ACTIONS(2383), - [sym_html_element] = ACTIONS(2383), - [sym__pandoc_lt_str] = ACTIONS(2383), - [sym__pandoc_line_break] = ACTIONS(2383), - [sym_grid_table] = ACTIONS(2383), - [sym__caption_start] = ACTIONS(2383), - }, - [STATE(221)] = { - [sym_entity_reference] = ACTIONS(2387), - [sym_numeric_character_reference] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_BANG_LBRACK] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2389), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [aux_sym_pandoc_str_token1] = ACTIONS(2389), - [anon_sym_PIPE] = ACTIONS(2387), - [sym__whitespace] = ACTIONS(2387), - [sym__line_ending] = ACTIONS(2387), - [sym__soft_line_ending] = ACTIONS(2387), - [sym__block_close] = ACTIONS(2387), - [sym__block_quote_start] = ACTIONS(2387), - [sym_atx_h1_marker] = ACTIONS(2387), - [sym_atx_h2_marker] = ACTIONS(2387), - [sym_atx_h3_marker] = ACTIONS(2387), - [sym_atx_h4_marker] = ACTIONS(2387), - [sym_atx_h5_marker] = ACTIONS(2387), - [sym_atx_h6_marker] = ACTIONS(2387), - [sym__thematic_break] = ACTIONS(2387), - [sym__list_marker_minus] = ACTIONS(2387), - [sym__list_marker_plus] = ACTIONS(2387), - [sym__list_marker_star] = ACTIONS(2387), - [sym__list_marker_parenthesis] = ACTIONS(2387), - [sym__list_marker_dot] = ACTIONS(2387), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_example] = ACTIONS(2387), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2387), - [sym__fenced_code_block_start_backtick] = ACTIONS(2387), - [sym_minus_metadata] = ACTIONS(2387), - [sym__pipe_table_start] = ACTIONS(2387), - [sym__fenced_div_start] = ACTIONS(2387), - [sym__fenced_div_end] = ACTIONS(2387), - [sym_ref_id_specifier] = ACTIONS(2387), - [sym__code_span_start] = ACTIONS(2387), - [sym__html_comment] = ACTIONS(2387), - [sym__autolink] = ACTIONS(2387), - [sym__highlight_span_start] = ACTIONS(2387), - [sym__insert_span_start] = ACTIONS(2387), - [sym__delete_span_start] = ACTIONS(2387), - [sym__edit_comment_span_start] = ACTIONS(2387), - [sym__single_quote_span_open] = ACTIONS(2387), - [sym__double_quote_span_open] = ACTIONS(2387), - [sym__shortcode_open_escaped] = ACTIONS(2387), - [sym__shortcode_open] = ACTIONS(2387), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2387), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2387), - [sym__cite_author_in_text] = ACTIONS(2387), - [sym__cite_suppress_author] = ACTIONS(2387), - [sym__strikeout_open] = ACTIONS(2387), - [sym__subscript_open] = ACTIONS(2387), - [sym__superscript_open] = ACTIONS(2387), - [sym__inline_note_start_token] = ACTIONS(2387), - [sym__strong_emphasis_open_star] = ACTIONS(2387), - [sym__strong_emphasis_open_underscore] = ACTIONS(2387), - [sym__emphasis_open_star] = ACTIONS(2387), - [sym__emphasis_open_underscore] = ACTIONS(2387), - [sym_inline_note_reference] = ACTIONS(2387), - [sym_html_element] = ACTIONS(2387), - [sym__pandoc_lt_str] = ACTIONS(2387), - [sym__pandoc_line_break] = ACTIONS(2387), - [sym_grid_table] = ACTIONS(2387), - [sym__caption_start] = ACTIONS(2387), + [STATE(197)] = { + [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), + [sym__whitespace] = ACTIONS(2385), + [sym__line_ending] = ACTIONS(2385), + [sym__soft_line_ending] = ACTIONS(2385), + [sym__block_close] = ACTIONS(2385), + [sym_block_continuation] = ACTIONS(2389), + [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(2385), + [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(2385), + [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_start] = 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), + [sym__pandoc_lt_str] = ACTIONS(2385), + [sym__pandoc_line_break] = ACTIONS(2385), + [sym_grid_table] = ACTIONS(2385), + [sym__caption_start] = ACTIONS(2385), }, - [STATE(222)] = { - [sym_entity_reference] = ACTIONS(2255), - [sym_numeric_character_reference] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_BANG_LBRACK] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2257), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [aux_sym_pandoc_str_token1] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2255), - [sym__whitespace] = ACTIONS(2255), - [sym__line_ending] = ACTIONS(2255), - [sym__soft_line_ending] = ACTIONS(2255), - [sym__block_close] = ACTIONS(2255), - [sym__block_quote_start] = ACTIONS(2255), - [sym_atx_h1_marker] = ACTIONS(2255), - [sym_atx_h2_marker] = ACTIONS(2255), - [sym_atx_h3_marker] = ACTIONS(2255), - [sym_atx_h4_marker] = ACTIONS(2255), - [sym_atx_h5_marker] = ACTIONS(2255), - [sym_atx_h6_marker] = ACTIONS(2255), - [sym__thematic_break] = ACTIONS(2255), - [sym__list_marker_minus] = ACTIONS(2255), - [sym__list_marker_plus] = ACTIONS(2255), - [sym__list_marker_star] = ACTIONS(2255), - [sym__list_marker_parenthesis] = ACTIONS(2255), - [sym__list_marker_dot] = ACTIONS(2255), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_example] = ACTIONS(2255), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2255), - [sym__fenced_code_block_start_backtick] = ACTIONS(2255), - [sym_minus_metadata] = ACTIONS(2255), - [sym__pipe_table_start] = ACTIONS(2255), - [sym__fenced_div_start] = ACTIONS(2255), - [sym__fenced_div_end] = ACTIONS(2255), - [sym_ref_id_specifier] = ACTIONS(2255), - [sym__code_span_start] = ACTIONS(2255), - [sym__html_comment] = ACTIONS(2255), - [sym__autolink] = ACTIONS(2255), - [sym__highlight_span_start] = ACTIONS(2255), - [sym__insert_span_start] = ACTIONS(2255), - [sym__delete_span_start] = ACTIONS(2255), - [sym__edit_comment_span_start] = ACTIONS(2255), - [sym__single_quote_span_open] = ACTIONS(2255), - [sym__double_quote_span_open] = ACTIONS(2255), - [sym__shortcode_open_escaped] = ACTIONS(2255), - [sym__shortcode_open] = ACTIONS(2255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2255), - [sym__cite_author_in_text] = ACTIONS(2255), - [sym__cite_suppress_author] = ACTIONS(2255), - [sym__strikeout_open] = ACTIONS(2255), - [sym__subscript_open] = ACTIONS(2255), - [sym__superscript_open] = ACTIONS(2255), - [sym__inline_note_start_token] = ACTIONS(2255), - [sym__strong_emphasis_open_star] = ACTIONS(2255), - [sym__strong_emphasis_open_underscore] = ACTIONS(2255), - [sym__emphasis_open_star] = ACTIONS(2255), - [sym__emphasis_open_underscore] = ACTIONS(2255), - [sym_inline_note_reference] = ACTIONS(2255), - [sym_html_element] = ACTIONS(2255), - [sym__pandoc_lt_str] = ACTIONS(2255), - [sym__pandoc_line_break] = ACTIONS(2255), - [sym_grid_table] = ACTIONS(2255), - [sym__caption_start] = ACTIONS(2255), - }, - [STATE(223)] = { + [STATE(198)] = { [sym_entity_reference] = ACTIONS(2391), [sym_numeric_character_reference] = ACTIONS(2391), [anon_sym_LBRACK] = ACTIONS(2391), @@ -49342,6 +47796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(2391), [sym__soft_line_ending] = ACTIONS(2391), [sym__block_close] = ACTIONS(2391), + [sym_block_continuation] = ACTIONS(2395), [sym__block_quote_start] = ACTIONS(2391), [sym_atx_h1_marker] = ACTIONS(2391), [sym_atx_h2_marker] = ACTIONS(2391), @@ -49363,7 +47818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2391), [sym__list_marker_example_dont_interrupt] = ACTIONS(2391), [sym__fenced_code_block_start_backtick] = ACTIONS(2391), - [sym_minus_metadata] = ACTIONS(2391), + [sym__minus_metadata_start] = ACTIONS(2391), [sym__pipe_table_start] = ACTIONS(2391), [sym__fenced_div_start] = ACTIONS(2391), [sym__fenced_div_end] = ACTIONS(2391), @@ -49398,147 +47853,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2391), [sym__caption_start] = ACTIONS(2391), }, - [STATE(224)] = { - [sym_entity_reference] = ACTIONS(2395), - [sym_numeric_character_reference] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_BANG_LBRACK] = ACTIONS(2395), - [anon_sym_DOLLAR] = ACTIONS(2397), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [aux_sym_pandoc_str_token1] = ACTIONS(2397), - [anon_sym_PIPE] = ACTIONS(2395), - [sym__whitespace] = ACTIONS(2395), - [sym__line_ending] = ACTIONS(2395), - [sym__soft_line_ending] = ACTIONS(2395), - [sym__block_close] = ACTIONS(2395), - [sym__block_quote_start] = ACTIONS(2395), - [sym_atx_h1_marker] = ACTIONS(2395), - [sym_atx_h2_marker] = ACTIONS(2395), - [sym_atx_h3_marker] = ACTIONS(2395), - [sym_atx_h4_marker] = ACTIONS(2395), - [sym_atx_h5_marker] = ACTIONS(2395), - [sym_atx_h6_marker] = ACTIONS(2395), - [sym__thematic_break] = ACTIONS(2395), - [sym__list_marker_minus] = ACTIONS(2395), - [sym__list_marker_plus] = ACTIONS(2395), - [sym__list_marker_star] = ACTIONS(2395), - [sym__list_marker_parenthesis] = ACTIONS(2395), - [sym__list_marker_dot] = ACTIONS(2395), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_example] = ACTIONS(2395), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2395), - [sym__fenced_code_block_start_backtick] = ACTIONS(2395), - [sym_minus_metadata] = ACTIONS(2395), - [sym__pipe_table_start] = ACTIONS(2395), - [sym__fenced_div_start] = ACTIONS(2395), - [sym__fenced_div_end] = ACTIONS(2395), - [sym_ref_id_specifier] = ACTIONS(2395), - [sym__code_span_start] = ACTIONS(2395), - [sym__html_comment] = ACTIONS(2395), - [sym__autolink] = ACTIONS(2395), - [sym__highlight_span_start] = ACTIONS(2395), - [sym__insert_span_start] = ACTIONS(2395), - [sym__delete_span_start] = ACTIONS(2395), - [sym__edit_comment_span_start] = ACTIONS(2395), - [sym__single_quote_span_open] = ACTIONS(2395), - [sym__double_quote_span_open] = ACTIONS(2395), - [sym__shortcode_open_escaped] = ACTIONS(2395), - [sym__shortcode_open] = ACTIONS(2395), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2395), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2395), - [sym__cite_author_in_text] = ACTIONS(2395), - [sym__cite_suppress_author] = ACTIONS(2395), - [sym__strikeout_open] = ACTIONS(2395), - [sym__subscript_open] = ACTIONS(2395), - [sym__superscript_open] = ACTIONS(2395), - [sym__inline_note_start_token] = ACTIONS(2395), - [sym__strong_emphasis_open_star] = ACTIONS(2395), - [sym__strong_emphasis_open_underscore] = ACTIONS(2395), - [sym__emphasis_open_star] = ACTIONS(2395), - [sym__emphasis_open_underscore] = ACTIONS(2395), - [sym_inline_note_reference] = ACTIONS(2395), - [sym_html_element] = ACTIONS(2395), - [sym__pandoc_lt_str] = ACTIONS(2395), - [sym__pandoc_line_break] = ACTIONS(2395), - [sym_grid_table] = ACTIONS(2395), - [sym__caption_start] = ACTIONS(2395), - }, - [STATE(225)] = { - [sym_entity_reference] = ACTIONS(2399), - [sym_numeric_character_reference] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_BANG_LBRACK] = ACTIONS(2399), - [anon_sym_DOLLAR] = ACTIONS(2401), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2399), - [aux_sym_pandoc_str_token1] = ACTIONS(2401), - [anon_sym_PIPE] = ACTIONS(2399), - [sym__whitespace] = ACTIONS(2399), - [sym__line_ending] = ACTIONS(2399), - [sym__soft_line_ending] = ACTIONS(2399), - [sym__block_close] = ACTIONS(2399), - [sym__block_quote_start] = ACTIONS(2399), - [sym_atx_h1_marker] = ACTIONS(2399), - [sym_atx_h2_marker] = ACTIONS(2399), - [sym_atx_h3_marker] = ACTIONS(2399), - [sym_atx_h4_marker] = ACTIONS(2399), - [sym_atx_h5_marker] = ACTIONS(2399), - [sym_atx_h6_marker] = ACTIONS(2399), - [sym__thematic_break] = ACTIONS(2399), - [sym__list_marker_minus] = ACTIONS(2399), - [sym__list_marker_plus] = ACTIONS(2399), - [sym__list_marker_star] = ACTIONS(2399), - [sym__list_marker_parenthesis] = ACTIONS(2399), - [sym__list_marker_dot] = ACTIONS(2399), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_example] = ACTIONS(2399), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2399), - [sym__fenced_code_block_start_backtick] = ACTIONS(2399), - [sym_minus_metadata] = ACTIONS(2399), - [sym__pipe_table_start] = ACTIONS(2399), - [sym__fenced_div_start] = ACTIONS(2399), - [sym__fenced_div_end] = ACTIONS(2399), - [sym_ref_id_specifier] = ACTIONS(2399), - [sym__code_span_start] = ACTIONS(2399), - [sym__html_comment] = ACTIONS(2399), - [sym__autolink] = ACTIONS(2399), - [sym__highlight_span_start] = ACTIONS(2399), - [sym__insert_span_start] = ACTIONS(2399), - [sym__delete_span_start] = ACTIONS(2399), - [sym__edit_comment_span_start] = ACTIONS(2399), - [sym__single_quote_span_open] = ACTIONS(2399), - [sym__double_quote_span_open] = ACTIONS(2399), - [sym__shortcode_open_escaped] = ACTIONS(2399), - [sym__shortcode_open] = ACTIONS(2399), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2399), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2399), - [sym__cite_author_in_text] = ACTIONS(2399), - [sym__cite_suppress_author] = ACTIONS(2399), - [sym__strikeout_open] = ACTIONS(2399), - [sym__subscript_open] = ACTIONS(2399), - [sym__superscript_open] = ACTIONS(2399), - [sym__inline_note_start_token] = ACTIONS(2399), - [sym__strong_emphasis_open_star] = ACTIONS(2399), - [sym__strong_emphasis_open_underscore] = ACTIONS(2399), - [sym__emphasis_open_star] = ACTIONS(2399), - [sym__emphasis_open_underscore] = ACTIONS(2399), - [sym_inline_note_reference] = ACTIONS(2399), - [sym_html_element] = ACTIONS(2399), - [sym__pandoc_lt_str] = ACTIONS(2399), - [sym__pandoc_line_break] = ACTIONS(2399), - [sym_grid_table] = ACTIONS(2399), - [sym__caption_start] = ACTIONS(2399), + [STATE(199)] = { + [sym_entity_reference] = ACTIONS(2397), + [sym_numeric_character_reference] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2397), + [anon_sym_BANG_LBRACK] = ACTIONS(2397), + [anon_sym_DOLLAR] = ACTIONS(2399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [aux_sym_pandoc_str_token1] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2397), + [sym__whitespace] = ACTIONS(2397), + [sym__line_ending] = ACTIONS(2397), + [sym__soft_line_ending] = ACTIONS(2397), + [sym__block_close] = ACTIONS(2397), + [sym_block_continuation] = ACTIONS(2401), + [sym__block_quote_start] = ACTIONS(2397), + [sym_atx_h1_marker] = ACTIONS(2397), + [sym_atx_h2_marker] = ACTIONS(2397), + [sym_atx_h3_marker] = ACTIONS(2397), + [sym_atx_h4_marker] = ACTIONS(2397), + [sym_atx_h5_marker] = ACTIONS(2397), + [sym_atx_h6_marker] = ACTIONS(2397), + [sym__thematic_break] = ACTIONS(2397), + [sym__list_marker_minus] = ACTIONS(2397), + [sym__list_marker_plus] = ACTIONS(2397), + [sym__list_marker_star] = ACTIONS(2397), + [sym__list_marker_parenthesis] = ACTIONS(2397), + [sym__list_marker_dot] = ACTIONS(2397), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_example] = ACTIONS(2397), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2397), + [sym__fenced_code_block_start_backtick] = ACTIONS(2397), + [sym__minus_metadata_start] = ACTIONS(2397), + [sym__pipe_table_start] = ACTIONS(2397), + [sym__fenced_div_start] = ACTIONS(2397), + [sym__fenced_div_end] = ACTIONS(2397), + [sym_ref_id_specifier] = ACTIONS(2397), + [sym__code_span_start] = ACTIONS(2397), + [sym__html_comment] = ACTIONS(2397), + [sym__autolink] = ACTIONS(2397), + [sym__highlight_span_start] = ACTIONS(2397), + [sym__insert_span_start] = ACTIONS(2397), + [sym__delete_span_start] = ACTIONS(2397), + [sym__edit_comment_span_start] = ACTIONS(2397), + [sym__single_quote_span_open] = ACTIONS(2397), + [sym__double_quote_span_open] = ACTIONS(2397), + [sym__shortcode_open_escaped] = ACTIONS(2397), + [sym__shortcode_open] = ACTIONS(2397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2397), + [sym__cite_author_in_text] = ACTIONS(2397), + [sym__cite_suppress_author] = ACTIONS(2397), + [sym__strikeout_open] = ACTIONS(2397), + [sym__subscript_open] = ACTIONS(2397), + [sym__superscript_open] = ACTIONS(2397), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2397), + [sym__strong_emphasis_open_underscore] = ACTIONS(2397), + [sym__emphasis_open_star] = ACTIONS(2397), + [sym__emphasis_open_underscore] = ACTIONS(2397), + [sym_inline_note_reference] = ACTIONS(2397), + [sym_html_element] = ACTIONS(2397), + [sym__pandoc_lt_str] = ACTIONS(2397), + [sym__pandoc_line_break] = ACTIONS(2397), + [sym_grid_table] = ACTIONS(2397), + [sym__caption_start] = ACTIONS(2397), }, - [STATE(226)] = { + [STATE(200)] = { [sym_entity_reference] = ACTIONS(2403), [sym_numeric_character_reference] = ACTIONS(2403), [anon_sym_LBRACK] = ACTIONS(2403), @@ -49548,10 +47934,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2403), [aux_sym_pandoc_str_token1] = ACTIONS(2405), [anon_sym_PIPE] = ACTIONS(2403), - [sym__whitespace] = ACTIONS(2403), + [sym__whitespace] = ACTIONS(2407), [sym__line_ending] = ACTIONS(2403), [sym__soft_line_ending] = ACTIONS(2403), [sym__block_close] = ACTIONS(2403), + [sym_block_continuation] = ACTIONS(2409), [sym__block_quote_start] = ACTIONS(2403), [sym_atx_h1_marker] = ACTIONS(2403), [sym_atx_h2_marker] = ACTIONS(2403), @@ -49573,7 +47960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2403), [sym__list_marker_example_dont_interrupt] = ACTIONS(2403), [sym__fenced_code_block_start_backtick] = ACTIONS(2403), - [sym_minus_metadata] = ACTIONS(2403), + [sym__minus_metadata_start] = ACTIONS(2403), [sym__pipe_table_start] = ACTIONS(2403), [sym__fenced_div_start] = ACTIONS(2403), [sym__fenced_div_end] = ACTIONS(2403), @@ -49608,147 +47995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2403), [sym__caption_start] = ACTIONS(2403), }, - [STATE(227)] = { - [sym_entity_reference] = ACTIONS(2407), - [sym_numeric_character_reference] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_BANG_LBRACK] = ACTIONS(2407), - [anon_sym_DOLLAR] = ACTIONS(2409), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(2407), - [aux_sym_pandoc_str_token1] = ACTIONS(2409), - [anon_sym_PIPE] = ACTIONS(2407), - [sym__whitespace] = ACTIONS(2407), - [sym__line_ending] = ACTIONS(2407), - [sym__soft_line_ending] = ACTIONS(2407), - [sym__block_close] = ACTIONS(2407), - [sym__block_quote_start] = ACTIONS(2407), - [sym_atx_h1_marker] = ACTIONS(2407), - [sym_atx_h2_marker] = ACTIONS(2407), - [sym_atx_h3_marker] = ACTIONS(2407), - [sym_atx_h4_marker] = ACTIONS(2407), - [sym_atx_h5_marker] = ACTIONS(2407), - [sym_atx_h6_marker] = ACTIONS(2407), - [sym__thematic_break] = ACTIONS(2407), - [sym__list_marker_minus] = ACTIONS(2407), - [sym__list_marker_plus] = ACTIONS(2407), - [sym__list_marker_star] = ACTIONS(2407), - [sym__list_marker_parenthesis] = ACTIONS(2407), - [sym__list_marker_dot] = ACTIONS(2407), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_example] = ACTIONS(2407), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2407), - [sym__fenced_code_block_start_backtick] = ACTIONS(2407), - [sym_minus_metadata] = ACTIONS(2407), - [sym__pipe_table_start] = ACTIONS(2407), - [sym__fenced_div_start] = ACTIONS(2407), - [sym__fenced_div_end] = ACTIONS(2407), - [sym_ref_id_specifier] = ACTIONS(2407), - [sym__code_span_start] = ACTIONS(2407), - [sym__html_comment] = ACTIONS(2407), - [sym__autolink] = ACTIONS(2407), - [sym__highlight_span_start] = ACTIONS(2407), - [sym__insert_span_start] = ACTIONS(2407), - [sym__delete_span_start] = ACTIONS(2407), - [sym__edit_comment_span_start] = ACTIONS(2407), - [sym__single_quote_span_open] = ACTIONS(2407), - [sym__double_quote_span_open] = ACTIONS(2407), - [sym__shortcode_open_escaped] = ACTIONS(2407), - [sym__shortcode_open] = ACTIONS(2407), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2407), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2407), - [sym__cite_author_in_text] = ACTIONS(2407), - [sym__cite_suppress_author] = ACTIONS(2407), - [sym__strikeout_open] = ACTIONS(2407), - [sym__subscript_open] = ACTIONS(2407), - [sym__superscript_open] = ACTIONS(2407), - [sym__inline_note_start_token] = ACTIONS(2407), - [sym__strong_emphasis_open_star] = ACTIONS(2407), - [sym__strong_emphasis_open_underscore] = ACTIONS(2407), - [sym__emphasis_open_star] = ACTIONS(2407), - [sym__emphasis_open_underscore] = ACTIONS(2407), - [sym_inline_note_reference] = ACTIONS(2407), - [sym_html_element] = ACTIONS(2407), - [sym__pandoc_lt_str] = ACTIONS(2407), - [sym__pandoc_line_break] = ACTIONS(2407), - [sym_grid_table] = ACTIONS(2407), - [sym__caption_start] = ACTIONS(2407), - }, - [STATE(228)] = { - [sym_entity_reference] = ACTIONS(2261), - [sym_numeric_character_reference] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2261), - [anon_sym_BANG_LBRACK] = ACTIONS(2261), - [anon_sym_DOLLAR] = ACTIONS(2263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2261), - [aux_sym_pandoc_str_token1] = ACTIONS(2263), - [anon_sym_PIPE] = ACTIONS(2261), - [sym__whitespace] = ACTIONS(2261), - [sym__line_ending] = ACTIONS(2261), - [sym__soft_line_ending] = ACTIONS(2261), - [sym__block_close] = ACTIONS(2261), - [sym__block_quote_start] = ACTIONS(2261), - [sym_atx_h1_marker] = ACTIONS(2261), - [sym_atx_h2_marker] = ACTIONS(2261), - [sym_atx_h3_marker] = ACTIONS(2261), - [sym_atx_h4_marker] = ACTIONS(2261), - [sym_atx_h5_marker] = ACTIONS(2261), - [sym_atx_h6_marker] = ACTIONS(2261), - [sym__thematic_break] = ACTIONS(2261), - [sym__list_marker_minus] = ACTIONS(2261), - [sym__list_marker_plus] = ACTIONS(2261), - [sym__list_marker_star] = ACTIONS(2261), - [sym__list_marker_parenthesis] = ACTIONS(2261), - [sym__list_marker_dot] = ACTIONS(2261), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_example] = ACTIONS(2261), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2261), - [sym__fenced_code_block_start_backtick] = ACTIONS(2261), - [sym_minus_metadata] = ACTIONS(2261), - [sym__pipe_table_start] = ACTIONS(2261), - [sym__fenced_div_start] = ACTIONS(2261), - [sym__fenced_div_end] = ACTIONS(2261), - [sym_ref_id_specifier] = ACTIONS(2261), - [sym__code_span_start] = ACTIONS(2261), - [sym__html_comment] = ACTIONS(2261), - [sym__autolink] = ACTIONS(2261), - [sym__highlight_span_start] = ACTIONS(2261), - [sym__insert_span_start] = ACTIONS(2261), - [sym__delete_span_start] = ACTIONS(2261), - [sym__edit_comment_span_start] = ACTIONS(2261), - [sym__single_quote_span_open] = ACTIONS(2261), - [sym__double_quote_span_open] = ACTIONS(2261), - [sym__shortcode_open_escaped] = ACTIONS(2261), - [sym__shortcode_open] = ACTIONS(2261), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2261), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2261), - [sym__cite_author_in_text] = ACTIONS(2261), - [sym__cite_suppress_author] = ACTIONS(2261), - [sym__strikeout_open] = ACTIONS(2261), - [sym__subscript_open] = ACTIONS(2261), - [sym__superscript_open] = ACTIONS(2261), - [sym__inline_note_start_token] = ACTIONS(2261), - [sym__strong_emphasis_open_star] = ACTIONS(2261), - [sym__strong_emphasis_open_underscore] = ACTIONS(2261), - [sym__emphasis_open_star] = ACTIONS(2261), - [sym__emphasis_open_underscore] = ACTIONS(2261), - [sym_inline_note_reference] = ACTIONS(2261), - [sym_html_element] = ACTIONS(2261), - [sym__pandoc_lt_str] = ACTIONS(2261), - [sym__pandoc_line_break] = ACTIONS(2261), - [sym_grid_table] = ACTIONS(2261), - [sym__caption_start] = ACTIONS(2261), - }, - [STATE(229)] = { + [STATE(201)] = { [sym_entity_reference] = ACTIONS(2411), [sym_numeric_character_reference] = ACTIONS(2411), [anon_sym_LBRACK] = ACTIONS(2411), @@ -49762,6 +48009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_ending] = ACTIONS(2411), [sym__soft_line_ending] = ACTIONS(2411), [sym__block_close] = ACTIONS(2411), + [sym_block_continuation] = ACTIONS(2415), [sym__block_quote_start] = ACTIONS(2411), [sym_atx_h1_marker] = ACTIONS(2411), [sym_atx_h2_marker] = ACTIONS(2411), @@ -49783,7 +48031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2411), [sym__list_marker_example_dont_interrupt] = ACTIONS(2411), [sym__fenced_code_block_start_backtick] = ACTIONS(2411), - [sym_minus_metadata] = ACTIONS(2411), + [sym__minus_metadata_start] = ACTIONS(2411), [sym__pipe_table_start] = ACTIONS(2411), [sym__fenced_div_start] = ACTIONS(2411), [sym__fenced_div_end] = ACTIONS(2411), @@ -49818,2457 +48066,1757 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2411), [sym__caption_start] = ACTIONS(2411), }, - [STATE(230)] = { - [sym_entity_reference] = ACTIONS(2267), - [sym_numeric_character_reference] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_BANG_LBRACK] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [aux_sym_pandoc_str_token1] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2267), - [sym__whitespace] = ACTIONS(2267), - [sym__line_ending] = ACTIONS(2267), - [sym__soft_line_ending] = ACTIONS(2267), - [sym__block_close] = ACTIONS(2267), - [sym__block_quote_start] = ACTIONS(2267), - [sym_atx_h1_marker] = ACTIONS(2267), - [sym_atx_h2_marker] = ACTIONS(2267), - [sym_atx_h3_marker] = ACTIONS(2267), - [sym_atx_h4_marker] = ACTIONS(2267), - [sym_atx_h5_marker] = ACTIONS(2267), - [sym_atx_h6_marker] = ACTIONS(2267), - [sym__thematic_break] = ACTIONS(2267), - [sym__list_marker_minus] = ACTIONS(2267), - [sym__list_marker_plus] = ACTIONS(2267), - [sym__list_marker_star] = ACTIONS(2267), - [sym__list_marker_parenthesis] = ACTIONS(2267), - [sym__list_marker_dot] = ACTIONS(2267), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_example] = ACTIONS(2267), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2267), - [sym__fenced_code_block_start_backtick] = ACTIONS(2267), - [sym_minus_metadata] = ACTIONS(2267), - [sym__pipe_table_start] = ACTIONS(2267), - [sym__fenced_div_start] = ACTIONS(2267), - [sym__fenced_div_end] = ACTIONS(2267), - [sym_ref_id_specifier] = ACTIONS(2267), - [sym__code_span_start] = ACTIONS(2267), - [sym__html_comment] = ACTIONS(2267), - [sym__autolink] = ACTIONS(2267), - [sym__highlight_span_start] = ACTIONS(2267), - [sym__insert_span_start] = ACTIONS(2267), - [sym__delete_span_start] = ACTIONS(2267), - [sym__edit_comment_span_start] = ACTIONS(2267), - [sym__single_quote_span_open] = ACTIONS(2267), - [sym__double_quote_span_open] = ACTIONS(2267), - [sym__shortcode_open_escaped] = ACTIONS(2267), - [sym__shortcode_open] = ACTIONS(2267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2267), - [sym__cite_author_in_text] = ACTIONS(2267), - [sym__cite_suppress_author] = ACTIONS(2267), - [sym__strikeout_open] = ACTIONS(2267), - [sym__subscript_open] = ACTIONS(2267), - [sym__superscript_open] = ACTIONS(2267), - [sym__inline_note_start_token] = ACTIONS(2267), - [sym__strong_emphasis_open_star] = ACTIONS(2267), - [sym__strong_emphasis_open_underscore] = ACTIONS(2267), - [sym__emphasis_open_star] = ACTIONS(2267), - [sym__emphasis_open_underscore] = ACTIONS(2267), - [sym_inline_note_reference] = ACTIONS(2267), - [sym_html_element] = ACTIONS(2267), - [sym__pandoc_lt_str] = ACTIONS(2267), - [sym__pandoc_line_break] = ACTIONS(2267), - [sym_grid_table] = ACTIONS(2267), - [sym__caption_start] = ACTIONS(2267), - }, - [STATE(231)] = { - [sym_entity_reference] = ACTIONS(2415), - [sym_numeric_character_reference] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_BANG_LBRACK] = ACTIONS(2415), - [anon_sym_DOLLAR] = ACTIONS(2417), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2415), - [aux_sym_pandoc_str_token1] = ACTIONS(2417), - [anon_sym_PIPE] = ACTIONS(2415), - [sym__whitespace] = ACTIONS(2415), - [sym__line_ending] = ACTIONS(2415), - [sym__soft_line_ending] = ACTIONS(2415), - [sym__block_close] = ACTIONS(2415), - [sym__block_quote_start] = ACTIONS(2415), - [sym_atx_h1_marker] = ACTIONS(2415), - [sym_atx_h2_marker] = ACTIONS(2415), - [sym_atx_h3_marker] = ACTIONS(2415), - [sym_atx_h4_marker] = ACTIONS(2415), - [sym_atx_h5_marker] = ACTIONS(2415), - [sym_atx_h6_marker] = ACTIONS(2415), - [sym__thematic_break] = ACTIONS(2415), - [sym__list_marker_minus] = ACTIONS(2415), - [sym__list_marker_plus] = ACTIONS(2415), - [sym__list_marker_star] = ACTIONS(2415), - [sym__list_marker_parenthesis] = ACTIONS(2415), - [sym__list_marker_dot] = ACTIONS(2415), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_example] = ACTIONS(2415), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2415), - [sym__fenced_code_block_start_backtick] = ACTIONS(2415), - [sym_minus_metadata] = ACTIONS(2415), - [sym__pipe_table_start] = ACTIONS(2415), - [sym__fenced_div_start] = ACTIONS(2415), - [sym__fenced_div_end] = ACTIONS(2415), - [sym_ref_id_specifier] = ACTIONS(2415), - [sym__code_span_start] = ACTIONS(2415), - [sym__html_comment] = ACTIONS(2415), - [sym__autolink] = ACTIONS(2415), - [sym__highlight_span_start] = ACTIONS(2415), - [sym__insert_span_start] = ACTIONS(2415), - [sym__delete_span_start] = ACTIONS(2415), - [sym__edit_comment_span_start] = ACTIONS(2415), - [sym__single_quote_span_open] = ACTIONS(2415), - [sym__double_quote_span_open] = ACTIONS(2415), - [sym__shortcode_open_escaped] = ACTIONS(2415), - [sym__shortcode_open] = ACTIONS(2415), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2415), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2415), - [sym__cite_author_in_text] = ACTIONS(2415), - [sym__cite_suppress_author] = ACTIONS(2415), - [sym__strikeout_open] = ACTIONS(2415), - [sym__subscript_open] = ACTIONS(2415), - [sym__superscript_open] = ACTIONS(2415), - [sym__inline_note_start_token] = ACTIONS(2415), - [sym__strong_emphasis_open_star] = ACTIONS(2415), - [sym__strong_emphasis_open_underscore] = ACTIONS(2415), - [sym__emphasis_open_star] = ACTIONS(2415), - [sym__emphasis_open_underscore] = ACTIONS(2415), - [sym_inline_note_reference] = ACTIONS(2415), - [sym_html_element] = ACTIONS(2415), - [sym__pandoc_lt_str] = ACTIONS(2415), - [sym__pandoc_line_break] = ACTIONS(2415), - [sym_grid_table] = ACTIONS(2415), - [sym__caption_start] = ACTIONS(2415), - }, - [STATE(232)] = { - [sym_entity_reference] = ACTIONS(2273), - [sym_numeric_character_reference] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2273), - [anon_sym_BANG_LBRACK] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [aux_sym_pandoc_str_token1] = ACTIONS(2275), - [anon_sym_PIPE] = ACTIONS(2273), - [sym__whitespace] = ACTIONS(2273), - [sym__line_ending] = ACTIONS(2273), - [sym__soft_line_ending] = ACTIONS(2273), - [sym__block_close] = ACTIONS(2273), - [sym__block_quote_start] = ACTIONS(2273), - [sym_atx_h1_marker] = ACTIONS(2273), - [sym_atx_h2_marker] = ACTIONS(2273), - [sym_atx_h3_marker] = ACTIONS(2273), - [sym_atx_h4_marker] = ACTIONS(2273), - [sym_atx_h5_marker] = ACTIONS(2273), - [sym_atx_h6_marker] = ACTIONS(2273), - [sym__thematic_break] = ACTIONS(2273), - [sym__list_marker_minus] = ACTIONS(2273), - [sym__list_marker_plus] = ACTIONS(2273), - [sym__list_marker_star] = ACTIONS(2273), - [sym__list_marker_parenthesis] = ACTIONS(2273), - [sym__list_marker_dot] = ACTIONS(2273), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_example] = ACTIONS(2273), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2273), - [sym__fenced_code_block_start_backtick] = ACTIONS(2273), - [sym_minus_metadata] = ACTIONS(2273), - [sym__pipe_table_start] = ACTIONS(2273), - [sym__fenced_div_start] = ACTIONS(2273), - [sym__fenced_div_end] = ACTIONS(2273), - [sym_ref_id_specifier] = ACTIONS(2273), - [sym__code_span_start] = ACTIONS(2273), - [sym__html_comment] = ACTIONS(2273), - [sym__autolink] = ACTIONS(2273), - [sym__highlight_span_start] = ACTIONS(2273), - [sym__insert_span_start] = ACTIONS(2273), - [sym__delete_span_start] = ACTIONS(2273), - [sym__edit_comment_span_start] = ACTIONS(2273), - [sym__single_quote_span_open] = ACTIONS(2273), - [sym__double_quote_span_open] = ACTIONS(2273), - [sym__shortcode_open_escaped] = ACTIONS(2273), - [sym__shortcode_open] = ACTIONS(2273), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2273), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2273), - [sym__cite_author_in_text] = ACTIONS(2273), - [sym__cite_suppress_author] = ACTIONS(2273), - [sym__strikeout_open] = ACTIONS(2273), - [sym__subscript_open] = ACTIONS(2273), - [sym__superscript_open] = ACTIONS(2273), - [sym__inline_note_start_token] = ACTIONS(2273), - [sym__strong_emphasis_open_star] = ACTIONS(2273), - [sym__strong_emphasis_open_underscore] = ACTIONS(2273), - [sym__emphasis_open_star] = ACTIONS(2273), - [sym__emphasis_open_underscore] = ACTIONS(2273), - [sym_inline_note_reference] = ACTIONS(2273), - [sym_html_element] = ACTIONS(2273), - [sym__pandoc_lt_str] = ACTIONS(2273), - [sym__pandoc_line_break] = ACTIONS(2273), - [sym_grid_table] = ACTIONS(2273), - [sym__caption_start] = ACTIONS(2273), - }, - [STATE(233)] = { - [sym_entity_reference] = ACTIONS(2419), - [sym_numeric_character_reference] = ACTIONS(2419), + [STATE(202)] = { + [sym__inlines] = STATE(3510), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1448), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(655), + [sym__inline_whitespace] = STATE(655), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), [anon_sym_LBRACK] = ACTIONS(2419), - [anon_sym_BANG_LBRACK] = ACTIONS(2419), - [anon_sym_DOLLAR] = ACTIONS(2421), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [aux_sym_pandoc_str_token1] = ACTIONS(2421), - [anon_sym_PIPE] = ACTIONS(2419), - [sym__whitespace] = ACTIONS(2419), - [sym__line_ending] = ACTIONS(2419), - [sym__soft_line_ending] = ACTIONS(2419), - [sym__block_close] = ACTIONS(2419), - [sym__block_quote_start] = ACTIONS(2419), - [sym_atx_h1_marker] = ACTIONS(2419), - [sym_atx_h2_marker] = ACTIONS(2419), - [sym_atx_h3_marker] = ACTIONS(2419), - [sym_atx_h4_marker] = ACTIONS(2419), - [sym_atx_h5_marker] = ACTIONS(2419), - [sym_atx_h6_marker] = ACTIONS(2419), - [sym__thematic_break] = ACTIONS(2419), - [sym__list_marker_minus] = ACTIONS(2419), - [sym__list_marker_plus] = ACTIONS(2419), - [sym__list_marker_star] = ACTIONS(2419), - [sym__list_marker_parenthesis] = ACTIONS(2419), - [sym__list_marker_dot] = ACTIONS(2419), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_example] = ACTIONS(2419), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2419), - [sym__fenced_code_block_start_backtick] = ACTIONS(2419), - [sym_minus_metadata] = ACTIONS(2419), - [sym__pipe_table_start] = ACTIONS(2419), - [sym__fenced_div_start] = ACTIONS(2419), - [sym__fenced_div_end] = ACTIONS(2419), - [sym_ref_id_specifier] = ACTIONS(2419), - [sym__code_span_start] = ACTIONS(2419), - [sym__html_comment] = ACTIONS(2419), - [sym__autolink] = ACTIONS(2419), - [sym__highlight_span_start] = ACTIONS(2419), - [sym__insert_span_start] = ACTIONS(2419), - [sym__delete_span_start] = ACTIONS(2419), - [sym__edit_comment_span_start] = ACTIONS(2419), - [sym__single_quote_span_open] = ACTIONS(2419), - [sym__double_quote_span_open] = ACTIONS(2419), - [sym__shortcode_open_escaped] = ACTIONS(2419), - [sym__shortcode_open] = ACTIONS(2419), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2419), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2419), - [sym__cite_author_in_text] = ACTIONS(2419), - [sym__cite_suppress_author] = ACTIONS(2419), - [sym__strikeout_open] = ACTIONS(2419), - [sym__subscript_open] = ACTIONS(2419), - [sym__superscript_open] = ACTIONS(2419), - [sym__inline_note_start_token] = ACTIONS(2419), - [sym__strong_emphasis_open_star] = ACTIONS(2419), - [sym__strong_emphasis_open_underscore] = ACTIONS(2419), - [sym__emphasis_open_star] = ACTIONS(2419), - [sym__emphasis_open_underscore] = ACTIONS(2419), - [sym_inline_note_reference] = ACTIONS(2419), - [sym_html_element] = ACTIONS(2419), - [sym__pandoc_lt_str] = ACTIONS(2419), - [sym__pandoc_line_break] = ACTIONS(2419), - [sym_grid_table] = ACTIONS(2419), - [sym__caption_start] = ACTIONS(2419), - }, - [STATE(234)] = { - [sym_entity_reference] = ACTIONS(2279), - [sym_numeric_character_reference] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_BANG_LBRACK] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [aux_sym_pandoc_str_token1] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [sym__whitespace] = ACTIONS(2279), - [sym__line_ending] = ACTIONS(2279), - [sym__soft_line_ending] = ACTIONS(2279), - [sym__block_close] = ACTIONS(2279), - [sym__block_quote_start] = ACTIONS(2279), - [sym_atx_h1_marker] = ACTIONS(2279), - [sym_atx_h2_marker] = ACTIONS(2279), - [sym_atx_h3_marker] = ACTIONS(2279), - [sym_atx_h4_marker] = ACTIONS(2279), - [sym_atx_h5_marker] = ACTIONS(2279), - [sym_atx_h6_marker] = ACTIONS(2279), - [sym__thematic_break] = ACTIONS(2279), - [sym__list_marker_minus] = ACTIONS(2279), - [sym__list_marker_plus] = ACTIONS(2279), - [sym__list_marker_star] = ACTIONS(2279), - [sym__list_marker_parenthesis] = ACTIONS(2279), - [sym__list_marker_dot] = ACTIONS(2279), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_example] = ACTIONS(2279), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2279), - [sym__fenced_code_block_start_backtick] = ACTIONS(2279), - [sym_minus_metadata] = ACTIONS(2279), - [sym__pipe_table_start] = ACTIONS(2279), - [sym__fenced_div_start] = ACTIONS(2279), - [sym__fenced_div_end] = ACTIONS(2279), - [sym_ref_id_specifier] = ACTIONS(2279), - [sym__code_span_start] = ACTIONS(2279), - [sym__html_comment] = ACTIONS(2279), - [sym__autolink] = ACTIONS(2279), - [sym__highlight_span_start] = ACTIONS(2279), - [sym__insert_span_start] = ACTIONS(2279), - [sym__delete_span_start] = ACTIONS(2279), - [sym__edit_comment_span_start] = ACTIONS(2279), - [sym__single_quote_span_open] = ACTIONS(2279), - [sym__double_quote_span_open] = ACTIONS(2279), - [sym__shortcode_open_escaped] = ACTIONS(2279), - [sym__shortcode_open] = ACTIONS(2279), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2279), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2279), - [sym__cite_author_in_text] = ACTIONS(2279), - [sym__cite_suppress_author] = ACTIONS(2279), - [sym__strikeout_open] = ACTIONS(2279), - [sym__subscript_open] = ACTIONS(2279), - [sym__superscript_open] = ACTIONS(2279), - [sym__inline_note_start_token] = ACTIONS(2279), - [sym__strong_emphasis_open_star] = ACTIONS(2279), - [sym__strong_emphasis_open_underscore] = ACTIONS(2279), - [sym__emphasis_open_star] = ACTIONS(2279), - [sym__emphasis_open_underscore] = ACTIONS(2279), - [sym_inline_note_reference] = ACTIONS(2279), - [sym_html_element] = ACTIONS(2279), - [sym__pandoc_lt_str] = ACTIONS(2279), - [sym__pandoc_line_break] = ACTIONS(2279), - [sym_grid_table] = ACTIONS(2279), - [sym__caption_start] = ACTIONS(2279), - }, - [STATE(235)] = { - [sym_entity_reference] = ACTIONS(2423), - [sym_numeric_character_reference] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2423), + [aux_sym_pandoc_span_token1] = ACTIONS(2421), [anon_sym_BANG_LBRACK] = ACTIONS(2423), - [anon_sym_DOLLAR] = ACTIONS(2425), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [aux_sym_pandoc_str_token1] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2423), - [sym__whitespace] = ACTIONS(2423), - [sym__line_ending] = ACTIONS(2423), - [sym__soft_line_ending] = ACTIONS(2423), - [sym__block_close] = ACTIONS(2423), - [sym__block_quote_start] = ACTIONS(2423), - [sym_atx_h1_marker] = ACTIONS(2423), - [sym_atx_h2_marker] = ACTIONS(2423), - [sym_atx_h3_marker] = ACTIONS(2423), - [sym_atx_h4_marker] = ACTIONS(2423), - [sym_atx_h5_marker] = ACTIONS(2423), - [sym_atx_h6_marker] = ACTIONS(2423), - [sym__thematic_break] = ACTIONS(2423), - [sym__list_marker_minus] = ACTIONS(2423), - [sym__list_marker_plus] = ACTIONS(2423), - [sym__list_marker_star] = ACTIONS(2423), - [sym__list_marker_parenthesis] = ACTIONS(2423), - [sym__list_marker_dot] = ACTIONS(2423), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_example] = ACTIONS(2423), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2423), - [sym__fenced_code_block_start_backtick] = ACTIONS(2423), - [sym_minus_metadata] = ACTIONS(2423), - [sym__pipe_table_start] = ACTIONS(2423), - [sym__fenced_div_start] = ACTIONS(2423), - [sym__fenced_div_end] = ACTIONS(2423), - [sym_ref_id_specifier] = ACTIONS(2423), - [sym__code_span_start] = ACTIONS(2423), - [sym__html_comment] = ACTIONS(2423), - [sym__autolink] = ACTIONS(2423), - [sym__highlight_span_start] = ACTIONS(2423), - [sym__insert_span_start] = ACTIONS(2423), - [sym__delete_span_start] = ACTIONS(2423), - [sym__edit_comment_span_start] = ACTIONS(2423), - [sym__single_quote_span_open] = ACTIONS(2423), - [sym__double_quote_span_open] = ACTIONS(2423), - [sym__shortcode_open_escaped] = ACTIONS(2423), - [sym__shortcode_open] = ACTIONS(2423), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2423), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2423), - [sym__cite_author_in_text] = ACTIONS(2423), - [sym__cite_suppress_author] = ACTIONS(2423), - [sym__strikeout_open] = ACTIONS(2423), - [sym__subscript_open] = ACTIONS(2423), - [sym__superscript_open] = ACTIONS(2423), - [sym__inline_note_start_token] = ACTIONS(2423), - [sym__strong_emphasis_open_star] = ACTIONS(2423), - [sym__strong_emphasis_open_underscore] = ACTIONS(2423), - [sym__emphasis_open_star] = ACTIONS(2423), - [sym__emphasis_open_underscore] = ACTIONS(2423), - [sym_inline_note_reference] = ACTIONS(2423), - [sym_html_element] = ACTIONS(2423), - [sym__pandoc_lt_str] = ACTIONS(2423), - [sym__pandoc_line_break] = ACTIONS(2423), - [sym_grid_table] = ACTIONS(2423), - [sym__caption_start] = ACTIONS(2423), - }, - [STATE(236)] = { - [sym_entity_reference] = ACTIONS(2285), - [sym_numeric_character_reference] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_BANG_LBRACK] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [aux_sym_pandoc_str_token1] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2285), - [sym__whitespace] = ACTIONS(2285), - [sym__line_ending] = ACTIONS(2285), - [sym__soft_line_ending] = ACTIONS(2285), - [sym__block_close] = ACTIONS(2285), - [sym__block_quote_start] = ACTIONS(2285), - [sym_atx_h1_marker] = ACTIONS(2285), - [sym_atx_h2_marker] = ACTIONS(2285), - [sym_atx_h3_marker] = ACTIONS(2285), - [sym_atx_h4_marker] = ACTIONS(2285), - [sym_atx_h5_marker] = ACTIONS(2285), - [sym_atx_h6_marker] = ACTIONS(2285), - [sym__thematic_break] = ACTIONS(2285), - [sym__list_marker_minus] = ACTIONS(2285), - [sym__list_marker_plus] = ACTIONS(2285), - [sym__list_marker_star] = ACTIONS(2285), - [sym__list_marker_parenthesis] = ACTIONS(2285), - [sym__list_marker_dot] = ACTIONS(2285), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_example] = ACTIONS(2285), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2285), - [sym__fenced_code_block_start_backtick] = ACTIONS(2285), - [sym_minus_metadata] = ACTIONS(2285), - [sym__pipe_table_start] = ACTIONS(2285), - [sym__fenced_div_start] = ACTIONS(2285), - [sym__fenced_div_end] = ACTIONS(2285), - [sym_ref_id_specifier] = ACTIONS(2285), - [sym__code_span_start] = ACTIONS(2285), - [sym__html_comment] = ACTIONS(2285), - [sym__autolink] = ACTIONS(2285), - [sym__highlight_span_start] = ACTIONS(2285), - [sym__insert_span_start] = ACTIONS(2285), - [sym__delete_span_start] = ACTIONS(2285), - [sym__edit_comment_span_start] = ACTIONS(2285), - [sym__single_quote_span_open] = ACTIONS(2285), - [sym__double_quote_span_open] = ACTIONS(2285), - [sym__shortcode_open_escaped] = ACTIONS(2285), - [sym__shortcode_open] = ACTIONS(2285), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2285), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2285), - [sym__cite_author_in_text] = ACTIONS(2285), - [sym__cite_suppress_author] = ACTIONS(2285), - [sym__strikeout_open] = ACTIONS(2285), - [sym__subscript_open] = ACTIONS(2285), - [sym__superscript_open] = ACTIONS(2285), - [sym__inline_note_start_token] = ACTIONS(2285), - [sym__strong_emphasis_open_star] = ACTIONS(2285), - [sym__strong_emphasis_open_underscore] = ACTIONS(2285), - [sym__emphasis_open_star] = ACTIONS(2285), - [sym__emphasis_open_underscore] = ACTIONS(2285), - [sym_inline_note_reference] = ACTIONS(2285), - [sym_html_element] = ACTIONS(2285), - [sym__pandoc_lt_str] = ACTIONS(2285), - [sym__pandoc_line_break] = ACTIONS(2285), - [sym_grid_table] = ACTIONS(2285), - [sym__caption_start] = ACTIONS(2285), - }, - [STATE(237)] = { - [ts_builtin_sym_end] = ACTIONS(2231), - [sym_entity_reference] = ACTIONS(2231), - [sym_numeric_character_reference] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_BANG_LBRACK] = ACTIONS(2231), - [anon_sym_DOLLAR] = ACTIONS(2233), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [aux_sym_pandoc_str_token1] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2231), - [sym__whitespace] = ACTIONS(2231), - [sym__line_ending] = ACTIONS(2231), - [sym__soft_line_ending] = ACTIONS(2231), - [sym_block_continuation] = ACTIONS(2427), - [sym__block_quote_start] = ACTIONS(2231), - [sym_atx_h1_marker] = ACTIONS(2231), - [sym_atx_h2_marker] = ACTIONS(2231), - [sym_atx_h3_marker] = ACTIONS(2231), - [sym_atx_h4_marker] = ACTIONS(2231), - [sym_atx_h5_marker] = ACTIONS(2231), - [sym_atx_h6_marker] = ACTIONS(2231), - [sym__thematic_break] = ACTIONS(2231), - [sym__list_marker_minus] = ACTIONS(2231), - [sym__list_marker_plus] = ACTIONS(2231), - [sym__list_marker_star] = ACTIONS(2231), - [sym__list_marker_parenthesis] = ACTIONS(2231), - [sym__list_marker_dot] = ACTIONS(2231), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_example] = ACTIONS(2231), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2231), - [sym__fenced_code_block_start_backtick] = ACTIONS(2231), - [sym_minus_metadata] = ACTIONS(2231), - [sym__pipe_table_start] = ACTIONS(2231), - [sym__fenced_div_start] = ACTIONS(2231), - [sym_ref_id_specifier] = ACTIONS(2231), - [sym__code_span_start] = ACTIONS(2231), - [sym__html_comment] = ACTIONS(2231), - [sym__autolink] = ACTIONS(2231), - [sym__highlight_span_start] = ACTIONS(2231), - [sym__insert_span_start] = ACTIONS(2231), - [sym__delete_span_start] = ACTIONS(2231), - [sym__edit_comment_span_start] = ACTIONS(2231), - [sym__single_quote_span_open] = ACTIONS(2231), - [sym__double_quote_span_open] = ACTIONS(2231), - [sym__shortcode_open_escaped] = ACTIONS(2231), - [sym__shortcode_open] = ACTIONS(2231), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2231), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2231), - [sym__cite_author_in_text] = ACTIONS(2231), - [sym__cite_suppress_author] = ACTIONS(2231), - [sym__strikeout_open] = ACTIONS(2231), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2231), - [sym__inline_note_start_token] = ACTIONS(2231), - [sym__strong_emphasis_open_star] = ACTIONS(2231), - [sym__strong_emphasis_open_underscore] = ACTIONS(2231), - [sym__emphasis_open_star] = ACTIONS(2231), - [sym__emphasis_open_underscore] = ACTIONS(2231), - [sym_inline_note_reference] = ACTIONS(2231), - [sym_html_element] = ACTIONS(2231), - [sym__pandoc_lt_str] = ACTIONS(2231), - [sym__pandoc_line_break] = ACTIONS(2231), - [sym_grid_table] = ACTIONS(2231), - [sym__caption_start] = ACTIONS(2231), - }, - [STATE(238)] = { - [sym_entity_reference] = ACTIONS(2297), - [sym_numeric_character_reference] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_BANG_LBRACK] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [aux_sym_pandoc_str_token1] = ACTIONS(2299), - [anon_sym_PIPE] = ACTIONS(2297), - [sym__whitespace] = ACTIONS(2297), - [sym__line_ending] = ACTIONS(2297), - [sym__soft_line_ending] = ACTIONS(2297), - [sym__block_close] = ACTIONS(2297), - [sym__block_quote_start] = ACTIONS(2297), - [sym_atx_h1_marker] = ACTIONS(2297), - [sym_atx_h2_marker] = ACTIONS(2297), - [sym_atx_h3_marker] = ACTIONS(2297), - [sym_atx_h4_marker] = ACTIONS(2297), - [sym_atx_h5_marker] = ACTIONS(2297), - [sym_atx_h6_marker] = ACTIONS(2297), - [sym__thematic_break] = ACTIONS(2297), - [sym__list_marker_minus] = ACTIONS(2297), - [sym__list_marker_plus] = ACTIONS(2297), - [sym__list_marker_star] = ACTIONS(2297), - [sym__list_marker_parenthesis] = ACTIONS(2297), - [sym__list_marker_dot] = ACTIONS(2297), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_example] = ACTIONS(2297), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2297), - [sym__fenced_code_block_start_backtick] = ACTIONS(2297), - [sym_minus_metadata] = ACTIONS(2297), - [sym__pipe_table_start] = ACTIONS(2297), - [sym__fenced_div_start] = ACTIONS(2297), - [sym__fenced_div_end] = ACTIONS(2297), - [sym_ref_id_specifier] = ACTIONS(2297), - [sym__code_span_start] = ACTIONS(2297), - [sym__html_comment] = ACTIONS(2297), - [sym__autolink] = ACTIONS(2297), - [sym__highlight_span_start] = ACTIONS(2297), - [sym__insert_span_start] = ACTIONS(2297), - [sym__delete_span_start] = ACTIONS(2297), - [sym__edit_comment_span_start] = ACTIONS(2297), - [sym__single_quote_span_open] = ACTIONS(2297), - [sym__double_quote_span_open] = ACTIONS(2297), - [sym__shortcode_open_escaped] = ACTIONS(2297), - [sym__shortcode_open] = ACTIONS(2297), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2297), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2297), - [sym__cite_author_in_text] = ACTIONS(2297), - [sym__cite_suppress_author] = ACTIONS(2297), - [sym__strikeout_open] = ACTIONS(2297), - [sym__subscript_open] = ACTIONS(2297), - [sym__superscript_open] = ACTIONS(2297), - [sym__inline_note_start_token] = ACTIONS(2297), - [sym__strong_emphasis_open_star] = ACTIONS(2297), - [sym__strong_emphasis_open_underscore] = ACTIONS(2297), - [sym__emphasis_open_star] = ACTIONS(2297), - [sym__emphasis_open_underscore] = ACTIONS(2297), - [sym_inline_note_reference] = ACTIONS(2297), - [sym_html_element] = ACTIONS(2297), - [sym__pandoc_lt_str] = ACTIONS(2297), - [sym__pandoc_line_break] = ACTIONS(2297), - [sym_grid_table] = ACTIONS(2297), - [sym__caption_start] = ACTIONS(2297), - }, - [STATE(239)] = { - [sym_entity_reference] = ACTIONS(2429), - [sym_numeric_character_reference] = ACTIONS(2429), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_BANG_LBRACK] = ACTIONS(2429), - [anon_sym_DOLLAR] = ACTIONS(2431), + [aux_sym_target_token1] = ACTIONS(2425), + [anon_sym_DOLLAR] = ACTIONS(2427), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2429), - [aux_sym_pandoc_str_token1] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2429), - [sym__whitespace] = ACTIONS(2429), - [sym__line_ending] = ACTIONS(2429), - [sym__soft_line_ending] = ACTIONS(2429), - [sym__block_close] = ACTIONS(2429), - [sym__block_quote_start] = ACTIONS(2429), - [sym_atx_h1_marker] = ACTIONS(2429), - [sym_atx_h2_marker] = ACTIONS(2429), - [sym_atx_h3_marker] = ACTIONS(2429), - [sym_atx_h4_marker] = ACTIONS(2429), - [sym_atx_h5_marker] = ACTIONS(2429), - [sym_atx_h6_marker] = ACTIONS(2429), - [sym__thematic_break] = ACTIONS(2429), - [sym__list_marker_minus] = ACTIONS(2429), - [sym__list_marker_plus] = ACTIONS(2429), - [sym__list_marker_star] = ACTIONS(2429), - [sym__list_marker_parenthesis] = ACTIONS(2429), - [sym__list_marker_dot] = ACTIONS(2429), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_example] = ACTIONS(2429), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2429), - [sym__fenced_code_block_start_backtick] = ACTIONS(2429), - [sym_minus_metadata] = ACTIONS(2429), - [sym__pipe_table_start] = ACTIONS(2429), - [sym__fenced_div_start] = ACTIONS(2429), - [sym__fenced_div_end] = ACTIONS(2429), - [sym_ref_id_specifier] = ACTIONS(2429), - [sym__code_span_start] = ACTIONS(2429), - [sym__html_comment] = ACTIONS(2429), - [sym__autolink] = ACTIONS(2429), - [sym__highlight_span_start] = ACTIONS(2429), - [sym__insert_span_start] = ACTIONS(2429), - [sym__delete_span_start] = ACTIONS(2429), - [sym__edit_comment_span_start] = ACTIONS(2429), - [sym__single_quote_span_open] = ACTIONS(2429), - [sym__double_quote_span_open] = ACTIONS(2429), - [sym__shortcode_open_escaped] = ACTIONS(2429), - [sym__shortcode_open] = ACTIONS(2429), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2429), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2429), - [sym__cite_author_in_text] = ACTIONS(2429), - [sym__cite_suppress_author] = ACTIONS(2429), - [sym__strikeout_open] = ACTIONS(2429), - [sym__subscript_open] = ACTIONS(2429), - [sym__superscript_open] = ACTIONS(2429), - [sym__inline_note_start_token] = ACTIONS(2429), - [sym__strong_emphasis_open_star] = ACTIONS(2429), - [sym__strong_emphasis_open_underscore] = ACTIONS(2429), - [sym__emphasis_open_star] = ACTIONS(2429), - [sym__emphasis_open_underscore] = ACTIONS(2429), - [sym_inline_note_reference] = ACTIONS(2429), - [sym_html_element] = ACTIONS(2429), - [sym__pandoc_lt_str] = ACTIONS(2429), - [sym__pandoc_line_break] = ACTIONS(2429), - [sym_grid_table] = ACTIONS(2429), - [sym__caption_start] = ACTIONS(2429), - }, - [STATE(240)] = { - [sym_entity_reference] = ACTIONS(2433), - [sym_numeric_character_reference] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_BANG_LBRACK] = ACTIONS(2433), - [anon_sym_DOLLAR] = ACTIONS(2435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [aux_sym_pandoc_str_token1] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2433), - [sym__whitespace] = ACTIONS(2433), - [sym__line_ending] = ACTIONS(2433), - [sym__soft_line_ending] = ACTIONS(2433), - [sym__block_close] = ACTIONS(2433), - [sym__block_quote_start] = ACTIONS(2433), - [sym_atx_h1_marker] = ACTIONS(2433), - [sym_atx_h2_marker] = ACTIONS(2433), - [sym_atx_h3_marker] = ACTIONS(2433), - [sym_atx_h4_marker] = ACTIONS(2433), - [sym_atx_h5_marker] = ACTIONS(2433), - [sym_atx_h6_marker] = ACTIONS(2433), - [sym__thematic_break] = ACTIONS(2433), - [sym__list_marker_minus] = ACTIONS(2433), - [sym__list_marker_plus] = ACTIONS(2433), - [sym__list_marker_star] = ACTIONS(2433), - [sym__list_marker_parenthesis] = ACTIONS(2433), - [sym__list_marker_dot] = ACTIONS(2433), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_example] = ACTIONS(2433), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2433), - [sym__fenced_code_block_start_backtick] = ACTIONS(2433), - [sym_minus_metadata] = ACTIONS(2433), - [sym__pipe_table_start] = ACTIONS(2433), - [sym__fenced_div_start] = ACTIONS(2433), - [sym__fenced_div_end] = ACTIONS(2433), - [sym_ref_id_specifier] = ACTIONS(2433), - [sym__code_span_start] = ACTIONS(2433), - [sym__html_comment] = ACTIONS(2433), - [sym__autolink] = ACTIONS(2433), - [sym__highlight_span_start] = ACTIONS(2433), - [sym__insert_span_start] = ACTIONS(2433), - [sym__delete_span_start] = ACTIONS(2433), - [sym__edit_comment_span_start] = ACTIONS(2433), - [sym__single_quote_span_open] = ACTIONS(2433), - [sym__double_quote_span_open] = ACTIONS(2433), - [sym__shortcode_open_escaped] = ACTIONS(2433), - [sym__shortcode_open] = ACTIONS(2433), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2433), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2433), - [sym__cite_author_in_text] = ACTIONS(2433), - [sym__cite_suppress_author] = ACTIONS(2433), - [sym__strikeout_open] = ACTIONS(2433), - [sym__subscript_open] = ACTIONS(2433), - [sym__superscript_open] = ACTIONS(2433), - [sym__inline_note_start_token] = ACTIONS(2433), - [sym__strong_emphasis_open_star] = ACTIONS(2433), - [sym__strong_emphasis_open_underscore] = ACTIONS(2433), - [sym__emphasis_open_star] = ACTIONS(2433), - [sym__emphasis_open_underscore] = ACTIONS(2433), - [sym_inline_note_reference] = ACTIONS(2433), - [sym_html_element] = ACTIONS(2433), - [sym__pandoc_lt_str] = ACTIONS(2433), - [sym__pandoc_line_break] = ACTIONS(2433), - [sym_grid_table] = ACTIONS(2433), - [sym__caption_start] = ACTIONS(2433), - }, - [STATE(241)] = { - [sym_entity_reference] = ACTIONS(2437), - [sym_numeric_character_reference] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_BANG_LBRACK] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [aux_sym_pandoc_str_token1] = ACTIONS(2439), - [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), [sym__whitespace] = ACTIONS(2437), - [sym__line_ending] = ACTIONS(2437), - [sym__soft_line_ending] = ACTIONS(2437), - [sym__block_close] = ACTIONS(2437), - [sym__block_quote_start] = ACTIONS(2437), - [sym_atx_h1_marker] = ACTIONS(2437), - [sym_atx_h2_marker] = ACTIONS(2437), - [sym_atx_h3_marker] = ACTIONS(2437), - [sym_atx_h4_marker] = ACTIONS(2437), - [sym_atx_h5_marker] = ACTIONS(2437), - [sym_atx_h6_marker] = ACTIONS(2437), - [sym__thematic_break] = ACTIONS(2437), - [sym__list_marker_minus] = ACTIONS(2437), - [sym__list_marker_plus] = ACTIONS(2437), - [sym__list_marker_star] = ACTIONS(2437), - [sym__list_marker_parenthesis] = ACTIONS(2437), - [sym__list_marker_dot] = ACTIONS(2437), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_example] = ACTIONS(2437), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2437), - [sym__fenced_code_block_start_backtick] = ACTIONS(2437), - [sym_minus_metadata] = ACTIONS(2437), - [sym__pipe_table_start] = ACTIONS(2437), - [sym__fenced_div_start] = ACTIONS(2437), - [sym__fenced_div_end] = ACTIONS(2437), - [sym_ref_id_specifier] = ACTIONS(2437), - [sym__code_span_start] = ACTIONS(2437), - [sym__html_comment] = ACTIONS(2437), - [sym__autolink] = ACTIONS(2437), - [sym__highlight_span_start] = ACTIONS(2437), - [sym__insert_span_start] = ACTIONS(2437), - [sym__delete_span_start] = ACTIONS(2437), - [sym__edit_comment_span_start] = ACTIONS(2437), - [sym__single_quote_span_open] = ACTIONS(2437), - [sym__double_quote_span_open] = ACTIONS(2437), - [sym__shortcode_open_escaped] = ACTIONS(2437), - [sym__shortcode_open] = ACTIONS(2437), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2437), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2437), - [sym__cite_author_in_text] = ACTIONS(2437), - [sym__cite_suppress_author] = ACTIONS(2437), - [sym__strikeout_open] = ACTIONS(2437), - [sym__subscript_open] = ACTIONS(2437), - [sym__superscript_open] = ACTIONS(2437), - [sym__inline_note_start_token] = ACTIONS(2437), - [sym__strong_emphasis_open_star] = ACTIONS(2437), - [sym__strong_emphasis_open_underscore] = ACTIONS(2437), - [sym__emphasis_open_star] = ACTIONS(2437), - [sym__emphasis_open_underscore] = ACTIONS(2437), - [sym_inline_note_reference] = ACTIONS(2437), - [sym_html_element] = ACTIONS(2437), - [sym__pandoc_lt_str] = ACTIONS(2437), - [sym__pandoc_line_break] = ACTIONS(2437), - [sym_grid_table] = ACTIONS(2437), - [sym__caption_start] = ACTIONS(2437), - }, - [STATE(242)] = { - [sym_entity_reference] = ACTIONS(2441), - [sym_numeric_character_reference] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(2441), - [anon_sym_BANG_LBRACK] = ACTIONS(2441), - [anon_sym_DOLLAR] = ACTIONS(2443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2441), - [anon_sym_LBRACE] = ACTIONS(2441), - [aux_sym_pandoc_str_token1] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2441), - [sym__whitespace] = ACTIONS(2441), - [sym__line_ending] = ACTIONS(2441), - [sym__soft_line_ending] = ACTIONS(2441), - [sym__block_close] = ACTIONS(2441), - [sym__block_quote_start] = ACTIONS(2441), - [sym_atx_h1_marker] = ACTIONS(2441), - [sym_atx_h2_marker] = ACTIONS(2441), - [sym_atx_h3_marker] = ACTIONS(2441), - [sym_atx_h4_marker] = ACTIONS(2441), - [sym_atx_h5_marker] = ACTIONS(2441), - [sym_atx_h6_marker] = ACTIONS(2441), - [sym__thematic_break] = ACTIONS(2441), - [sym__list_marker_minus] = ACTIONS(2441), - [sym__list_marker_plus] = ACTIONS(2441), - [sym__list_marker_star] = ACTIONS(2441), - [sym__list_marker_parenthesis] = ACTIONS(2441), - [sym__list_marker_dot] = ACTIONS(2441), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_example] = ACTIONS(2441), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2441), - [sym__fenced_code_block_start_backtick] = ACTIONS(2441), - [sym_minus_metadata] = ACTIONS(2441), - [sym__pipe_table_start] = ACTIONS(2441), - [sym__fenced_div_start] = ACTIONS(2441), - [sym__fenced_div_end] = ACTIONS(2441), - [sym_ref_id_specifier] = ACTIONS(2441), + [sym__soft_line_ending] = ACTIONS(2439), [sym__code_span_start] = ACTIONS(2441), - [sym__html_comment] = ACTIONS(2441), - [sym__autolink] = ACTIONS(2441), - [sym__highlight_span_start] = ACTIONS(2441), - [sym__insert_span_start] = ACTIONS(2441), - [sym__delete_span_start] = ACTIONS(2441), - [sym__edit_comment_span_start] = ACTIONS(2441), - [sym__single_quote_span_open] = ACTIONS(2441), - [sym__double_quote_span_open] = ACTIONS(2441), - [sym__shortcode_open_escaped] = ACTIONS(2441), - [sym__shortcode_open] = ACTIONS(2441), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2441), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2441), - [sym__cite_author_in_text] = ACTIONS(2441), - [sym__cite_suppress_author] = ACTIONS(2441), - [sym__strikeout_open] = ACTIONS(2441), - [sym__subscript_open] = ACTIONS(2441), - [sym__superscript_open] = ACTIONS(2441), - [sym__inline_note_start_token] = ACTIONS(2441), - [sym__strong_emphasis_open_star] = ACTIONS(2441), - [sym__strong_emphasis_open_underscore] = ACTIONS(2441), - [sym__emphasis_open_star] = ACTIONS(2441), - [sym__emphasis_open_underscore] = ACTIONS(2441), - [sym_inline_note_reference] = ACTIONS(2441), - [sym_html_element] = ACTIONS(2441), - [sym__pandoc_lt_str] = ACTIONS(2441), - [sym__pandoc_line_break] = ACTIONS(2441), - [sym_grid_table] = ACTIONS(2441), - [sym__caption_start] = ACTIONS(2441), - }, - [STATE(243)] = { - [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), - [sym__whitespace] = ACTIONS(2445), - [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(2445), - [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(2445), - [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__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), [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__pandoc_lt_str] = ACTIONS(2445), - [sym__pandoc_line_break] = ACTIONS(2445), - [sym_grid_table] = ACTIONS(2445), - [sym__caption_start] = ACTIONS(2445), - }, - [STATE(244)] = { - [sym_entity_reference] = ACTIONS(2449), - [sym_numeric_character_reference] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_BANG_LBRACK] = ACTIONS(2449), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2449), - [aux_sym_pandoc_str_token1] = ACTIONS(2451), - [anon_sym_PIPE] = ACTIONS(2449), - [sym__whitespace] = ACTIONS(2449), - [sym__line_ending] = ACTIONS(2449), - [sym__soft_line_ending] = ACTIONS(2449), - [sym__block_close] = ACTIONS(2449), - [sym__block_quote_start] = ACTIONS(2449), - [sym_atx_h1_marker] = ACTIONS(2449), - [sym_atx_h2_marker] = ACTIONS(2449), - [sym_atx_h3_marker] = ACTIONS(2449), - [sym_atx_h4_marker] = ACTIONS(2449), - [sym_atx_h5_marker] = ACTIONS(2449), - [sym_atx_h6_marker] = ACTIONS(2449), - [sym__thematic_break] = ACTIONS(2449), - [sym__list_marker_minus] = ACTIONS(2449), - [sym__list_marker_plus] = ACTIONS(2449), - [sym__list_marker_star] = ACTIONS(2449), - [sym__list_marker_parenthesis] = ACTIONS(2449), - [sym__list_marker_dot] = ACTIONS(2449), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_example] = ACTIONS(2449), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2449), - [sym__fenced_code_block_start_backtick] = ACTIONS(2449), - [sym_minus_metadata] = ACTIONS(2449), - [sym__pipe_table_start] = ACTIONS(2449), - [sym__fenced_div_start] = ACTIONS(2449), - [sym__fenced_div_end] = ACTIONS(2449), - [sym_ref_id_specifier] = ACTIONS(2449), - [sym__code_span_start] = ACTIONS(2449), - [sym__html_comment] = ACTIONS(2449), - [sym__autolink] = ACTIONS(2449), - [sym__highlight_span_start] = ACTIONS(2449), - [sym__insert_span_start] = ACTIONS(2449), - [sym__delete_span_start] = ACTIONS(2449), + [sym__delete_span_start] = ACTIONS(2447), [sym__edit_comment_span_start] = ACTIONS(2449), - [sym__single_quote_span_open] = ACTIONS(2449), - [sym__double_quote_span_open] = ACTIONS(2449), - [sym__shortcode_open_escaped] = ACTIONS(2449), - [sym__shortcode_open] = ACTIONS(2449), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2449), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2449), - [sym__cite_author_in_text] = ACTIONS(2449), - [sym__cite_suppress_author] = ACTIONS(2449), - [sym__strikeout_open] = ACTIONS(2449), - [sym__subscript_open] = ACTIONS(2449), - [sym__superscript_open] = ACTIONS(2449), - [sym__inline_note_start_token] = ACTIONS(2449), - [sym__strong_emphasis_open_star] = ACTIONS(2449), - [sym__strong_emphasis_open_underscore] = ACTIONS(2449), - [sym__emphasis_open_star] = ACTIONS(2449), - [sym__emphasis_open_underscore] = ACTIONS(2449), - [sym_inline_note_reference] = ACTIONS(2449), - [sym_html_element] = ACTIONS(2449), - [sym__pandoc_lt_str] = ACTIONS(2449), - [sym__pandoc_line_break] = ACTIONS(2449), - [sym_grid_table] = ACTIONS(2449), - [sym__caption_start] = ACTIONS(2449), - }, - [STATE(245)] = { - [sym_entity_reference] = ACTIONS(2453), - [sym_numeric_character_reference] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2453), - [anon_sym_BANG_LBRACK] = ACTIONS(2453), - [anon_sym_DOLLAR] = ACTIONS(2455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2453), - [aux_sym_pandoc_str_token1] = ACTIONS(2455), - [anon_sym_PIPE] = ACTIONS(2453), - [sym__whitespace] = ACTIONS(2453), - [sym__line_ending] = ACTIONS(2453), - [sym__soft_line_ending] = ACTIONS(2453), - [sym__block_close] = ACTIONS(2453), - [sym__block_quote_start] = ACTIONS(2453), - [sym_atx_h1_marker] = ACTIONS(2453), - [sym_atx_h2_marker] = ACTIONS(2453), - [sym_atx_h3_marker] = ACTIONS(2453), - [sym_atx_h4_marker] = ACTIONS(2453), - [sym_atx_h5_marker] = ACTIONS(2453), - [sym_atx_h6_marker] = ACTIONS(2453), - [sym__thematic_break] = ACTIONS(2453), - [sym__list_marker_minus] = ACTIONS(2453), - [sym__list_marker_plus] = ACTIONS(2453), - [sym__list_marker_star] = ACTIONS(2453), - [sym__list_marker_parenthesis] = ACTIONS(2453), - [sym__list_marker_dot] = ACTIONS(2453), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_example] = ACTIONS(2453), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2453), - [sym__fenced_code_block_start_backtick] = ACTIONS(2453), - [sym_minus_metadata] = ACTIONS(2453), - [sym__pipe_table_start] = ACTIONS(2453), - [sym__fenced_div_start] = ACTIONS(2453), - [sym__fenced_div_end] = ACTIONS(2453), - [sym_ref_id_specifier] = ACTIONS(2453), - [sym__code_span_start] = ACTIONS(2453), - [sym__html_comment] = ACTIONS(2453), - [sym__autolink] = ACTIONS(2453), - [sym__highlight_span_start] = ACTIONS(2453), - [sym__insert_span_start] = ACTIONS(2453), - [sym__delete_span_start] = ACTIONS(2453), - [sym__edit_comment_span_start] = ACTIONS(2453), - [sym__single_quote_span_open] = ACTIONS(2453), + [sym__single_quote_span_open] = ACTIONS(2451), [sym__double_quote_span_open] = ACTIONS(2453), - [sym__shortcode_open_escaped] = ACTIONS(2453), - [sym__shortcode_open] = ACTIONS(2453), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2453), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2453), - [sym__cite_author_in_text] = ACTIONS(2453), - [sym__cite_suppress_author] = ACTIONS(2453), - [sym__strikeout_open] = ACTIONS(2453), - [sym__subscript_open] = ACTIONS(2453), - [sym__superscript_open] = ACTIONS(2453), - [sym__inline_note_start_token] = ACTIONS(2453), - [sym__strong_emphasis_open_star] = ACTIONS(2453), - [sym__strong_emphasis_open_underscore] = ACTIONS(2453), - [sym__emphasis_open_star] = ACTIONS(2453), - [sym__emphasis_open_underscore] = ACTIONS(2453), - [sym_inline_note_reference] = ACTIONS(2453), - [sym_html_element] = ACTIONS(2453), - [sym__pandoc_lt_str] = ACTIONS(2453), - [sym__pandoc_line_break] = ACTIONS(2453), - [sym_grid_table] = ACTIONS(2453), - [sym__caption_start] = ACTIONS(2453), - }, - [STATE(246)] = { - [sym_entity_reference] = ACTIONS(2457), - [sym_numeric_character_reference] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_BANG_LBRACK] = ACTIONS(2457), - [anon_sym_DOLLAR] = ACTIONS(2459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2457), - [anon_sym_LBRACE] = ACTIONS(2457), - [aux_sym_pandoc_str_token1] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(2457), - [sym__whitespace] = ACTIONS(2457), - [sym__line_ending] = ACTIONS(2457), - [sym__soft_line_ending] = ACTIONS(2457), - [sym__block_close] = ACTIONS(2457), - [sym__block_quote_start] = ACTIONS(2457), - [sym_atx_h1_marker] = ACTIONS(2457), - [sym_atx_h2_marker] = ACTIONS(2457), - [sym_atx_h3_marker] = ACTIONS(2457), - [sym_atx_h4_marker] = ACTIONS(2457), - [sym_atx_h5_marker] = ACTIONS(2457), - [sym_atx_h6_marker] = ACTIONS(2457), - [sym__thematic_break] = ACTIONS(2457), - [sym__list_marker_minus] = ACTIONS(2457), - [sym__list_marker_plus] = ACTIONS(2457), - [sym__list_marker_star] = ACTIONS(2457), - [sym__list_marker_parenthesis] = ACTIONS(2457), - [sym__list_marker_dot] = ACTIONS(2457), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_example] = ACTIONS(2457), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2457), - [sym__fenced_code_block_start_backtick] = ACTIONS(2457), - [sym_minus_metadata] = ACTIONS(2457), - [sym__pipe_table_start] = ACTIONS(2457), - [sym__fenced_div_start] = ACTIONS(2457), - [sym__fenced_div_end] = ACTIONS(2457), - [sym_ref_id_specifier] = ACTIONS(2457), - [sym__code_span_start] = ACTIONS(2457), - [sym__html_comment] = ACTIONS(2457), - [sym__autolink] = ACTIONS(2457), - [sym__highlight_span_start] = ACTIONS(2457), - [sym__insert_span_start] = ACTIONS(2457), - [sym__delete_span_start] = ACTIONS(2457), - [sym__edit_comment_span_start] = ACTIONS(2457), - [sym__single_quote_span_open] = ACTIONS(2457), - [sym__double_quote_span_open] = ACTIONS(2457), - [sym__shortcode_open_escaped] = ACTIONS(2457), + [sym__shortcode_open_escaped] = ACTIONS(2455), [sym__shortcode_open] = ACTIONS(2457), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2457), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2457), - [sym__cite_author_in_text] = ACTIONS(2457), - [sym__cite_suppress_author] = ACTIONS(2457), - [sym__strikeout_open] = ACTIONS(2457), - [sym__subscript_open] = ACTIONS(2457), - [sym__superscript_open] = ACTIONS(2457), - [sym__inline_note_start_token] = ACTIONS(2457), - [sym__strong_emphasis_open_star] = ACTIONS(2457), - [sym__strong_emphasis_open_underscore] = ACTIONS(2457), - [sym__emphasis_open_star] = ACTIONS(2457), - [sym__emphasis_open_underscore] = ACTIONS(2457), - [sym_inline_note_reference] = ACTIONS(2457), - [sym_html_element] = ACTIONS(2457), - [sym__pandoc_lt_str] = ACTIONS(2457), - [sym__pandoc_line_break] = ACTIONS(2457), - [sym_grid_table] = ACTIONS(2457), - [sym__caption_start] = ACTIONS(2457), - }, - [STATE(247)] = { - [sym_entity_reference] = ACTIONS(2461), - [sym_numeric_character_reference] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_BANG_LBRACK] = ACTIONS(2461), - [anon_sym_DOLLAR] = ACTIONS(2463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2461), - [anon_sym_LBRACE] = ACTIONS(2461), - [aux_sym_pandoc_str_token1] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2461), - [sym__line_ending] = ACTIONS(2461), - [sym__soft_line_ending] = ACTIONS(2461), - [sym__block_close] = ACTIONS(2461), - [sym__block_quote_start] = ACTIONS(2461), - [sym_atx_h1_marker] = ACTIONS(2461), - [sym_atx_h2_marker] = ACTIONS(2461), - [sym_atx_h3_marker] = ACTIONS(2461), - [sym_atx_h4_marker] = ACTIONS(2461), - [sym_atx_h5_marker] = ACTIONS(2461), - [sym_atx_h6_marker] = ACTIONS(2461), - [sym__thematic_break] = ACTIONS(2461), - [sym__list_marker_minus] = ACTIONS(2461), - [sym__list_marker_plus] = ACTIONS(2461), - [sym__list_marker_star] = ACTIONS(2461), - [sym__list_marker_parenthesis] = ACTIONS(2461), - [sym__list_marker_dot] = ACTIONS(2461), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_example] = ACTIONS(2461), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2461), - [sym__fenced_code_block_start_backtick] = ACTIONS(2461), - [sym_minus_metadata] = ACTIONS(2461), - [sym__pipe_table_start] = ACTIONS(2461), - [sym__fenced_div_start] = ACTIONS(2461), - [sym__fenced_div_end] = ACTIONS(2461), - [sym_ref_id_specifier] = ACTIONS(2461), - [sym__code_span_start] = ACTIONS(2461), - [sym__html_comment] = ACTIONS(2461), - [sym__autolink] = ACTIONS(2461), - [sym__highlight_span_start] = ACTIONS(2461), - [sym__insert_span_start] = ACTIONS(2461), - [sym__delete_span_start] = ACTIONS(2461), - [sym__edit_comment_span_start] = ACTIONS(2461), - [sym__single_quote_span_open] = ACTIONS(2461), - [sym__double_quote_span_open] = ACTIONS(2461), - [sym__shortcode_open_escaped] = ACTIONS(2461), - [sym__shortcode_open] = ACTIONS(2461), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), - [sym__cite_author_in_text] = ACTIONS(2461), - [sym__cite_suppress_author] = ACTIONS(2461), - [sym__strikeout_open] = ACTIONS(2461), - [sym__subscript_open] = ACTIONS(2461), - [sym__superscript_open] = ACTIONS(2461), - [sym__inline_note_start_token] = ACTIONS(2461), - [sym__strong_emphasis_open_star] = ACTIONS(2461), - [sym__strong_emphasis_open_underscore] = ACTIONS(2461), - [sym__emphasis_open_star] = ACTIONS(2461), - [sym__emphasis_open_underscore] = ACTIONS(2461), - [sym_inline_note_reference] = ACTIONS(2461), - [sym_html_element] = ACTIONS(2461), - [sym__pandoc_lt_str] = ACTIONS(2461), - [sym__pandoc_line_break] = ACTIONS(2461), - [sym_grid_table] = ACTIONS(2461), - [sym__caption_start] = ACTIONS(2461), - }, - [STATE(248)] = { - [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), - [sym__whitespace] = ACTIONS(2465), - [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(2465), - [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(2465), - [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_author_in_text] = ACTIONS(2463), [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__pandoc_lt_str] = ACTIONS(2465), - [sym__pandoc_line_break] = ACTIONS(2465), - [sym_grid_table] = ACTIONS(2465), - [sym__caption_start] = ACTIONS(2465), - }, - [STATE(249)] = { - [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), - [sym__whitespace] = ACTIONS(2469), - [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(2469), - [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(2469), - [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__strikeout_open] = ACTIONS(2467), [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__pandoc_lt_str] = ACTIONS(2469), - [sym__pandoc_line_break] = ACTIONS(2469), - [sym_grid_table] = ACTIONS(2469), - [sym__caption_start] = ACTIONS(2469), - }, - [STATE(250)] = { - [sym_entity_reference] = ACTIONS(2473), - [sym_numeric_character_reference] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_BANG_LBRACK] = ACTIONS(2473), - [anon_sym_DOLLAR] = ACTIONS(2475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2473), - [aux_sym_pandoc_str_token1] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2473), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(2473), - [sym__soft_line_ending] = ACTIONS(2473), - [sym__block_close] = ACTIONS(2473), - [sym__block_quote_start] = ACTIONS(2473), - [sym_atx_h1_marker] = ACTIONS(2473), - [sym_atx_h2_marker] = ACTIONS(2473), - [sym_atx_h3_marker] = ACTIONS(2473), - [sym_atx_h4_marker] = ACTIONS(2473), - [sym_atx_h5_marker] = ACTIONS(2473), - [sym_atx_h6_marker] = ACTIONS(2473), - [sym__thematic_break] = ACTIONS(2473), - [sym__list_marker_minus] = ACTIONS(2473), - [sym__list_marker_plus] = ACTIONS(2473), - [sym__list_marker_star] = ACTIONS(2473), - [sym__list_marker_parenthesis] = ACTIONS(2473), - [sym__list_marker_dot] = ACTIONS(2473), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_example] = ACTIONS(2473), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2473), - [sym__fenced_code_block_start_backtick] = ACTIONS(2473), - [sym_minus_metadata] = ACTIONS(2473), - [sym__pipe_table_start] = ACTIONS(2473), - [sym__fenced_div_start] = ACTIONS(2473), - [sym__fenced_div_end] = ACTIONS(2473), - [sym_ref_id_specifier] = ACTIONS(2473), - [sym__code_span_start] = ACTIONS(2473), - [sym__html_comment] = ACTIONS(2473), - [sym__autolink] = ACTIONS(2473), - [sym__highlight_span_start] = ACTIONS(2473), - [sym__insert_span_start] = ACTIONS(2473), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2473), - [sym__single_quote_span_open] = ACTIONS(2473), - [sym__double_quote_span_open] = ACTIONS(2473), - [sym__shortcode_open_escaped] = ACTIONS(2473), - [sym__shortcode_open] = ACTIONS(2473), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2473), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2473), - [sym__cite_author_in_text] = ACTIONS(2473), - [sym__cite_suppress_author] = ACTIONS(2473), - [sym__strikeout_open] = ACTIONS(2473), - [sym__subscript_open] = ACTIONS(2473), - [sym__superscript_open] = ACTIONS(2473), + [sym__superscript_open] = ACTIONS(2471), [sym__inline_note_start_token] = ACTIONS(2473), - [sym__strong_emphasis_open_star] = ACTIONS(2473), - [sym__strong_emphasis_open_underscore] = ACTIONS(2473), - [sym__emphasis_open_star] = ACTIONS(2473), - [sym__emphasis_open_underscore] = ACTIONS(2473), - [sym_inline_note_reference] = ACTIONS(2473), - [sym_html_element] = ACTIONS(2473), - [sym__pandoc_lt_str] = ACTIONS(2473), - [sym__pandoc_line_break] = ACTIONS(2473), - [sym_grid_table] = ACTIONS(2473), - [sym__caption_start] = ACTIONS(2473), - }, - [STATE(251)] = { - [sym_entity_reference] = ACTIONS(2477), - [sym_numeric_character_reference] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2477), - [anon_sym_BANG_LBRACK] = ACTIONS(2477), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), - [aux_sym_pandoc_str_token1] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(2477), - [sym__whitespace] = ACTIONS(2477), - [sym__line_ending] = ACTIONS(2477), - [sym__soft_line_ending] = ACTIONS(2477), - [sym__block_close] = ACTIONS(2477), - [sym__block_quote_start] = ACTIONS(2477), - [sym_atx_h1_marker] = ACTIONS(2477), - [sym_atx_h2_marker] = ACTIONS(2477), - [sym_atx_h3_marker] = ACTIONS(2477), - [sym_atx_h4_marker] = ACTIONS(2477), - [sym_atx_h5_marker] = ACTIONS(2477), - [sym_atx_h6_marker] = ACTIONS(2477), - [sym__thematic_break] = ACTIONS(2477), - [sym__list_marker_minus] = ACTIONS(2477), - [sym__list_marker_plus] = ACTIONS(2477), - [sym__list_marker_star] = ACTIONS(2477), - [sym__list_marker_parenthesis] = ACTIONS(2477), - [sym__list_marker_dot] = ACTIONS(2477), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_example] = ACTIONS(2477), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2477), - [sym__fenced_code_block_start_backtick] = ACTIONS(2477), - [sym_minus_metadata] = ACTIONS(2477), - [sym__pipe_table_start] = ACTIONS(2477), - [sym__fenced_div_start] = ACTIONS(2477), - [sym__fenced_div_end] = ACTIONS(2477), - [sym_ref_id_specifier] = ACTIONS(2477), - [sym__code_span_start] = ACTIONS(2477), - [sym__html_comment] = ACTIONS(2477), - [sym__autolink] = ACTIONS(2477), - [sym__highlight_span_start] = ACTIONS(2477), - [sym__insert_span_start] = ACTIONS(2477), - [sym__delete_span_start] = ACTIONS(2477), - [sym__edit_comment_span_start] = ACTIONS(2477), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2477), - [sym__shortcode_open_escaped] = ACTIONS(2477), - [sym__shortcode_open] = ACTIONS(2477), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2477), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2477), - [sym__cite_author_in_text] = ACTIONS(2477), - [sym__cite_suppress_author] = ACTIONS(2477), - [sym__strikeout_open] = ACTIONS(2477), - [sym__subscript_open] = ACTIONS(2477), - [sym__superscript_open] = ACTIONS(2477), - [sym__inline_note_start_token] = ACTIONS(2477), - [sym__strong_emphasis_open_star] = ACTIONS(2477), + [sym__strong_emphasis_open_star] = ACTIONS(2475), [sym__strong_emphasis_open_underscore] = ACTIONS(2477), - [sym__emphasis_open_star] = ACTIONS(2477), - [sym__emphasis_open_underscore] = ACTIONS(2477), - [sym_inline_note_reference] = ACTIONS(2477), - [sym_html_element] = ACTIONS(2477), - [sym__pandoc_lt_str] = ACTIONS(2477), - [sym__pandoc_line_break] = ACTIONS(2477), - [sym_grid_table] = ACTIONS(2477), - [sym__caption_start] = ACTIONS(2477), - }, - [STATE(252)] = { - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2481), - [anon_sym_BANG_LBRACK] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2481), - [aux_sym_pandoc_str_token1] = ACTIONS(2483), - [anon_sym_PIPE] = ACTIONS(2481), - [sym__whitespace] = ACTIONS(2481), - [sym__line_ending] = ACTIONS(2481), - [sym__soft_line_ending] = ACTIONS(2481), - [sym__block_close] = ACTIONS(2481), - [sym__block_quote_start] = ACTIONS(2481), - [sym_atx_h1_marker] = ACTIONS(2481), - [sym_atx_h2_marker] = ACTIONS(2481), - [sym_atx_h3_marker] = ACTIONS(2481), - [sym_atx_h4_marker] = ACTIONS(2481), - [sym_atx_h5_marker] = ACTIONS(2481), - [sym_atx_h6_marker] = ACTIONS(2481), - [sym__thematic_break] = ACTIONS(2481), - [sym__list_marker_minus] = ACTIONS(2481), - [sym__list_marker_plus] = ACTIONS(2481), - [sym__list_marker_star] = ACTIONS(2481), - [sym__list_marker_parenthesis] = ACTIONS(2481), - [sym__list_marker_dot] = ACTIONS(2481), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_example] = ACTIONS(2481), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2481), - [sym__fenced_code_block_start_backtick] = ACTIONS(2481), - [sym_minus_metadata] = ACTIONS(2481), - [sym__pipe_table_start] = ACTIONS(2481), - [sym__fenced_div_start] = ACTIONS(2481), - [sym__fenced_div_end] = ACTIONS(2481), - [sym_ref_id_specifier] = ACTIONS(2481), - [sym__code_span_start] = ACTIONS(2481), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2481), - [sym__insert_span_start] = ACTIONS(2481), - [sym__delete_span_start] = ACTIONS(2481), - [sym__edit_comment_span_start] = ACTIONS(2481), - [sym__single_quote_span_open] = ACTIONS(2481), - [sym__double_quote_span_open] = ACTIONS(2481), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2481), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2481), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2481), - [sym__cite_author_in_text] = ACTIONS(2481), - [sym__cite_suppress_author] = ACTIONS(2481), - [sym__strikeout_open] = ACTIONS(2481), - [sym__subscript_open] = ACTIONS(2481), - [sym__superscript_open] = ACTIONS(2481), - [sym__inline_note_start_token] = ACTIONS(2481), - [sym__strong_emphasis_open_star] = ACTIONS(2481), - [sym__strong_emphasis_open_underscore] = ACTIONS(2481), - [sym__emphasis_open_star] = ACTIONS(2481), + [sym__emphasis_open_star] = ACTIONS(2479), [sym__emphasis_open_underscore] = ACTIONS(2481), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - [sym__pandoc_lt_str] = ACTIONS(2481), - [sym__pandoc_line_break] = ACTIONS(2481), - [sym_grid_table] = ACTIONS(2481), - [sym__caption_start] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, - [STATE(253)] = { - [sym_entity_reference] = ACTIONS(2485), - [sym_numeric_character_reference] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2485), - [aux_sym_pandoc_str_token1] = ACTIONS(2487), - [anon_sym_PIPE] = ACTIONS(2485), - [sym__whitespace] = ACTIONS(2485), - [sym__line_ending] = ACTIONS(2485), - [sym__soft_line_ending] = ACTIONS(2485), - [sym__block_close] = ACTIONS(2485), - [sym__block_quote_start] = ACTIONS(2485), - [sym_atx_h1_marker] = ACTIONS(2485), - [sym_atx_h2_marker] = ACTIONS(2485), - [sym_atx_h3_marker] = ACTIONS(2485), - [sym_atx_h4_marker] = ACTIONS(2485), - [sym_atx_h5_marker] = ACTIONS(2485), - [sym_atx_h6_marker] = ACTIONS(2485), - [sym__thematic_break] = ACTIONS(2485), - [sym__list_marker_minus] = ACTIONS(2485), - [sym__list_marker_plus] = ACTIONS(2485), - [sym__list_marker_star] = ACTIONS(2485), - [sym__list_marker_parenthesis] = ACTIONS(2485), - [sym__list_marker_dot] = ACTIONS(2485), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_example] = ACTIONS(2485), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2485), - [sym__fenced_code_block_start_backtick] = ACTIONS(2485), - [sym_minus_metadata] = ACTIONS(2485), - [sym__pipe_table_start] = ACTIONS(2485), - [sym__fenced_div_start] = ACTIONS(2485), - [sym__fenced_div_end] = ACTIONS(2485), - [sym_ref_id_specifier] = ACTIONS(2485), - [sym__code_span_start] = ACTIONS(2485), - [sym__html_comment] = ACTIONS(2485), - [sym__autolink] = ACTIONS(2485), - [sym__highlight_span_start] = ACTIONS(2485), - [sym__insert_span_start] = ACTIONS(2485), - [sym__delete_span_start] = ACTIONS(2485), - [sym__edit_comment_span_start] = ACTIONS(2485), - [sym__single_quote_span_open] = ACTIONS(2485), - [sym__double_quote_span_open] = ACTIONS(2485), - [sym__shortcode_open_escaped] = ACTIONS(2485), - [sym__shortcode_open] = ACTIONS(2485), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2485), - [sym__cite_author_in_text] = ACTIONS(2485), - [sym__cite_suppress_author] = ACTIONS(2485), - [sym__strikeout_open] = ACTIONS(2485), - [sym__subscript_open] = ACTIONS(2485), - [sym__superscript_open] = ACTIONS(2485), - [sym__inline_note_start_token] = ACTIONS(2485), - [sym__strong_emphasis_open_star] = ACTIONS(2485), - [sym__strong_emphasis_open_underscore] = ACTIONS(2485), - [sym__emphasis_open_star] = ACTIONS(2485), - [sym__emphasis_open_underscore] = ACTIONS(2485), - [sym_inline_note_reference] = ACTIONS(2485), - [sym_html_element] = ACTIONS(2485), - [sym__pandoc_lt_str] = ACTIONS(2485), - [sym__pandoc_line_break] = ACTIONS(2485), - [sym_grid_table] = ACTIONS(2485), - [sym__caption_start] = ACTIONS(2485), + [STATE(203)] = { + [sym_entity_reference] = ACTIONS(2331), + [sym_numeric_character_reference] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2331), + [anon_sym_BANG_LBRACK] = ACTIONS(2331), + [anon_sym_DOLLAR] = ACTIONS(2333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [aux_sym_pandoc_str_token1] = ACTIONS(2333), + [anon_sym_PIPE] = ACTIONS(2331), + [sym__whitespace] = ACTIONS(2331), + [sym__line_ending] = ACTIONS(2331), + [sym__soft_line_ending] = ACTIONS(2331), + [sym__block_close] = ACTIONS(2331), + [sym_block_continuation] = ACTIONS(2483), + [sym__block_quote_start] = ACTIONS(2331), + [sym_atx_h1_marker] = ACTIONS(2331), + [sym_atx_h2_marker] = ACTIONS(2331), + [sym_atx_h3_marker] = ACTIONS(2331), + [sym_atx_h4_marker] = ACTIONS(2331), + [sym_atx_h5_marker] = ACTIONS(2331), + [sym_atx_h6_marker] = ACTIONS(2331), + [sym__thematic_break] = ACTIONS(2331), + [sym__list_marker_minus] = ACTIONS(2331), + [sym__list_marker_plus] = ACTIONS(2331), + [sym__list_marker_star] = ACTIONS(2331), + [sym__list_marker_parenthesis] = ACTIONS(2331), + [sym__list_marker_dot] = ACTIONS(2331), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_example] = ACTIONS(2331), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2331), + [sym__fenced_code_block_start_backtick] = ACTIONS(2331), + [sym__minus_metadata_start] = ACTIONS(2331), + [sym__pipe_table_start] = ACTIONS(2331), + [sym__fenced_div_start] = ACTIONS(2331), + [sym_ref_id_specifier] = ACTIONS(2331), + [sym__code_span_start] = ACTIONS(2331), + [sym__html_comment] = ACTIONS(2331), + [sym__autolink] = ACTIONS(2331), + [sym__highlight_span_start] = ACTIONS(2331), + [sym__insert_span_start] = ACTIONS(2331), + [sym__delete_span_start] = ACTIONS(2331), + [sym__edit_comment_span_start] = ACTIONS(2331), + [sym__single_quote_span_open] = ACTIONS(2331), + [sym__double_quote_span_open] = ACTIONS(2331), + [sym__shortcode_open_escaped] = ACTIONS(2331), + [sym__shortcode_open] = ACTIONS(2331), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2331), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2331), + [sym__cite_author_in_text] = ACTIONS(2331), + [sym__cite_suppress_author] = ACTIONS(2331), + [sym__strikeout_open] = ACTIONS(2331), + [sym__subscript_open] = ACTIONS(2331), + [sym__superscript_open] = ACTIONS(2331), + [sym__inline_note_start_token] = ACTIONS(2331), + [sym__strong_emphasis_open_star] = ACTIONS(2331), + [sym__strong_emphasis_open_underscore] = ACTIONS(2331), + [sym__emphasis_open_star] = ACTIONS(2331), + [sym__emphasis_open_underscore] = ACTIONS(2331), + [sym_inline_note_reference] = ACTIONS(2331), + [sym_html_element] = ACTIONS(2331), + [sym__pandoc_lt_str] = ACTIONS(2331), + [sym__pandoc_line_break] = ACTIONS(2331), + [sym_grid_table] = ACTIONS(2331), + [sym__caption_start] = ACTIONS(2331), }, - [STATE(254)] = { - [sym_entity_reference] = ACTIONS(2489), - [sym_numeric_character_reference] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_BANG_LBRACK] = ACTIONS(2489), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(2489), - [aux_sym_pandoc_str_token1] = ACTIONS(2491), - [anon_sym_PIPE] = ACTIONS(2489), - [sym__whitespace] = ACTIONS(2489), - [sym__line_ending] = ACTIONS(2489), - [sym__soft_line_ending] = ACTIONS(2489), - [sym__block_close] = ACTIONS(2489), - [sym__block_quote_start] = ACTIONS(2489), - [sym_atx_h1_marker] = ACTIONS(2489), - [sym_atx_h2_marker] = ACTIONS(2489), - [sym_atx_h3_marker] = ACTIONS(2489), - [sym_atx_h4_marker] = ACTIONS(2489), - [sym_atx_h5_marker] = ACTIONS(2489), - [sym_atx_h6_marker] = ACTIONS(2489), - [sym__thematic_break] = ACTIONS(2489), - [sym__list_marker_minus] = ACTIONS(2489), - [sym__list_marker_plus] = ACTIONS(2489), - [sym__list_marker_star] = ACTIONS(2489), - [sym__list_marker_parenthesis] = ACTIONS(2489), - [sym__list_marker_dot] = ACTIONS(2489), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_example] = ACTIONS(2489), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2489), - [sym__fenced_code_block_start_backtick] = ACTIONS(2489), - [sym_minus_metadata] = ACTIONS(2489), - [sym__pipe_table_start] = ACTIONS(2489), - [sym__fenced_div_start] = ACTIONS(2489), - [sym__fenced_div_end] = ACTIONS(2489), - [sym_ref_id_specifier] = ACTIONS(2489), - [sym__code_span_start] = ACTIONS(2489), - [sym__html_comment] = ACTIONS(2489), - [sym__autolink] = ACTIONS(2489), - [sym__highlight_span_start] = ACTIONS(2489), - [sym__insert_span_start] = ACTIONS(2489), - [sym__delete_span_start] = ACTIONS(2489), - [sym__edit_comment_span_start] = ACTIONS(2489), - [sym__single_quote_span_open] = ACTIONS(2489), - [sym__double_quote_span_open] = ACTIONS(2489), - [sym__shortcode_open_escaped] = ACTIONS(2489), - [sym__shortcode_open] = ACTIONS(2489), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2489), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2489), - [sym__strikeout_open] = ACTIONS(2489), - [sym__subscript_open] = ACTIONS(2489), - [sym__superscript_open] = ACTIONS(2489), - [sym__inline_note_start_token] = ACTIONS(2489), - [sym__strong_emphasis_open_star] = ACTIONS(2489), - [sym__strong_emphasis_open_underscore] = ACTIONS(2489), - [sym__emphasis_open_star] = ACTIONS(2489), - [sym__emphasis_open_underscore] = ACTIONS(2489), - [sym_inline_note_reference] = ACTIONS(2489), - [sym_html_element] = ACTIONS(2489), - [sym__pandoc_lt_str] = ACTIONS(2489), - [sym__pandoc_line_break] = ACTIONS(2489), - [sym_grid_table] = ACTIONS(2489), - [sym__caption_start] = ACTIONS(2489), + [STATE(204)] = { + [ts_builtin_sym_end] = ACTIONS(2355), + [sym_entity_reference] = ACTIONS(2355), + [sym_numeric_character_reference] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_BANG_LBRACK] = ACTIONS(2355), + [anon_sym_DOLLAR] = ACTIONS(2357), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2355), + [sym__whitespace] = ACTIONS(2355), + [sym__line_ending] = ACTIONS(2355), + [sym__soft_line_ending] = ACTIONS(2355), + [sym_block_continuation] = ACTIONS(2485), + [sym__block_quote_start] = ACTIONS(2355), + [sym_atx_h1_marker] = ACTIONS(2355), + [sym_atx_h2_marker] = ACTIONS(2355), + [sym_atx_h3_marker] = ACTIONS(2355), + [sym_atx_h4_marker] = ACTIONS(2355), + [sym_atx_h5_marker] = ACTIONS(2355), + [sym_atx_h6_marker] = ACTIONS(2355), + [sym__thematic_break] = ACTIONS(2355), + [sym__list_marker_minus] = ACTIONS(2355), + [sym__list_marker_plus] = ACTIONS(2355), + [sym__list_marker_star] = ACTIONS(2355), + [sym__list_marker_parenthesis] = ACTIONS(2355), + [sym__list_marker_dot] = ACTIONS(2355), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_example] = ACTIONS(2355), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2355), + [sym__fenced_code_block_start_backtick] = ACTIONS(2355), + [sym__minus_metadata_start] = ACTIONS(2355), + [sym__pipe_table_start] = ACTIONS(2355), + [sym__fenced_div_start] = ACTIONS(2355), + [sym_ref_id_specifier] = ACTIONS(2355), + [sym__code_span_start] = ACTIONS(2355), + [sym__html_comment] = ACTIONS(2355), + [sym__autolink] = ACTIONS(2355), + [sym__highlight_span_start] = ACTIONS(2355), + [sym__insert_span_start] = ACTIONS(2355), + [sym__delete_span_start] = ACTIONS(2355), + [sym__edit_comment_span_start] = ACTIONS(2355), + [sym__single_quote_span_open] = ACTIONS(2355), + [sym__double_quote_span_open] = ACTIONS(2355), + [sym__shortcode_open_escaped] = ACTIONS(2355), + [sym__shortcode_open] = ACTIONS(2355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2355), + [sym__cite_author_in_text] = ACTIONS(2355), + [sym__cite_suppress_author] = ACTIONS(2355), + [sym__strikeout_open] = ACTIONS(2355), + [sym__subscript_open] = ACTIONS(2355), + [sym__superscript_open] = ACTIONS(2355), + [sym__inline_note_start_token] = ACTIONS(2355), + [sym__strong_emphasis_open_star] = ACTIONS(2355), + [sym__strong_emphasis_open_underscore] = ACTIONS(2355), + [sym__emphasis_open_star] = ACTIONS(2355), + [sym__emphasis_open_underscore] = ACTIONS(2355), + [sym_inline_note_reference] = ACTIONS(2355), + [sym_html_element] = ACTIONS(2355), + [sym__pandoc_lt_str] = ACTIONS(2355), + [sym__pandoc_line_break] = ACTIONS(2355), + [sym_grid_table] = ACTIONS(2355), + [sym__caption_start] = ACTIONS(2355), }, - [STATE(255)] = { - [sym_entity_reference] = ACTIONS(2493), - [sym_numeric_character_reference] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_BANG_LBRACK] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2493), - [sym__whitespace] = ACTIONS(2493), - [sym__line_ending] = ACTIONS(2493), - [sym__soft_line_ending] = ACTIONS(2493), - [sym__block_close] = ACTIONS(2493), - [sym__block_quote_start] = ACTIONS(2493), - [sym_atx_h1_marker] = ACTIONS(2493), - [sym_atx_h2_marker] = ACTIONS(2493), - [sym_atx_h3_marker] = ACTIONS(2493), - [sym_atx_h4_marker] = ACTIONS(2493), - [sym_atx_h5_marker] = ACTIONS(2493), - [sym_atx_h6_marker] = ACTIONS(2493), - [sym__thematic_break] = ACTIONS(2493), - [sym__list_marker_minus] = ACTIONS(2493), - [sym__list_marker_plus] = ACTIONS(2493), - [sym__list_marker_star] = ACTIONS(2493), - [sym__list_marker_parenthesis] = ACTIONS(2493), - [sym__list_marker_dot] = ACTIONS(2493), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_example] = ACTIONS(2493), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2493), - [sym__fenced_code_block_start_backtick] = ACTIONS(2493), - [sym_minus_metadata] = ACTIONS(2493), - [sym__pipe_table_start] = ACTIONS(2493), - [sym__fenced_div_start] = ACTIONS(2493), - [sym__fenced_div_end] = ACTIONS(2493), - [sym_ref_id_specifier] = ACTIONS(2493), - [sym__code_span_start] = ACTIONS(2493), - [sym__html_comment] = ACTIONS(2493), - [sym__autolink] = ACTIONS(2493), - [sym__highlight_span_start] = ACTIONS(2493), - [sym__insert_span_start] = ACTIONS(2493), - [sym__delete_span_start] = ACTIONS(2493), - [sym__edit_comment_span_start] = ACTIONS(2493), - [sym__single_quote_span_open] = ACTIONS(2493), - [sym__double_quote_span_open] = ACTIONS(2493), - [sym__shortcode_open_escaped] = ACTIONS(2493), - [sym__shortcode_open] = ACTIONS(2493), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2493), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2493), - [sym__cite_author_in_text] = ACTIONS(2493), - [sym__cite_suppress_author] = ACTIONS(2493), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2493), - [sym__superscript_open] = ACTIONS(2493), - [sym__inline_note_start_token] = ACTIONS(2493), - [sym__strong_emphasis_open_star] = ACTIONS(2493), - [sym__strong_emphasis_open_underscore] = ACTIONS(2493), - [sym__emphasis_open_star] = ACTIONS(2493), - [sym__emphasis_open_underscore] = ACTIONS(2493), - [sym_inline_note_reference] = ACTIONS(2493), - [sym_html_element] = ACTIONS(2493), - [sym__pandoc_lt_str] = ACTIONS(2493), - [sym__pandoc_line_break] = ACTIONS(2493), - [sym_grid_table] = ACTIONS(2493), - [sym__caption_start] = ACTIONS(2493), + [STATE(205)] = { + [ts_builtin_sym_end] = ACTIONS(2331), + [sym_entity_reference] = ACTIONS(2331), + [sym_numeric_character_reference] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2331), + [anon_sym_BANG_LBRACK] = ACTIONS(2331), + [anon_sym_DOLLAR] = ACTIONS(2333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [aux_sym_pandoc_str_token1] = ACTIONS(2333), + [anon_sym_PIPE] = ACTIONS(2331), + [sym__whitespace] = ACTIONS(2331), + [sym__line_ending] = ACTIONS(2331), + [sym__soft_line_ending] = ACTIONS(2331), + [sym_block_continuation] = ACTIONS(2487), + [sym__block_quote_start] = ACTIONS(2331), + [sym_atx_h1_marker] = ACTIONS(2331), + [sym_atx_h2_marker] = ACTIONS(2331), + [sym_atx_h3_marker] = ACTIONS(2331), + [sym_atx_h4_marker] = ACTIONS(2331), + [sym_atx_h5_marker] = ACTIONS(2331), + [sym_atx_h6_marker] = ACTIONS(2331), + [sym__thematic_break] = ACTIONS(2331), + [sym__list_marker_minus] = ACTIONS(2331), + [sym__list_marker_plus] = ACTIONS(2331), + [sym__list_marker_star] = ACTIONS(2331), + [sym__list_marker_parenthesis] = ACTIONS(2331), + [sym__list_marker_dot] = ACTIONS(2331), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2331), + [sym__list_marker_example] = ACTIONS(2331), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2331), + [sym__fenced_code_block_start_backtick] = ACTIONS(2331), + [sym__minus_metadata_start] = ACTIONS(2331), + [sym__pipe_table_start] = ACTIONS(2331), + [sym__fenced_div_start] = ACTIONS(2331), + [sym_ref_id_specifier] = ACTIONS(2331), + [sym__code_span_start] = ACTIONS(2331), + [sym__html_comment] = ACTIONS(2331), + [sym__autolink] = ACTIONS(2331), + [sym__highlight_span_start] = ACTIONS(2331), + [sym__insert_span_start] = ACTIONS(2331), + [sym__delete_span_start] = ACTIONS(2331), + [sym__edit_comment_span_start] = ACTIONS(2331), + [sym__single_quote_span_open] = ACTIONS(2331), + [sym__double_quote_span_open] = ACTIONS(2331), + [sym__shortcode_open_escaped] = ACTIONS(2331), + [sym__shortcode_open] = ACTIONS(2331), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2331), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2331), + [sym__cite_author_in_text] = ACTIONS(2331), + [sym__cite_suppress_author] = ACTIONS(2331), + [sym__strikeout_open] = ACTIONS(2331), + [sym__subscript_open] = ACTIONS(2331), + [sym__superscript_open] = ACTIONS(2331), + [sym__inline_note_start_token] = ACTIONS(2331), + [sym__strong_emphasis_open_star] = ACTIONS(2331), + [sym__strong_emphasis_open_underscore] = ACTIONS(2331), + [sym__emphasis_open_star] = ACTIONS(2331), + [sym__emphasis_open_underscore] = ACTIONS(2331), + [sym_inline_note_reference] = ACTIONS(2331), + [sym_html_element] = ACTIONS(2331), + [sym__pandoc_lt_str] = ACTIONS(2331), + [sym__pandoc_line_break] = ACTIONS(2331), + [sym_grid_table] = ACTIONS(2331), + [sym__caption_start] = ACTIONS(2331), }, - [STATE(256)] = { - [sym_entity_reference] = ACTIONS(2497), - [sym_numeric_character_reference] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_BANG_LBRACK] = ACTIONS(2497), - [anon_sym_DOLLAR] = ACTIONS(2499), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2497), - [aux_sym_pandoc_str_token1] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2497), - [sym__whitespace] = ACTIONS(2497), - [sym__line_ending] = ACTIONS(2497), - [sym__soft_line_ending] = ACTIONS(2497), - [sym__block_close] = ACTIONS(2497), - [sym__block_quote_start] = ACTIONS(2497), - [sym_atx_h1_marker] = ACTIONS(2497), - [sym_atx_h2_marker] = ACTIONS(2497), - [sym_atx_h3_marker] = ACTIONS(2497), - [sym_atx_h4_marker] = ACTIONS(2497), - [sym_atx_h5_marker] = ACTIONS(2497), - [sym_atx_h6_marker] = ACTIONS(2497), - [sym__thematic_break] = ACTIONS(2497), - [sym__list_marker_minus] = ACTIONS(2497), - [sym__list_marker_plus] = ACTIONS(2497), - [sym__list_marker_star] = ACTIONS(2497), - [sym__list_marker_parenthesis] = ACTIONS(2497), - [sym__list_marker_dot] = ACTIONS(2497), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_example] = ACTIONS(2497), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2497), - [sym__fenced_code_block_start_backtick] = ACTIONS(2497), - [sym_minus_metadata] = ACTIONS(2497), - [sym__pipe_table_start] = ACTIONS(2497), - [sym__fenced_div_start] = ACTIONS(2497), - [sym__fenced_div_end] = ACTIONS(2497), - [sym_ref_id_specifier] = ACTIONS(2497), - [sym__code_span_start] = ACTIONS(2497), - [sym__html_comment] = ACTIONS(2497), - [sym__autolink] = ACTIONS(2497), - [sym__highlight_span_start] = ACTIONS(2497), - [sym__insert_span_start] = ACTIONS(2497), - [sym__delete_span_start] = ACTIONS(2497), - [sym__edit_comment_span_start] = ACTIONS(2497), - [sym__single_quote_span_open] = ACTIONS(2497), - [sym__double_quote_span_open] = ACTIONS(2497), - [sym__shortcode_open_escaped] = ACTIONS(2497), - [sym__shortcode_open] = ACTIONS(2497), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2497), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2497), - [sym__cite_author_in_text] = ACTIONS(2497), - [sym__cite_suppress_author] = ACTIONS(2497), - [sym__strikeout_open] = ACTIONS(2497), - [sym__subscript_open] = ACTIONS(2497), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2497), - [sym__strong_emphasis_open_star] = ACTIONS(2497), - [sym__strong_emphasis_open_underscore] = ACTIONS(2497), - [sym__emphasis_open_star] = ACTIONS(2497), - [sym__emphasis_open_underscore] = ACTIONS(2497), - [sym_inline_note_reference] = ACTIONS(2497), - [sym_html_element] = ACTIONS(2497), - [sym__pandoc_lt_str] = ACTIONS(2497), - [sym__pandoc_line_break] = ACTIONS(2497), - [sym_grid_table] = ACTIONS(2497), - [sym__caption_start] = ACTIONS(2497), + [STATE(206)] = { + [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), + [sym__whitespace] = ACTIONS(2283), + [sym__line_ending] = ACTIONS(2283), + [sym__soft_line_ending] = ACTIONS(2283), + [sym__block_close] = ACTIONS(2283), + [sym_block_continuation] = ACTIONS(2489), + [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(2283), + [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(2283), + [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_start] = 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__pandoc_lt_str] = ACTIONS(2283), + [sym__pandoc_line_break] = ACTIONS(2283), + [sym_grid_table] = ACTIONS(2283), + [sym__caption_start] = ACTIONS(2283), }, - [STATE(257)] = { - [sym_entity_reference] = ACTIONS(2501), - [sym_numeric_character_reference] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_BANG_LBRACK] = ACTIONS(2501), - [anon_sym_DOLLAR] = ACTIONS(2503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [aux_sym_pandoc_str_token1] = ACTIONS(2503), - [anon_sym_PIPE] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2501), - [sym__line_ending] = ACTIONS(2501), - [sym__soft_line_ending] = ACTIONS(2501), - [sym__block_close] = ACTIONS(2501), - [sym__block_quote_start] = ACTIONS(2501), - [sym_atx_h1_marker] = ACTIONS(2501), - [sym_atx_h2_marker] = ACTIONS(2501), - [sym_atx_h3_marker] = ACTIONS(2501), - [sym_atx_h4_marker] = ACTIONS(2501), - [sym_atx_h5_marker] = ACTIONS(2501), - [sym_atx_h6_marker] = ACTIONS(2501), - [sym__thematic_break] = ACTIONS(2501), - [sym__list_marker_minus] = ACTIONS(2501), - [sym__list_marker_plus] = ACTIONS(2501), - [sym__list_marker_star] = ACTIONS(2501), - [sym__list_marker_parenthesis] = ACTIONS(2501), - [sym__list_marker_dot] = ACTIONS(2501), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_example] = ACTIONS(2501), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2501), - [sym__fenced_code_block_start_backtick] = ACTIONS(2501), - [sym_minus_metadata] = ACTIONS(2501), - [sym__pipe_table_start] = ACTIONS(2501), - [sym__fenced_div_start] = ACTIONS(2501), - [sym__fenced_div_end] = ACTIONS(2501), - [sym_ref_id_specifier] = ACTIONS(2501), - [sym__code_span_start] = ACTIONS(2501), - [sym__html_comment] = ACTIONS(2501), - [sym__autolink] = ACTIONS(2501), - [sym__highlight_span_start] = ACTIONS(2501), - [sym__insert_span_start] = ACTIONS(2501), - [sym__delete_span_start] = ACTIONS(2501), - [sym__edit_comment_span_start] = ACTIONS(2501), - [sym__single_quote_span_open] = ACTIONS(2501), - [sym__double_quote_span_open] = ACTIONS(2501), - [sym__shortcode_open_escaped] = ACTIONS(2501), - [sym__shortcode_open] = ACTIONS(2501), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2501), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2501), - [sym__cite_author_in_text] = ACTIONS(2501), - [sym__cite_suppress_author] = ACTIONS(2501), - [sym__strikeout_open] = ACTIONS(2501), - [sym__subscript_open] = ACTIONS(2501), - [sym__superscript_open] = ACTIONS(2501), - [sym__inline_note_start_token] = ACTIONS(2501), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2501), - [sym__emphasis_open_star] = ACTIONS(2501), - [sym__emphasis_open_underscore] = ACTIONS(2501), - [sym_inline_note_reference] = ACTIONS(2501), - [sym_html_element] = ACTIONS(2501), - [sym__pandoc_lt_str] = ACTIONS(2501), - [sym__pandoc_line_break] = ACTIONS(2501), - [sym_grid_table] = ACTIONS(2501), - [sym__caption_start] = ACTIONS(2501), + [STATE(207)] = { + [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), + [sym__whitespace] = ACTIONS(2289), + [sym__line_ending] = ACTIONS(2289), + [sym__soft_line_ending] = ACTIONS(2289), + [sym__block_close] = ACTIONS(2289), + [sym_block_continuation] = ACTIONS(2491), + [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(2289), + [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(2289), + [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_start] = 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_lt_str] = ACTIONS(2289), + [sym__pandoc_line_break] = ACTIONS(2289), + [sym_grid_table] = ACTIONS(2289), + [sym__caption_start] = ACTIONS(2289), }, - [STATE(258)] = { - [sym_entity_reference] = ACTIONS(2505), - [sym_numeric_character_reference] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_BANG_LBRACK] = ACTIONS(2505), - [anon_sym_DOLLAR] = ACTIONS(2507), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [aux_sym_pandoc_str_token1] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2505), - [sym__whitespace] = ACTIONS(2505), - [sym__line_ending] = ACTIONS(2505), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__block_close] = ACTIONS(2505), - [sym__block_quote_start] = ACTIONS(2505), - [sym_atx_h1_marker] = ACTIONS(2505), - [sym_atx_h2_marker] = ACTIONS(2505), - [sym_atx_h3_marker] = ACTIONS(2505), - [sym_atx_h4_marker] = ACTIONS(2505), - [sym_atx_h5_marker] = ACTIONS(2505), - [sym_atx_h6_marker] = ACTIONS(2505), - [sym__thematic_break] = ACTIONS(2505), - [sym__list_marker_minus] = ACTIONS(2505), - [sym__list_marker_plus] = ACTIONS(2505), - [sym__list_marker_star] = ACTIONS(2505), - [sym__list_marker_parenthesis] = ACTIONS(2505), - [sym__list_marker_dot] = ACTIONS(2505), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_example] = ACTIONS(2505), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2505), - [sym__fenced_code_block_start_backtick] = ACTIONS(2505), - [sym_minus_metadata] = ACTIONS(2505), - [sym__pipe_table_start] = ACTIONS(2505), - [sym__fenced_div_start] = ACTIONS(2505), - [sym__fenced_div_end] = ACTIONS(2505), - [sym_ref_id_specifier] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2505), - [sym__html_comment] = ACTIONS(2505), - [sym__autolink] = ACTIONS(2505), - [sym__highlight_span_start] = ACTIONS(2505), - [sym__insert_span_start] = ACTIONS(2505), - [sym__delete_span_start] = ACTIONS(2505), - [sym__edit_comment_span_start] = ACTIONS(2505), - [sym__single_quote_span_open] = ACTIONS(2505), - [sym__double_quote_span_open] = ACTIONS(2505), - [sym__shortcode_open_escaped] = ACTIONS(2505), - [sym__shortcode_open] = ACTIONS(2505), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2505), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2505), - [sym__cite_author_in_text] = ACTIONS(2505), - [sym__cite_suppress_author] = ACTIONS(2505), - [sym__strikeout_open] = ACTIONS(2505), - [sym__subscript_open] = ACTIONS(2505), - [sym__superscript_open] = ACTIONS(2505), - [sym__inline_note_start_token] = ACTIONS(2505), - [sym__strong_emphasis_open_star] = ACTIONS(2505), - [sym__strong_emphasis_open_underscore] = ACTIONS(2505), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2505), - [sym_inline_note_reference] = ACTIONS(2505), - [sym_html_element] = ACTIONS(2505), - [sym__pandoc_lt_str] = ACTIONS(2505), - [sym__pandoc_line_break] = ACTIONS(2505), - [sym_grid_table] = ACTIONS(2505), - [sym__caption_start] = ACTIONS(2505), + [STATE(208)] = { + [sym_entity_reference] = ACTIONS(2295), + [sym_numeric_character_reference] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_BANG_LBRACK] = ACTIONS(2295), + [anon_sym_DOLLAR] = ACTIONS(2297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [aux_sym_pandoc_str_token1] = ACTIONS(2297), + [anon_sym_PIPE] = ACTIONS(2295), + [sym__whitespace] = ACTIONS(2295), + [sym__line_ending] = ACTIONS(2295), + [sym__soft_line_ending] = ACTIONS(2295), + [sym__block_close] = ACTIONS(2295), + [sym_block_continuation] = ACTIONS(2493), + [sym__block_quote_start] = ACTIONS(2295), + [sym_atx_h1_marker] = ACTIONS(2295), + [sym_atx_h2_marker] = ACTIONS(2295), + [sym_atx_h3_marker] = ACTIONS(2295), + [sym_atx_h4_marker] = ACTIONS(2295), + [sym_atx_h5_marker] = ACTIONS(2295), + [sym_atx_h6_marker] = ACTIONS(2295), + [sym__thematic_break] = ACTIONS(2295), + [sym__list_marker_minus] = ACTIONS(2295), + [sym__list_marker_plus] = ACTIONS(2295), + [sym__list_marker_star] = ACTIONS(2295), + [sym__list_marker_parenthesis] = ACTIONS(2295), + [sym__list_marker_dot] = ACTIONS(2295), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_example] = ACTIONS(2295), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2295), + [sym__fenced_code_block_start_backtick] = ACTIONS(2295), + [sym__minus_metadata_start] = ACTIONS(2295), + [sym__pipe_table_start] = ACTIONS(2295), + [sym__fenced_div_start] = ACTIONS(2295), + [sym_ref_id_specifier] = ACTIONS(2295), + [sym__code_span_start] = ACTIONS(2295), + [sym__html_comment] = ACTIONS(2295), + [sym__autolink] = ACTIONS(2295), + [sym__highlight_span_start] = ACTIONS(2295), + [sym__insert_span_start] = ACTIONS(2295), + [sym__delete_span_start] = ACTIONS(2295), + [sym__edit_comment_span_start] = ACTIONS(2295), + [sym__single_quote_span_open] = ACTIONS(2295), + [sym__double_quote_span_open] = ACTIONS(2295), + [sym__shortcode_open_escaped] = ACTIONS(2295), + [sym__shortcode_open] = ACTIONS(2295), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2295), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2295), + [sym__cite_author_in_text] = ACTIONS(2295), + [sym__cite_suppress_author] = ACTIONS(2295), + [sym__strikeout_open] = ACTIONS(2295), + [sym__subscript_open] = ACTIONS(2295), + [sym__superscript_open] = ACTIONS(2295), + [sym__inline_note_start_token] = ACTIONS(2295), + [sym__strong_emphasis_open_star] = ACTIONS(2295), + [sym__strong_emphasis_open_underscore] = ACTIONS(2295), + [sym__emphasis_open_star] = ACTIONS(2295), + [sym__emphasis_open_underscore] = ACTIONS(2295), + [sym_inline_note_reference] = ACTIONS(2295), + [sym_html_element] = ACTIONS(2295), + [sym__pandoc_lt_str] = ACTIONS(2295), + [sym__pandoc_line_break] = ACTIONS(2295), + [sym_grid_table] = ACTIONS(2295), + [sym__caption_start] = ACTIONS(2295), }, - [STATE(259)] = { - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2509), - [anon_sym_BANG_LBRACK] = ACTIONS(2509), - [anon_sym_DOLLAR] = ACTIONS(2511), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [aux_sym_pandoc_str_token1] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2509), - [sym__whitespace] = ACTIONS(2509), - [sym__line_ending] = ACTIONS(2509), - [sym__soft_line_ending] = ACTIONS(2509), - [sym__block_close] = ACTIONS(2509), - [sym__block_quote_start] = ACTIONS(2509), - [sym_atx_h1_marker] = ACTIONS(2509), - [sym_atx_h2_marker] = ACTIONS(2509), - [sym_atx_h3_marker] = ACTIONS(2509), - [sym_atx_h4_marker] = ACTIONS(2509), - [sym_atx_h5_marker] = ACTIONS(2509), - [sym_atx_h6_marker] = ACTIONS(2509), - [sym__thematic_break] = ACTIONS(2509), - [sym__list_marker_minus] = ACTIONS(2509), - [sym__list_marker_plus] = ACTIONS(2509), - [sym__list_marker_star] = ACTIONS(2509), - [sym__list_marker_parenthesis] = ACTIONS(2509), - [sym__list_marker_dot] = ACTIONS(2509), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_example] = ACTIONS(2509), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2509), - [sym__fenced_code_block_start_backtick] = ACTIONS(2509), - [sym_minus_metadata] = ACTIONS(2509), - [sym__pipe_table_start] = ACTIONS(2509), - [sym__fenced_div_start] = ACTIONS(2509), - [sym__fenced_div_end] = ACTIONS(2509), - [sym_ref_id_specifier] = ACTIONS(2509), - [sym__code_span_start] = ACTIONS(2509), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2509), - [sym__delete_span_start] = ACTIONS(2509), - [sym__edit_comment_span_start] = ACTIONS(2509), - [sym__single_quote_span_open] = ACTIONS(2509), - [sym__double_quote_span_open] = ACTIONS(2509), - [sym__shortcode_open_escaped] = ACTIONS(2509), - [sym__shortcode_open] = ACTIONS(2509), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2509), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2509), - [sym__cite_author_in_text] = ACTIONS(2509), - [sym__cite_suppress_author] = ACTIONS(2509), - [sym__strikeout_open] = ACTIONS(2509), - [sym__subscript_open] = ACTIONS(2509), - [sym__superscript_open] = ACTIONS(2509), - [sym__inline_note_start_token] = ACTIONS(2509), - [sym__strong_emphasis_open_star] = ACTIONS(2509), - [sym__strong_emphasis_open_underscore] = ACTIONS(2509), - [sym__emphasis_open_star] = ACTIONS(2509), - [sym__emphasis_open_underscore] = ACTIONS(2509), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pandoc_lt_str] = ACTIONS(2509), - [sym__pandoc_line_break] = ACTIONS(2509), - [sym_grid_table] = ACTIONS(2509), - [sym__caption_start] = ACTIONS(2509), + [STATE(209)] = { + [sym_entity_reference] = ACTIONS(2301), + [sym_numeric_character_reference] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_BANG_LBRACK] = ACTIONS(2301), + [anon_sym_DOLLAR] = ACTIONS(2303), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2301), + [aux_sym_pandoc_str_token1] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2301), + [sym__whitespace] = ACTIONS(2301), + [sym__line_ending] = ACTIONS(2301), + [sym__soft_line_ending] = ACTIONS(2301), + [sym__block_close] = ACTIONS(2301), + [sym_block_continuation] = ACTIONS(2495), + [sym__block_quote_start] = ACTIONS(2301), + [sym_atx_h1_marker] = ACTIONS(2301), + [sym_atx_h2_marker] = ACTIONS(2301), + [sym_atx_h3_marker] = ACTIONS(2301), + [sym_atx_h4_marker] = ACTIONS(2301), + [sym_atx_h5_marker] = ACTIONS(2301), + [sym_atx_h6_marker] = ACTIONS(2301), + [sym__thematic_break] = ACTIONS(2301), + [sym__list_marker_minus] = ACTIONS(2301), + [sym__list_marker_plus] = ACTIONS(2301), + [sym__list_marker_star] = ACTIONS(2301), + [sym__list_marker_parenthesis] = ACTIONS(2301), + [sym__list_marker_dot] = ACTIONS(2301), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_example] = ACTIONS(2301), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2301), + [sym__fenced_code_block_start_backtick] = ACTIONS(2301), + [sym__minus_metadata_start] = ACTIONS(2301), + [sym__pipe_table_start] = ACTIONS(2301), + [sym__fenced_div_start] = ACTIONS(2301), + [sym_ref_id_specifier] = ACTIONS(2301), + [sym__code_span_start] = ACTIONS(2301), + [sym__html_comment] = ACTIONS(2301), + [sym__autolink] = ACTIONS(2301), + [sym__highlight_span_start] = ACTIONS(2301), + [sym__insert_span_start] = ACTIONS(2301), + [sym__delete_span_start] = ACTIONS(2301), + [sym__edit_comment_span_start] = ACTIONS(2301), + [sym__single_quote_span_open] = ACTIONS(2301), + [sym__double_quote_span_open] = ACTIONS(2301), + [sym__shortcode_open_escaped] = ACTIONS(2301), + [sym__shortcode_open] = ACTIONS(2301), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2301), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2301), + [sym__cite_author_in_text] = ACTIONS(2301), + [sym__cite_suppress_author] = ACTIONS(2301), + [sym__strikeout_open] = ACTIONS(2301), + [sym__subscript_open] = ACTIONS(2301), + [sym__superscript_open] = ACTIONS(2301), + [sym__inline_note_start_token] = ACTIONS(2301), + [sym__strong_emphasis_open_star] = ACTIONS(2301), + [sym__strong_emphasis_open_underscore] = ACTIONS(2301), + [sym__emphasis_open_star] = ACTIONS(2301), + [sym__emphasis_open_underscore] = ACTIONS(2301), + [sym_inline_note_reference] = ACTIONS(2301), + [sym_html_element] = ACTIONS(2301), + [sym__pandoc_lt_str] = ACTIONS(2301), + [sym__pandoc_line_break] = ACTIONS(2301), + [sym_grid_table] = ACTIONS(2301), + [sym__caption_start] = ACTIONS(2301), }, - [STATE(260)] = { - [sym_entity_reference] = ACTIONS(2513), - [sym_numeric_character_reference] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2513), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [aux_sym_pandoc_str_token1] = ACTIONS(2515), - [anon_sym_PIPE] = ACTIONS(2513), - [sym__whitespace] = ACTIONS(2513), - [sym__line_ending] = ACTIONS(2513), - [sym__soft_line_ending] = ACTIONS(2513), - [sym__block_close] = ACTIONS(2513), - [sym__block_quote_start] = ACTIONS(2513), - [sym_atx_h1_marker] = ACTIONS(2513), - [sym_atx_h2_marker] = ACTIONS(2513), - [sym_atx_h3_marker] = ACTIONS(2513), - [sym_atx_h4_marker] = ACTIONS(2513), - [sym_atx_h5_marker] = ACTIONS(2513), - [sym_atx_h6_marker] = ACTIONS(2513), - [sym__thematic_break] = ACTIONS(2513), - [sym__list_marker_minus] = ACTIONS(2513), - [sym__list_marker_plus] = ACTIONS(2513), - [sym__list_marker_star] = ACTIONS(2513), - [sym__list_marker_parenthesis] = ACTIONS(2513), - [sym__list_marker_dot] = ACTIONS(2513), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_example] = ACTIONS(2513), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2513), - [sym__fenced_code_block_start_backtick] = ACTIONS(2513), - [sym_minus_metadata] = ACTIONS(2513), - [sym__pipe_table_start] = ACTIONS(2513), - [sym__fenced_div_start] = ACTIONS(2513), - [sym__fenced_div_end] = ACTIONS(2513), - [sym_ref_id_specifier] = ACTIONS(2513), - [sym__code_span_start] = ACTIONS(2513), - [sym__html_comment] = ACTIONS(2513), - [sym__autolink] = ACTIONS(2513), - [sym__highlight_span_start] = ACTIONS(2513), - [sym__insert_span_start] = ACTIONS(2513), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2513), - [sym__single_quote_span_open] = ACTIONS(2513), - [sym__double_quote_span_open] = ACTIONS(2513), - [sym__shortcode_open_escaped] = ACTIONS(2513), - [sym__shortcode_open] = ACTIONS(2513), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2513), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2513), - [sym__cite_author_in_text] = ACTIONS(2513), - [sym__cite_suppress_author] = ACTIONS(2513), - [sym__strikeout_open] = ACTIONS(2513), - [sym__subscript_open] = ACTIONS(2513), - [sym__superscript_open] = ACTIONS(2513), - [sym__inline_note_start_token] = ACTIONS(2513), - [sym__strong_emphasis_open_star] = ACTIONS(2513), - [sym__strong_emphasis_open_underscore] = ACTIONS(2513), - [sym__emphasis_open_star] = ACTIONS(2513), - [sym__emphasis_open_underscore] = ACTIONS(2513), - [sym_inline_note_reference] = ACTIONS(2513), - [sym_html_element] = ACTIONS(2513), - [sym__pandoc_lt_str] = ACTIONS(2513), - [sym__pandoc_line_break] = ACTIONS(2513), - [sym_grid_table] = ACTIONS(2513), - [sym__caption_start] = ACTIONS(2513), + [STATE(210)] = { + [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), + [sym__whitespace] = ACTIONS(2307), + [sym__line_ending] = ACTIONS(2307), + [sym__soft_line_ending] = ACTIONS(2307), + [sym__block_close] = ACTIONS(2307), + [sym_block_continuation] = ACTIONS(2497), + [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(2307), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2307), + [sym__fenced_code_block_start_backtick] = ACTIONS(2307), + [sym__minus_metadata_start] = 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_lt_str] = ACTIONS(2307), + [sym__pandoc_line_break] = ACTIONS(2307), + [sym_grid_table] = ACTIONS(2307), + [sym__caption_start] = ACTIONS(2307), }, - [STATE(261)] = { - [sym_entity_reference] = ACTIONS(2517), - [sym_numeric_character_reference] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_BANG_LBRACK] = ACTIONS(2517), - [anon_sym_DOLLAR] = ACTIONS(2519), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2517), - [aux_sym_pandoc_str_token1] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2517), - [sym__whitespace] = ACTIONS(2517), - [sym__line_ending] = ACTIONS(2517), - [sym__soft_line_ending] = ACTIONS(2517), - [sym__block_close] = ACTIONS(2517), - [sym__block_quote_start] = ACTIONS(2517), - [sym_atx_h1_marker] = ACTIONS(2517), - [sym_atx_h2_marker] = ACTIONS(2517), - [sym_atx_h3_marker] = ACTIONS(2517), - [sym_atx_h4_marker] = ACTIONS(2517), - [sym_atx_h5_marker] = ACTIONS(2517), - [sym_atx_h6_marker] = ACTIONS(2517), - [sym__thematic_break] = ACTIONS(2517), - [sym__list_marker_minus] = ACTIONS(2517), - [sym__list_marker_plus] = ACTIONS(2517), - [sym__list_marker_star] = ACTIONS(2517), - [sym__list_marker_parenthesis] = ACTIONS(2517), - [sym__list_marker_dot] = ACTIONS(2517), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_example] = ACTIONS(2517), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2517), - [sym__fenced_code_block_start_backtick] = ACTIONS(2517), - [sym_minus_metadata] = ACTIONS(2517), - [sym__pipe_table_start] = ACTIONS(2517), - [sym__fenced_div_start] = ACTIONS(2517), - [sym__fenced_div_end] = ACTIONS(2517), - [sym_ref_id_specifier] = ACTIONS(2517), - [sym__code_span_start] = ACTIONS(2517), - [sym__html_comment] = ACTIONS(2517), - [sym__autolink] = ACTIONS(2517), - [sym__highlight_span_start] = ACTIONS(2517), - [sym__insert_span_start] = ACTIONS(2517), - [sym__delete_span_start] = ACTIONS(2517), - [sym__edit_comment_span_start] = ACTIONS(2517), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2517), - [sym__shortcode_open_escaped] = ACTIONS(2517), - [sym__shortcode_open] = ACTIONS(2517), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2517), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2517), - [sym__cite_author_in_text] = ACTIONS(2517), - [sym__cite_suppress_author] = ACTIONS(2517), - [sym__strikeout_open] = ACTIONS(2517), - [sym__subscript_open] = ACTIONS(2517), - [sym__superscript_open] = ACTIONS(2517), - [sym__inline_note_start_token] = ACTIONS(2517), - [sym__strong_emphasis_open_star] = ACTIONS(2517), - [sym__strong_emphasis_open_underscore] = ACTIONS(2517), - [sym__emphasis_open_star] = ACTIONS(2517), - [sym__emphasis_open_underscore] = ACTIONS(2517), - [sym_inline_note_reference] = ACTIONS(2517), - [sym_html_element] = ACTIONS(2517), - [sym__pandoc_lt_str] = ACTIONS(2517), - [sym__pandoc_line_break] = ACTIONS(2517), - [sym_grid_table] = ACTIONS(2517), - [sym__caption_start] = ACTIONS(2517), + [STATE(211)] = { + [sym_entity_reference] = ACTIONS(2355), + [sym_numeric_character_reference] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_BANG_LBRACK] = ACTIONS(2355), + [anon_sym_DOLLAR] = ACTIONS(2357), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [aux_sym_pandoc_str_token1] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2355), + [sym__whitespace] = ACTIONS(2355), + [sym__line_ending] = ACTIONS(2355), + [sym__soft_line_ending] = ACTIONS(2355), + [sym__block_close] = ACTIONS(2355), + [sym_block_continuation] = ACTIONS(2499), + [sym__block_quote_start] = ACTIONS(2355), + [sym_atx_h1_marker] = ACTIONS(2355), + [sym_atx_h2_marker] = ACTIONS(2355), + [sym_atx_h3_marker] = ACTIONS(2355), + [sym_atx_h4_marker] = ACTIONS(2355), + [sym_atx_h5_marker] = ACTIONS(2355), + [sym_atx_h6_marker] = ACTIONS(2355), + [sym__thematic_break] = ACTIONS(2355), + [sym__list_marker_minus] = ACTIONS(2355), + [sym__list_marker_plus] = ACTIONS(2355), + [sym__list_marker_star] = ACTIONS(2355), + [sym__list_marker_parenthesis] = ACTIONS(2355), + [sym__list_marker_dot] = ACTIONS(2355), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2355), + [sym__list_marker_example] = ACTIONS(2355), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2355), + [sym__fenced_code_block_start_backtick] = ACTIONS(2355), + [sym__minus_metadata_start] = ACTIONS(2355), + [sym__pipe_table_start] = ACTIONS(2355), + [sym__fenced_div_start] = ACTIONS(2355), + [sym_ref_id_specifier] = ACTIONS(2355), + [sym__code_span_start] = ACTIONS(2355), + [sym__html_comment] = ACTIONS(2355), + [sym__autolink] = ACTIONS(2355), + [sym__highlight_span_start] = ACTIONS(2355), + [sym__insert_span_start] = ACTIONS(2355), + [sym__delete_span_start] = ACTIONS(2355), + [sym__edit_comment_span_start] = ACTIONS(2355), + [sym__single_quote_span_open] = ACTIONS(2355), + [sym__double_quote_span_open] = ACTIONS(2355), + [sym__shortcode_open_escaped] = ACTIONS(2355), + [sym__shortcode_open] = ACTIONS(2355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2355), + [sym__cite_author_in_text] = ACTIONS(2355), + [sym__cite_suppress_author] = ACTIONS(2355), + [sym__strikeout_open] = ACTIONS(2355), + [sym__subscript_open] = ACTIONS(2355), + [sym__superscript_open] = ACTIONS(2355), + [sym__inline_note_start_token] = ACTIONS(2355), + [sym__strong_emphasis_open_star] = ACTIONS(2355), + [sym__strong_emphasis_open_underscore] = ACTIONS(2355), + [sym__emphasis_open_star] = ACTIONS(2355), + [sym__emphasis_open_underscore] = ACTIONS(2355), + [sym_inline_note_reference] = ACTIONS(2355), + [sym_html_element] = ACTIONS(2355), + [sym__pandoc_lt_str] = ACTIONS(2355), + [sym__pandoc_line_break] = ACTIONS(2355), + [sym_grid_table] = ACTIONS(2355), + [sym__caption_start] = ACTIONS(2355), }, - [STATE(262)] = { - [sym_entity_reference] = ACTIONS(2521), - [sym_numeric_character_reference] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2521), - [anon_sym_BANG_LBRACK] = ACTIONS(2521), - [anon_sym_DOLLAR] = ACTIONS(2523), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(2521), - [aux_sym_pandoc_str_token1] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2521), - [sym__whitespace] = ACTIONS(2521), - [sym__line_ending] = ACTIONS(2521), - [sym__soft_line_ending] = ACTIONS(2521), - [sym__block_close] = ACTIONS(2521), - [sym__block_quote_start] = ACTIONS(2521), - [sym_atx_h1_marker] = ACTIONS(2521), - [sym_atx_h2_marker] = ACTIONS(2521), - [sym_atx_h3_marker] = ACTIONS(2521), - [sym_atx_h4_marker] = ACTIONS(2521), - [sym_atx_h5_marker] = ACTIONS(2521), - [sym_atx_h6_marker] = ACTIONS(2521), - [sym__thematic_break] = ACTIONS(2521), - [sym__list_marker_minus] = ACTIONS(2521), - [sym__list_marker_plus] = ACTIONS(2521), - [sym__list_marker_star] = ACTIONS(2521), - [sym__list_marker_parenthesis] = ACTIONS(2521), - [sym__list_marker_dot] = ACTIONS(2521), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_example] = ACTIONS(2521), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2521), - [sym__fenced_code_block_start_backtick] = ACTIONS(2521), - [sym_minus_metadata] = ACTIONS(2521), - [sym__pipe_table_start] = ACTIONS(2521), - [sym__fenced_div_start] = ACTIONS(2521), - [sym__fenced_div_end] = ACTIONS(2521), - [sym_ref_id_specifier] = ACTIONS(2521), - [sym__code_span_start] = ACTIONS(2521), - [sym__html_comment] = ACTIONS(2521), - [sym__autolink] = ACTIONS(2521), - [sym__highlight_span_start] = ACTIONS(2521), - [sym__insert_span_start] = ACTIONS(2521), - [sym__delete_span_start] = ACTIONS(2521), - [sym__edit_comment_span_start] = ACTIONS(2521), - [sym__single_quote_span_open] = ACTIONS(2521), - [sym__double_quote_span_open] = ACTIONS(2521), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2521), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2521), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2521), - [sym__cite_author_in_text] = ACTIONS(2521), - [sym__cite_suppress_author] = ACTIONS(2521), - [sym__strikeout_open] = ACTIONS(2521), - [sym__subscript_open] = ACTIONS(2521), - [sym__superscript_open] = ACTIONS(2521), - [sym__inline_note_start_token] = ACTIONS(2521), - [sym__strong_emphasis_open_star] = ACTIONS(2521), - [sym__strong_emphasis_open_underscore] = ACTIONS(2521), - [sym__emphasis_open_star] = ACTIONS(2521), - [sym__emphasis_open_underscore] = ACTIONS(2521), - [sym_inline_note_reference] = ACTIONS(2521), - [sym_html_element] = ACTIONS(2521), - [sym__pandoc_lt_str] = ACTIONS(2521), - [sym__pandoc_line_break] = ACTIONS(2521), - [sym_grid_table] = ACTIONS(2521), - [sym__caption_start] = ACTIONS(2521), + [STATE(212)] = { + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_entity_reference] = ACTIONS(2379), + [sym_numeric_character_reference] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_BANG_LBRACK] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(2381), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [aux_sym_pandoc_str_token1] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2379), + [sym__whitespace] = ACTIONS(2379), + [sym__line_ending] = ACTIONS(2379), + [sym__soft_line_ending] = ACTIONS(2379), + [sym_block_continuation] = ACTIONS(2501), + [sym__block_quote_start] = ACTIONS(2379), + [sym_atx_h1_marker] = ACTIONS(2379), + [sym_atx_h2_marker] = ACTIONS(2379), + [sym_atx_h3_marker] = ACTIONS(2379), + [sym_atx_h4_marker] = ACTIONS(2379), + [sym_atx_h5_marker] = ACTIONS(2379), + [sym_atx_h6_marker] = ACTIONS(2379), + [sym__thematic_break] = ACTIONS(2379), + [sym__list_marker_minus] = ACTIONS(2379), + [sym__list_marker_plus] = ACTIONS(2379), + [sym__list_marker_star] = ACTIONS(2379), + [sym__list_marker_parenthesis] = ACTIONS(2379), + [sym__list_marker_dot] = ACTIONS(2379), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_example] = ACTIONS(2379), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2379), + [sym__fenced_code_block_start_backtick] = ACTIONS(2379), + [sym__minus_metadata_start] = ACTIONS(2379), + [sym__pipe_table_start] = ACTIONS(2379), + [sym__fenced_div_start] = ACTIONS(2379), + [sym_ref_id_specifier] = ACTIONS(2379), + [sym__code_span_start] = ACTIONS(2379), + [sym__html_comment] = ACTIONS(2379), + [sym__autolink] = ACTIONS(2379), + [sym__highlight_span_start] = ACTIONS(2379), + [sym__insert_span_start] = ACTIONS(2379), + [sym__delete_span_start] = ACTIONS(2379), + [sym__edit_comment_span_start] = ACTIONS(2379), + [sym__single_quote_span_open] = ACTIONS(2379), + [sym__double_quote_span_open] = ACTIONS(2379), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2379), + [sym__cite_author_in_text] = ACTIONS(2379), + [sym__cite_suppress_author] = ACTIONS(2379), + [sym__strikeout_open] = ACTIONS(2379), + [sym__subscript_open] = ACTIONS(2379), + [sym__superscript_open] = ACTIONS(2379), + [sym__inline_note_start_token] = ACTIONS(2379), + [sym__strong_emphasis_open_star] = ACTIONS(2379), + [sym__strong_emphasis_open_underscore] = ACTIONS(2379), + [sym__emphasis_open_star] = ACTIONS(2379), + [sym__emphasis_open_underscore] = ACTIONS(2379), + [sym_inline_note_reference] = ACTIONS(2379), + [sym_html_element] = ACTIONS(2379), + [sym__pandoc_lt_str] = ACTIONS(2379), + [sym__pandoc_line_break] = ACTIONS(2379), + [sym_grid_table] = ACTIONS(2379), + [sym__caption_start] = ACTIONS(2379), }, - [STATE(263)] = { - [sym_entity_reference] = ACTIONS(2525), - [sym_numeric_character_reference] = ACTIONS(2525), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_BANG_LBRACK] = ACTIONS(2525), - [anon_sym_DOLLAR] = ACTIONS(2527), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2525), - [aux_sym_pandoc_str_token1] = ACTIONS(2527), - [anon_sym_PIPE] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(2525), - [sym__line_ending] = ACTIONS(2525), - [sym__soft_line_ending] = ACTIONS(2525), - [sym__block_close] = ACTIONS(2525), - [sym__block_quote_start] = ACTIONS(2525), - [sym_atx_h1_marker] = ACTIONS(2525), - [sym_atx_h2_marker] = ACTIONS(2525), - [sym_atx_h3_marker] = ACTIONS(2525), - [sym_atx_h4_marker] = ACTIONS(2525), - [sym_atx_h5_marker] = ACTIONS(2525), - [sym_atx_h6_marker] = ACTIONS(2525), - [sym__thematic_break] = ACTIONS(2525), - [sym__list_marker_minus] = ACTIONS(2525), - [sym__list_marker_plus] = ACTIONS(2525), - [sym__list_marker_star] = ACTIONS(2525), - [sym__list_marker_parenthesis] = ACTIONS(2525), - [sym__list_marker_dot] = ACTIONS(2525), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_example] = ACTIONS(2525), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2525), - [sym__fenced_code_block_start_backtick] = ACTIONS(2525), - [sym_minus_metadata] = ACTIONS(2525), - [sym__pipe_table_start] = ACTIONS(2525), - [sym__fenced_div_start] = ACTIONS(2525), - [sym__fenced_div_end] = ACTIONS(2525), - [sym_ref_id_specifier] = ACTIONS(2525), - [sym__code_span_start] = ACTIONS(2525), - [sym__html_comment] = ACTIONS(2525), - [sym__autolink] = ACTIONS(2525), - [sym__highlight_span_start] = ACTIONS(2525), - [sym__insert_span_start] = ACTIONS(2525), - [sym__delete_span_start] = ACTIONS(2525), - [sym__edit_comment_span_start] = ACTIONS(2525), - [sym__single_quote_span_open] = ACTIONS(2525), - [sym__double_quote_span_open] = ACTIONS(2525), - [sym__shortcode_open_escaped] = ACTIONS(2525), - [sym__shortcode_open] = ACTIONS(2525), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2525), - [sym__cite_author_in_text] = ACTIONS(2525), - [sym__cite_suppress_author] = ACTIONS(2525), - [sym__strikeout_open] = ACTIONS(2525), - [sym__subscript_open] = ACTIONS(2525), - [sym__superscript_open] = ACTIONS(2525), - [sym__inline_note_start_token] = ACTIONS(2525), - [sym__strong_emphasis_open_star] = ACTIONS(2525), - [sym__strong_emphasis_open_underscore] = ACTIONS(2525), - [sym__emphasis_open_star] = ACTIONS(2525), - [sym__emphasis_open_underscore] = ACTIONS(2525), - [sym_inline_note_reference] = ACTIONS(2525), - [sym_html_element] = ACTIONS(2525), - [sym__pandoc_lt_str] = ACTIONS(2525), - [sym__pandoc_line_break] = ACTIONS(2525), - [sym_grid_table] = ACTIONS(2525), - [sym__caption_start] = ACTIONS(2525), + [STATE(213)] = { + [sym_entity_reference] = ACTIONS(2379), + [sym_numeric_character_reference] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_BANG_LBRACK] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(2381), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [aux_sym_pandoc_str_token1] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2379), + [sym__whitespace] = ACTIONS(2379), + [sym__line_ending] = ACTIONS(2379), + [sym__soft_line_ending] = ACTIONS(2379), + [sym__block_close] = ACTIONS(2379), + [sym_block_continuation] = ACTIONS(2503), + [sym__block_quote_start] = ACTIONS(2379), + [sym_atx_h1_marker] = ACTIONS(2379), + [sym_atx_h2_marker] = ACTIONS(2379), + [sym_atx_h3_marker] = ACTIONS(2379), + [sym_atx_h4_marker] = ACTIONS(2379), + [sym_atx_h5_marker] = ACTIONS(2379), + [sym_atx_h6_marker] = ACTIONS(2379), + [sym__thematic_break] = ACTIONS(2379), + [sym__list_marker_minus] = ACTIONS(2379), + [sym__list_marker_plus] = ACTIONS(2379), + [sym__list_marker_star] = ACTIONS(2379), + [sym__list_marker_parenthesis] = ACTIONS(2379), + [sym__list_marker_dot] = ACTIONS(2379), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_example] = ACTIONS(2379), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2379), + [sym__fenced_code_block_start_backtick] = ACTIONS(2379), + [sym__minus_metadata_start] = ACTIONS(2379), + [sym__pipe_table_start] = ACTIONS(2379), + [sym__fenced_div_start] = ACTIONS(2379), + [sym_ref_id_specifier] = ACTIONS(2379), + [sym__code_span_start] = ACTIONS(2379), + [sym__html_comment] = ACTIONS(2379), + [sym__autolink] = ACTIONS(2379), + [sym__highlight_span_start] = ACTIONS(2379), + [sym__insert_span_start] = ACTIONS(2379), + [sym__delete_span_start] = ACTIONS(2379), + [sym__edit_comment_span_start] = ACTIONS(2379), + [sym__single_quote_span_open] = ACTIONS(2379), + [sym__double_quote_span_open] = ACTIONS(2379), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2379), + [sym__cite_author_in_text] = ACTIONS(2379), + [sym__cite_suppress_author] = ACTIONS(2379), + [sym__strikeout_open] = ACTIONS(2379), + [sym__subscript_open] = ACTIONS(2379), + [sym__superscript_open] = ACTIONS(2379), + [sym__inline_note_start_token] = ACTIONS(2379), + [sym__strong_emphasis_open_star] = ACTIONS(2379), + [sym__strong_emphasis_open_underscore] = ACTIONS(2379), + [sym__emphasis_open_star] = ACTIONS(2379), + [sym__emphasis_open_underscore] = ACTIONS(2379), + [sym_inline_note_reference] = ACTIONS(2379), + [sym_html_element] = ACTIONS(2379), + [sym__pandoc_lt_str] = ACTIONS(2379), + [sym__pandoc_line_break] = ACTIONS(2379), + [sym_grid_table] = ACTIONS(2379), + [sym__caption_start] = ACTIONS(2379), }, - [STATE(264)] = { - [ts_builtin_sym_end] = ACTIONS(2237), - [sym_entity_reference] = ACTIONS(2237), - [sym_numeric_character_reference] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_BANG_LBRACK] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [aux_sym_pandoc_str_token1] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2237), - [sym__whitespace] = ACTIONS(2237), - [sym__line_ending] = ACTIONS(2237), - [sym__soft_line_ending] = ACTIONS(2237), + [STATE(214)] = { + [sym_entity_reference] = ACTIONS(2343), + [sym_numeric_character_reference] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_BANG_LBRACK] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [aux_sym_pandoc_str_token1] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2343), + [sym__whitespace] = ACTIONS(2343), + [sym__line_ending] = ACTIONS(2343), + [sym__soft_line_ending] = ACTIONS(2343), + [sym__block_close] = ACTIONS(2343), + [sym_block_continuation] = ACTIONS(2505), + [sym__block_quote_start] = ACTIONS(2343), + [sym_atx_h1_marker] = ACTIONS(2343), + [sym_atx_h2_marker] = ACTIONS(2343), + [sym_atx_h3_marker] = ACTIONS(2343), + [sym_atx_h4_marker] = ACTIONS(2343), + [sym_atx_h5_marker] = ACTIONS(2343), + [sym_atx_h6_marker] = ACTIONS(2343), + [sym__thematic_break] = ACTIONS(2343), + [sym__list_marker_minus] = ACTIONS(2343), + [sym__list_marker_plus] = ACTIONS(2343), + [sym__list_marker_star] = ACTIONS(2343), + [sym__list_marker_parenthesis] = ACTIONS(2343), + [sym__list_marker_dot] = ACTIONS(2343), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_example] = ACTIONS(2343), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2343), + [sym__fenced_code_block_start_backtick] = ACTIONS(2343), + [sym__minus_metadata_start] = ACTIONS(2343), + [sym__pipe_table_start] = ACTIONS(2343), + [sym__fenced_div_start] = ACTIONS(2343), + [sym_ref_id_specifier] = ACTIONS(2343), + [sym__code_span_start] = ACTIONS(2343), + [sym__html_comment] = ACTIONS(2343), + [sym__autolink] = ACTIONS(2343), + [sym__highlight_span_start] = ACTIONS(2343), + [sym__insert_span_start] = ACTIONS(2343), + [sym__delete_span_start] = ACTIONS(2343), + [sym__edit_comment_span_start] = ACTIONS(2343), + [sym__single_quote_span_open] = ACTIONS(2343), + [sym__double_quote_span_open] = ACTIONS(2343), + [sym__shortcode_open_escaped] = ACTIONS(2343), + [sym__shortcode_open] = ACTIONS(2343), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2343), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2343), + [sym__cite_author_in_text] = ACTIONS(2343), + [sym__cite_suppress_author] = ACTIONS(2343), + [sym__strikeout_open] = ACTIONS(2343), + [sym__subscript_open] = ACTIONS(2343), + [sym__superscript_open] = ACTIONS(2343), + [sym__inline_note_start_token] = ACTIONS(2343), + [sym__strong_emphasis_open_star] = ACTIONS(2343), + [sym__strong_emphasis_open_underscore] = ACTIONS(2343), + [sym__emphasis_open_star] = ACTIONS(2343), + [sym__emphasis_open_underscore] = ACTIONS(2343), + [sym_inline_note_reference] = ACTIONS(2343), + [sym_html_element] = ACTIONS(2343), + [sym__pandoc_lt_str] = ACTIONS(2343), + [sym__pandoc_line_break] = ACTIONS(2343), + [sym_grid_table] = ACTIONS(2343), + [sym__caption_start] = ACTIONS(2343), + }, + [STATE(215)] = { + [sym_entity_reference] = ACTIONS(2349), + [sym_numeric_character_reference] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_BANG_LBRACK] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [aux_sym_pandoc_str_token1] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(2349), + [sym__whitespace] = ACTIONS(2349), + [sym__line_ending] = ACTIONS(2349), + [sym__soft_line_ending] = ACTIONS(2349), + [sym__block_close] = ACTIONS(2349), + [sym_block_continuation] = ACTIONS(2507), + [sym__block_quote_start] = ACTIONS(2349), + [sym_atx_h1_marker] = ACTIONS(2349), + [sym_atx_h2_marker] = ACTIONS(2349), + [sym_atx_h3_marker] = ACTIONS(2349), + [sym_atx_h4_marker] = ACTIONS(2349), + [sym_atx_h5_marker] = ACTIONS(2349), + [sym_atx_h6_marker] = ACTIONS(2349), + [sym__thematic_break] = ACTIONS(2349), + [sym__list_marker_minus] = ACTIONS(2349), + [sym__list_marker_plus] = ACTIONS(2349), + [sym__list_marker_star] = ACTIONS(2349), + [sym__list_marker_parenthesis] = ACTIONS(2349), + [sym__list_marker_dot] = ACTIONS(2349), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_example] = ACTIONS(2349), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2349), + [sym__fenced_code_block_start_backtick] = ACTIONS(2349), + [sym__minus_metadata_start] = ACTIONS(2349), + [sym__pipe_table_start] = ACTIONS(2349), + [sym__fenced_div_start] = ACTIONS(2349), + [sym_ref_id_specifier] = ACTIONS(2349), + [sym__code_span_start] = ACTIONS(2349), + [sym__html_comment] = ACTIONS(2349), + [sym__autolink] = ACTIONS(2349), + [sym__highlight_span_start] = ACTIONS(2349), + [sym__insert_span_start] = ACTIONS(2349), + [sym__delete_span_start] = ACTIONS(2349), + [sym__edit_comment_span_start] = ACTIONS(2349), + [sym__single_quote_span_open] = ACTIONS(2349), + [sym__double_quote_span_open] = ACTIONS(2349), + [sym__shortcode_open_escaped] = ACTIONS(2349), + [sym__shortcode_open] = ACTIONS(2349), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2349), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2349), + [sym__cite_author_in_text] = ACTIONS(2349), + [sym__cite_suppress_author] = ACTIONS(2349), + [sym__strikeout_open] = ACTIONS(2349), + [sym__subscript_open] = ACTIONS(2349), + [sym__superscript_open] = ACTIONS(2349), + [sym__inline_note_start_token] = ACTIONS(2349), + [sym__strong_emphasis_open_star] = ACTIONS(2349), + [sym__strong_emphasis_open_underscore] = ACTIONS(2349), + [sym__emphasis_open_star] = ACTIONS(2349), + [sym__emphasis_open_underscore] = ACTIONS(2349), + [sym_inline_note_reference] = ACTIONS(2349), + [sym_html_element] = ACTIONS(2349), + [sym__pandoc_lt_str] = ACTIONS(2349), + [sym__pandoc_line_break] = ACTIONS(2349), + [sym_grid_table] = ACTIONS(2349), + [sym__caption_start] = ACTIONS(2349), + }, + [STATE(216)] = { + [sym_entity_reference] = ACTIONS(2361), + [sym_numeric_character_reference] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_BANG_LBRACK] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2361), + [aux_sym_pandoc_str_token1] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2361), + [sym__whitespace] = ACTIONS(2361), + [sym__line_ending] = ACTIONS(2361), + [sym__soft_line_ending] = ACTIONS(2361), + [sym__block_close] = ACTIONS(2361), + [sym_block_continuation] = ACTIONS(2509), + [sym__block_quote_start] = ACTIONS(2361), + [sym_atx_h1_marker] = ACTIONS(2361), + [sym_atx_h2_marker] = ACTIONS(2361), + [sym_atx_h3_marker] = ACTIONS(2361), + [sym_atx_h4_marker] = ACTIONS(2361), + [sym_atx_h5_marker] = ACTIONS(2361), + [sym_atx_h6_marker] = ACTIONS(2361), + [sym__thematic_break] = ACTIONS(2361), + [sym__list_marker_minus] = ACTIONS(2361), + [sym__list_marker_plus] = ACTIONS(2361), + [sym__list_marker_star] = ACTIONS(2361), + [sym__list_marker_parenthesis] = ACTIONS(2361), + [sym__list_marker_dot] = ACTIONS(2361), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_example] = ACTIONS(2361), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2361), + [sym__fenced_code_block_start_backtick] = ACTIONS(2361), + [sym__minus_metadata_start] = ACTIONS(2361), + [sym__pipe_table_start] = ACTIONS(2361), + [sym__fenced_div_start] = ACTIONS(2361), + [sym_ref_id_specifier] = ACTIONS(2361), + [sym__code_span_start] = ACTIONS(2361), + [sym__html_comment] = ACTIONS(2361), + [sym__autolink] = ACTIONS(2361), + [sym__highlight_span_start] = ACTIONS(2361), + [sym__insert_span_start] = ACTIONS(2361), + [sym__delete_span_start] = ACTIONS(2361), + [sym__edit_comment_span_start] = ACTIONS(2361), + [sym__single_quote_span_open] = ACTIONS(2361), + [sym__double_quote_span_open] = ACTIONS(2361), + [sym__shortcode_open_escaped] = ACTIONS(2361), + [sym__shortcode_open] = ACTIONS(2361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2361), + [sym__cite_author_in_text] = ACTIONS(2361), + [sym__cite_suppress_author] = ACTIONS(2361), + [sym__strikeout_open] = ACTIONS(2361), + [sym__subscript_open] = ACTIONS(2361), + [sym__superscript_open] = ACTIONS(2361), + [sym__inline_note_start_token] = ACTIONS(2361), + [sym__strong_emphasis_open_star] = ACTIONS(2361), + [sym__strong_emphasis_open_underscore] = ACTIONS(2361), + [sym__emphasis_open_star] = ACTIONS(2361), + [sym__emphasis_open_underscore] = ACTIONS(2361), + [sym_inline_note_reference] = ACTIONS(2361), + [sym_html_element] = ACTIONS(2361), + [sym__pandoc_lt_str] = ACTIONS(2361), + [sym__pandoc_line_break] = ACTIONS(2361), + [sym_grid_table] = ACTIONS(2361), + [sym__caption_start] = ACTIONS(2361), + }, + [STATE(217)] = { + [sym_entity_reference] = ACTIONS(2397), + [sym_numeric_character_reference] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2397), + [anon_sym_BANG_LBRACK] = ACTIONS(2397), + [anon_sym_DOLLAR] = ACTIONS(2399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [aux_sym_pandoc_str_token1] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2397), + [sym__whitespace] = ACTIONS(2397), + [sym__line_ending] = ACTIONS(2397), + [sym__soft_line_ending] = ACTIONS(2397), + [sym__block_close] = ACTIONS(2397), + [sym_block_continuation] = ACTIONS(2511), + [sym__block_quote_start] = ACTIONS(2397), + [sym_atx_h1_marker] = ACTIONS(2397), + [sym_atx_h2_marker] = ACTIONS(2397), + [sym_atx_h3_marker] = ACTIONS(2397), + [sym_atx_h4_marker] = ACTIONS(2397), + [sym_atx_h5_marker] = ACTIONS(2397), + [sym_atx_h6_marker] = ACTIONS(2397), + [sym__thematic_break] = ACTIONS(2397), + [sym__list_marker_minus] = ACTIONS(2397), + [sym__list_marker_plus] = ACTIONS(2397), + [sym__list_marker_star] = ACTIONS(2397), + [sym__list_marker_parenthesis] = ACTIONS(2397), + [sym__list_marker_dot] = ACTIONS(2397), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_example] = ACTIONS(2397), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2397), + [sym__fenced_code_block_start_backtick] = ACTIONS(2397), + [sym__minus_metadata_start] = ACTIONS(2397), + [sym__pipe_table_start] = ACTIONS(2397), + [sym__fenced_div_start] = ACTIONS(2397), + [sym_ref_id_specifier] = ACTIONS(2397), + [sym__code_span_start] = ACTIONS(2397), + [sym__html_comment] = ACTIONS(2397), + [sym__autolink] = ACTIONS(2397), + [sym__highlight_span_start] = ACTIONS(2397), + [sym__insert_span_start] = ACTIONS(2397), + [sym__delete_span_start] = ACTIONS(2397), + [sym__edit_comment_span_start] = ACTIONS(2397), + [sym__single_quote_span_open] = ACTIONS(2397), + [sym__double_quote_span_open] = ACTIONS(2397), + [sym__shortcode_open_escaped] = ACTIONS(2397), + [sym__shortcode_open] = ACTIONS(2397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2397), + [sym__cite_author_in_text] = ACTIONS(2397), + [sym__cite_suppress_author] = ACTIONS(2397), + [sym__strikeout_open] = ACTIONS(2397), + [sym__subscript_open] = ACTIONS(2397), + [sym__superscript_open] = ACTIONS(2397), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2397), + [sym__strong_emphasis_open_underscore] = ACTIONS(2397), + [sym__emphasis_open_star] = ACTIONS(2397), + [sym__emphasis_open_underscore] = ACTIONS(2397), + [sym_inline_note_reference] = ACTIONS(2397), + [sym_html_element] = ACTIONS(2397), + [sym__pandoc_lt_str] = ACTIONS(2397), + [sym__pandoc_line_break] = ACTIONS(2397), + [sym_grid_table] = ACTIONS(2397), + [sym__caption_start] = ACTIONS(2397), + }, + [STATE(218)] = { + [sym_entity_reference] = ACTIONS(2411), + [sym_numeric_character_reference] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_BANG_LBRACK] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [aux_sym_pandoc_str_token1] = ACTIONS(2413), + [anon_sym_PIPE] = ACTIONS(2411), + [sym__whitespace] = ACTIONS(2411), + [sym__line_ending] = ACTIONS(2411), + [sym__soft_line_ending] = ACTIONS(2411), + [sym__block_close] = ACTIONS(2411), + [sym_block_continuation] = ACTIONS(2513), + [sym__block_quote_start] = ACTIONS(2411), + [sym_atx_h1_marker] = ACTIONS(2411), + [sym_atx_h2_marker] = ACTIONS(2411), + [sym_atx_h3_marker] = ACTIONS(2411), + [sym_atx_h4_marker] = ACTIONS(2411), + [sym_atx_h5_marker] = ACTIONS(2411), + [sym_atx_h6_marker] = ACTIONS(2411), + [sym__thematic_break] = ACTIONS(2411), + [sym__list_marker_minus] = ACTIONS(2411), + [sym__list_marker_plus] = ACTIONS(2411), + [sym__list_marker_star] = ACTIONS(2411), + [sym__list_marker_parenthesis] = ACTIONS(2411), + [sym__list_marker_dot] = ACTIONS(2411), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_example] = ACTIONS(2411), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2411), + [sym__fenced_code_block_start_backtick] = ACTIONS(2411), + [sym__minus_metadata_start] = ACTIONS(2411), + [sym__pipe_table_start] = ACTIONS(2411), + [sym__fenced_div_start] = ACTIONS(2411), + [sym_ref_id_specifier] = ACTIONS(2411), + [sym__code_span_start] = ACTIONS(2411), + [sym__html_comment] = ACTIONS(2411), + [sym__autolink] = ACTIONS(2411), + [sym__highlight_span_start] = ACTIONS(2411), + [sym__insert_span_start] = ACTIONS(2411), + [sym__delete_span_start] = ACTIONS(2411), + [sym__edit_comment_span_start] = ACTIONS(2411), + [sym__single_quote_span_open] = ACTIONS(2411), + [sym__double_quote_span_open] = ACTIONS(2411), + [sym__shortcode_open_escaped] = ACTIONS(2411), + [sym__shortcode_open] = ACTIONS(2411), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2411), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2411), + [sym__cite_author_in_text] = ACTIONS(2411), + [sym__cite_suppress_author] = ACTIONS(2411), + [sym__strikeout_open] = ACTIONS(2411), + [sym__subscript_open] = ACTIONS(2411), + [sym__superscript_open] = ACTIONS(2411), + [sym__inline_note_start_token] = ACTIONS(2411), + [sym__strong_emphasis_open_star] = ACTIONS(2411), + [sym__strong_emphasis_open_underscore] = ACTIONS(2411), + [sym__emphasis_open_star] = ACTIONS(2411), + [sym__emphasis_open_underscore] = ACTIONS(2411), + [sym_inline_note_reference] = ACTIONS(2411), + [sym_html_element] = ACTIONS(2411), + [sym__pandoc_lt_str] = ACTIONS(2411), + [sym__pandoc_line_break] = ACTIONS(2411), + [sym_grid_table] = ACTIONS(2411), + [sym__caption_start] = ACTIONS(2411), + }, + [STATE(219)] = { + [sym_entity_reference] = ACTIONS(2313), + [sym_numeric_character_reference] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_BANG_LBRACK] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2313), + [aux_sym_pandoc_str_token1] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2313), + [sym__whitespace] = ACTIONS(2313), + [sym__line_ending] = ACTIONS(2313), + [sym__soft_line_ending] = ACTIONS(2313), + [sym__block_close] = ACTIONS(2313), + [sym_block_continuation] = ACTIONS(2515), + [sym__block_quote_start] = ACTIONS(2313), + [sym_atx_h1_marker] = ACTIONS(2313), + [sym_atx_h2_marker] = ACTIONS(2313), + [sym_atx_h3_marker] = ACTIONS(2313), + [sym_atx_h4_marker] = ACTIONS(2313), + [sym_atx_h5_marker] = ACTIONS(2313), + [sym_atx_h6_marker] = ACTIONS(2313), + [sym__thematic_break] = ACTIONS(2313), + [sym__list_marker_minus] = ACTIONS(2313), + [sym__list_marker_plus] = ACTIONS(2313), + [sym__list_marker_star] = ACTIONS(2313), + [sym__list_marker_parenthesis] = ACTIONS(2313), + [sym__list_marker_dot] = ACTIONS(2313), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_example] = ACTIONS(2313), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2313), + [sym__fenced_code_block_start_backtick] = ACTIONS(2313), + [sym__minus_metadata_start] = ACTIONS(2313), + [sym__pipe_table_start] = ACTIONS(2313), + [sym__fenced_div_start] = ACTIONS(2313), + [sym_ref_id_specifier] = ACTIONS(2313), + [sym__code_span_start] = ACTIONS(2313), + [sym__html_comment] = ACTIONS(2313), + [sym__autolink] = ACTIONS(2313), + [sym__highlight_span_start] = ACTIONS(2313), + [sym__insert_span_start] = ACTIONS(2313), + [sym__delete_span_start] = ACTIONS(2313), + [sym__edit_comment_span_start] = ACTIONS(2313), + [sym__single_quote_span_open] = ACTIONS(2313), + [sym__double_quote_span_open] = ACTIONS(2313), + [sym__shortcode_open_escaped] = ACTIONS(2313), + [sym__shortcode_open] = ACTIONS(2313), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2313), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2313), + [sym__cite_author_in_text] = ACTIONS(2313), + [sym__cite_suppress_author] = ACTIONS(2313), + [sym__strikeout_open] = ACTIONS(2313), + [sym__subscript_open] = ACTIONS(2313), + [sym__superscript_open] = ACTIONS(2313), + [sym__inline_note_start_token] = ACTIONS(2313), + [sym__strong_emphasis_open_star] = ACTIONS(2313), + [sym__strong_emphasis_open_underscore] = ACTIONS(2313), + [sym__emphasis_open_star] = ACTIONS(2313), + [sym__emphasis_open_underscore] = ACTIONS(2313), + [sym_inline_note_reference] = ACTIONS(2313), + [sym_html_element] = ACTIONS(2313), + [sym__pandoc_lt_str] = ACTIONS(2313), + [sym__pandoc_line_break] = ACTIONS(2313), + [sym_grid_table] = ACTIONS(2313), + [sym__caption_start] = ACTIONS(2313), + }, + [STATE(220)] = { + [sym_entity_reference] = ACTIONS(2319), + [sym_numeric_character_reference] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_BANG_LBRACK] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [aux_sym_pandoc_str_token1] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(2319), + [sym__whitespace] = ACTIONS(2319), + [sym__line_ending] = ACTIONS(2319), + [sym__soft_line_ending] = ACTIONS(2319), + [sym__block_close] = ACTIONS(2319), + [sym_block_continuation] = ACTIONS(2517), + [sym__block_quote_start] = ACTIONS(2319), + [sym_atx_h1_marker] = ACTIONS(2319), + [sym_atx_h2_marker] = ACTIONS(2319), + [sym_atx_h3_marker] = ACTIONS(2319), + [sym_atx_h4_marker] = ACTIONS(2319), + [sym_atx_h5_marker] = ACTIONS(2319), + [sym_atx_h6_marker] = ACTIONS(2319), + [sym__thematic_break] = ACTIONS(2319), + [sym__list_marker_minus] = ACTIONS(2319), + [sym__list_marker_plus] = ACTIONS(2319), + [sym__list_marker_star] = ACTIONS(2319), + [sym__list_marker_parenthesis] = ACTIONS(2319), + [sym__list_marker_dot] = ACTIONS(2319), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_example] = ACTIONS(2319), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2319), + [sym__fenced_code_block_start_backtick] = ACTIONS(2319), + [sym__minus_metadata_start] = ACTIONS(2319), + [sym__pipe_table_start] = ACTIONS(2319), + [sym__fenced_div_start] = ACTIONS(2319), + [sym_ref_id_specifier] = ACTIONS(2319), + [sym__code_span_start] = ACTIONS(2319), + [sym__html_comment] = ACTIONS(2319), + [sym__autolink] = ACTIONS(2319), + [sym__highlight_span_start] = ACTIONS(2319), + [sym__insert_span_start] = ACTIONS(2319), + [sym__delete_span_start] = ACTIONS(2319), + [sym__edit_comment_span_start] = ACTIONS(2319), + [sym__single_quote_span_open] = ACTIONS(2319), + [sym__double_quote_span_open] = ACTIONS(2319), + [sym__shortcode_open_escaped] = ACTIONS(2319), + [sym__shortcode_open] = ACTIONS(2319), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2319), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2319), + [sym__cite_author_in_text] = ACTIONS(2319), + [sym__cite_suppress_author] = ACTIONS(2319), + [sym__strikeout_open] = ACTIONS(2319), + [sym__subscript_open] = ACTIONS(2319), + [sym__superscript_open] = ACTIONS(2319), + [sym__inline_note_start_token] = ACTIONS(2319), + [sym__strong_emphasis_open_star] = ACTIONS(2319), + [sym__strong_emphasis_open_underscore] = ACTIONS(2319), + [sym__emphasis_open_star] = ACTIONS(2319), + [sym__emphasis_open_underscore] = ACTIONS(2319), + [sym_inline_note_reference] = ACTIONS(2319), + [sym_html_element] = ACTIONS(2319), + [sym__pandoc_lt_str] = ACTIONS(2319), + [sym__pandoc_line_break] = ACTIONS(2319), + [sym_grid_table] = ACTIONS(2319), + [sym__caption_start] = ACTIONS(2319), + }, + [STATE(221)] = { + [sym_entity_reference] = ACTIONS(2325), + [sym_numeric_character_reference] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_BANG_LBRACK] = ACTIONS(2325), + [anon_sym_DOLLAR] = ACTIONS(2327), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2325), + [aux_sym_pandoc_str_token1] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2325), + [sym__whitespace] = ACTIONS(2325), + [sym__line_ending] = ACTIONS(2325), + [sym__soft_line_ending] = ACTIONS(2325), + [sym__block_close] = ACTIONS(2325), + [sym_block_continuation] = ACTIONS(2519), + [sym__block_quote_start] = ACTIONS(2325), + [sym_atx_h1_marker] = ACTIONS(2325), + [sym_atx_h2_marker] = ACTIONS(2325), + [sym_atx_h3_marker] = ACTIONS(2325), + [sym_atx_h4_marker] = ACTIONS(2325), + [sym_atx_h5_marker] = ACTIONS(2325), + [sym_atx_h6_marker] = ACTIONS(2325), + [sym__thematic_break] = ACTIONS(2325), + [sym__list_marker_minus] = ACTIONS(2325), + [sym__list_marker_plus] = ACTIONS(2325), + [sym__list_marker_star] = ACTIONS(2325), + [sym__list_marker_parenthesis] = ACTIONS(2325), + [sym__list_marker_dot] = ACTIONS(2325), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_example] = ACTIONS(2325), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2325), + [sym__fenced_code_block_start_backtick] = ACTIONS(2325), + [sym__minus_metadata_start] = ACTIONS(2325), + [sym__pipe_table_start] = ACTIONS(2325), + [sym__fenced_div_start] = ACTIONS(2325), + [sym_ref_id_specifier] = ACTIONS(2325), + [sym__code_span_start] = ACTIONS(2325), + [sym__html_comment] = ACTIONS(2325), + [sym__autolink] = ACTIONS(2325), + [sym__highlight_span_start] = ACTIONS(2325), + [sym__insert_span_start] = ACTIONS(2325), + [sym__delete_span_start] = ACTIONS(2325), + [sym__edit_comment_span_start] = ACTIONS(2325), + [sym__single_quote_span_open] = ACTIONS(2325), + [sym__double_quote_span_open] = ACTIONS(2325), + [sym__shortcode_open_escaped] = ACTIONS(2325), + [sym__shortcode_open] = ACTIONS(2325), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2325), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2325), + [sym__cite_author_in_text] = ACTIONS(2325), + [sym__cite_suppress_author] = ACTIONS(2325), + [sym__strikeout_open] = ACTIONS(2325), + [sym__subscript_open] = ACTIONS(2325), + [sym__superscript_open] = ACTIONS(2325), + [sym__inline_note_start_token] = ACTIONS(2325), + [sym__strong_emphasis_open_star] = ACTIONS(2325), + [sym__strong_emphasis_open_underscore] = ACTIONS(2325), + [sym__emphasis_open_star] = ACTIONS(2325), + [sym__emphasis_open_underscore] = ACTIONS(2325), + [sym_inline_note_reference] = ACTIONS(2325), + [sym_html_element] = ACTIONS(2325), + [sym__pandoc_lt_str] = ACTIONS(2325), + [sym__pandoc_line_break] = ACTIONS(2325), + [sym_grid_table] = ACTIONS(2325), + [sym__caption_start] = ACTIONS(2325), + }, + [STATE(222)] = { + [sym_entity_reference] = ACTIONS(2337), + [sym_numeric_character_reference] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_BANG_LBRACK] = ACTIONS(2337), + [anon_sym_DOLLAR] = ACTIONS(2339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [aux_sym_pandoc_str_token1] = ACTIONS(2339), + [anon_sym_PIPE] = ACTIONS(2337), + [sym__whitespace] = ACTIONS(2337), + [sym__line_ending] = ACTIONS(2337), + [sym__soft_line_ending] = ACTIONS(2337), + [sym__block_close] = ACTIONS(2337), + [sym_block_continuation] = ACTIONS(2521), + [sym__block_quote_start] = ACTIONS(2337), + [sym_atx_h1_marker] = ACTIONS(2337), + [sym_atx_h2_marker] = ACTIONS(2337), + [sym_atx_h3_marker] = ACTIONS(2337), + [sym_atx_h4_marker] = ACTIONS(2337), + [sym_atx_h5_marker] = ACTIONS(2337), + [sym_atx_h6_marker] = ACTIONS(2337), + [sym__thematic_break] = ACTIONS(2337), + [sym__list_marker_minus] = ACTIONS(2337), + [sym__list_marker_plus] = ACTIONS(2337), + [sym__list_marker_star] = ACTIONS(2337), + [sym__list_marker_parenthesis] = ACTIONS(2337), + [sym__list_marker_dot] = ACTIONS(2337), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_example] = ACTIONS(2337), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2337), + [sym__fenced_code_block_start_backtick] = ACTIONS(2337), + [sym__minus_metadata_start] = ACTIONS(2337), + [sym__pipe_table_start] = ACTIONS(2337), + [sym__fenced_div_start] = ACTIONS(2337), + [sym_ref_id_specifier] = ACTIONS(2337), + [sym__code_span_start] = ACTIONS(2337), + [sym__html_comment] = ACTIONS(2337), + [sym__autolink] = ACTIONS(2337), + [sym__highlight_span_start] = ACTIONS(2337), + [sym__insert_span_start] = ACTIONS(2337), + [sym__delete_span_start] = ACTIONS(2337), + [sym__edit_comment_span_start] = ACTIONS(2337), + [sym__single_quote_span_open] = ACTIONS(2337), + [sym__double_quote_span_open] = ACTIONS(2337), + [sym__shortcode_open_escaped] = ACTIONS(2337), + [sym__shortcode_open] = ACTIONS(2337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2337), + [sym__cite_author_in_text] = ACTIONS(2337), + [sym__cite_suppress_author] = ACTIONS(2337), + [sym__strikeout_open] = ACTIONS(2337), + [sym__subscript_open] = ACTIONS(2337), + [sym__superscript_open] = ACTIONS(2337), + [sym__inline_note_start_token] = ACTIONS(2337), + [sym__strong_emphasis_open_star] = ACTIONS(2337), + [sym__strong_emphasis_open_underscore] = ACTIONS(2337), + [sym__emphasis_open_star] = ACTIONS(2337), + [sym__emphasis_open_underscore] = ACTIONS(2337), + [sym_inline_note_reference] = ACTIONS(2337), + [sym_html_element] = ACTIONS(2337), + [sym__pandoc_lt_str] = ACTIONS(2337), + [sym__pandoc_line_break] = ACTIONS(2337), + [sym_grid_table] = ACTIONS(2337), + [sym__caption_start] = ACTIONS(2337), + }, + [STATE(223)] = { + [sym_entity_reference] = ACTIONS(2367), + [sym_numeric_character_reference] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2367), + [anon_sym_BANG_LBRACK] = ACTIONS(2367), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [aux_sym_pandoc_str_token1] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2367), + [sym__whitespace] = ACTIONS(2367), + [sym__line_ending] = ACTIONS(2367), + [sym__soft_line_ending] = ACTIONS(2367), + [sym__block_close] = ACTIONS(2367), + [sym_block_continuation] = ACTIONS(2523), + [sym__block_quote_start] = ACTIONS(2367), + [sym_atx_h1_marker] = ACTIONS(2367), + [sym_atx_h2_marker] = ACTIONS(2367), + [sym_atx_h3_marker] = ACTIONS(2367), + [sym_atx_h4_marker] = ACTIONS(2367), + [sym_atx_h5_marker] = ACTIONS(2367), + [sym_atx_h6_marker] = ACTIONS(2367), + [sym__thematic_break] = ACTIONS(2367), + [sym__list_marker_minus] = ACTIONS(2367), + [sym__list_marker_plus] = ACTIONS(2367), + [sym__list_marker_star] = ACTIONS(2367), + [sym__list_marker_parenthesis] = ACTIONS(2367), + [sym__list_marker_dot] = ACTIONS(2367), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_example] = ACTIONS(2367), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2367), + [sym__fenced_code_block_start_backtick] = ACTIONS(2367), + [sym__minus_metadata_start] = ACTIONS(2367), + [sym__pipe_table_start] = ACTIONS(2367), + [sym__fenced_div_start] = ACTIONS(2367), + [sym_ref_id_specifier] = ACTIONS(2367), + [sym__code_span_start] = ACTIONS(2367), + [sym__html_comment] = ACTIONS(2367), + [sym__autolink] = ACTIONS(2367), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2367), + [sym__delete_span_start] = ACTIONS(2367), + [sym__edit_comment_span_start] = ACTIONS(2367), + [sym__single_quote_span_open] = ACTIONS(2367), + [sym__double_quote_span_open] = ACTIONS(2367), + [sym__shortcode_open_escaped] = ACTIONS(2367), + [sym__shortcode_open] = ACTIONS(2367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2367), + [sym__cite_author_in_text] = ACTIONS(2367), + [sym__cite_suppress_author] = ACTIONS(2367), + [sym__strikeout_open] = ACTIONS(2367), + [sym__subscript_open] = ACTIONS(2367), + [sym__superscript_open] = ACTIONS(2367), + [sym__inline_note_start_token] = ACTIONS(2367), + [sym__strong_emphasis_open_star] = ACTIONS(2367), + [sym__strong_emphasis_open_underscore] = ACTIONS(2367), + [sym__emphasis_open_star] = ACTIONS(2367), + [sym__emphasis_open_underscore] = ACTIONS(2367), + [sym_inline_note_reference] = ACTIONS(2367), + [sym_html_element] = ACTIONS(2367), + [sym__pandoc_lt_str] = ACTIONS(2367), + [sym__pandoc_line_break] = ACTIONS(2367), + [sym_grid_table] = ACTIONS(2367), + [sym__caption_start] = ACTIONS(2367), + }, + [STATE(224)] = { + [sym_entity_reference] = ACTIONS(2373), + [sym_numeric_character_reference] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_BANG_LBRACK] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [aux_sym_pandoc_str_token1] = ACTIONS(2375), + [anon_sym_PIPE] = ACTIONS(2373), + [sym__whitespace] = ACTIONS(2373), + [sym__line_ending] = ACTIONS(2373), + [sym__soft_line_ending] = ACTIONS(2373), + [sym__block_close] = ACTIONS(2373), + [sym_block_continuation] = ACTIONS(2525), + [sym__block_quote_start] = ACTIONS(2373), + [sym_atx_h1_marker] = ACTIONS(2373), + [sym_atx_h2_marker] = ACTIONS(2373), + [sym_atx_h3_marker] = ACTIONS(2373), + [sym_atx_h4_marker] = ACTIONS(2373), + [sym_atx_h5_marker] = ACTIONS(2373), + [sym_atx_h6_marker] = ACTIONS(2373), + [sym__thematic_break] = ACTIONS(2373), + [sym__list_marker_minus] = ACTIONS(2373), + [sym__list_marker_plus] = ACTIONS(2373), + [sym__list_marker_star] = ACTIONS(2373), + [sym__list_marker_parenthesis] = ACTIONS(2373), + [sym__list_marker_dot] = ACTIONS(2373), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_example] = ACTIONS(2373), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2373), + [sym__fenced_code_block_start_backtick] = ACTIONS(2373), + [sym__minus_metadata_start] = ACTIONS(2373), + [sym__pipe_table_start] = ACTIONS(2373), + [sym__fenced_div_start] = ACTIONS(2373), + [sym_ref_id_specifier] = ACTIONS(2373), + [sym__code_span_start] = ACTIONS(2373), + [sym__html_comment] = ACTIONS(2373), + [sym__autolink] = ACTIONS(2373), + [sym__highlight_span_start] = ACTIONS(2373), + [sym__insert_span_start] = ACTIONS(2373), + [sym__delete_span_start] = ACTIONS(2373), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2373), + [sym__double_quote_span_open] = ACTIONS(2373), + [sym__shortcode_open_escaped] = ACTIONS(2373), + [sym__shortcode_open] = ACTIONS(2373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2373), + [sym__cite_author_in_text] = ACTIONS(2373), + [sym__cite_suppress_author] = ACTIONS(2373), + [sym__strikeout_open] = ACTIONS(2373), + [sym__subscript_open] = ACTIONS(2373), + [sym__superscript_open] = ACTIONS(2373), + [sym__inline_note_start_token] = ACTIONS(2373), + [sym__strong_emphasis_open_star] = ACTIONS(2373), + [sym__strong_emphasis_open_underscore] = ACTIONS(2373), + [sym__emphasis_open_star] = ACTIONS(2373), + [sym__emphasis_open_underscore] = ACTIONS(2373), + [sym_inline_note_reference] = ACTIONS(2373), + [sym_html_element] = ACTIONS(2373), + [sym__pandoc_lt_str] = ACTIONS(2373), + [sym__pandoc_line_break] = ACTIONS(2373), + [sym_grid_table] = ACTIONS(2373), + [sym__caption_start] = ACTIONS(2373), + }, + [STATE(225)] = { + [sym_entity_reference] = ACTIONS(2277), + [sym_numeric_character_reference] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_BANG_LBRACK] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2277), + [aux_sym_pandoc_str_token1] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2277), + [sym__whitespace] = ACTIONS(2277), + [sym__line_ending] = ACTIONS(2277), + [sym__soft_line_ending] = ACTIONS(2277), + [sym__block_close] = ACTIONS(2277), + [sym_block_continuation] = ACTIONS(2527), + [sym__block_quote_start] = ACTIONS(2277), + [sym_atx_h1_marker] = ACTIONS(2277), + [sym_atx_h2_marker] = ACTIONS(2277), + [sym_atx_h3_marker] = ACTIONS(2277), + [sym_atx_h4_marker] = ACTIONS(2277), + [sym_atx_h5_marker] = ACTIONS(2277), + [sym_atx_h6_marker] = ACTIONS(2277), + [sym__thematic_break] = ACTIONS(2277), + [sym__list_marker_minus] = ACTIONS(2277), + [sym__list_marker_plus] = ACTIONS(2277), + [sym__list_marker_star] = ACTIONS(2277), + [sym__list_marker_parenthesis] = ACTIONS(2277), + [sym__list_marker_dot] = ACTIONS(2277), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_example] = ACTIONS(2277), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2277), + [sym__fenced_code_block_start_backtick] = ACTIONS(2277), + [sym__minus_metadata_start] = ACTIONS(2277), + [sym__pipe_table_start] = ACTIONS(2277), + [sym__fenced_div_start] = ACTIONS(2277), + [sym_ref_id_specifier] = ACTIONS(2277), + [sym__code_span_start] = ACTIONS(2277), + [sym__html_comment] = ACTIONS(2277), + [sym__autolink] = ACTIONS(2277), + [sym__highlight_span_start] = ACTIONS(2277), + [sym__insert_span_start] = ACTIONS(2277), + [sym__delete_span_start] = ACTIONS(2277), + [sym__edit_comment_span_start] = ACTIONS(2277), + [sym__single_quote_span_open] = ACTIONS(2277), + [sym__double_quote_span_open] = ACTIONS(2277), + [sym__shortcode_open_escaped] = ACTIONS(2277), + [sym__shortcode_open] = ACTIONS(2277), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2277), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2277), + [sym__cite_author_in_text] = ACTIONS(2277), + [sym__cite_suppress_author] = ACTIONS(2277), + [sym__strikeout_open] = ACTIONS(2277), + [sym__subscript_open] = ACTIONS(2277), + [sym__superscript_open] = ACTIONS(2277), + [sym__inline_note_start_token] = ACTIONS(2277), + [sym__strong_emphasis_open_star] = ACTIONS(2277), + [sym__strong_emphasis_open_underscore] = ACTIONS(2277), + [sym__emphasis_open_star] = ACTIONS(2277), + [sym__emphasis_open_underscore] = ACTIONS(2277), + [sym_inline_note_reference] = ACTIONS(2277), + [sym_html_element] = ACTIONS(2277), + [sym__pandoc_lt_str] = ACTIONS(2277), + [sym__pandoc_line_break] = ACTIONS(2277), + [sym_grid_table] = ACTIONS(2277), + [sym__caption_start] = ACTIONS(2277), + }, + [STATE(226)] = { + [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), + [sym__whitespace] = ACTIONS(2385), + [sym__line_ending] = ACTIONS(2385), + [sym__soft_line_ending] = ACTIONS(2385), + [sym__block_close] = ACTIONS(2385), [sym_block_continuation] = ACTIONS(2529), - [sym__block_quote_start] = ACTIONS(2237), - [sym_atx_h1_marker] = ACTIONS(2237), - [sym_atx_h2_marker] = ACTIONS(2237), - [sym_atx_h3_marker] = ACTIONS(2237), - [sym_atx_h4_marker] = ACTIONS(2237), - [sym_atx_h5_marker] = ACTIONS(2237), - [sym_atx_h6_marker] = ACTIONS(2237), - [sym__thematic_break] = ACTIONS(2237), - [sym__list_marker_minus] = ACTIONS(2237), - [sym__list_marker_plus] = ACTIONS(2237), - [sym__list_marker_star] = ACTIONS(2237), - [sym__list_marker_parenthesis] = ACTIONS(2237), - [sym__list_marker_dot] = ACTIONS(2237), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_example] = ACTIONS(2237), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2237), - [sym__fenced_code_block_start_backtick] = ACTIONS(2237), - [sym_minus_metadata] = ACTIONS(2237), - [sym__pipe_table_start] = ACTIONS(2237), - [sym__fenced_div_start] = ACTIONS(2237), - [sym_ref_id_specifier] = ACTIONS(2237), - [sym__code_span_start] = ACTIONS(2237), - [sym__html_comment] = ACTIONS(2237), - [sym__autolink] = ACTIONS(2237), - [sym__highlight_span_start] = ACTIONS(2237), - [sym__insert_span_start] = ACTIONS(2237), - [sym__delete_span_start] = ACTIONS(2237), - [sym__edit_comment_span_start] = ACTIONS(2237), - [sym__single_quote_span_open] = ACTIONS(2237), - [sym__double_quote_span_open] = ACTIONS(2237), - [sym__shortcode_open_escaped] = ACTIONS(2237), - [sym__shortcode_open] = ACTIONS(2237), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2237), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), - [sym__cite_author_in_text] = ACTIONS(2237), - [sym__cite_suppress_author] = ACTIONS(2237), - [sym__strikeout_open] = ACTIONS(2237), - [sym__subscript_open] = ACTIONS(2237), - [sym__superscript_open] = ACTIONS(2237), - [sym__inline_note_start_token] = ACTIONS(2237), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2237), - [sym__emphasis_open_star] = ACTIONS(2237), - [sym__emphasis_open_underscore] = ACTIONS(2237), - [sym_inline_note_reference] = ACTIONS(2237), - [sym_html_element] = ACTIONS(2237), - [sym__pandoc_lt_str] = ACTIONS(2237), - [sym__pandoc_line_break] = ACTIONS(2237), - [sym_grid_table] = ACTIONS(2237), - [sym__caption_start] = ACTIONS(2237), + [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(2385), + [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(2385), + [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_start] = 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__pandoc_lt_str] = ACTIONS(2385), + [sym__pandoc_line_break] = ACTIONS(2385), + [sym_grid_table] = ACTIONS(2385), + [sym__caption_start] = ACTIONS(2385), }, - [STATE(265)] = { + [STATE(227)] = { [sym_entity_reference] = ACTIONS(2531), [sym_numeric_character_reference] = ACTIONS(2531), [anon_sym_LBRACK] = ACTIONS(2531), @@ -52303,7 +49851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2531), [sym__list_marker_example_dont_interrupt] = ACTIONS(2531), [sym__fenced_code_block_start_backtick] = ACTIONS(2531), - [sym_minus_metadata] = ACTIONS(2531), + [sym__minus_metadata_start] = ACTIONS(2531), [sym__pipe_table_start] = ACTIONS(2531), [sym__fenced_div_start] = ACTIONS(2531), [sym__fenced_div_end] = ACTIONS(2531), @@ -52338,217 +49886,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2531), [sym__caption_start] = ACTIONS(2531), }, - [STATE(266)] = { - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_entity_reference] = ACTIONS(2279), - [sym_numeric_character_reference] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_BANG_LBRACK] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [aux_sym_pandoc_str_token1] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [sym__whitespace] = ACTIONS(2279), - [sym__line_ending] = ACTIONS(2279), - [sym__soft_line_ending] = ACTIONS(2279), - [sym_block_continuation] = ACTIONS(2535), - [sym__block_quote_start] = ACTIONS(2279), - [sym_atx_h1_marker] = ACTIONS(2279), - [sym_atx_h2_marker] = ACTIONS(2279), - [sym_atx_h3_marker] = ACTIONS(2279), - [sym_atx_h4_marker] = ACTIONS(2279), - [sym_atx_h5_marker] = ACTIONS(2279), - [sym_atx_h6_marker] = ACTIONS(2279), - [sym__thematic_break] = ACTIONS(2279), - [sym__list_marker_minus] = ACTIONS(2279), - [sym__list_marker_plus] = ACTIONS(2279), - [sym__list_marker_star] = ACTIONS(2279), - [sym__list_marker_parenthesis] = ACTIONS(2279), - [sym__list_marker_dot] = ACTIONS(2279), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_example] = ACTIONS(2279), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2279), - [sym__fenced_code_block_start_backtick] = ACTIONS(2279), - [sym_minus_metadata] = ACTIONS(2279), - [sym__pipe_table_start] = ACTIONS(2279), - [sym__fenced_div_start] = ACTIONS(2279), - [sym_ref_id_specifier] = ACTIONS(2279), - [sym__code_span_start] = ACTIONS(2279), - [sym__html_comment] = ACTIONS(2279), - [sym__autolink] = ACTIONS(2279), - [sym__highlight_span_start] = ACTIONS(2279), - [sym__insert_span_start] = ACTIONS(2279), - [sym__delete_span_start] = ACTIONS(2279), - [sym__edit_comment_span_start] = ACTIONS(2279), - [sym__single_quote_span_open] = ACTIONS(2279), - [sym__double_quote_span_open] = ACTIONS(2279), - [sym__shortcode_open_escaped] = ACTIONS(2279), - [sym__shortcode_open] = ACTIONS(2279), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2279), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2279), - [sym__cite_author_in_text] = ACTIONS(2279), - [sym__cite_suppress_author] = ACTIONS(2279), - [sym__strikeout_open] = ACTIONS(2279), - [sym__subscript_open] = ACTIONS(2279), - [sym__superscript_open] = ACTIONS(2279), - [sym__inline_note_start_token] = ACTIONS(2279), - [sym__strong_emphasis_open_star] = ACTIONS(2279), - [sym__strong_emphasis_open_underscore] = ACTIONS(2279), - [sym__emphasis_open_star] = ACTIONS(2279), - [sym__emphasis_open_underscore] = ACTIONS(2279), - [sym_inline_note_reference] = ACTIONS(2279), - [sym_html_element] = ACTIONS(2279), - [sym__pandoc_lt_str] = ACTIONS(2279), - [sym__pandoc_line_break] = ACTIONS(2279), - [sym_grid_table] = ACTIONS(2279), - [sym__caption_start] = ACTIONS(2279), + [STATE(228)] = { + [sym_entity_reference] = ACTIONS(2535), + [sym_numeric_character_reference] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_BANG_LBRACK] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [aux_sym_pandoc_str_token1] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(2535), + [sym__whitespace] = ACTIONS(2535), + [sym__line_ending] = ACTIONS(2535), + [sym__soft_line_ending] = ACTIONS(2535), + [sym__block_close] = ACTIONS(2535), + [sym__block_quote_start] = ACTIONS(2535), + [sym_atx_h1_marker] = ACTIONS(2535), + [sym_atx_h2_marker] = ACTIONS(2535), + [sym_atx_h3_marker] = ACTIONS(2535), + [sym_atx_h4_marker] = ACTIONS(2535), + [sym_atx_h5_marker] = ACTIONS(2535), + [sym_atx_h6_marker] = ACTIONS(2535), + [sym__thematic_break] = ACTIONS(2535), + [sym__list_marker_minus] = ACTIONS(2535), + [sym__list_marker_plus] = ACTIONS(2535), + [sym__list_marker_star] = ACTIONS(2535), + [sym__list_marker_parenthesis] = ACTIONS(2535), + [sym__list_marker_dot] = ACTIONS(2535), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2535), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2535), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2535), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2535), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2535), + [sym__list_marker_example] = ACTIONS(2535), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2535), + [sym__fenced_code_block_start_backtick] = ACTIONS(2535), + [sym__minus_metadata_start] = ACTIONS(2535), + [sym__pipe_table_start] = ACTIONS(2535), + [sym__fenced_div_start] = ACTIONS(2535), + [sym__fenced_div_end] = ACTIONS(2535), + [sym_ref_id_specifier] = ACTIONS(2535), + [sym__code_span_start] = ACTIONS(2535), + [sym__html_comment] = ACTIONS(2535), + [sym__autolink] = ACTIONS(2535), + [sym__highlight_span_start] = ACTIONS(2535), + [sym__insert_span_start] = ACTIONS(2535), + [sym__delete_span_start] = ACTIONS(2535), + [sym__edit_comment_span_start] = ACTIONS(2535), + [sym__single_quote_span_open] = ACTIONS(2535), + [sym__double_quote_span_open] = ACTIONS(2535), + [sym__shortcode_open_escaped] = ACTIONS(2535), + [sym__shortcode_open] = ACTIONS(2535), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2535), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2535), + [sym__cite_author_in_text] = ACTIONS(2535), + [sym__cite_suppress_author] = ACTIONS(2535), + [sym__strikeout_open] = ACTIONS(2535), + [sym__subscript_open] = ACTIONS(2535), + [sym__superscript_open] = ACTIONS(2535), + [sym__inline_note_start_token] = ACTIONS(2535), + [sym__strong_emphasis_open_star] = ACTIONS(2535), + [sym__strong_emphasis_open_underscore] = ACTIONS(2535), + [sym__emphasis_open_star] = ACTIONS(2535), + [sym__emphasis_open_underscore] = ACTIONS(2535), + [sym_inline_note_reference] = ACTIONS(2535), + [sym_html_element] = ACTIONS(2535), + [sym__pandoc_lt_str] = ACTIONS(2535), + [sym__pandoc_line_break] = ACTIONS(2535), + [sym_grid_table] = ACTIONS(2535), + [sym__caption_start] = ACTIONS(2535), }, - [STATE(267)] = { - [sym_entity_reference] = ACTIONS(2537), - [sym_numeric_character_reference] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_BANG_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2539), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [aux_sym_pandoc_str_token1] = ACTIONS(2539), - [anon_sym_PIPE] = ACTIONS(2537), - [sym__whitespace] = ACTIONS(2537), - [sym__line_ending] = ACTIONS(2537), - [sym__soft_line_ending] = ACTIONS(2537), - [sym__block_close] = ACTIONS(2537), - [sym__block_quote_start] = ACTIONS(2537), - [sym_atx_h1_marker] = ACTIONS(2537), - [sym_atx_h2_marker] = ACTIONS(2537), - [sym_atx_h3_marker] = ACTIONS(2537), - [sym_atx_h4_marker] = ACTIONS(2537), - [sym_atx_h5_marker] = ACTIONS(2537), - [sym_atx_h6_marker] = ACTIONS(2537), - [sym__thematic_break] = ACTIONS(2537), - [sym__list_marker_minus] = ACTIONS(2537), - [sym__list_marker_plus] = ACTIONS(2537), - [sym__list_marker_star] = ACTIONS(2537), - [sym__list_marker_parenthesis] = ACTIONS(2537), - [sym__list_marker_dot] = ACTIONS(2537), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_example] = ACTIONS(2537), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2537), - [sym__fenced_code_block_start_backtick] = ACTIONS(2537), - [sym_minus_metadata] = ACTIONS(2537), - [sym__pipe_table_start] = ACTIONS(2537), - [sym__fenced_div_start] = ACTIONS(2537), - [sym__fenced_div_end] = ACTIONS(2537), - [sym_ref_id_specifier] = ACTIONS(2537), - [sym__code_span_start] = ACTIONS(2537), - [sym__html_comment] = ACTIONS(2537), - [sym__autolink] = ACTIONS(2537), - [sym__highlight_span_start] = ACTIONS(2537), - [sym__insert_span_start] = ACTIONS(2537), - [sym__delete_span_start] = ACTIONS(2537), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2537), - [sym__double_quote_span_open] = ACTIONS(2537), - [sym__shortcode_open_escaped] = ACTIONS(2537), - [sym__shortcode_open] = ACTIONS(2537), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2537), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2537), - [sym__cite_author_in_text] = ACTIONS(2537), - [sym__cite_suppress_author] = ACTIONS(2537), - [sym__strikeout_open] = ACTIONS(2537), - [sym__subscript_open] = ACTIONS(2537), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2537), - [sym__strong_emphasis_open_star] = ACTIONS(2537), - [sym__strong_emphasis_open_underscore] = ACTIONS(2537), - [sym__emphasis_open_star] = ACTIONS(2537), - [sym__emphasis_open_underscore] = ACTIONS(2537), - [sym_inline_note_reference] = ACTIONS(2537), - [sym_html_element] = ACTIONS(2537), - [sym__pandoc_lt_str] = ACTIONS(2537), - [sym__pandoc_line_break] = ACTIONS(2537), - [sym_grid_table] = ACTIONS(2537), - [sym__caption_start] = ACTIONS(2537), + [STATE(229)] = { + [sym_entity_reference] = ACTIONS(2539), + [sym_numeric_character_reference] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_BANG_LBRACK] = ACTIONS(2539), + [anon_sym_DOLLAR] = ACTIONS(2541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2539), + [aux_sym_pandoc_str_token1] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2539), + [sym__whitespace] = ACTIONS(2539), + [sym__line_ending] = ACTIONS(2539), + [sym__soft_line_ending] = ACTIONS(2539), + [sym__block_close] = ACTIONS(2539), + [sym__block_quote_start] = ACTIONS(2539), + [sym_atx_h1_marker] = ACTIONS(2539), + [sym_atx_h2_marker] = ACTIONS(2539), + [sym_atx_h3_marker] = ACTIONS(2539), + [sym_atx_h4_marker] = ACTIONS(2539), + [sym_atx_h5_marker] = ACTIONS(2539), + [sym_atx_h6_marker] = ACTIONS(2539), + [sym__thematic_break] = ACTIONS(2539), + [sym__list_marker_minus] = ACTIONS(2539), + [sym__list_marker_plus] = ACTIONS(2539), + [sym__list_marker_star] = ACTIONS(2539), + [sym__list_marker_parenthesis] = ACTIONS(2539), + [sym__list_marker_dot] = ACTIONS(2539), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_example] = ACTIONS(2539), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2539), + [sym__fenced_code_block_start_backtick] = ACTIONS(2539), + [sym__minus_metadata_start] = ACTIONS(2539), + [sym__pipe_table_start] = ACTIONS(2539), + [sym__fenced_div_start] = ACTIONS(2539), + [sym__fenced_div_end] = ACTIONS(2539), + [sym_ref_id_specifier] = ACTIONS(2539), + [sym__code_span_start] = ACTIONS(2539), + [sym__html_comment] = ACTIONS(2539), + [sym__autolink] = ACTIONS(2539), + [sym__highlight_span_start] = ACTIONS(2539), + [sym__insert_span_start] = ACTIONS(2539), + [sym__delete_span_start] = ACTIONS(2539), + [sym__edit_comment_span_start] = ACTIONS(2539), + [sym__single_quote_span_open] = ACTIONS(2539), + [sym__double_quote_span_open] = ACTIONS(2539), + [sym__shortcode_open_escaped] = ACTIONS(2539), + [sym__shortcode_open] = ACTIONS(2539), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2539), + [sym__cite_author_in_text] = ACTIONS(2539), + [sym__cite_suppress_author] = ACTIONS(2539), + [sym__strikeout_open] = ACTIONS(2539), + [sym__subscript_open] = ACTIONS(2539), + [sym__superscript_open] = ACTIONS(2539), + [sym__inline_note_start_token] = ACTIONS(2539), + [sym__strong_emphasis_open_star] = ACTIONS(2539), + [sym__strong_emphasis_open_underscore] = ACTIONS(2539), + [sym__emphasis_open_star] = ACTIONS(2539), + [sym__emphasis_open_underscore] = ACTIONS(2539), + [sym_inline_note_reference] = ACTIONS(2539), + [sym_html_element] = ACTIONS(2539), + [sym__pandoc_lt_str] = ACTIONS(2539), + [sym__pandoc_line_break] = ACTIONS(2539), + [sym_grid_table] = ACTIONS(2539), + [sym__caption_start] = ACTIONS(2539), }, - [STATE(268)] = { - [sym_entity_reference] = ACTIONS(2541), - [sym_numeric_character_reference] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2541), - [anon_sym_BANG_LBRACK] = ACTIONS(2541), - [anon_sym_DOLLAR] = ACTIONS(2543), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [aux_sym_pandoc_str_token1] = ACTIONS(2543), - [anon_sym_PIPE] = ACTIONS(2541), - [sym__whitespace] = ACTIONS(2541), - [sym__line_ending] = ACTIONS(2541), - [sym__soft_line_ending] = ACTIONS(2541), - [sym__block_close] = ACTIONS(2541), - [sym__block_quote_start] = ACTIONS(2541), - [sym_atx_h1_marker] = ACTIONS(2541), - [sym_atx_h2_marker] = ACTIONS(2541), - [sym_atx_h3_marker] = ACTIONS(2541), - [sym_atx_h4_marker] = ACTIONS(2541), - [sym_atx_h5_marker] = ACTIONS(2541), - [sym_atx_h6_marker] = ACTIONS(2541), - [sym__thematic_break] = ACTIONS(2541), - [sym__list_marker_minus] = ACTIONS(2541), - [sym__list_marker_plus] = ACTIONS(2541), - [sym__list_marker_star] = ACTIONS(2541), - [sym__list_marker_parenthesis] = ACTIONS(2541), - [sym__list_marker_dot] = ACTIONS(2541), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_example] = ACTIONS(2541), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2541), - [sym__fenced_code_block_start_backtick] = ACTIONS(2541), - [sym_minus_metadata] = ACTIONS(2541), - [sym__pipe_table_start] = ACTIONS(2541), - [sym__fenced_div_start] = ACTIONS(2541), - [sym__fenced_div_end] = ACTIONS(2541), - [sym_ref_id_specifier] = ACTIONS(2541), - [sym__code_span_start] = ACTIONS(2541), - [sym__html_comment] = ACTIONS(2541), - [sym__autolink] = ACTIONS(2541), - [sym__highlight_span_start] = ACTIONS(2541), - [sym__insert_span_start] = ACTIONS(2541), - [sym__delete_span_start] = ACTIONS(2541), - [sym__edit_comment_span_start] = ACTIONS(2541), - [sym__single_quote_span_open] = ACTIONS(2541), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2541), - [sym__shortcode_open] = ACTIONS(2541), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2541), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2541), - [sym__cite_author_in_text] = ACTIONS(2541), - [sym__cite_suppress_author] = ACTIONS(2541), - [sym__strikeout_open] = ACTIONS(2541), - [sym__subscript_open] = ACTIONS(2541), - [sym__superscript_open] = ACTIONS(2541), - [sym__inline_note_start_token] = ACTIONS(2541), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2541), - [sym__emphasis_open_star] = ACTIONS(2541), - [sym__emphasis_open_underscore] = ACTIONS(2541), - [sym_inline_note_reference] = ACTIONS(2541), - [sym_html_element] = ACTIONS(2541), - [sym__pandoc_lt_str] = ACTIONS(2541), - [sym__pandoc_line_break] = ACTIONS(2541), - [sym_grid_table] = ACTIONS(2541), - [sym__caption_start] = ACTIONS(2541), + [STATE(230)] = { + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_entity_reference] = ACTIONS(2343), + [sym_numeric_character_reference] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_BANG_LBRACK] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [aux_sym_pandoc_str_token1] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2343), + [sym__whitespace] = ACTIONS(2343), + [sym__line_ending] = ACTIONS(2343), + [sym__soft_line_ending] = ACTIONS(2343), + [sym_block_continuation] = ACTIONS(2543), + [sym__block_quote_start] = ACTIONS(2343), + [sym_atx_h1_marker] = ACTIONS(2343), + [sym_atx_h2_marker] = ACTIONS(2343), + [sym_atx_h3_marker] = ACTIONS(2343), + [sym_atx_h4_marker] = ACTIONS(2343), + [sym_atx_h5_marker] = ACTIONS(2343), + [sym_atx_h6_marker] = ACTIONS(2343), + [sym__thematic_break] = ACTIONS(2343), + [sym__list_marker_minus] = ACTIONS(2343), + [sym__list_marker_plus] = ACTIONS(2343), + [sym__list_marker_star] = ACTIONS(2343), + [sym__list_marker_parenthesis] = ACTIONS(2343), + [sym__list_marker_dot] = ACTIONS(2343), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_example] = ACTIONS(2343), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2343), + [sym__fenced_code_block_start_backtick] = ACTIONS(2343), + [sym__minus_metadata_start] = ACTIONS(2343), + [sym__pipe_table_start] = ACTIONS(2343), + [sym__fenced_div_start] = ACTIONS(2343), + [sym_ref_id_specifier] = ACTIONS(2343), + [sym__code_span_start] = ACTIONS(2343), + [sym__html_comment] = ACTIONS(2343), + [sym__autolink] = ACTIONS(2343), + [sym__highlight_span_start] = ACTIONS(2343), + [sym__insert_span_start] = ACTIONS(2343), + [sym__delete_span_start] = ACTIONS(2343), + [sym__edit_comment_span_start] = ACTIONS(2343), + [sym__single_quote_span_open] = ACTIONS(2343), + [sym__double_quote_span_open] = ACTIONS(2343), + [sym__shortcode_open_escaped] = ACTIONS(2343), + [sym__shortcode_open] = ACTIONS(2343), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2343), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2343), + [sym__cite_author_in_text] = ACTIONS(2343), + [sym__cite_suppress_author] = ACTIONS(2343), + [sym__strikeout_open] = ACTIONS(2343), + [sym__subscript_open] = ACTIONS(2343), + [sym__superscript_open] = ACTIONS(2343), + [sym__inline_note_start_token] = ACTIONS(2343), + [sym__strong_emphasis_open_star] = ACTIONS(2343), + [sym__strong_emphasis_open_underscore] = ACTIONS(2343), + [sym__emphasis_open_star] = ACTIONS(2343), + [sym__emphasis_open_underscore] = ACTIONS(2343), + [sym_inline_note_reference] = ACTIONS(2343), + [sym_html_element] = ACTIONS(2343), + [sym__pandoc_lt_str] = ACTIONS(2343), + [sym__pandoc_line_break] = ACTIONS(2343), + [sym_grid_table] = ACTIONS(2343), + [sym__caption_start] = ACTIONS(2343), }, - [STATE(269)] = { + [STATE(231)] = { [sym_entity_reference] = ACTIONS(2545), [sym_numeric_character_reference] = ACTIONS(2545), [anon_sym_LBRACK] = ACTIONS(2545), @@ -52583,7 +50131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2545), [sym__list_marker_example_dont_interrupt] = ACTIONS(2545), [sym__fenced_code_block_start_backtick] = ACTIONS(2545), - [sym_minus_metadata] = ACTIONS(2545), + [sym__minus_metadata_start] = ACTIONS(2545), [sym__pipe_table_start] = ACTIONS(2545), [sym__fenced_div_start] = ACTIONS(2545), [sym__fenced_div_end] = ACTIONS(2545), @@ -52618,637 +50166,1827 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2545), [sym__caption_start] = ACTIONS(2545), }, - [STATE(270)] = { - [sym_entity_reference] = ACTIONS(2537), - [sym_numeric_character_reference] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_BANG_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2539), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [aux_sym_pandoc_str_token1] = ACTIONS(2539), - [anon_sym_PIPE] = ACTIONS(2537), + [STATE(232)] = { + [sym_entity_reference] = ACTIONS(2549), + [sym_numeric_character_reference] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_BANG_LBRACK] = ACTIONS(2549), + [anon_sym_DOLLAR] = ACTIONS(2551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2549), + [aux_sym_pandoc_str_token1] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2549), [sym__whitespace] = ACTIONS(2549), - [sym__line_ending] = ACTIONS(2537), - [sym__soft_line_ending] = ACTIONS(2537), - [sym__block_close] = ACTIONS(2537), - [sym__block_quote_start] = ACTIONS(2537), - [sym_atx_h1_marker] = ACTIONS(2537), - [sym_atx_h2_marker] = ACTIONS(2537), - [sym_atx_h3_marker] = ACTIONS(2537), - [sym_atx_h4_marker] = ACTIONS(2537), - [sym_atx_h5_marker] = ACTIONS(2537), - [sym_atx_h6_marker] = ACTIONS(2537), - [sym__thematic_break] = ACTIONS(2537), - [sym__list_marker_minus] = ACTIONS(2537), - [sym__list_marker_plus] = ACTIONS(2537), - [sym__list_marker_star] = ACTIONS(2537), - [sym__list_marker_parenthesis] = ACTIONS(2537), - [sym__list_marker_dot] = ACTIONS(2537), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_example] = ACTIONS(2537), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2537), - [sym__fenced_code_block_start_backtick] = ACTIONS(2537), - [sym_minus_metadata] = ACTIONS(2537), - [sym__pipe_table_start] = ACTIONS(2537), - [sym__fenced_div_start] = ACTIONS(2537), - [sym__fenced_div_end] = ACTIONS(2537), - [sym_ref_id_specifier] = ACTIONS(2537), - [sym__code_span_start] = ACTIONS(2537), - [sym__html_comment] = ACTIONS(2537), - [sym__autolink] = ACTIONS(2537), - [sym__highlight_span_start] = ACTIONS(2537), - [sym__insert_span_start] = ACTIONS(2537), - [sym__delete_span_start] = ACTIONS(2537), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2537), - [sym__double_quote_span_open] = ACTIONS(2537), - [sym__shortcode_open_escaped] = ACTIONS(2537), - [sym__shortcode_open] = ACTIONS(2537), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2537), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2537), - [sym__cite_author_in_text] = ACTIONS(2537), - [sym__cite_suppress_author] = ACTIONS(2537), - [sym__strikeout_open] = ACTIONS(2537), - [sym__subscript_open] = ACTIONS(2537), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2537), - [sym__strong_emphasis_open_star] = ACTIONS(2537), - [sym__strong_emphasis_open_underscore] = ACTIONS(2537), - [sym__emphasis_open_star] = ACTIONS(2537), - [sym__emphasis_open_underscore] = ACTIONS(2537), - [sym_inline_note_reference] = ACTIONS(2537), - [sym_html_element] = ACTIONS(2537), - [sym__pandoc_lt_str] = ACTIONS(2537), - [sym__pandoc_line_break] = ACTIONS(2537), - [sym_grid_table] = ACTIONS(2537), - [sym__caption_start] = ACTIONS(2537), - }, - [STATE(271)] = { - [ts_builtin_sym_end] = ACTIONS(2285), - [sym_entity_reference] = ACTIONS(2285), - [sym_numeric_character_reference] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_BANG_LBRACK] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [aux_sym_pandoc_str_token1] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2285), - [sym__whitespace] = ACTIONS(2285), - [sym__line_ending] = ACTIONS(2285), - [sym__soft_line_ending] = ACTIONS(2285), - [sym_block_continuation] = ACTIONS(2551), - [sym__block_quote_start] = ACTIONS(2285), - [sym_atx_h1_marker] = ACTIONS(2285), - [sym_atx_h2_marker] = ACTIONS(2285), - [sym_atx_h3_marker] = ACTIONS(2285), - [sym_atx_h4_marker] = ACTIONS(2285), - [sym_atx_h5_marker] = ACTIONS(2285), - [sym_atx_h6_marker] = ACTIONS(2285), - [sym__thematic_break] = ACTIONS(2285), - [sym__list_marker_minus] = ACTIONS(2285), - [sym__list_marker_plus] = ACTIONS(2285), - [sym__list_marker_star] = ACTIONS(2285), - [sym__list_marker_parenthesis] = ACTIONS(2285), - [sym__list_marker_dot] = ACTIONS(2285), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_example] = ACTIONS(2285), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2285), - [sym__fenced_code_block_start_backtick] = ACTIONS(2285), - [sym_minus_metadata] = ACTIONS(2285), - [sym__pipe_table_start] = ACTIONS(2285), - [sym__fenced_div_start] = ACTIONS(2285), - [sym_ref_id_specifier] = ACTIONS(2285), - [sym__code_span_start] = ACTIONS(2285), - [sym__html_comment] = ACTIONS(2285), - [sym__autolink] = ACTIONS(2285), - [sym__highlight_span_start] = ACTIONS(2285), - [sym__insert_span_start] = ACTIONS(2285), - [sym__delete_span_start] = ACTIONS(2285), - [sym__edit_comment_span_start] = ACTIONS(2285), - [sym__single_quote_span_open] = ACTIONS(2285), - [sym__double_quote_span_open] = ACTIONS(2285), - [sym__shortcode_open_escaped] = ACTIONS(2285), - [sym__shortcode_open] = ACTIONS(2285), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2285), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2285), - [sym__cite_author_in_text] = ACTIONS(2285), - [sym__cite_suppress_author] = ACTIONS(2285), - [sym__strikeout_open] = ACTIONS(2285), - [sym__subscript_open] = ACTIONS(2285), - [sym__superscript_open] = ACTIONS(2285), - [sym__inline_note_start_token] = ACTIONS(2285), - [sym__strong_emphasis_open_star] = ACTIONS(2285), - [sym__strong_emphasis_open_underscore] = ACTIONS(2285), - [sym__emphasis_open_star] = ACTIONS(2285), - [sym__emphasis_open_underscore] = ACTIONS(2285), - [sym_inline_note_reference] = ACTIONS(2285), - [sym_html_element] = ACTIONS(2285), - [sym__pandoc_lt_str] = ACTIONS(2285), - [sym__pandoc_line_break] = ACTIONS(2285), - [sym_grid_table] = ACTIONS(2285), - [sym__caption_start] = ACTIONS(2285), + [sym__line_ending] = ACTIONS(2549), + [sym__soft_line_ending] = ACTIONS(2549), + [sym__block_close] = ACTIONS(2549), + [sym__block_quote_start] = ACTIONS(2549), + [sym_atx_h1_marker] = ACTIONS(2549), + [sym_atx_h2_marker] = ACTIONS(2549), + [sym_atx_h3_marker] = ACTIONS(2549), + [sym_atx_h4_marker] = ACTIONS(2549), + [sym_atx_h5_marker] = ACTIONS(2549), + [sym_atx_h6_marker] = ACTIONS(2549), + [sym__thematic_break] = ACTIONS(2549), + [sym__list_marker_minus] = ACTIONS(2549), + [sym__list_marker_plus] = ACTIONS(2549), + [sym__list_marker_star] = ACTIONS(2549), + [sym__list_marker_parenthesis] = ACTIONS(2549), + [sym__list_marker_dot] = ACTIONS(2549), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_example] = ACTIONS(2549), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2549), + [sym__fenced_code_block_start_backtick] = ACTIONS(2549), + [sym__minus_metadata_start] = ACTIONS(2549), + [sym__pipe_table_start] = ACTIONS(2549), + [sym__fenced_div_start] = ACTIONS(2549), + [sym__fenced_div_end] = ACTIONS(2549), + [sym_ref_id_specifier] = ACTIONS(2549), + [sym__code_span_start] = ACTIONS(2549), + [sym__html_comment] = ACTIONS(2549), + [sym__autolink] = ACTIONS(2549), + [sym__highlight_span_start] = ACTIONS(2549), + [sym__insert_span_start] = ACTIONS(2549), + [sym__delete_span_start] = ACTIONS(2549), + [sym__edit_comment_span_start] = ACTIONS(2549), + [sym__single_quote_span_open] = ACTIONS(2549), + [sym__double_quote_span_open] = ACTIONS(2549), + [sym__shortcode_open_escaped] = ACTIONS(2549), + [sym__shortcode_open] = ACTIONS(2549), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2549), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), + [sym__cite_author_in_text] = ACTIONS(2549), + [sym__cite_suppress_author] = ACTIONS(2549), + [sym__strikeout_open] = ACTIONS(2549), + [sym__subscript_open] = ACTIONS(2549), + [sym__superscript_open] = ACTIONS(2549), + [sym__inline_note_start_token] = ACTIONS(2549), + [sym__strong_emphasis_open_star] = ACTIONS(2549), + [sym__strong_emphasis_open_underscore] = ACTIONS(2549), + [sym__emphasis_open_star] = ACTIONS(2549), + [sym__emphasis_open_underscore] = ACTIONS(2549), + [sym_inline_note_reference] = ACTIONS(2549), + [sym_html_element] = ACTIONS(2549), + [sym__pandoc_lt_str] = ACTIONS(2549), + [sym__pandoc_line_break] = ACTIONS(2549), + [sym_grid_table] = ACTIONS(2549), + [sym__caption_start] = ACTIONS(2549), }, - [STATE(272)] = { - [sym__inlines] = STATE(3282), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1393), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(627), - [sym__inline_whitespace] = STATE(627), + [STATE(233)] = { [sym_entity_reference] = ACTIONS(2553), [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2557), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2561), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2573), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2553), + [anon_sym_BANG_LBRACK] = ACTIONS(2553), + [anon_sym_DOLLAR] = ACTIONS(2555), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [aux_sym_pandoc_str_token1] = ACTIONS(2555), + [anon_sym_PIPE] = ACTIONS(2553), + [sym__whitespace] = ACTIONS(2553), + [sym__line_ending] = ACTIONS(2553), + [sym__soft_line_ending] = ACTIONS(2553), + [sym__block_close] = ACTIONS(2553), + [sym__block_quote_start] = ACTIONS(2553), + [sym_atx_h1_marker] = ACTIONS(2553), + [sym_atx_h2_marker] = ACTIONS(2553), + [sym_atx_h3_marker] = ACTIONS(2553), + [sym_atx_h4_marker] = ACTIONS(2553), + [sym_atx_h5_marker] = ACTIONS(2553), + [sym_atx_h6_marker] = ACTIONS(2553), + [sym__thematic_break] = ACTIONS(2553), + [sym__list_marker_minus] = ACTIONS(2553), + [sym__list_marker_plus] = ACTIONS(2553), + [sym__list_marker_star] = ACTIONS(2553), + [sym__list_marker_parenthesis] = ACTIONS(2553), + [sym__list_marker_dot] = ACTIONS(2553), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_example] = ACTIONS(2553), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2553), + [sym__fenced_code_block_start_backtick] = ACTIONS(2553), + [sym__minus_metadata_start] = ACTIONS(2553), + [sym__pipe_table_start] = ACTIONS(2553), + [sym__fenced_div_start] = ACTIONS(2553), + [sym__fenced_div_end] = ACTIONS(2553), + [sym_ref_id_specifier] = ACTIONS(2553), + [sym__code_span_start] = ACTIONS(2553), [sym__html_comment] = ACTIONS(2553), [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), + [sym__highlight_span_start] = ACTIONS(2553), + [sym__insert_span_start] = ACTIONS(2553), + [sym__delete_span_start] = ACTIONS(2553), + [sym__edit_comment_span_start] = ACTIONS(2553), + [sym__single_quote_span_open] = ACTIONS(2553), + [sym__double_quote_span_open] = ACTIONS(2553), + [sym__shortcode_open_escaped] = ACTIONS(2553), + [sym__shortcode_open] = ACTIONS(2553), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2553), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2553), + [sym__cite_author_in_text] = ACTIONS(2553), + [sym__cite_suppress_author] = ACTIONS(2553), + [sym__strikeout_open] = ACTIONS(2553), + [sym__subscript_open] = ACTIONS(2553), + [sym__superscript_open] = ACTIONS(2553), + [sym__inline_note_start_token] = ACTIONS(2553), + [sym__strong_emphasis_open_star] = ACTIONS(2553), + [sym__strong_emphasis_open_underscore] = ACTIONS(2553), + [sym__emphasis_open_star] = ACTIONS(2553), + [sym__emphasis_open_underscore] = ACTIONS(2553), [sym_inline_note_reference] = ACTIONS(2553), [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), + [sym__pandoc_lt_str] = ACTIONS(2553), [sym__pandoc_line_break] = ACTIONS(2553), + [sym_grid_table] = ACTIONS(2553), + [sym__caption_start] = ACTIONS(2553), }, - [STATE(273)] = { - [sym__inlines] = STATE(3286), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1400), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(628), - [sym__inline_whitespace] = STATE(628), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2619), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2561), + [STATE(234)] = { + [sym_entity_reference] = ACTIONS(2557), + [sym_numeric_character_reference] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_BANG_LBRACK] = ACTIONS(2557), + [anon_sym_DOLLAR] = ACTIONS(2559), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [aux_sym_pandoc_str_token1] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2557), + [sym__whitespace] = ACTIONS(2557), + [sym__line_ending] = ACTIONS(2557), + [sym__soft_line_ending] = ACTIONS(2557), + [sym__block_close] = ACTIONS(2557), + [sym__block_quote_start] = ACTIONS(2557), + [sym_atx_h1_marker] = ACTIONS(2557), + [sym_atx_h2_marker] = ACTIONS(2557), + [sym_atx_h3_marker] = ACTIONS(2557), + [sym_atx_h4_marker] = ACTIONS(2557), + [sym_atx_h5_marker] = ACTIONS(2557), + [sym_atx_h6_marker] = ACTIONS(2557), + [sym__thematic_break] = ACTIONS(2557), + [sym__list_marker_minus] = ACTIONS(2557), + [sym__list_marker_plus] = ACTIONS(2557), + [sym__list_marker_star] = ACTIONS(2557), + [sym__list_marker_parenthesis] = ACTIONS(2557), + [sym__list_marker_dot] = ACTIONS(2557), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_example] = ACTIONS(2557), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2557), + [sym__fenced_code_block_start_backtick] = ACTIONS(2557), + [sym__minus_metadata_start] = ACTIONS(2557), + [sym__pipe_table_start] = ACTIONS(2557), + [sym__fenced_div_start] = ACTIONS(2557), + [sym__fenced_div_end] = ACTIONS(2557), + [sym_ref_id_specifier] = ACTIONS(2557), + [sym__code_span_start] = ACTIONS(2557), + [sym__html_comment] = ACTIONS(2557), + [sym__autolink] = ACTIONS(2557), + [sym__highlight_span_start] = ACTIONS(2557), + [sym__insert_span_start] = ACTIONS(2557), + [sym__delete_span_start] = ACTIONS(2557), + [sym__edit_comment_span_start] = ACTIONS(2557), + [sym__single_quote_span_open] = ACTIONS(2557), + [sym__double_quote_span_open] = ACTIONS(2557), + [sym__shortcode_open_escaped] = ACTIONS(2557), + [sym__shortcode_open] = ACTIONS(2557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2557), + [sym__cite_author_in_text] = ACTIONS(2557), + [sym__cite_suppress_author] = ACTIONS(2557), + [sym__strikeout_open] = ACTIONS(2557), + [sym__subscript_open] = ACTIONS(2557), + [sym__superscript_open] = ACTIONS(2557), + [sym__inline_note_start_token] = ACTIONS(2557), + [sym__strong_emphasis_open_star] = ACTIONS(2557), + [sym__strong_emphasis_open_underscore] = ACTIONS(2557), + [sym__emphasis_open_star] = ACTIONS(2557), + [sym__emphasis_open_underscore] = ACTIONS(2557), + [sym_inline_note_reference] = ACTIONS(2557), + [sym_html_element] = ACTIONS(2557), + [sym__pandoc_lt_str] = ACTIONS(2557), + [sym__pandoc_line_break] = ACTIONS(2557), + [sym_grid_table] = ACTIONS(2557), + [sym__caption_start] = ACTIONS(2557), + }, + [STATE(235)] = { + [sym_entity_reference] = ACTIONS(2561), + [sym_numeric_character_reference] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_BANG_LBRACK] = ACTIONS(2561), [anon_sym_DOLLAR] = ACTIONS(2563), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2561), + [aux_sym_pandoc_str_token1] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(2561), + [sym__whitespace] = ACTIONS(2561), + [sym__line_ending] = ACTIONS(2561), + [sym__soft_line_ending] = ACTIONS(2561), + [sym__block_close] = ACTIONS(2561), + [sym__block_quote_start] = ACTIONS(2561), + [sym_atx_h1_marker] = ACTIONS(2561), + [sym_atx_h2_marker] = ACTIONS(2561), + [sym_atx_h3_marker] = ACTIONS(2561), + [sym_atx_h4_marker] = ACTIONS(2561), + [sym_atx_h5_marker] = ACTIONS(2561), + [sym_atx_h6_marker] = ACTIONS(2561), + [sym__thematic_break] = ACTIONS(2561), + [sym__list_marker_minus] = ACTIONS(2561), + [sym__list_marker_plus] = ACTIONS(2561), + [sym__list_marker_star] = ACTIONS(2561), + [sym__list_marker_parenthesis] = ACTIONS(2561), + [sym__list_marker_dot] = ACTIONS(2561), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_example] = ACTIONS(2561), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2561), + [sym__fenced_code_block_start_backtick] = ACTIONS(2561), + [sym__minus_metadata_start] = ACTIONS(2561), + [sym__pipe_table_start] = ACTIONS(2561), + [sym__fenced_div_start] = ACTIONS(2561), + [sym__fenced_div_end] = ACTIONS(2561), + [sym_ref_id_specifier] = ACTIONS(2561), + [sym__code_span_start] = ACTIONS(2561), + [sym__html_comment] = ACTIONS(2561), + [sym__autolink] = ACTIONS(2561), + [sym__highlight_span_start] = ACTIONS(2561), + [sym__insert_span_start] = ACTIONS(2561), + [sym__delete_span_start] = ACTIONS(2561), + [sym__edit_comment_span_start] = ACTIONS(2561), + [sym__single_quote_span_open] = ACTIONS(2561), + [sym__double_quote_span_open] = ACTIONS(2561), + [sym__shortcode_open_escaped] = ACTIONS(2561), + [sym__shortcode_open] = ACTIONS(2561), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2561), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2561), + [sym__cite_author_in_text] = ACTIONS(2561), + [sym__cite_suppress_author] = ACTIONS(2561), + [sym__strikeout_open] = ACTIONS(2561), + [sym__subscript_open] = ACTIONS(2561), + [sym__superscript_open] = ACTIONS(2561), + [sym__inline_note_start_token] = ACTIONS(2561), + [sym__strong_emphasis_open_star] = ACTIONS(2561), + [sym__strong_emphasis_open_underscore] = ACTIONS(2561), + [sym__emphasis_open_star] = ACTIONS(2561), + [sym__emphasis_open_underscore] = ACTIONS(2561), + [sym_inline_note_reference] = ACTIONS(2561), + [sym_html_element] = ACTIONS(2561), + [sym__pandoc_lt_str] = ACTIONS(2561), + [sym__pandoc_line_break] = ACTIONS(2561), + [sym_grid_table] = ACTIONS(2561), + [sym__caption_start] = ACTIONS(2561), + }, + [STATE(236)] = { + [sym_entity_reference] = ACTIONS(2565), + [sym_numeric_character_reference] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2565), + [anon_sym_BANG_LBRACK] = ACTIONS(2565), + [anon_sym_DOLLAR] = ACTIONS(2567), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2621), - [sym__soft_line_ending] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2565), + [aux_sym_pandoc_str_token1] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2565), + [sym__whitespace] = ACTIONS(2565), + [sym__line_ending] = ACTIONS(2565), + [sym__soft_line_ending] = ACTIONS(2565), + [sym__block_close] = ACTIONS(2565), + [sym__block_quote_start] = ACTIONS(2565), + [sym_atx_h1_marker] = ACTIONS(2565), + [sym_atx_h2_marker] = ACTIONS(2565), + [sym_atx_h3_marker] = ACTIONS(2565), + [sym_atx_h4_marker] = ACTIONS(2565), + [sym_atx_h5_marker] = ACTIONS(2565), + [sym_atx_h6_marker] = ACTIONS(2565), + [sym__thematic_break] = ACTIONS(2565), + [sym__list_marker_minus] = ACTIONS(2565), + [sym__list_marker_plus] = ACTIONS(2565), + [sym__list_marker_star] = ACTIONS(2565), + [sym__list_marker_parenthesis] = ACTIONS(2565), + [sym__list_marker_dot] = ACTIONS(2565), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_example] = ACTIONS(2565), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2565), + [sym__fenced_code_block_start_backtick] = ACTIONS(2565), + [sym__minus_metadata_start] = ACTIONS(2565), + [sym__pipe_table_start] = ACTIONS(2565), + [sym__fenced_div_start] = ACTIONS(2565), + [sym__fenced_div_end] = ACTIONS(2565), + [sym_ref_id_specifier] = ACTIONS(2565), + [sym__code_span_start] = ACTIONS(2565), + [sym__html_comment] = ACTIONS(2565), + [sym__autolink] = ACTIONS(2565), + [sym__highlight_span_start] = ACTIONS(2565), + [sym__insert_span_start] = ACTIONS(2565), + [sym__delete_span_start] = ACTIONS(2565), + [sym__edit_comment_span_start] = ACTIONS(2565), + [sym__single_quote_span_open] = ACTIONS(2565), + [sym__double_quote_span_open] = ACTIONS(2565), + [sym__shortcode_open_escaped] = ACTIONS(2565), + [sym__shortcode_open] = ACTIONS(2565), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2565), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2565), + [sym__cite_author_in_text] = ACTIONS(2565), + [sym__cite_suppress_author] = ACTIONS(2565), + [sym__strikeout_open] = ACTIONS(2565), + [sym__subscript_open] = ACTIONS(2565), + [sym__superscript_open] = ACTIONS(2565), + [sym__inline_note_start_token] = ACTIONS(2565), + [sym__strong_emphasis_open_star] = ACTIONS(2565), + [sym__strong_emphasis_open_underscore] = ACTIONS(2565), + [sym__emphasis_open_star] = ACTIONS(2565), + [sym__emphasis_open_underscore] = ACTIONS(2565), + [sym_inline_note_reference] = ACTIONS(2565), + [sym_html_element] = ACTIONS(2565), + [sym__pandoc_lt_str] = ACTIONS(2565), + [sym__pandoc_line_break] = ACTIONS(2565), + [sym_grid_table] = ACTIONS(2565), + [sym__caption_start] = ACTIONS(2565), + }, + [STATE(237)] = { + [sym_entity_reference] = ACTIONS(2569), + [sym_numeric_character_reference] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_BANG_LBRACK] = ACTIONS(2569), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2569), + [aux_sym_pandoc_str_token1] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2569), + [sym__whitespace] = ACTIONS(2569), + [sym__line_ending] = ACTIONS(2569), + [sym__soft_line_ending] = ACTIONS(2569), + [sym__block_close] = ACTIONS(2569), + [sym__block_quote_start] = ACTIONS(2569), + [sym_atx_h1_marker] = ACTIONS(2569), + [sym_atx_h2_marker] = ACTIONS(2569), + [sym_atx_h3_marker] = ACTIONS(2569), + [sym_atx_h4_marker] = ACTIONS(2569), + [sym_atx_h5_marker] = ACTIONS(2569), + [sym_atx_h6_marker] = ACTIONS(2569), + [sym__thematic_break] = ACTIONS(2569), + [sym__list_marker_minus] = ACTIONS(2569), + [sym__list_marker_plus] = ACTIONS(2569), + [sym__list_marker_star] = ACTIONS(2569), + [sym__list_marker_parenthesis] = ACTIONS(2569), + [sym__list_marker_dot] = ACTIONS(2569), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_example] = ACTIONS(2569), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2569), + [sym__fenced_code_block_start_backtick] = ACTIONS(2569), + [sym__minus_metadata_start] = ACTIONS(2569), + [sym__pipe_table_start] = ACTIONS(2569), + [sym__fenced_div_start] = ACTIONS(2569), + [sym__fenced_div_end] = ACTIONS(2569), + [sym_ref_id_specifier] = ACTIONS(2569), + [sym__code_span_start] = ACTIONS(2569), + [sym__html_comment] = ACTIONS(2569), + [sym__autolink] = ACTIONS(2569), + [sym__highlight_span_start] = ACTIONS(2569), + [sym__insert_span_start] = ACTIONS(2569), + [sym__delete_span_start] = ACTIONS(2569), + [sym__edit_comment_span_start] = ACTIONS(2569), + [sym__single_quote_span_open] = ACTIONS(2569), + [sym__double_quote_span_open] = ACTIONS(2569), + [sym__shortcode_open_escaped] = ACTIONS(2569), + [sym__shortcode_open] = ACTIONS(2569), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2569), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2569), + [sym__cite_author_in_text] = ACTIONS(2569), + [sym__cite_suppress_author] = ACTIONS(2569), + [sym__strikeout_open] = ACTIONS(2569), + [sym__subscript_open] = ACTIONS(2569), + [sym__superscript_open] = ACTIONS(2569), + [sym__inline_note_start_token] = ACTIONS(2569), + [sym__strong_emphasis_open_star] = ACTIONS(2569), + [sym__strong_emphasis_open_underscore] = ACTIONS(2569), + [sym__emphasis_open_star] = ACTIONS(2569), + [sym__emphasis_open_underscore] = ACTIONS(2569), + [sym_inline_note_reference] = ACTIONS(2569), + [sym_html_element] = ACTIONS(2569), + [sym__pandoc_lt_str] = ACTIONS(2569), + [sym__pandoc_line_break] = ACTIONS(2569), + [sym_grid_table] = ACTIONS(2569), + [sym__caption_start] = ACTIONS(2569), + }, + [STATE(238)] = { + [sym_entity_reference] = ACTIONS(2573), + [sym_numeric_character_reference] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_BANG_LBRACK] = ACTIONS(2573), + [anon_sym_DOLLAR] = ACTIONS(2575), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2573), + [aux_sym_pandoc_str_token1] = ACTIONS(2575), + [anon_sym_PIPE] = ACTIONS(2573), + [sym__whitespace] = ACTIONS(2573), + [sym__line_ending] = ACTIONS(2573), + [sym__soft_line_ending] = ACTIONS(2573), + [sym__block_close] = ACTIONS(2573), + [sym__block_quote_start] = ACTIONS(2573), + [sym_atx_h1_marker] = ACTIONS(2573), + [sym_atx_h2_marker] = ACTIONS(2573), + [sym_atx_h3_marker] = ACTIONS(2573), + [sym_atx_h4_marker] = ACTIONS(2573), + [sym_atx_h5_marker] = ACTIONS(2573), + [sym_atx_h6_marker] = ACTIONS(2573), + [sym__thematic_break] = ACTIONS(2573), + [sym__list_marker_minus] = ACTIONS(2573), + [sym__list_marker_plus] = ACTIONS(2573), + [sym__list_marker_star] = ACTIONS(2573), + [sym__list_marker_parenthesis] = ACTIONS(2573), + [sym__list_marker_dot] = ACTIONS(2573), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_example] = ACTIONS(2573), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2573), + [sym__fenced_code_block_start_backtick] = ACTIONS(2573), + [sym__minus_metadata_start] = ACTIONS(2573), + [sym__pipe_table_start] = ACTIONS(2573), + [sym__fenced_div_start] = ACTIONS(2573), + [sym__fenced_div_end] = ACTIONS(2573), + [sym_ref_id_specifier] = ACTIONS(2573), + [sym__code_span_start] = ACTIONS(2573), + [sym__html_comment] = ACTIONS(2573), + [sym__autolink] = ACTIONS(2573), + [sym__highlight_span_start] = ACTIONS(2573), + [sym__insert_span_start] = ACTIONS(2573), + [sym__delete_span_start] = ACTIONS(2573), + [sym__edit_comment_span_start] = ACTIONS(2573), + [sym__single_quote_span_open] = ACTIONS(2573), + [sym__double_quote_span_open] = ACTIONS(2573), + [sym__shortcode_open_escaped] = ACTIONS(2573), + [sym__shortcode_open] = ACTIONS(2573), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2573), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2573), + [sym__cite_author_in_text] = ACTIONS(2573), + [sym__cite_suppress_author] = ACTIONS(2573), + [sym__strikeout_open] = ACTIONS(2573), + [sym__subscript_open] = ACTIONS(2573), + [sym__superscript_open] = ACTIONS(2573), + [sym__inline_note_start_token] = ACTIONS(2573), + [sym__strong_emphasis_open_star] = ACTIONS(2573), + [sym__strong_emphasis_open_underscore] = ACTIONS(2573), + [sym__emphasis_open_star] = ACTIONS(2573), + [sym__emphasis_open_underscore] = ACTIONS(2573), + [sym_inline_note_reference] = ACTIONS(2573), + [sym_html_element] = ACTIONS(2573), + [sym__pandoc_lt_str] = ACTIONS(2573), + [sym__pandoc_line_break] = ACTIONS(2573), + [sym_grid_table] = ACTIONS(2573), + [sym__caption_start] = ACTIONS(2573), + }, + [STATE(239)] = { + [sym_entity_reference] = ACTIONS(2577), + [sym_numeric_character_reference] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_BANG_LBRACK] = ACTIONS(2577), + [anon_sym_DOLLAR] = ACTIONS(2579), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2577), + [aux_sym_pandoc_str_token1] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2577), + [sym__whitespace] = ACTIONS(2577), + [sym__line_ending] = ACTIONS(2577), + [sym__soft_line_ending] = ACTIONS(2577), + [sym__block_close] = ACTIONS(2577), + [sym__block_quote_start] = ACTIONS(2577), + [sym_atx_h1_marker] = ACTIONS(2577), + [sym_atx_h2_marker] = ACTIONS(2577), + [sym_atx_h3_marker] = ACTIONS(2577), + [sym_atx_h4_marker] = ACTIONS(2577), + [sym_atx_h5_marker] = ACTIONS(2577), + [sym_atx_h6_marker] = ACTIONS(2577), + [sym__thematic_break] = ACTIONS(2577), + [sym__list_marker_minus] = ACTIONS(2577), + [sym__list_marker_plus] = ACTIONS(2577), + [sym__list_marker_star] = ACTIONS(2577), + [sym__list_marker_parenthesis] = ACTIONS(2577), + [sym__list_marker_dot] = ACTIONS(2577), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_example] = ACTIONS(2577), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2577), + [sym__fenced_code_block_start_backtick] = ACTIONS(2577), + [sym__minus_metadata_start] = ACTIONS(2577), + [sym__pipe_table_start] = ACTIONS(2577), + [sym__fenced_div_start] = ACTIONS(2577), + [sym__fenced_div_end] = ACTIONS(2577), + [sym_ref_id_specifier] = ACTIONS(2577), [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), + [sym__html_comment] = ACTIONS(2577), + [sym__autolink] = ACTIONS(2577), + [sym__highlight_span_start] = ACTIONS(2577), + [sym__insert_span_start] = ACTIONS(2577), + [sym__delete_span_start] = ACTIONS(2577), + [sym__edit_comment_span_start] = ACTIONS(2577), + [sym__single_quote_span_open] = ACTIONS(2577), + [sym__double_quote_span_open] = ACTIONS(2577), + [sym__shortcode_open_escaped] = ACTIONS(2577), + [sym__shortcode_open] = ACTIONS(2577), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2577), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2577), + [sym__cite_author_in_text] = ACTIONS(2577), + [sym__cite_suppress_author] = ACTIONS(2577), + [sym__strikeout_open] = ACTIONS(2577), + [sym__subscript_open] = ACTIONS(2577), + [sym__superscript_open] = ACTIONS(2577), + [sym__inline_note_start_token] = ACTIONS(2577), + [sym__strong_emphasis_open_star] = ACTIONS(2577), + [sym__strong_emphasis_open_underscore] = ACTIONS(2577), + [sym__emphasis_open_star] = ACTIONS(2577), + [sym__emphasis_open_underscore] = ACTIONS(2577), + [sym_inline_note_reference] = ACTIONS(2577), + [sym_html_element] = ACTIONS(2577), + [sym__pandoc_lt_str] = ACTIONS(2577), + [sym__pandoc_line_break] = ACTIONS(2577), + [sym_grid_table] = ACTIONS(2577), + [sym__caption_start] = ACTIONS(2577), + }, + [STATE(240)] = { + [ts_builtin_sym_end] = ACTIONS(2349), + [sym_entity_reference] = ACTIONS(2349), + [sym_numeric_character_reference] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_BANG_LBRACK] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [aux_sym_pandoc_str_token1] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(2349), + [sym__whitespace] = ACTIONS(2349), + [sym__line_ending] = ACTIONS(2349), + [sym__soft_line_ending] = ACTIONS(2349), + [sym_block_continuation] = ACTIONS(2581), + [sym__block_quote_start] = ACTIONS(2349), + [sym_atx_h1_marker] = ACTIONS(2349), + [sym_atx_h2_marker] = ACTIONS(2349), + [sym_atx_h3_marker] = ACTIONS(2349), + [sym_atx_h4_marker] = ACTIONS(2349), + [sym_atx_h5_marker] = ACTIONS(2349), + [sym_atx_h6_marker] = ACTIONS(2349), + [sym__thematic_break] = ACTIONS(2349), + [sym__list_marker_minus] = ACTIONS(2349), + [sym__list_marker_plus] = ACTIONS(2349), + [sym__list_marker_star] = ACTIONS(2349), + [sym__list_marker_parenthesis] = ACTIONS(2349), + [sym__list_marker_dot] = ACTIONS(2349), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_example] = ACTIONS(2349), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2349), + [sym__fenced_code_block_start_backtick] = ACTIONS(2349), + [sym__minus_metadata_start] = ACTIONS(2349), + [sym__pipe_table_start] = ACTIONS(2349), + [sym__fenced_div_start] = ACTIONS(2349), + [sym_ref_id_specifier] = ACTIONS(2349), + [sym__code_span_start] = ACTIONS(2349), + [sym__html_comment] = ACTIONS(2349), + [sym__autolink] = ACTIONS(2349), + [sym__highlight_span_start] = ACTIONS(2349), + [sym__insert_span_start] = ACTIONS(2349), + [sym__delete_span_start] = ACTIONS(2349), + [sym__edit_comment_span_start] = ACTIONS(2349), + [sym__single_quote_span_open] = ACTIONS(2349), + [sym__double_quote_span_open] = ACTIONS(2349), + [sym__shortcode_open_escaped] = ACTIONS(2349), + [sym__shortcode_open] = ACTIONS(2349), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2349), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2349), + [sym__cite_author_in_text] = ACTIONS(2349), + [sym__cite_suppress_author] = ACTIONS(2349), + [sym__strikeout_open] = ACTIONS(2349), + [sym__subscript_open] = ACTIONS(2349), + [sym__superscript_open] = ACTIONS(2349), + [sym__inline_note_start_token] = ACTIONS(2349), + [sym__strong_emphasis_open_star] = ACTIONS(2349), + [sym__strong_emphasis_open_underscore] = ACTIONS(2349), + [sym__emphasis_open_star] = ACTIONS(2349), + [sym__emphasis_open_underscore] = ACTIONS(2349), + [sym_inline_note_reference] = ACTIONS(2349), + [sym_html_element] = ACTIONS(2349), + [sym__pandoc_lt_str] = ACTIONS(2349), + [sym__pandoc_line_break] = ACTIONS(2349), + [sym_grid_table] = ACTIONS(2349), + [sym__caption_start] = ACTIONS(2349), + }, + [STATE(241)] = { + [sym_entity_reference] = ACTIONS(2583), + [sym_numeric_character_reference] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_BANG_LBRACK] = ACTIONS(2583), + [anon_sym_DOLLAR] = ACTIONS(2585), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [aux_sym_pandoc_str_token1] = ACTIONS(2585), + [anon_sym_PIPE] = ACTIONS(2583), + [sym__whitespace] = ACTIONS(2583), + [sym__line_ending] = ACTIONS(2583), + [sym__soft_line_ending] = ACTIONS(2583), + [sym__block_close] = ACTIONS(2583), + [sym__block_quote_start] = ACTIONS(2583), + [sym_atx_h1_marker] = ACTIONS(2583), + [sym_atx_h2_marker] = ACTIONS(2583), + [sym_atx_h3_marker] = ACTIONS(2583), + [sym_atx_h4_marker] = ACTIONS(2583), + [sym_atx_h5_marker] = ACTIONS(2583), + [sym_atx_h6_marker] = ACTIONS(2583), + [sym__thematic_break] = ACTIONS(2583), + [sym__list_marker_minus] = ACTIONS(2583), + [sym__list_marker_plus] = ACTIONS(2583), + [sym__list_marker_star] = ACTIONS(2583), + [sym__list_marker_parenthesis] = ACTIONS(2583), + [sym__list_marker_dot] = ACTIONS(2583), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_example] = ACTIONS(2583), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2583), + [sym__fenced_code_block_start_backtick] = ACTIONS(2583), + [sym__minus_metadata_start] = ACTIONS(2583), + [sym__pipe_table_start] = ACTIONS(2583), + [sym__fenced_div_start] = ACTIONS(2583), + [sym__fenced_div_end] = ACTIONS(2583), + [sym_ref_id_specifier] = ACTIONS(2583), + [sym__code_span_start] = ACTIONS(2583), + [sym__html_comment] = ACTIONS(2583), + [sym__autolink] = ACTIONS(2583), + [sym__highlight_span_start] = ACTIONS(2583), + [sym__insert_span_start] = ACTIONS(2583), [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), + [sym__edit_comment_span_start] = ACTIONS(2583), + [sym__single_quote_span_open] = ACTIONS(2583), + [sym__double_quote_span_open] = ACTIONS(2583), + [sym__shortcode_open_escaped] = ACTIONS(2583), + [sym__shortcode_open] = ACTIONS(2583), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2583), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2583), + [sym__cite_author_in_text] = ACTIONS(2583), + [sym__cite_suppress_author] = ACTIONS(2583), + [sym__strikeout_open] = ACTIONS(2583), + [sym__subscript_open] = ACTIONS(2583), + [sym__superscript_open] = ACTIONS(2583), + [sym__inline_note_start_token] = ACTIONS(2583), + [sym__strong_emphasis_open_star] = ACTIONS(2583), + [sym__strong_emphasis_open_underscore] = ACTIONS(2583), + [sym__emphasis_open_star] = ACTIONS(2583), + [sym__emphasis_open_underscore] = ACTIONS(2583), + [sym_inline_note_reference] = ACTIONS(2583), + [sym_html_element] = ACTIONS(2583), + [sym__pandoc_lt_str] = ACTIONS(2583), + [sym__pandoc_line_break] = ACTIONS(2583), + [sym_grid_table] = ACTIONS(2583), + [sym__caption_start] = ACTIONS(2583), + }, + [STATE(242)] = { + [sym_entity_reference] = ACTIONS(2587), + [sym_numeric_character_reference] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_BANG_LBRACK] = ACTIONS(2587), + [anon_sym_DOLLAR] = ACTIONS(2589), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [aux_sym_pandoc_str_token1] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2587), + [sym__whitespace] = ACTIONS(2587), + [sym__line_ending] = ACTIONS(2587), + [sym__soft_line_ending] = ACTIONS(2587), + [sym__block_close] = ACTIONS(2587), + [sym__block_quote_start] = ACTIONS(2587), + [sym_atx_h1_marker] = ACTIONS(2587), + [sym_atx_h2_marker] = ACTIONS(2587), + [sym_atx_h3_marker] = ACTIONS(2587), + [sym_atx_h4_marker] = ACTIONS(2587), + [sym_atx_h5_marker] = ACTIONS(2587), + [sym_atx_h6_marker] = ACTIONS(2587), + [sym__thematic_break] = ACTIONS(2587), + [sym__list_marker_minus] = ACTIONS(2587), + [sym__list_marker_plus] = ACTIONS(2587), + [sym__list_marker_star] = ACTIONS(2587), + [sym__list_marker_parenthesis] = ACTIONS(2587), + [sym__list_marker_dot] = ACTIONS(2587), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_example] = ACTIONS(2587), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2587), + [sym__fenced_code_block_start_backtick] = ACTIONS(2587), + [sym__minus_metadata_start] = ACTIONS(2587), + [sym__pipe_table_start] = ACTIONS(2587), + [sym__fenced_div_start] = ACTIONS(2587), + [sym__fenced_div_end] = ACTIONS(2587), + [sym_ref_id_specifier] = ACTIONS(2587), + [sym__code_span_start] = ACTIONS(2587), + [sym__html_comment] = ACTIONS(2587), + [sym__autolink] = ACTIONS(2587), + [sym__highlight_span_start] = ACTIONS(2587), + [sym__insert_span_start] = ACTIONS(2587), + [sym__delete_span_start] = ACTIONS(2587), + [sym__edit_comment_span_start] = ACTIONS(2587), [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), + [sym__double_quote_span_open] = ACTIONS(2587), + [sym__shortcode_open_escaped] = ACTIONS(2587), + [sym__shortcode_open] = ACTIONS(2587), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2587), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2587), + [sym__cite_author_in_text] = ACTIONS(2587), + [sym__cite_suppress_author] = ACTIONS(2587), + [sym__strikeout_open] = ACTIONS(2587), + [sym__subscript_open] = ACTIONS(2587), + [sym__superscript_open] = ACTIONS(2587), + [sym__inline_note_start_token] = ACTIONS(2587), + [sym__strong_emphasis_open_star] = ACTIONS(2587), + [sym__strong_emphasis_open_underscore] = ACTIONS(2587), + [sym__emphasis_open_star] = ACTIONS(2587), + [sym__emphasis_open_underscore] = ACTIONS(2587), + [sym_inline_note_reference] = ACTIONS(2587), + [sym_html_element] = ACTIONS(2587), + [sym__pandoc_lt_str] = ACTIONS(2587), + [sym__pandoc_line_break] = ACTIONS(2587), + [sym_grid_table] = ACTIONS(2587), + [sym__caption_start] = ACTIONS(2587), + }, + [STATE(243)] = { + [ts_builtin_sym_end] = ACTIONS(2361), + [sym_entity_reference] = ACTIONS(2361), + [sym_numeric_character_reference] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_BANG_LBRACK] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2361), + [aux_sym_pandoc_str_token1] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2361), + [sym__whitespace] = ACTIONS(2361), + [sym__line_ending] = ACTIONS(2361), + [sym__soft_line_ending] = ACTIONS(2361), + [sym_block_continuation] = ACTIONS(2591), + [sym__block_quote_start] = ACTIONS(2361), + [sym_atx_h1_marker] = ACTIONS(2361), + [sym_atx_h2_marker] = ACTIONS(2361), + [sym_atx_h3_marker] = ACTIONS(2361), + [sym_atx_h4_marker] = ACTIONS(2361), + [sym_atx_h5_marker] = ACTIONS(2361), + [sym_atx_h6_marker] = ACTIONS(2361), + [sym__thematic_break] = ACTIONS(2361), + [sym__list_marker_minus] = ACTIONS(2361), + [sym__list_marker_plus] = ACTIONS(2361), + [sym__list_marker_star] = ACTIONS(2361), + [sym__list_marker_parenthesis] = ACTIONS(2361), + [sym__list_marker_dot] = ACTIONS(2361), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_example] = ACTIONS(2361), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2361), + [sym__fenced_code_block_start_backtick] = ACTIONS(2361), + [sym__minus_metadata_start] = ACTIONS(2361), + [sym__pipe_table_start] = ACTIONS(2361), + [sym__fenced_div_start] = ACTIONS(2361), + [sym_ref_id_specifier] = ACTIONS(2361), + [sym__code_span_start] = ACTIONS(2361), + [sym__html_comment] = ACTIONS(2361), + [sym__autolink] = ACTIONS(2361), + [sym__highlight_span_start] = ACTIONS(2361), + [sym__insert_span_start] = ACTIONS(2361), + [sym__delete_span_start] = ACTIONS(2361), + [sym__edit_comment_span_start] = ACTIONS(2361), + [sym__single_quote_span_open] = ACTIONS(2361), + [sym__double_quote_span_open] = ACTIONS(2361), + [sym__shortcode_open_escaped] = ACTIONS(2361), + [sym__shortcode_open] = ACTIONS(2361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2361), + [sym__cite_author_in_text] = ACTIONS(2361), + [sym__cite_suppress_author] = ACTIONS(2361), + [sym__strikeout_open] = ACTIONS(2361), + [sym__subscript_open] = ACTIONS(2361), + [sym__superscript_open] = ACTIONS(2361), + [sym__inline_note_start_token] = ACTIONS(2361), + [sym__strong_emphasis_open_star] = ACTIONS(2361), + [sym__strong_emphasis_open_underscore] = ACTIONS(2361), + [sym__emphasis_open_star] = ACTIONS(2361), + [sym__emphasis_open_underscore] = ACTIONS(2361), + [sym_inline_note_reference] = ACTIONS(2361), + [sym_html_element] = ACTIONS(2361), + [sym__pandoc_lt_str] = ACTIONS(2361), + [sym__pandoc_line_break] = ACTIONS(2361), + [sym_grid_table] = ACTIONS(2361), + [sym__caption_start] = ACTIONS(2361), + }, + [STATE(244)] = { + [sym_entity_reference] = ACTIONS(2593), + [sym_numeric_character_reference] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2593), + [anon_sym_BANG_LBRACK] = ACTIONS(2593), + [anon_sym_DOLLAR] = ACTIONS(2595), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(2593), + [aux_sym_pandoc_str_token1] = ACTIONS(2595), + [anon_sym_PIPE] = ACTIONS(2593), + [sym__whitespace] = ACTIONS(2593), + [sym__line_ending] = ACTIONS(2593), + [sym__soft_line_ending] = ACTIONS(2593), + [sym__block_close] = ACTIONS(2593), + [sym__block_quote_start] = ACTIONS(2593), + [sym_atx_h1_marker] = ACTIONS(2593), + [sym_atx_h2_marker] = ACTIONS(2593), + [sym_atx_h3_marker] = ACTIONS(2593), + [sym_atx_h4_marker] = ACTIONS(2593), + [sym_atx_h5_marker] = ACTIONS(2593), + [sym_atx_h6_marker] = ACTIONS(2593), + [sym__thematic_break] = ACTIONS(2593), + [sym__list_marker_minus] = ACTIONS(2593), + [sym__list_marker_plus] = ACTIONS(2593), + [sym__list_marker_star] = ACTIONS(2593), + [sym__list_marker_parenthesis] = ACTIONS(2593), + [sym__list_marker_dot] = ACTIONS(2593), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_example] = ACTIONS(2593), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2593), + [sym__fenced_code_block_start_backtick] = ACTIONS(2593), + [sym__minus_metadata_start] = ACTIONS(2593), + [sym__pipe_table_start] = ACTIONS(2593), + [sym__fenced_div_start] = ACTIONS(2593), + [sym__fenced_div_end] = ACTIONS(2593), + [sym_ref_id_specifier] = ACTIONS(2593), + [sym__code_span_start] = ACTIONS(2593), + [sym__html_comment] = ACTIONS(2593), + [sym__autolink] = ACTIONS(2593), + [sym__highlight_span_start] = ACTIONS(2593), + [sym__insert_span_start] = ACTIONS(2593), + [sym__delete_span_start] = ACTIONS(2593), + [sym__edit_comment_span_start] = ACTIONS(2593), + [sym__single_quote_span_open] = ACTIONS(2593), + [sym__double_quote_span_open] = ACTIONS(2593), + [sym__shortcode_open_escaped] = ACTIONS(2593), [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2593), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2593), + [sym__cite_author_in_text] = ACTIONS(2593), + [sym__cite_suppress_author] = ACTIONS(2593), + [sym__strikeout_open] = ACTIONS(2593), + [sym__subscript_open] = ACTIONS(2593), + [sym__superscript_open] = ACTIONS(2593), + [sym__inline_note_start_token] = ACTIONS(2593), + [sym__strong_emphasis_open_star] = ACTIONS(2593), + [sym__strong_emphasis_open_underscore] = ACTIONS(2593), + [sym__emphasis_open_star] = ACTIONS(2593), + [sym__emphasis_open_underscore] = ACTIONS(2593), + [sym_inline_note_reference] = ACTIONS(2593), + [sym_html_element] = ACTIONS(2593), + [sym__pandoc_lt_str] = ACTIONS(2593), + [sym__pandoc_line_break] = ACTIONS(2593), + [sym_grid_table] = ACTIONS(2593), + [sym__caption_start] = ACTIONS(2593), + }, + [STATE(245)] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_entity_reference] = ACTIONS(2397), + [sym_numeric_character_reference] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2397), + [anon_sym_BANG_LBRACK] = ACTIONS(2397), + [anon_sym_DOLLAR] = ACTIONS(2399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [aux_sym_pandoc_str_token1] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2397), + [sym__whitespace] = ACTIONS(2397), + [sym__line_ending] = ACTIONS(2397), + [sym__soft_line_ending] = ACTIONS(2397), + [sym_block_continuation] = ACTIONS(2597), + [sym__block_quote_start] = ACTIONS(2397), + [sym_atx_h1_marker] = ACTIONS(2397), + [sym_atx_h2_marker] = ACTIONS(2397), + [sym_atx_h3_marker] = ACTIONS(2397), + [sym_atx_h4_marker] = ACTIONS(2397), + [sym_atx_h5_marker] = ACTIONS(2397), + [sym_atx_h6_marker] = ACTIONS(2397), + [sym__thematic_break] = ACTIONS(2397), + [sym__list_marker_minus] = ACTIONS(2397), + [sym__list_marker_plus] = ACTIONS(2397), + [sym__list_marker_star] = ACTIONS(2397), + [sym__list_marker_parenthesis] = ACTIONS(2397), + [sym__list_marker_dot] = ACTIONS(2397), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_example] = ACTIONS(2397), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2397), + [sym__fenced_code_block_start_backtick] = ACTIONS(2397), + [sym__minus_metadata_start] = ACTIONS(2397), + [sym__pipe_table_start] = ACTIONS(2397), + [sym__fenced_div_start] = ACTIONS(2397), + [sym_ref_id_specifier] = ACTIONS(2397), + [sym__code_span_start] = ACTIONS(2397), + [sym__html_comment] = ACTIONS(2397), + [sym__autolink] = ACTIONS(2397), + [sym__highlight_span_start] = ACTIONS(2397), + [sym__insert_span_start] = ACTIONS(2397), + [sym__delete_span_start] = ACTIONS(2397), + [sym__edit_comment_span_start] = ACTIONS(2397), + [sym__single_quote_span_open] = ACTIONS(2397), + [sym__double_quote_span_open] = ACTIONS(2397), + [sym__shortcode_open_escaped] = ACTIONS(2397), + [sym__shortcode_open] = ACTIONS(2397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2397), + [sym__cite_author_in_text] = ACTIONS(2397), + [sym__cite_suppress_author] = ACTIONS(2397), + [sym__strikeout_open] = ACTIONS(2397), + [sym__subscript_open] = ACTIONS(2397), + [sym__superscript_open] = ACTIONS(2397), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2397), + [sym__strong_emphasis_open_underscore] = ACTIONS(2397), + [sym__emphasis_open_star] = ACTIONS(2397), + [sym__emphasis_open_underscore] = ACTIONS(2397), + [sym_inline_note_reference] = ACTIONS(2397), + [sym_html_element] = ACTIONS(2397), + [sym__pandoc_lt_str] = ACTIONS(2397), + [sym__pandoc_line_break] = ACTIONS(2397), + [sym_grid_table] = ACTIONS(2397), + [sym__caption_start] = ACTIONS(2397), + }, + [STATE(246)] = { + [sym_entity_reference] = ACTIONS(2599), + [sym_numeric_character_reference] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_BANG_LBRACK] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2601), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [aux_sym_pandoc_str_token1] = ACTIONS(2601), + [anon_sym_PIPE] = ACTIONS(2599), + [sym__whitespace] = ACTIONS(2599), + [sym__line_ending] = ACTIONS(2599), + [sym__soft_line_ending] = ACTIONS(2599), + [sym__block_close] = ACTIONS(2599), + [sym__block_quote_start] = ACTIONS(2599), + [sym_atx_h1_marker] = ACTIONS(2599), + [sym_atx_h2_marker] = ACTIONS(2599), + [sym_atx_h3_marker] = ACTIONS(2599), + [sym_atx_h4_marker] = ACTIONS(2599), + [sym_atx_h5_marker] = ACTIONS(2599), + [sym_atx_h6_marker] = ACTIONS(2599), + [sym__thematic_break] = ACTIONS(2599), + [sym__list_marker_minus] = ACTIONS(2599), + [sym__list_marker_plus] = ACTIONS(2599), + [sym__list_marker_star] = ACTIONS(2599), + [sym__list_marker_parenthesis] = ACTIONS(2599), + [sym__list_marker_dot] = ACTIONS(2599), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_example] = ACTIONS(2599), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2599), + [sym__fenced_code_block_start_backtick] = ACTIONS(2599), + [sym__minus_metadata_start] = ACTIONS(2599), + [sym__pipe_table_start] = ACTIONS(2599), + [sym__fenced_div_start] = ACTIONS(2599), + [sym__fenced_div_end] = ACTIONS(2599), + [sym_ref_id_specifier] = ACTIONS(2599), + [sym__code_span_start] = ACTIONS(2599), + [sym__html_comment] = ACTIONS(2599), + [sym__autolink] = ACTIONS(2599), + [sym__highlight_span_start] = ACTIONS(2599), + [sym__insert_span_start] = ACTIONS(2599), + [sym__delete_span_start] = ACTIONS(2599), + [sym__edit_comment_span_start] = ACTIONS(2599), + [sym__single_quote_span_open] = ACTIONS(2599), + [sym__double_quote_span_open] = ACTIONS(2599), + [sym__shortcode_open_escaped] = ACTIONS(2599), + [sym__shortcode_open] = ACTIONS(2599), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2599), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2599), [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), + [sym__cite_suppress_author] = ACTIONS(2599), + [sym__strikeout_open] = ACTIONS(2599), + [sym__subscript_open] = ACTIONS(2599), + [sym__superscript_open] = ACTIONS(2599), + [sym__inline_note_start_token] = ACTIONS(2599), + [sym__strong_emphasis_open_star] = ACTIONS(2599), + [sym__strong_emphasis_open_underscore] = ACTIONS(2599), + [sym__emphasis_open_star] = ACTIONS(2599), + [sym__emphasis_open_underscore] = ACTIONS(2599), + [sym_inline_note_reference] = ACTIONS(2599), + [sym_html_element] = ACTIONS(2599), + [sym__pandoc_lt_str] = ACTIONS(2599), + [sym__pandoc_line_break] = ACTIONS(2599), + [sym_grid_table] = ACTIONS(2599), + [sym__caption_start] = ACTIONS(2599), + }, + [STATE(247)] = { + [ts_builtin_sym_end] = ACTIONS(2411), + [sym_entity_reference] = ACTIONS(2411), + [sym_numeric_character_reference] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_BANG_LBRACK] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [aux_sym_pandoc_str_token1] = ACTIONS(2413), + [anon_sym_PIPE] = ACTIONS(2411), + [sym__whitespace] = ACTIONS(2411), + [sym__line_ending] = ACTIONS(2411), + [sym__soft_line_ending] = ACTIONS(2411), + [sym_block_continuation] = ACTIONS(2603), + [sym__block_quote_start] = ACTIONS(2411), + [sym_atx_h1_marker] = ACTIONS(2411), + [sym_atx_h2_marker] = ACTIONS(2411), + [sym_atx_h3_marker] = ACTIONS(2411), + [sym_atx_h4_marker] = ACTIONS(2411), + [sym_atx_h5_marker] = ACTIONS(2411), + [sym_atx_h6_marker] = ACTIONS(2411), + [sym__thematic_break] = ACTIONS(2411), + [sym__list_marker_minus] = ACTIONS(2411), + [sym__list_marker_plus] = ACTIONS(2411), + [sym__list_marker_star] = ACTIONS(2411), + [sym__list_marker_parenthesis] = ACTIONS(2411), + [sym__list_marker_dot] = ACTIONS(2411), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_example] = ACTIONS(2411), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2411), + [sym__fenced_code_block_start_backtick] = ACTIONS(2411), + [sym__minus_metadata_start] = ACTIONS(2411), + [sym__pipe_table_start] = ACTIONS(2411), + [sym__fenced_div_start] = ACTIONS(2411), + [sym_ref_id_specifier] = ACTIONS(2411), + [sym__code_span_start] = ACTIONS(2411), + [sym__html_comment] = ACTIONS(2411), + [sym__autolink] = ACTIONS(2411), + [sym__highlight_span_start] = ACTIONS(2411), + [sym__insert_span_start] = ACTIONS(2411), + [sym__delete_span_start] = ACTIONS(2411), + [sym__edit_comment_span_start] = ACTIONS(2411), + [sym__single_quote_span_open] = ACTIONS(2411), + [sym__double_quote_span_open] = ACTIONS(2411), + [sym__shortcode_open_escaped] = ACTIONS(2411), + [sym__shortcode_open] = ACTIONS(2411), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2411), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2411), + [sym__cite_author_in_text] = ACTIONS(2411), + [sym__cite_suppress_author] = ACTIONS(2411), + [sym__strikeout_open] = ACTIONS(2411), + [sym__subscript_open] = ACTIONS(2411), + [sym__superscript_open] = ACTIONS(2411), + [sym__inline_note_start_token] = ACTIONS(2411), + [sym__strong_emphasis_open_star] = ACTIONS(2411), + [sym__strong_emphasis_open_underscore] = ACTIONS(2411), + [sym__emphasis_open_star] = ACTIONS(2411), + [sym__emphasis_open_underscore] = ACTIONS(2411), + [sym_inline_note_reference] = ACTIONS(2411), + [sym_html_element] = ACTIONS(2411), + [sym__pandoc_lt_str] = ACTIONS(2411), + [sym__pandoc_line_break] = ACTIONS(2411), + [sym_grid_table] = ACTIONS(2411), + [sym__caption_start] = ACTIONS(2411), + }, + [STATE(248)] = { + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_entity_reference] = ACTIONS(2313), + [sym_numeric_character_reference] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_BANG_LBRACK] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2313), + [aux_sym_pandoc_str_token1] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2313), + [sym__whitespace] = ACTIONS(2313), + [sym__line_ending] = ACTIONS(2313), + [sym__soft_line_ending] = ACTIONS(2313), + [sym_block_continuation] = ACTIONS(2605), + [sym__block_quote_start] = ACTIONS(2313), + [sym_atx_h1_marker] = ACTIONS(2313), + [sym_atx_h2_marker] = ACTIONS(2313), + [sym_atx_h3_marker] = ACTIONS(2313), + [sym_atx_h4_marker] = ACTIONS(2313), + [sym_atx_h5_marker] = ACTIONS(2313), + [sym_atx_h6_marker] = ACTIONS(2313), + [sym__thematic_break] = ACTIONS(2313), + [sym__list_marker_minus] = ACTIONS(2313), + [sym__list_marker_plus] = ACTIONS(2313), + [sym__list_marker_star] = ACTIONS(2313), + [sym__list_marker_parenthesis] = ACTIONS(2313), + [sym__list_marker_dot] = ACTIONS(2313), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_example] = ACTIONS(2313), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2313), + [sym__fenced_code_block_start_backtick] = ACTIONS(2313), + [sym__minus_metadata_start] = ACTIONS(2313), + [sym__pipe_table_start] = ACTIONS(2313), + [sym__fenced_div_start] = ACTIONS(2313), + [sym_ref_id_specifier] = ACTIONS(2313), + [sym__code_span_start] = ACTIONS(2313), + [sym__html_comment] = ACTIONS(2313), + [sym__autolink] = ACTIONS(2313), + [sym__highlight_span_start] = ACTIONS(2313), + [sym__insert_span_start] = ACTIONS(2313), + [sym__delete_span_start] = ACTIONS(2313), + [sym__edit_comment_span_start] = ACTIONS(2313), + [sym__single_quote_span_open] = ACTIONS(2313), + [sym__double_quote_span_open] = ACTIONS(2313), + [sym__shortcode_open_escaped] = ACTIONS(2313), + [sym__shortcode_open] = ACTIONS(2313), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2313), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2313), + [sym__cite_author_in_text] = ACTIONS(2313), + [sym__cite_suppress_author] = ACTIONS(2313), + [sym__strikeout_open] = ACTIONS(2313), + [sym__subscript_open] = ACTIONS(2313), + [sym__superscript_open] = ACTIONS(2313), + [sym__inline_note_start_token] = ACTIONS(2313), + [sym__strong_emphasis_open_star] = ACTIONS(2313), + [sym__strong_emphasis_open_underscore] = ACTIONS(2313), + [sym__emphasis_open_star] = ACTIONS(2313), + [sym__emphasis_open_underscore] = ACTIONS(2313), + [sym_inline_note_reference] = ACTIONS(2313), + [sym_html_element] = ACTIONS(2313), + [sym__pandoc_lt_str] = ACTIONS(2313), + [sym__pandoc_line_break] = ACTIONS(2313), + [sym_grid_table] = ACTIONS(2313), + [sym__caption_start] = ACTIONS(2313), + }, + [STATE(249)] = { + [ts_builtin_sym_end] = ACTIONS(2319), + [sym_entity_reference] = ACTIONS(2319), + [sym_numeric_character_reference] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_BANG_LBRACK] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [aux_sym_pandoc_str_token1] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(2319), + [sym__whitespace] = ACTIONS(2319), + [sym__line_ending] = ACTIONS(2319), + [sym__soft_line_ending] = ACTIONS(2319), + [sym_block_continuation] = ACTIONS(2607), + [sym__block_quote_start] = ACTIONS(2319), + [sym_atx_h1_marker] = ACTIONS(2319), + [sym_atx_h2_marker] = ACTIONS(2319), + [sym_atx_h3_marker] = ACTIONS(2319), + [sym_atx_h4_marker] = ACTIONS(2319), + [sym_atx_h5_marker] = ACTIONS(2319), + [sym_atx_h6_marker] = ACTIONS(2319), + [sym__thematic_break] = ACTIONS(2319), + [sym__list_marker_minus] = ACTIONS(2319), + [sym__list_marker_plus] = ACTIONS(2319), + [sym__list_marker_star] = ACTIONS(2319), + [sym__list_marker_parenthesis] = ACTIONS(2319), + [sym__list_marker_dot] = ACTIONS(2319), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_example] = ACTIONS(2319), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2319), + [sym__fenced_code_block_start_backtick] = ACTIONS(2319), + [sym__minus_metadata_start] = ACTIONS(2319), + [sym__pipe_table_start] = ACTIONS(2319), + [sym__fenced_div_start] = ACTIONS(2319), + [sym_ref_id_specifier] = ACTIONS(2319), + [sym__code_span_start] = ACTIONS(2319), + [sym__html_comment] = ACTIONS(2319), + [sym__autolink] = ACTIONS(2319), + [sym__highlight_span_start] = ACTIONS(2319), + [sym__insert_span_start] = ACTIONS(2319), + [sym__delete_span_start] = ACTIONS(2319), + [sym__edit_comment_span_start] = ACTIONS(2319), + [sym__single_quote_span_open] = ACTIONS(2319), + [sym__double_quote_span_open] = ACTIONS(2319), + [sym__shortcode_open_escaped] = ACTIONS(2319), + [sym__shortcode_open] = ACTIONS(2319), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2319), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2319), + [sym__cite_author_in_text] = ACTIONS(2319), + [sym__cite_suppress_author] = ACTIONS(2319), + [sym__strikeout_open] = ACTIONS(2319), + [sym__subscript_open] = ACTIONS(2319), + [sym__superscript_open] = ACTIONS(2319), + [sym__inline_note_start_token] = ACTIONS(2319), + [sym__strong_emphasis_open_star] = ACTIONS(2319), + [sym__strong_emphasis_open_underscore] = ACTIONS(2319), + [sym__emphasis_open_star] = ACTIONS(2319), + [sym__emphasis_open_underscore] = ACTIONS(2319), + [sym_inline_note_reference] = ACTIONS(2319), + [sym_html_element] = ACTIONS(2319), + [sym__pandoc_lt_str] = ACTIONS(2319), + [sym__pandoc_line_break] = ACTIONS(2319), + [sym_grid_table] = ACTIONS(2319), + [sym__caption_start] = ACTIONS(2319), + }, + [STATE(250)] = { + [sym_entity_reference] = ACTIONS(2379), + [sym_numeric_character_reference] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_BANG_LBRACK] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(2381), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [aux_sym_pandoc_str_token1] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2379), + [sym__whitespace] = ACTIONS(2379), + [sym__line_ending] = ACTIONS(2379), + [sym__soft_line_ending] = ACTIONS(2379), + [sym__block_close] = ACTIONS(2379), + [sym__block_quote_start] = ACTIONS(2379), + [sym_atx_h1_marker] = ACTIONS(2379), + [sym_atx_h2_marker] = ACTIONS(2379), + [sym_atx_h3_marker] = ACTIONS(2379), + [sym_atx_h4_marker] = ACTIONS(2379), + [sym_atx_h5_marker] = ACTIONS(2379), + [sym_atx_h6_marker] = ACTIONS(2379), + [sym__thematic_break] = ACTIONS(2379), + [sym__list_marker_minus] = ACTIONS(2379), + [sym__list_marker_plus] = ACTIONS(2379), + [sym__list_marker_star] = ACTIONS(2379), + [sym__list_marker_parenthesis] = ACTIONS(2379), + [sym__list_marker_dot] = ACTIONS(2379), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_example] = ACTIONS(2379), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2379), + [sym__fenced_code_block_start_backtick] = ACTIONS(2379), + [sym__minus_metadata_start] = ACTIONS(2379), + [sym__pipe_table_start] = ACTIONS(2379), + [sym__fenced_div_start] = ACTIONS(2379), + [sym__fenced_div_end] = ACTIONS(2379), + [sym_ref_id_specifier] = ACTIONS(2379), + [sym__code_span_start] = ACTIONS(2379), + [sym__html_comment] = ACTIONS(2379), + [sym__autolink] = ACTIONS(2379), + [sym__highlight_span_start] = ACTIONS(2379), + [sym__insert_span_start] = ACTIONS(2379), + [sym__delete_span_start] = ACTIONS(2379), + [sym__edit_comment_span_start] = ACTIONS(2379), + [sym__single_quote_span_open] = ACTIONS(2379), + [sym__double_quote_span_open] = ACTIONS(2379), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2379), + [sym__cite_author_in_text] = ACTIONS(2379), + [sym__cite_suppress_author] = ACTIONS(2379), + [sym__strikeout_open] = ACTIONS(2379), + [sym__subscript_open] = ACTIONS(2379), + [sym__superscript_open] = ACTIONS(2379), + [sym__inline_note_start_token] = ACTIONS(2379), + [sym__strong_emphasis_open_star] = ACTIONS(2379), + [sym__strong_emphasis_open_underscore] = ACTIONS(2379), + [sym__emphasis_open_star] = ACTIONS(2379), + [sym__emphasis_open_underscore] = ACTIONS(2379), + [sym_inline_note_reference] = ACTIONS(2379), + [sym_html_element] = ACTIONS(2379), + [sym__pandoc_lt_str] = ACTIONS(2379), + [sym__pandoc_line_break] = ACTIONS(2379), + [sym_grid_table] = ACTIONS(2379), + [sym__caption_start] = ACTIONS(2379), + }, + [STATE(251)] = { + [ts_builtin_sym_end] = ACTIONS(2325), + [sym_entity_reference] = ACTIONS(2325), + [sym_numeric_character_reference] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_BANG_LBRACK] = ACTIONS(2325), + [anon_sym_DOLLAR] = ACTIONS(2327), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2325), + [aux_sym_pandoc_str_token1] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2325), + [sym__whitespace] = ACTIONS(2325), + [sym__line_ending] = ACTIONS(2325), + [sym__soft_line_ending] = ACTIONS(2325), + [sym_block_continuation] = ACTIONS(2609), + [sym__block_quote_start] = ACTIONS(2325), + [sym_atx_h1_marker] = ACTIONS(2325), + [sym_atx_h2_marker] = ACTIONS(2325), + [sym_atx_h3_marker] = ACTIONS(2325), + [sym_atx_h4_marker] = ACTIONS(2325), + [sym_atx_h5_marker] = ACTIONS(2325), + [sym_atx_h6_marker] = ACTIONS(2325), + [sym__thematic_break] = ACTIONS(2325), + [sym__list_marker_minus] = ACTIONS(2325), + [sym__list_marker_plus] = ACTIONS(2325), + [sym__list_marker_star] = ACTIONS(2325), + [sym__list_marker_parenthesis] = ACTIONS(2325), + [sym__list_marker_dot] = ACTIONS(2325), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_example] = ACTIONS(2325), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2325), + [sym__fenced_code_block_start_backtick] = ACTIONS(2325), + [sym__minus_metadata_start] = ACTIONS(2325), + [sym__pipe_table_start] = ACTIONS(2325), + [sym__fenced_div_start] = ACTIONS(2325), + [sym_ref_id_specifier] = ACTIONS(2325), + [sym__code_span_start] = ACTIONS(2325), + [sym__html_comment] = ACTIONS(2325), + [sym__autolink] = ACTIONS(2325), + [sym__highlight_span_start] = ACTIONS(2325), + [sym__insert_span_start] = ACTIONS(2325), + [sym__delete_span_start] = ACTIONS(2325), + [sym__edit_comment_span_start] = ACTIONS(2325), + [sym__single_quote_span_open] = ACTIONS(2325), + [sym__double_quote_span_open] = ACTIONS(2325), + [sym__shortcode_open_escaped] = ACTIONS(2325), + [sym__shortcode_open] = ACTIONS(2325), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2325), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2325), + [sym__cite_author_in_text] = ACTIONS(2325), + [sym__cite_suppress_author] = ACTIONS(2325), + [sym__strikeout_open] = ACTIONS(2325), + [sym__subscript_open] = ACTIONS(2325), + [sym__superscript_open] = ACTIONS(2325), + [sym__inline_note_start_token] = ACTIONS(2325), + [sym__strong_emphasis_open_star] = ACTIONS(2325), + [sym__strong_emphasis_open_underscore] = ACTIONS(2325), + [sym__emphasis_open_star] = ACTIONS(2325), + [sym__emphasis_open_underscore] = ACTIONS(2325), + [sym_inline_note_reference] = ACTIONS(2325), + [sym_html_element] = ACTIONS(2325), + [sym__pandoc_lt_str] = ACTIONS(2325), + [sym__pandoc_line_break] = ACTIONS(2325), + [sym_grid_table] = ACTIONS(2325), + [sym__caption_start] = ACTIONS(2325), + }, + [STATE(252)] = { + [sym_entity_reference] = ACTIONS(2611), + [sym_numeric_character_reference] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_BANG_LBRACK] = ACTIONS(2611), + [anon_sym_DOLLAR] = ACTIONS(2613), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [aux_sym_pandoc_str_token1] = ACTIONS(2613), + [anon_sym_PIPE] = ACTIONS(2611), + [sym__whitespace] = ACTIONS(2611), + [sym__line_ending] = ACTIONS(2611), + [sym__soft_line_ending] = ACTIONS(2611), + [sym__block_close] = ACTIONS(2611), + [sym__block_quote_start] = ACTIONS(2611), + [sym_atx_h1_marker] = ACTIONS(2611), + [sym_atx_h2_marker] = ACTIONS(2611), + [sym_atx_h3_marker] = ACTIONS(2611), + [sym_atx_h4_marker] = ACTIONS(2611), + [sym_atx_h5_marker] = ACTIONS(2611), + [sym_atx_h6_marker] = ACTIONS(2611), + [sym__thematic_break] = ACTIONS(2611), + [sym__list_marker_minus] = ACTIONS(2611), + [sym__list_marker_plus] = ACTIONS(2611), + [sym__list_marker_star] = ACTIONS(2611), + [sym__list_marker_parenthesis] = ACTIONS(2611), + [sym__list_marker_dot] = ACTIONS(2611), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_example] = ACTIONS(2611), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2611), + [sym__fenced_code_block_start_backtick] = ACTIONS(2611), + [sym__minus_metadata_start] = ACTIONS(2611), + [sym__pipe_table_start] = ACTIONS(2611), + [sym__fenced_div_start] = ACTIONS(2611), + [sym__fenced_div_end] = ACTIONS(2611), + [sym_ref_id_specifier] = ACTIONS(2611), + [sym__code_span_start] = ACTIONS(2611), + [sym__html_comment] = ACTIONS(2611), + [sym__autolink] = ACTIONS(2611), + [sym__highlight_span_start] = ACTIONS(2611), + [sym__insert_span_start] = ACTIONS(2611), + [sym__delete_span_start] = ACTIONS(2611), + [sym__edit_comment_span_start] = ACTIONS(2611), + [sym__single_quote_span_open] = ACTIONS(2611), + [sym__double_quote_span_open] = ACTIONS(2611), + [sym__shortcode_open_escaped] = ACTIONS(2611), + [sym__shortcode_open] = ACTIONS(2611), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2611), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2611), + [sym__cite_author_in_text] = ACTIONS(2611), + [sym__cite_suppress_author] = ACTIONS(2611), + [sym__strikeout_open] = ACTIONS(2611), + [sym__subscript_open] = ACTIONS(2611), + [sym__superscript_open] = ACTIONS(2611), + [sym__inline_note_start_token] = ACTIONS(2611), [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym__strong_emphasis_open_underscore] = ACTIONS(2611), + [sym__emphasis_open_star] = ACTIONS(2611), + [sym__emphasis_open_underscore] = ACTIONS(2611), + [sym_inline_note_reference] = ACTIONS(2611), + [sym_html_element] = ACTIONS(2611), + [sym__pandoc_lt_str] = ACTIONS(2611), + [sym__pandoc_line_break] = ACTIONS(2611), + [sym_grid_table] = ACTIONS(2611), + [sym__caption_start] = ACTIONS(2611), }, - [STATE(274)] = { - [ts_builtin_sym_end] = ACTIONS(2297), - [sym_entity_reference] = ACTIONS(2297), - [sym_numeric_character_reference] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_BANG_LBRACK] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [aux_sym_pandoc_str_token1] = ACTIONS(2299), - [anon_sym_PIPE] = ACTIONS(2297), - [sym__whitespace] = ACTIONS(2297), - [sym__line_ending] = ACTIONS(2297), - [sym__soft_line_ending] = ACTIONS(2297), - [sym_block_continuation] = ACTIONS(2623), - [sym__block_quote_start] = ACTIONS(2297), - [sym_atx_h1_marker] = ACTIONS(2297), - [sym_atx_h2_marker] = ACTIONS(2297), - [sym_atx_h3_marker] = ACTIONS(2297), - [sym_atx_h4_marker] = ACTIONS(2297), - [sym_atx_h5_marker] = ACTIONS(2297), - [sym_atx_h6_marker] = ACTIONS(2297), - [sym__thematic_break] = ACTIONS(2297), - [sym__list_marker_minus] = ACTIONS(2297), - [sym__list_marker_plus] = ACTIONS(2297), - [sym__list_marker_star] = ACTIONS(2297), - [sym__list_marker_parenthesis] = ACTIONS(2297), - [sym__list_marker_dot] = ACTIONS(2297), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_example] = ACTIONS(2297), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2297), - [sym__fenced_code_block_start_backtick] = ACTIONS(2297), - [sym_minus_metadata] = ACTIONS(2297), - [sym__pipe_table_start] = ACTIONS(2297), - [sym__fenced_div_start] = ACTIONS(2297), - [sym_ref_id_specifier] = ACTIONS(2297), - [sym__code_span_start] = ACTIONS(2297), - [sym__html_comment] = ACTIONS(2297), - [sym__autolink] = ACTIONS(2297), - [sym__highlight_span_start] = ACTIONS(2297), - [sym__insert_span_start] = ACTIONS(2297), - [sym__delete_span_start] = ACTIONS(2297), - [sym__edit_comment_span_start] = ACTIONS(2297), - [sym__single_quote_span_open] = ACTIONS(2297), - [sym__double_quote_span_open] = ACTIONS(2297), - [sym__shortcode_open_escaped] = ACTIONS(2297), - [sym__shortcode_open] = ACTIONS(2297), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2297), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2297), - [sym__cite_author_in_text] = ACTIONS(2297), - [sym__cite_suppress_author] = ACTIONS(2297), - [sym__strikeout_open] = ACTIONS(2297), - [sym__subscript_open] = ACTIONS(2297), - [sym__superscript_open] = ACTIONS(2297), - [sym__inline_note_start_token] = ACTIONS(2297), - [sym__strong_emphasis_open_star] = ACTIONS(2297), - [sym__strong_emphasis_open_underscore] = ACTIONS(2297), - [sym__emphasis_open_star] = ACTIONS(2297), - [sym__emphasis_open_underscore] = ACTIONS(2297), - [sym_inline_note_reference] = ACTIONS(2297), - [sym_html_element] = ACTIONS(2297), - [sym__pandoc_lt_str] = ACTIONS(2297), - [sym__pandoc_line_break] = ACTIONS(2297), - [sym_grid_table] = ACTIONS(2297), - [sym__caption_start] = ACTIONS(2297), + [STATE(253)] = { + [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), + [sym__whitespace] = ACTIONS(2615), + [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_start] = 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_lt_str] = ACTIONS(2615), + [sym__pandoc_line_break] = ACTIONS(2615), + [sym_grid_table] = ACTIONS(2615), + [sym__caption_start] = ACTIONS(2615), }, - [STATE(275)] = { - [ts_builtin_sym_end] = ACTIONS(2243), - [sym_entity_reference] = ACTIONS(2243), - [sym_numeric_character_reference] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_BANG_LBRACK] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [aux_sym_pandoc_str_token1] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2243), - [sym__whitespace] = ACTIONS(2243), - [sym__line_ending] = ACTIONS(2243), - [sym__soft_line_ending] = ACTIONS(2243), - [sym_block_continuation] = ACTIONS(2625), - [sym__block_quote_start] = ACTIONS(2243), - [sym_atx_h1_marker] = ACTIONS(2243), - [sym_atx_h2_marker] = ACTIONS(2243), - [sym_atx_h3_marker] = ACTIONS(2243), - [sym_atx_h4_marker] = ACTIONS(2243), - [sym_atx_h5_marker] = ACTIONS(2243), - [sym_atx_h6_marker] = ACTIONS(2243), - [sym__thematic_break] = ACTIONS(2243), - [sym__list_marker_minus] = ACTIONS(2243), - [sym__list_marker_plus] = ACTIONS(2243), - [sym__list_marker_star] = ACTIONS(2243), - [sym__list_marker_parenthesis] = ACTIONS(2243), - [sym__list_marker_dot] = ACTIONS(2243), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_example] = ACTIONS(2243), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2243), - [sym__fenced_code_block_start_backtick] = ACTIONS(2243), - [sym_minus_metadata] = ACTIONS(2243), - [sym__pipe_table_start] = ACTIONS(2243), - [sym__fenced_div_start] = ACTIONS(2243), - [sym_ref_id_specifier] = ACTIONS(2243), - [sym__code_span_start] = ACTIONS(2243), - [sym__html_comment] = ACTIONS(2243), - [sym__autolink] = ACTIONS(2243), - [sym__highlight_span_start] = ACTIONS(2243), - [sym__insert_span_start] = ACTIONS(2243), - [sym__delete_span_start] = ACTIONS(2243), - [sym__edit_comment_span_start] = ACTIONS(2243), - [sym__single_quote_span_open] = ACTIONS(2243), - [sym__double_quote_span_open] = ACTIONS(2243), - [sym__shortcode_open_escaped] = ACTIONS(2243), - [sym__shortcode_open] = ACTIONS(2243), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2243), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2243), - [sym__cite_author_in_text] = ACTIONS(2243), - [sym__cite_suppress_author] = ACTIONS(2243), - [sym__strikeout_open] = ACTIONS(2243), - [sym__subscript_open] = ACTIONS(2243), - [sym__superscript_open] = ACTIONS(2243), - [sym__inline_note_start_token] = ACTIONS(2243), - [sym__strong_emphasis_open_star] = ACTIONS(2243), - [sym__strong_emphasis_open_underscore] = ACTIONS(2243), - [sym__emphasis_open_star] = ACTIONS(2243), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2243), - [sym_html_element] = ACTIONS(2243), - [sym__pandoc_lt_str] = ACTIONS(2243), - [sym__pandoc_line_break] = ACTIONS(2243), - [sym_grid_table] = ACTIONS(2243), - [sym__caption_start] = ACTIONS(2243), + [STATE(254)] = { + [sym_entity_reference] = ACTIONS(2619), + [sym_numeric_character_reference] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_BANG_LBRACK] = ACTIONS(2619), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2619), + [aux_sym_pandoc_str_token1] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2619), + [sym__whitespace] = ACTIONS(2619), + [sym__line_ending] = ACTIONS(2619), + [sym__soft_line_ending] = ACTIONS(2619), + [sym__block_close] = ACTIONS(2619), + [sym__block_quote_start] = ACTIONS(2619), + [sym_atx_h1_marker] = ACTIONS(2619), + [sym_atx_h2_marker] = ACTIONS(2619), + [sym_atx_h3_marker] = ACTIONS(2619), + [sym_atx_h4_marker] = ACTIONS(2619), + [sym_atx_h5_marker] = ACTIONS(2619), + [sym_atx_h6_marker] = ACTIONS(2619), + [sym__thematic_break] = ACTIONS(2619), + [sym__list_marker_minus] = ACTIONS(2619), + [sym__list_marker_plus] = ACTIONS(2619), + [sym__list_marker_star] = ACTIONS(2619), + [sym__list_marker_parenthesis] = ACTIONS(2619), + [sym__list_marker_dot] = ACTIONS(2619), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_example] = ACTIONS(2619), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2619), + [sym__fenced_code_block_start_backtick] = ACTIONS(2619), + [sym__minus_metadata_start] = ACTIONS(2619), + [sym__pipe_table_start] = ACTIONS(2619), + [sym__fenced_div_start] = ACTIONS(2619), + [sym__fenced_div_end] = ACTIONS(2619), + [sym_ref_id_specifier] = ACTIONS(2619), + [sym__code_span_start] = ACTIONS(2619), + [sym__html_comment] = ACTIONS(2619), + [sym__autolink] = ACTIONS(2619), + [sym__highlight_span_start] = ACTIONS(2619), + [sym__insert_span_start] = ACTIONS(2619), + [sym__delete_span_start] = ACTIONS(2619), + [sym__edit_comment_span_start] = ACTIONS(2619), + [sym__single_quote_span_open] = ACTIONS(2619), + [sym__double_quote_span_open] = ACTIONS(2619), + [sym__shortcode_open_escaped] = ACTIONS(2619), + [sym__shortcode_open] = ACTIONS(2619), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2619), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2619), + [sym__cite_author_in_text] = ACTIONS(2619), + [sym__cite_suppress_author] = ACTIONS(2619), + [sym__strikeout_open] = ACTIONS(2619), + [sym__subscript_open] = ACTIONS(2619), + [sym__superscript_open] = ACTIONS(2619), + [sym__inline_note_start_token] = ACTIONS(2619), + [sym__strong_emphasis_open_star] = ACTIONS(2619), + [sym__strong_emphasis_open_underscore] = ACTIONS(2619), + [sym__emphasis_open_star] = ACTIONS(2619), + [sym__emphasis_open_underscore] = ACTIONS(2619), + [sym_inline_note_reference] = ACTIONS(2619), + [sym_html_element] = ACTIONS(2619), + [sym__pandoc_lt_str] = ACTIONS(2619), + [sym__pandoc_line_break] = ACTIONS(2619), + [sym_grid_table] = ACTIONS(2619), + [sym__caption_start] = ACTIONS(2619), }, - [STATE(276)] = { - [ts_builtin_sym_end] = ACTIONS(2303), - [sym_entity_reference] = ACTIONS(2303), - [sym_numeric_character_reference] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_BANG_LBRACK] = ACTIONS(2303), - [anon_sym_DOLLAR] = ACTIONS(2305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [aux_sym_pandoc_str_token1] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2303), - [sym__whitespace] = ACTIONS(2303), - [sym__line_ending] = ACTIONS(2303), - [sym__soft_line_ending] = ACTIONS(2303), - [sym_block_continuation] = ACTIONS(2627), - [sym__block_quote_start] = ACTIONS(2303), - [sym_atx_h1_marker] = ACTIONS(2303), - [sym_atx_h2_marker] = ACTIONS(2303), - [sym_atx_h3_marker] = ACTIONS(2303), - [sym_atx_h4_marker] = ACTIONS(2303), - [sym_atx_h5_marker] = ACTIONS(2303), - [sym_atx_h6_marker] = ACTIONS(2303), - [sym__thematic_break] = ACTIONS(2303), - [sym__list_marker_minus] = ACTIONS(2303), - [sym__list_marker_plus] = ACTIONS(2303), - [sym__list_marker_star] = ACTIONS(2303), - [sym__list_marker_parenthesis] = ACTIONS(2303), - [sym__list_marker_dot] = ACTIONS(2303), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_example] = ACTIONS(2303), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2303), - [sym__fenced_code_block_start_backtick] = ACTIONS(2303), - [sym_minus_metadata] = ACTIONS(2303), - [sym__pipe_table_start] = ACTIONS(2303), - [sym__fenced_div_start] = ACTIONS(2303), - [sym_ref_id_specifier] = ACTIONS(2303), - [sym__code_span_start] = ACTIONS(2303), - [sym__html_comment] = ACTIONS(2303), - [sym__autolink] = ACTIONS(2303), - [sym__highlight_span_start] = ACTIONS(2303), - [sym__insert_span_start] = ACTIONS(2303), - [sym__delete_span_start] = ACTIONS(2303), - [sym__edit_comment_span_start] = ACTIONS(2303), - [sym__single_quote_span_open] = ACTIONS(2303), - [sym__double_quote_span_open] = ACTIONS(2303), - [sym__shortcode_open_escaped] = ACTIONS(2303), - [sym__shortcode_open] = ACTIONS(2303), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2303), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2303), - [sym__cite_author_in_text] = ACTIONS(2303), - [sym__cite_suppress_author] = ACTIONS(2303), - [sym__strikeout_open] = ACTIONS(2303), - [sym__subscript_open] = ACTIONS(2303), - [sym__superscript_open] = ACTIONS(2303), - [sym__inline_note_start_token] = ACTIONS(2303), - [sym__strong_emphasis_open_star] = ACTIONS(2303), - [sym__strong_emphasis_open_underscore] = ACTIONS(2303), - [sym__emphasis_open_star] = ACTIONS(2303), - [sym__emphasis_open_underscore] = ACTIONS(2303), - [sym_inline_note_reference] = ACTIONS(2303), - [sym_html_element] = ACTIONS(2303), - [sym__pandoc_lt_str] = ACTIONS(2303), - [sym__pandoc_line_break] = ACTIONS(2303), - [sym_grid_table] = ACTIONS(2303), - [sym__caption_start] = ACTIONS(2303), + [STATE(255)] = { + [sym_entity_reference] = ACTIONS(2623), + [sym_numeric_character_reference] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_BANG_LBRACK] = ACTIONS(2623), + [anon_sym_DOLLAR] = ACTIONS(2625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2623), + [aux_sym_pandoc_str_token1] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2623), + [sym__whitespace] = ACTIONS(2623), + [sym__line_ending] = ACTIONS(2623), + [sym__soft_line_ending] = ACTIONS(2623), + [sym__block_close] = ACTIONS(2623), + [sym__block_quote_start] = ACTIONS(2623), + [sym_atx_h1_marker] = ACTIONS(2623), + [sym_atx_h2_marker] = ACTIONS(2623), + [sym_atx_h3_marker] = ACTIONS(2623), + [sym_atx_h4_marker] = ACTIONS(2623), + [sym_atx_h5_marker] = ACTIONS(2623), + [sym_atx_h6_marker] = ACTIONS(2623), + [sym__thematic_break] = ACTIONS(2623), + [sym__list_marker_minus] = ACTIONS(2623), + [sym__list_marker_plus] = ACTIONS(2623), + [sym__list_marker_star] = ACTIONS(2623), + [sym__list_marker_parenthesis] = ACTIONS(2623), + [sym__list_marker_dot] = ACTIONS(2623), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_example] = ACTIONS(2623), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2623), + [sym__fenced_code_block_start_backtick] = ACTIONS(2623), + [sym__minus_metadata_start] = ACTIONS(2623), + [sym__pipe_table_start] = ACTIONS(2623), + [sym__fenced_div_start] = ACTIONS(2623), + [sym__fenced_div_end] = ACTIONS(2623), + [sym_ref_id_specifier] = ACTIONS(2623), + [sym__code_span_start] = ACTIONS(2623), + [sym__html_comment] = ACTIONS(2623), + [sym__autolink] = ACTIONS(2623), + [sym__highlight_span_start] = ACTIONS(2623), + [sym__insert_span_start] = ACTIONS(2623), + [sym__delete_span_start] = ACTIONS(2623), + [sym__edit_comment_span_start] = ACTIONS(2623), + [sym__single_quote_span_open] = ACTIONS(2623), + [sym__double_quote_span_open] = ACTIONS(2623), + [sym__shortcode_open_escaped] = ACTIONS(2623), + [sym__shortcode_open] = ACTIONS(2623), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2623), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2623), + [sym__cite_author_in_text] = ACTIONS(2623), + [sym__cite_suppress_author] = ACTIONS(2623), + [sym__strikeout_open] = ACTIONS(2623), + [sym__subscript_open] = ACTIONS(2623), + [sym__superscript_open] = ACTIONS(2623), + [sym__inline_note_start_token] = ACTIONS(2623), + [sym__strong_emphasis_open_star] = ACTIONS(2623), + [sym__strong_emphasis_open_underscore] = ACTIONS(2623), + [sym__emphasis_open_star] = ACTIONS(2623), + [sym__emphasis_open_underscore] = ACTIONS(2623), + [sym_inline_note_reference] = ACTIONS(2623), + [sym_html_element] = ACTIONS(2623), + [sym__pandoc_lt_str] = ACTIONS(2623), + [sym__pandoc_line_break] = ACTIONS(2623), + [sym_grid_table] = ACTIONS(2623), + [sym__caption_start] = ACTIONS(2623), }, - [STATE(277)] = { - [sym_entity_reference] = ACTIONS(2629), - [sym_numeric_character_reference] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_BANG_LBRACK] = ACTIONS(2629), - [anon_sym_DOLLAR] = ACTIONS(2631), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2629), - [aux_sym_pandoc_str_token1] = ACTIONS(2631), - [anon_sym_PIPE] = ACTIONS(2629), - [sym__whitespace] = ACTIONS(2629), - [sym__line_ending] = ACTIONS(2629), - [sym__soft_line_ending] = ACTIONS(2629), - [sym__block_close] = ACTIONS(2629), - [sym__block_quote_start] = ACTIONS(2629), - [sym_atx_h1_marker] = ACTIONS(2629), - [sym_atx_h2_marker] = ACTIONS(2629), - [sym_atx_h3_marker] = ACTIONS(2629), - [sym_atx_h4_marker] = ACTIONS(2629), - [sym_atx_h5_marker] = ACTIONS(2629), - [sym_atx_h6_marker] = ACTIONS(2629), - [sym__thematic_break] = ACTIONS(2629), - [sym__list_marker_minus] = ACTIONS(2629), - [sym__list_marker_plus] = ACTIONS(2629), - [sym__list_marker_star] = ACTIONS(2629), - [sym__list_marker_parenthesis] = ACTIONS(2629), - [sym__list_marker_dot] = ACTIONS(2629), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_example] = ACTIONS(2629), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2629), - [sym__fenced_code_block_start_backtick] = ACTIONS(2629), - [sym_minus_metadata] = ACTIONS(2629), - [sym__pipe_table_start] = ACTIONS(2629), - [sym__fenced_div_start] = ACTIONS(2629), - [sym__fenced_div_end] = ACTIONS(2629), - [sym_ref_id_specifier] = ACTIONS(2629), - [sym__code_span_start] = ACTIONS(2629), - [sym__html_comment] = ACTIONS(2629), - [sym__autolink] = ACTIONS(2629), - [sym__highlight_span_start] = ACTIONS(2629), - [sym__insert_span_start] = ACTIONS(2629), - [sym__delete_span_start] = ACTIONS(2629), - [sym__edit_comment_span_start] = ACTIONS(2629), - [sym__single_quote_span_open] = ACTIONS(2629), - [sym__double_quote_span_open] = ACTIONS(2629), - [sym__shortcode_open_escaped] = ACTIONS(2629), - [sym__shortcode_open] = ACTIONS(2629), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2629), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2629), - [sym__cite_author_in_text] = ACTIONS(2629), - [sym__cite_suppress_author] = ACTIONS(2629), - [sym__strikeout_open] = ACTIONS(2629), - [sym__subscript_open] = ACTIONS(2629), - [sym__superscript_open] = ACTIONS(2629), - [sym__inline_note_start_token] = ACTIONS(2629), - [sym__strong_emphasis_open_star] = ACTIONS(2629), - [sym__strong_emphasis_open_underscore] = ACTIONS(2629), - [sym__emphasis_open_star] = ACTIONS(2629), - [sym__emphasis_open_underscore] = ACTIONS(2629), - [sym_inline_note_reference] = ACTIONS(2629), - [sym_html_element] = ACTIONS(2629), - [sym__pandoc_lt_str] = ACTIONS(2629), - [sym__pandoc_line_break] = ACTIONS(2629), - [sym_grid_table] = ACTIONS(2629), - [sym__caption_start] = ACTIONS(2629), + [STATE(256)] = { + [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), + [sym__whitespace] = ACTIONS(2627), + [sym__line_ending] = ACTIONS(2627), + [sym__soft_line_ending] = ACTIONS(2627), + [sym__block_close] = ACTIONS(2627), + [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_start] = 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_lt_str] = ACTIONS(2627), + [sym__pandoc_line_break] = ACTIONS(2627), + [sym_grid_table] = ACTIONS(2627), + [sym__caption_start] = ACTIONS(2627), }, - [STATE(278)] = { - [ts_builtin_sym_end] = ACTIONS(2249), - [sym_entity_reference] = ACTIONS(2249), - [sym_numeric_character_reference] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_BANG_LBRACK] = ACTIONS(2249), - [anon_sym_DOLLAR] = ACTIONS(2251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [aux_sym_pandoc_str_token1] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2249), - [sym__whitespace] = ACTIONS(2249), - [sym__line_ending] = ACTIONS(2249), - [sym__soft_line_ending] = ACTIONS(2249), - [sym_block_continuation] = ACTIONS(2633), - [sym__block_quote_start] = ACTIONS(2249), - [sym_atx_h1_marker] = ACTIONS(2249), - [sym_atx_h2_marker] = ACTIONS(2249), - [sym_atx_h3_marker] = ACTIONS(2249), - [sym_atx_h4_marker] = ACTIONS(2249), - [sym_atx_h5_marker] = ACTIONS(2249), - [sym_atx_h6_marker] = ACTIONS(2249), - [sym__thematic_break] = ACTIONS(2249), - [sym__list_marker_minus] = ACTIONS(2249), - [sym__list_marker_plus] = ACTIONS(2249), - [sym__list_marker_star] = ACTIONS(2249), - [sym__list_marker_parenthesis] = ACTIONS(2249), - [sym__list_marker_dot] = ACTIONS(2249), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_example] = ACTIONS(2249), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2249), - [sym__fenced_code_block_start_backtick] = ACTIONS(2249), - [sym_minus_metadata] = ACTIONS(2249), - [sym__pipe_table_start] = ACTIONS(2249), - [sym__fenced_div_start] = ACTIONS(2249), - [sym_ref_id_specifier] = ACTIONS(2249), - [sym__code_span_start] = ACTIONS(2249), - [sym__html_comment] = ACTIONS(2249), - [sym__autolink] = ACTIONS(2249), - [sym__highlight_span_start] = ACTIONS(2249), - [sym__insert_span_start] = ACTIONS(2249), - [sym__delete_span_start] = ACTIONS(2249), - [sym__edit_comment_span_start] = ACTIONS(2249), - [sym__single_quote_span_open] = ACTIONS(2249), - [sym__double_quote_span_open] = ACTIONS(2249), - [sym__shortcode_open_escaped] = ACTIONS(2249), - [sym__shortcode_open] = ACTIONS(2249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2249), - [sym__cite_author_in_text] = ACTIONS(2249), - [sym__cite_suppress_author] = ACTIONS(2249), - [sym__strikeout_open] = ACTIONS(2249), - [sym__subscript_open] = ACTIONS(2249), - [sym__superscript_open] = ACTIONS(2249), - [sym__inline_note_start_token] = ACTIONS(2249), - [sym__strong_emphasis_open_star] = ACTIONS(2249), - [sym__strong_emphasis_open_underscore] = ACTIONS(2249), - [sym__emphasis_open_star] = ACTIONS(2249), - [sym__emphasis_open_underscore] = ACTIONS(2249), - [sym_inline_note_reference] = ACTIONS(2249), - [sym_html_element] = ACTIONS(2249), - [sym__pandoc_lt_str] = ACTIONS(2249), - [sym__pandoc_line_break] = ACTIONS(2249), - [sym_grid_table] = ACTIONS(2249), - [sym__caption_start] = ACTIONS(2249), + [STATE(257)] = { + [sym_entity_reference] = ACTIONS(2631), + [sym_numeric_character_reference] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_BANG_LBRACK] = ACTIONS(2631), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [aux_sym_pandoc_str_token1] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2631), + [sym__whitespace] = ACTIONS(2631), + [sym__line_ending] = ACTIONS(2631), + [sym__soft_line_ending] = ACTIONS(2631), + [sym__block_close] = ACTIONS(2631), + [sym__block_quote_start] = ACTIONS(2631), + [sym_atx_h1_marker] = ACTIONS(2631), + [sym_atx_h2_marker] = ACTIONS(2631), + [sym_atx_h3_marker] = ACTIONS(2631), + [sym_atx_h4_marker] = ACTIONS(2631), + [sym_atx_h5_marker] = ACTIONS(2631), + [sym_atx_h6_marker] = ACTIONS(2631), + [sym__thematic_break] = ACTIONS(2631), + [sym__list_marker_minus] = ACTIONS(2631), + [sym__list_marker_plus] = ACTIONS(2631), + [sym__list_marker_star] = ACTIONS(2631), + [sym__list_marker_parenthesis] = ACTIONS(2631), + [sym__list_marker_dot] = ACTIONS(2631), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_example] = ACTIONS(2631), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2631), + [sym__fenced_code_block_start_backtick] = ACTIONS(2631), + [sym__minus_metadata_start] = ACTIONS(2631), + [sym__pipe_table_start] = ACTIONS(2631), + [sym__fenced_div_start] = ACTIONS(2631), + [sym__fenced_div_end] = ACTIONS(2631), + [sym_ref_id_specifier] = ACTIONS(2631), + [sym__code_span_start] = ACTIONS(2631), + [sym__html_comment] = ACTIONS(2631), + [sym__autolink] = ACTIONS(2631), + [sym__highlight_span_start] = ACTIONS(2631), + [sym__insert_span_start] = ACTIONS(2631), + [sym__delete_span_start] = ACTIONS(2631), + [sym__edit_comment_span_start] = ACTIONS(2631), + [sym__single_quote_span_open] = ACTIONS(2631), + [sym__double_quote_span_open] = ACTIONS(2631), + [sym__shortcode_open_escaped] = ACTIONS(2631), + [sym__shortcode_open] = ACTIONS(2631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2631), + [sym__cite_author_in_text] = ACTIONS(2631), + [sym__cite_suppress_author] = ACTIONS(2631), + [sym__strikeout_open] = ACTIONS(2631), + [sym__subscript_open] = ACTIONS(2631), + [sym__superscript_open] = ACTIONS(2631), + [sym__inline_note_start_token] = ACTIONS(2631), + [sym__strong_emphasis_open_star] = ACTIONS(2631), + [sym__strong_emphasis_open_underscore] = ACTIONS(2631), + [sym__emphasis_open_star] = ACTIONS(2631), + [sym__emphasis_open_underscore] = ACTIONS(2631), + [sym_inline_note_reference] = ACTIONS(2631), + [sym_html_element] = ACTIONS(2631), + [sym__pandoc_lt_str] = ACTIONS(2631), + [sym__pandoc_line_break] = ACTIONS(2631), + [sym_grid_table] = ACTIONS(2631), + [sym__caption_start] = ACTIONS(2631), }, - [STATE(279)] = { + [STATE(258)] = { [sym_entity_reference] = ACTIONS(2635), [sym_numeric_character_reference] = ACTIONS(2635), [anon_sym_LBRACK] = ACTIONS(2635), @@ -53283,7 +52021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2635), [sym__list_marker_example_dont_interrupt] = ACTIONS(2635), [sym__fenced_code_block_start_backtick] = ACTIONS(2635), - [sym_minus_metadata] = ACTIONS(2635), + [sym__minus_metadata_start] = ACTIONS(2635), [sym__pipe_table_start] = ACTIONS(2635), [sym__fenced_div_start] = ACTIONS(2635), [sym__fenced_div_end] = ACTIONS(2635), @@ -53318,987 +52056,1827 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2635), [sym__caption_start] = ACTIONS(2635), }, - [STATE(280)] = { - [sym_entity_reference] = ACTIONS(2315), - [sym_numeric_character_reference] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_BANG_LBRACK] = ACTIONS(2315), - [anon_sym_DOLLAR] = ACTIONS(2317), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [aux_sym_pandoc_str_token1] = ACTIONS(2317), - [anon_sym_PIPE] = ACTIONS(2315), - [sym__whitespace] = ACTIONS(2315), - [sym__line_ending] = ACTIONS(2315), - [sym__soft_line_ending] = ACTIONS(2315), - [sym__block_close] = ACTIONS(2315), - [sym_block_continuation] = ACTIONS(2639), - [sym__block_quote_start] = ACTIONS(2315), - [sym_atx_h1_marker] = ACTIONS(2315), - [sym_atx_h2_marker] = ACTIONS(2315), - [sym_atx_h3_marker] = ACTIONS(2315), - [sym_atx_h4_marker] = ACTIONS(2315), - [sym_atx_h5_marker] = ACTIONS(2315), - [sym_atx_h6_marker] = ACTIONS(2315), - [sym__thematic_break] = ACTIONS(2315), - [sym__list_marker_minus] = ACTIONS(2315), - [sym__list_marker_plus] = ACTIONS(2315), - [sym__list_marker_star] = ACTIONS(2315), - [sym__list_marker_parenthesis] = ACTIONS(2315), - [sym__list_marker_dot] = ACTIONS(2315), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_example] = ACTIONS(2315), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2315), - [sym__fenced_code_block_start_backtick] = ACTIONS(2315), - [sym_minus_metadata] = ACTIONS(2315), - [sym__pipe_table_start] = ACTIONS(2315), - [sym__fenced_div_start] = ACTIONS(2315), - [sym_ref_id_specifier] = ACTIONS(2315), - [sym__code_span_start] = ACTIONS(2315), - [sym__html_comment] = ACTIONS(2315), - [sym__autolink] = ACTIONS(2315), - [sym__highlight_span_start] = ACTIONS(2315), - [sym__insert_span_start] = ACTIONS(2315), - [sym__delete_span_start] = ACTIONS(2315), - [sym__edit_comment_span_start] = ACTIONS(2315), - [sym__single_quote_span_open] = ACTIONS(2315), - [sym__double_quote_span_open] = ACTIONS(2315), - [sym__shortcode_open_escaped] = ACTIONS(2315), - [sym__shortcode_open] = ACTIONS(2315), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2315), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2315), - [sym__cite_author_in_text] = ACTIONS(2315), - [sym__cite_suppress_author] = ACTIONS(2315), - [sym__strikeout_open] = ACTIONS(2315), - [sym__subscript_open] = ACTIONS(2315), - [sym__superscript_open] = ACTIONS(2315), - [sym__inline_note_start_token] = ACTIONS(2315), - [sym__strong_emphasis_open_star] = ACTIONS(2315), - [sym__strong_emphasis_open_underscore] = ACTIONS(2315), - [sym__emphasis_open_star] = ACTIONS(2315), - [sym__emphasis_open_underscore] = ACTIONS(2315), - [sym_inline_note_reference] = ACTIONS(2315), - [sym_html_element] = ACTIONS(2315), - [sym__pandoc_lt_str] = ACTIONS(2315), - [sym__pandoc_line_break] = ACTIONS(2315), - [sym_grid_table] = ACTIONS(2315), - [sym__caption_start] = ACTIONS(2315), + [STATE(259)] = { + [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), + [sym__whitespace] = ACTIONS(2639), + [sym__line_ending] = ACTIONS(2639), + [sym__soft_line_ending] = ACTIONS(2639), + [sym__block_close] = ACTIONS(2639), + [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_start] = 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_lt_str] = ACTIONS(2639), + [sym__pandoc_line_break] = ACTIONS(2639), + [sym_grid_table] = ACTIONS(2639), + [sym__caption_start] = ACTIONS(2639), }, - [STATE(281)] = { - [sym_entity_reference] = ACTIONS(2321), - [sym_numeric_character_reference] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_BANG_LBRACK] = ACTIONS(2321), - [anon_sym_DOLLAR] = ACTIONS(2323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [aux_sym_pandoc_str_token1] = ACTIONS(2323), - [anon_sym_PIPE] = ACTIONS(2321), - [sym__whitespace] = ACTIONS(2641), - [sym__line_ending] = ACTIONS(2321), - [sym__soft_line_ending] = ACTIONS(2321), - [sym__block_close] = ACTIONS(2321), + [STATE(260)] = { + [ts_builtin_sym_end] = ACTIONS(2337), + [sym_entity_reference] = ACTIONS(2337), + [sym_numeric_character_reference] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_BANG_LBRACK] = ACTIONS(2337), + [anon_sym_DOLLAR] = ACTIONS(2339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [aux_sym_pandoc_str_token1] = ACTIONS(2339), + [anon_sym_PIPE] = ACTIONS(2337), + [sym__whitespace] = ACTIONS(2337), + [sym__line_ending] = ACTIONS(2337), + [sym__soft_line_ending] = ACTIONS(2337), [sym_block_continuation] = ACTIONS(2643), - [sym__block_quote_start] = ACTIONS(2321), - [sym_atx_h1_marker] = ACTIONS(2321), - [sym_atx_h2_marker] = ACTIONS(2321), - [sym_atx_h3_marker] = ACTIONS(2321), - [sym_atx_h4_marker] = ACTIONS(2321), - [sym_atx_h5_marker] = ACTIONS(2321), - [sym_atx_h6_marker] = ACTIONS(2321), - [sym__thematic_break] = ACTIONS(2321), - [sym__list_marker_minus] = ACTIONS(2321), - [sym__list_marker_plus] = ACTIONS(2321), - [sym__list_marker_star] = ACTIONS(2321), - [sym__list_marker_parenthesis] = ACTIONS(2321), - [sym__list_marker_dot] = ACTIONS(2321), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_example] = ACTIONS(2321), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2321), - [sym__fenced_code_block_start_backtick] = ACTIONS(2321), - [sym_minus_metadata] = ACTIONS(2321), - [sym__pipe_table_start] = ACTIONS(2321), - [sym__fenced_div_start] = ACTIONS(2321), - [sym_ref_id_specifier] = ACTIONS(2321), - [sym__code_span_start] = ACTIONS(2321), - [sym__html_comment] = ACTIONS(2321), - [sym__autolink] = ACTIONS(2321), - [sym__highlight_span_start] = ACTIONS(2321), - [sym__insert_span_start] = ACTIONS(2321), - [sym__delete_span_start] = ACTIONS(2321), - [sym__edit_comment_span_start] = ACTIONS(2321), - [sym__single_quote_span_open] = ACTIONS(2321), - [sym__double_quote_span_open] = ACTIONS(2321), - [sym__shortcode_open_escaped] = ACTIONS(2321), - [sym__shortcode_open] = ACTIONS(2321), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2321), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2321), - [sym__cite_author_in_text] = ACTIONS(2321), - [sym__cite_suppress_author] = ACTIONS(2321), - [sym__strikeout_open] = ACTIONS(2321), - [sym__subscript_open] = ACTIONS(2321), - [sym__superscript_open] = ACTIONS(2321), - [sym__inline_note_start_token] = ACTIONS(2321), - [sym__strong_emphasis_open_star] = ACTIONS(2321), - [sym__strong_emphasis_open_underscore] = ACTIONS(2321), - [sym__emphasis_open_star] = ACTIONS(2321), - [sym__emphasis_open_underscore] = ACTIONS(2321), - [sym_inline_note_reference] = ACTIONS(2321), - [sym_html_element] = ACTIONS(2321), - [sym__pandoc_lt_str] = ACTIONS(2321), - [sym__pandoc_line_break] = ACTIONS(2321), - [sym_grid_table] = ACTIONS(2321), - [sym__caption_start] = ACTIONS(2321), + [sym__block_quote_start] = ACTIONS(2337), + [sym_atx_h1_marker] = ACTIONS(2337), + [sym_atx_h2_marker] = ACTIONS(2337), + [sym_atx_h3_marker] = ACTIONS(2337), + [sym_atx_h4_marker] = ACTIONS(2337), + [sym_atx_h5_marker] = ACTIONS(2337), + [sym_atx_h6_marker] = ACTIONS(2337), + [sym__thematic_break] = ACTIONS(2337), + [sym__list_marker_minus] = ACTIONS(2337), + [sym__list_marker_plus] = ACTIONS(2337), + [sym__list_marker_star] = ACTIONS(2337), + [sym__list_marker_parenthesis] = ACTIONS(2337), + [sym__list_marker_dot] = ACTIONS(2337), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_example] = ACTIONS(2337), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2337), + [sym__fenced_code_block_start_backtick] = ACTIONS(2337), + [sym__minus_metadata_start] = ACTIONS(2337), + [sym__pipe_table_start] = ACTIONS(2337), + [sym__fenced_div_start] = ACTIONS(2337), + [sym_ref_id_specifier] = ACTIONS(2337), + [sym__code_span_start] = ACTIONS(2337), + [sym__html_comment] = ACTIONS(2337), + [sym__autolink] = ACTIONS(2337), + [sym__highlight_span_start] = ACTIONS(2337), + [sym__insert_span_start] = ACTIONS(2337), + [sym__delete_span_start] = ACTIONS(2337), + [sym__edit_comment_span_start] = ACTIONS(2337), + [sym__single_quote_span_open] = ACTIONS(2337), + [sym__double_quote_span_open] = ACTIONS(2337), + [sym__shortcode_open_escaped] = ACTIONS(2337), + [sym__shortcode_open] = ACTIONS(2337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2337), + [sym__cite_author_in_text] = ACTIONS(2337), + [sym__cite_suppress_author] = ACTIONS(2337), + [sym__strikeout_open] = ACTIONS(2337), + [sym__subscript_open] = ACTIONS(2337), + [sym__superscript_open] = ACTIONS(2337), + [sym__inline_note_start_token] = ACTIONS(2337), + [sym__strong_emphasis_open_star] = ACTIONS(2337), + [sym__strong_emphasis_open_underscore] = ACTIONS(2337), + [sym__emphasis_open_star] = ACTIONS(2337), + [sym__emphasis_open_underscore] = ACTIONS(2337), + [sym_inline_note_reference] = ACTIONS(2337), + [sym_html_element] = ACTIONS(2337), + [sym__pandoc_lt_str] = ACTIONS(2337), + [sym__pandoc_line_break] = ACTIONS(2337), + [sym_grid_table] = ACTIONS(2337), + [sym__caption_start] = ACTIONS(2337), }, - [STATE(282)] = { - [sym_entity_reference] = ACTIONS(2645), - [sym_numeric_character_reference] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_BANG_LBRACK] = ACTIONS(2645), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2645), - [aux_sym_pandoc_str_token1] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2645), - [sym__whitespace] = ACTIONS(2645), - [sym__line_ending] = ACTIONS(2645), - [sym__soft_line_ending] = ACTIONS(2645), - [sym__block_close] = ACTIONS(2645), - [sym__block_quote_start] = ACTIONS(2645), - [sym_atx_h1_marker] = ACTIONS(2645), - [sym_atx_h2_marker] = ACTIONS(2645), - [sym_atx_h3_marker] = ACTIONS(2645), - [sym_atx_h4_marker] = ACTIONS(2645), - [sym_atx_h5_marker] = ACTIONS(2645), - [sym_atx_h6_marker] = ACTIONS(2645), - [sym__thematic_break] = ACTIONS(2645), - [sym__list_marker_minus] = ACTIONS(2645), - [sym__list_marker_plus] = ACTIONS(2645), - [sym__list_marker_star] = ACTIONS(2645), - [sym__list_marker_parenthesis] = ACTIONS(2645), - [sym__list_marker_dot] = ACTIONS(2645), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_example] = ACTIONS(2645), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2645), - [sym__fenced_code_block_start_backtick] = ACTIONS(2645), - [sym_minus_metadata] = ACTIONS(2645), - [sym__pipe_table_start] = ACTIONS(2645), - [sym__fenced_div_start] = ACTIONS(2645), - [sym__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_lt_str] = ACTIONS(2645), - [sym__pandoc_line_break] = ACTIONS(2645), - [sym_grid_table] = ACTIONS(2645), - [sym__caption_start] = ACTIONS(2645), + [STATE(261)] = { + [ts_builtin_sym_end] = ACTIONS(2367), + [sym_entity_reference] = ACTIONS(2367), + [sym_numeric_character_reference] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2367), + [anon_sym_BANG_LBRACK] = ACTIONS(2367), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [aux_sym_pandoc_str_token1] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2367), + [sym__whitespace] = ACTIONS(2367), + [sym__line_ending] = ACTIONS(2367), + [sym__soft_line_ending] = ACTIONS(2367), + [sym_block_continuation] = ACTIONS(2645), + [sym__block_quote_start] = ACTIONS(2367), + [sym_atx_h1_marker] = ACTIONS(2367), + [sym_atx_h2_marker] = ACTIONS(2367), + [sym_atx_h3_marker] = ACTIONS(2367), + [sym_atx_h4_marker] = ACTIONS(2367), + [sym_atx_h5_marker] = ACTIONS(2367), + [sym_atx_h6_marker] = ACTIONS(2367), + [sym__thematic_break] = ACTIONS(2367), + [sym__list_marker_minus] = ACTIONS(2367), + [sym__list_marker_plus] = ACTIONS(2367), + [sym__list_marker_star] = ACTIONS(2367), + [sym__list_marker_parenthesis] = ACTIONS(2367), + [sym__list_marker_dot] = ACTIONS(2367), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_example] = ACTIONS(2367), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2367), + [sym__fenced_code_block_start_backtick] = ACTIONS(2367), + [sym__minus_metadata_start] = ACTIONS(2367), + [sym__pipe_table_start] = ACTIONS(2367), + [sym__fenced_div_start] = ACTIONS(2367), + [sym_ref_id_specifier] = ACTIONS(2367), + [sym__code_span_start] = ACTIONS(2367), + [sym__html_comment] = ACTIONS(2367), + [sym__autolink] = ACTIONS(2367), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2367), + [sym__delete_span_start] = ACTIONS(2367), + [sym__edit_comment_span_start] = ACTIONS(2367), + [sym__single_quote_span_open] = ACTIONS(2367), + [sym__double_quote_span_open] = ACTIONS(2367), + [sym__shortcode_open_escaped] = ACTIONS(2367), + [sym__shortcode_open] = ACTIONS(2367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2367), + [sym__cite_author_in_text] = ACTIONS(2367), + [sym__cite_suppress_author] = ACTIONS(2367), + [sym__strikeout_open] = ACTIONS(2367), + [sym__subscript_open] = ACTIONS(2367), + [sym__superscript_open] = ACTIONS(2367), + [sym__inline_note_start_token] = ACTIONS(2367), + [sym__strong_emphasis_open_star] = ACTIONS(2367), + [sym__strong_emphasis_open_underscore] = ACTIONS(2367), + [sym__emphasis_open_star] = ACTIONS(2367), + [sym__emphasis_open_underscore] = ACTIONS(2367), + [sym_inline_note_reference] = ACTIONS(2367), + [sym_html_element] = ACTIONS(2367), + [sym__pandoc_lt_str] = ACTIONS(2367), + [sym__pandoc_line_break] = ACTIONS(2367), + [sym_grid_table] = ACTIONS(2367), + [sym__caption_start] = ACTIONS(2367), }, - [STATE(283)] = { - [ts_builtin_sym_end] = ACTIONS(2255), - [sym_entity_reference] = ACTIONS(2255), - [sym_numeric_character_reference] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_BANG_LBRACK] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2257), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [aux_sym_pandoc_str_token1] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2255), - [sym__whitespace] = ACTIONS(2255), - [sym__line_ending] = ACTIONS(2255), - [sym__soft_line_ending] = ACTIONS(2255), + [STATE(262)] = { + [sym_entity_reference] = ACTIONS(2343), + [sym_numeric_character_reference] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_BANG_LBRACK] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [aux_sym_pandoc_str_token1] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2343), + [sym__whitespace] = ACTIONS(2343), + [sym__line_ending] = ACTIONS(2343), + [sym__soft_line_ending] = ACTIONS(2343), + [sym__block_close] = ACTIONS(2343), + [sym__block_quote_start] = ACTIONS(2343), + [sym_atx_h1_marker] = ACTIONS(2343), + [sym_atx_h2_marker] = ACTIONS(2343), + [sym_atx_h3_marker] = ACTIONS(2343), + [sym_atx_h4_marker] = ACTIONS(2343), + [sym_atx_h5_marker] = ACTIONS(2343), + [sym_atx_h6_marker] = ACTIONS(2343), + [sym__thematic_break] = ACTIONS(2343), + [sym__list_marker_minus] = ACTIONS(2343), + [sym__list_marker_plus] = ACTIONS(2343), + [sym__list_marker_star] = ACTIONS(2343), + [sym__list_marker_parenthesis] = ACTIONS(2343), + [sym__list_marker_dot] = ACTIONS(2343), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_example] = ACTIONS(2343), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2343), + [sym__fenced_code_block_start_backtick] = ACTIONS(2343), + [sym__minus_metadata_start] = ACTIONS(2343), + [sym__pipe_table_start] = ACTIONS(2343), + [sym__fenced_div_start] = ACTIONS(2343), + [sym__fenced_div_end] = ACTIONS(2343), + [sym_ref_id_specifier] = ACTIONS(2343), + [sym__code_span_start] = ACTIONS(2343), + [sym__html_comment] = ACTIONS(2343), + [sym__autolink] = ACTIONS(2343), + [sym__highlight_span_start] = ACTIONS(2343), + [sym__insert_span_start] = ACTIONS(2343), + [sym__delete_span_start] = ACTIONS(2343), + [sym__edit_comment_span_start] = ACTIONS(2343), + [sym__single_quote_span_open] = ACTIONS(2343), + [sym__double_quote_span_open] = ACTIONS(2343), + [sym__shortcode_open_escaped] = ACTIONS(2343), + [sym__shortcode_open] = ACTIONS(2343), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2343), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2343), + [sym__cite_author_in_text] = ACTIONS(2343), + [sym__cite_suppress_author] = ACTIONS(2343), + [sym__strikeout_open] = ACTIONS(2343), + [sym__subscript_open] = ACTIONS(2343), + [sym__superscript_open] = ACTIONS(2343), + [sym__inline_note_start_token] = ACTIONS(2343), + [sym__strong_emphasis_open_star] = ACTIONS(2343), + [sym__strong_emphasis_open_underscore] = ACTIONS(2343), + [sym__emphasis_open_star] = ACTIONS(2343), + [sym__emphasis_open_underscore] = ACTIONS(2343), + [sym_inline_note_reference] = ACTIONS(2343), + [sym_html_element] = ACTIONS(2343), + [sym__pandoc_lt_str] = ACTIONS(2343), + [sym__pandoc_line_break] = ACTIONS(2343), + [sym_grid_table] = ACTIONS(2343), + [sym__caption_start] = ACTIONS(2343), + }, + [STATE(263)] = { + [sym_entity_reference] = ACTIONS(2349), + [sym_numeric_character_reference] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_BANG_LBRACK] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [aux_sym_pandoc_str_token1] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(2349), + [sym__whitespace] = ACTIONS(2349), + [sym__line_ending] = ACTIONS(2349), + [sym__soft_line_ending] = ACTIONS(2349), + [sym__block_close] = ACTIONS(2349), + [sym__block_quote_start] = ACTIONS(2349), + [sym_atx_h1_marker] = ACTIONS(2349), + [sym_atx_h2_marker] = ACTIONS(2349), + [sym_atx_h3_marker] = ACTIONS(2349), + [sym_atx_h4_marker] = ACTIONS(2349), + [sym_atx_h5_marker] = ACTIONS(2349), + [sym_atx_h6_marker] = ACTIONS(2349), + [sym__thematic_break] = ACTIONS(2349), + [sym__list_marker_minus] = ACTIONS(2349), + [sym__list_marker_plus] = ACTIONS(2349), + [sym__list_marker_star] = ACTIONS(2349), + [sym__list_marker_parenthesis] = ACTIONS(2349), + [sym__list_marker_dot] = ACTIONS(2349), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_example] = ACTIONS(2349), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2349), + [sym__fenced_code_block_start_backtick] = ACTIONS(2349), + [sym__minus_metadata_start] = ACTIONS(2349), + [sym__pipe_table_start] = ACTIONS(2349), + [sym__fenced_div_start] = ACTIONS(2349), + [sym__fenced_div_end] = ACTIONS(2349), + [sym_ref_id_specifier] = ACTIONS(2349), + [sym__code_span_start] = ACTIONS(2349), + [sym__html_comment] = ACTIONS(2349), + [sym__autolink] = ACTIONS(2349), + [sym__highlight_span_start] = ACTIONS(2349), + [sym__insert_span_start] = ACTIONS(2349), + [sym__delete_span_start] = ACTIONS(2349), + [sym__edit_comment_span_start] = ACTIONS(2349), + [sym__single_quote_span_open] = ACTIONS(2349), + [sym__double_quote_span_open] = ACTIONS(2349), + [sym__shortcode_open_escaped] = ACTIONS(2349), + [sym__shortcode_open] = ACTIONS(2349), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2349), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2349), + [sym__cite_author_in_text] = ACTIONS(2349), + [sym__cite_suppress_author] = ACTIONS(2349), + [sym__strikeout_open] = ACTIONS(2349), + [sym__subscript_open] = ACTIONS(2349), + [sym__superscript_open] = ACTIONS(2349), + [sym__inline_note_start_token] = ACTIONS(2349), + [sym__strong_emphasis_open_star] = ACTIONS(2349), + [sym__strong_emphasis_open_underscore] = ACTIONS(2349), + [sym__emphasis_open_star] = ACTIONS(2349), + [sym__emphasis_open_underscore] = ACTIONS(2349), + [sym_inline_note_reference] = ACTIONS(2349), + [sym_html_element] = ACTIONS(2349), + [sym__pandoc_lt_str] = ACTIONS(2349), + [sym__pandoc_line_break] = ACTIONS(2349), + [sym_grid_table] = ACTIONS(2349), + [sym__caption_start] = ACTIONS(2349), + }, + [STATE(264)] = { + [ts_builtin_sym_end] = ACTIONS(2373), + [sym_entity_reference] = ACTIONS(2373), + [sym_numeric_character_reference] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_BANG_LBRACK] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [aux_sym_pandoc_str_token1] = ACTIONS(2375), + [anon_sym_PIPE] = ACTIONS(2373), + [sym__whitespace] = ACTIONS(2373), + [sym__line_ending] = ACTIONS(2373), + [sym__soft_line_ending] = ACTIONS(2373), + [sym_block_continuation] = ACTIONS(2647), + [sym__block_quote_start] = ACTIONS(2373), + [sym_atx_h1_marker] = ACTIONS(2373), + [sym_atx_h2_marker] = ACTIONS(2373), + [sym_atx_h3_marker] = ACTIONS(2373), + [sym_atx_h4_marker] = ACTIONS(2373), + [sym_atx_h5_marker] = ACTIONS(2373), + [sym_atx_h6_marker] = ACTIONS(2373), + [sym__thematic_break] = ACTIONS(2373), + [sym__list_marker_minus] = ACTIONS(2373), + [sym__list_marker_plus] = ACTIONS(2373), + [sym__list_marker_star] = ACTIONS(2373), + [sym__list_marker_parenthesis] = ACTIONS(2373), + [sym__list_marker_dot] = ACTIONS(2373), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_example] = ACTIONS(2373), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2373), + [sym__fenced_code_block_start_backtick] = ACTIONS(2373), + [sym__minus_metadata_start] = ACTIONS(2373), + [sym__pipe_table_start] = ACTIONS(2373), + [sym__fenced_div_start] = ACTIONS(2373), + [sym_ref_id_specifier] = ACTIONS(2373), + [sym__code_span_start] = ACTIONS(2373), + [sym__html_comment] = ACTIONS(2373), + [sym__autolink] = ACTIONS(2373), + [sym__highlight_span_start] = ACTIONS(2373), + [sym__insert_span_start] = ACTIONS(2373), + [sym__delete_span_start] = ACTIONS(2373), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2373), + [sym__double_quote_span_open] = ACTIONS(2373), + [sym__shortcode_open_escaped] = ACTIONS(2373), + [sym__shortcode_open] = ACTIONS(2373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2373), + [sym__cite_author_in_text] = ACTIONS(2373), + [sym__cite_suppress_author] = ACTIONS(2373), + [sym__strikeout_open] = ACTIONS(2373), + [sym__subscript_open] = ACTIONS(2373), + [sym__superscript_open] = ACTIONS(2373), + [sym__inline_note_start_token] = ACTIONS(2373), + [sym__strong_emphasis_open_star] = ACTIONS(2373), + [sym__strong_emphasis_open_underscore] = ACTIONS(2373), + [sym__emphasis_open_star] = ACTIONS(2373), + [sym__emphasis_open_underscore] = ACTIONS(2373), + [sym_inline_note_reference] = ACTIONS(2373), + [sym_html_element] = ACTIONS(2373), + [sym__pandoc_lt_str] = ACTIONS(2373), + [sym__pandoc_line_break] = ACTIONS(2373), + [sym_grid_table] = ACTIONS(2373), + [sym__caption_start] = ACTIONS(2373), + }, + [STATE(265)] = { + [sym_entity_reference] = ACTIONS(2361), + [sym_numeric_character_reference] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_BANG_LBRACK] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2361), + [aux_sym_pandoc_str_token1] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2361), + [sym__whitespace] = ACTIONS(2361), + [sym__line_ending] = ACTIONS(2361), + [sym__soft_line_ending] = ACTIONS(2361), + [sym__block_close] = ACTIONS(2361), + [sym__block_quote_start] = ACTIONS(2361), + [sym_atx_h1_marker] = ACTIONS(2361), + [sym_atx_h2_marker] = ACTIONS(2361), + [sym_atx_h3_marker] = ACTIONS(2361), + [sym_atx_h4_marker] = ACTIONS(2361), + [sym_atx_h5_marker] = ACTIONS(2361), + [sym_atx_h6_marker] = ACTIONS(2361), + [sym__thematic_break] = ACTIONS(2361), + [sym__list_marker_minus] = ACTIONS(2361), + [sym__list_marker_plus] = ACTIONS(2361), + [sym__list_marker_star] = ACTIONS(2361), + [sym__list_marker_parenthesis] = ACTIONS(2361), + [sym__list_marker_dot] = ACTIONS(2361), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_example] = ACTIONS(2361), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2361), + [sym__fenced_code_block_start_backtick] = ACTIONS(2361), + [sym__minus_metadata_start] = ACTIONS(2361), + [sym__pipe_table_start] = ACTIONS(2361), + [sym__fenced_div_start] = ACTIONS(2361), + [sym__fenced_div_end] = ACTIONS(2361), + [sym_ref_id_specifier] = ACTIONS(2361), + [sym__code_span_start] = ACTIONS(2361), + [sym__html_comment] = ACTIONS(2361), + [sym__autolink] = ACTIONS(2361), + [sym__highlight_span_start] = ACTIONS(2361), + [sym__insert_span_start] = ACTIONS(2361), + [sym__delete_span_start] = ACTIONS(2361), + [sym__edit_comment_span_start] = ACTIONS(2361), + [sym__single_quote_span_open] = ACTIONS(2361), + [sym__double_quote_span_open] = ACTIONS(2361), + [sym__shortcode_open_escaped] = ACTIONS(2361), + [sym__shortcode_open] = ACTIONS(2361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2361), + [sym__cite_author_in_text] = ACTIONS(2361), + [sym__cite_suppress_author] = ACTIONS(2361), + [sym__strikeout_open] = ACTIONS(2361), + [sym__subscript_open] = ACTIONS(2361), + [sym__superscript_open] = ACTIONS(2361), + [sym__inline_note_start_token] = ACTIONS(2361), + [sym__strong_emphasis_open_star] = ACTIONS(2361), + [sym__strong_emphasis_open_underscore] = ACTIONS(2361), + [sym__emphasis_open_star] = ACTIONS(2361), + [sym__emphasis_open_underscore] = ACTIONS(2361), + [sym_inline_note_reference] = ACTIONS(2361), + [sym_html_element] = ACTIONS(2361), + [sym__pandoc_lt_str] = ACTIONS(2361), + [sym__pandoc_line_break] = ACTIONS(2361), + [sym_grid_table] = ACTIONS(2361), + [sym__caption_start] = ACTIONS(2361), + }, + [STATE(266)] = { + [sym_entity_reference] = ACTIONS(2397), + [sym_numeric_character_reference] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2397), + [anon_sym_BANG_LBRACK] = ACTIONS(2397), + [anon_sym_DOLLAR] = ACTIONS(2399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [aux_sym_pandoc_str_token1] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2397), + [sym__whitespace] = ACTIONS(2397), + [sym__line_ending] = ACTIONS(2397), + [sym__soft_line_ending] = ACTIONS(2397), + [sym__block_close] = ACTIONS(2397), + [sym__block_quote_start] = ACTIONS(2397), + [sym_atx_h1_marker] = ACTIONS(2397), + [sym_atx_h2_marker] = ACTIONS(2397), + [sym_atx_h3_marker] = ACTIONS(2397), + [sym_atx_h4_marker] = ACTIONS(2397), + [sym_atx_h5_marker] = ACTIONS(2397), + [sym_atx_h6_marker] = ACTIONS(2397), + [sym__thematic_break] = ACTIONS(2397), + [sym__list_marker_minus] = ACTIONS(2397), + [sym__list_marker_plus] = ACTIONS(2397), + [sym__list_marker_star] = ACTIONS(2397), + [sym__list_marker_parenthesis] = ACTIONS(2397), + [sym__list_marker_dot] = ACTIONS(2397), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_example] = ACTIONS(2397), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2397), + [sym__fenced_code_block_start_backtick] = ACTIONS(2397), + [sym__minus_metadata_start] = ACTIONS(2397), + [sym__pipe_table_start] = ACTIONS(2397), + [sym__fenced_div_start] = ACTIONS(2397), + [sym__fenced_div_end] = ACTIONS(2397), + [sym_ref_id_specifier] = ACTIONS(2397), + [sym__code_span_start] = ACTIONS(2397), + [sym__html_comment] = ACTIONS(2397), + [sym__autolink] = ACTIONS(2397), + [sym__highlight_span_start] = ACTIONS(2397), + [sym__insert_span_start] = ACTIONS(2397), + [sym__delete_span_start] = ACTIONS(2397), + [sym__edit_comment_span_start] = ACTIONS(2397), + [sym__single_quote_span_open] = ACTIONS(2397), + [sym__double_quote_span_open] = ACTIONS(2397), + [sym__shortcode_open_escaped] = ACTIONS(2397), + [sym__shortcode_open] = ACTIONS(2397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2397), + [sym__cite_author_in_text] = ACTIONS(2397), + [sym__cite_suppress_author] = ACTIONS(2397), + [sym__strikeout_open] = ACTIONS(2397), + [sym__subscript_open] = ACTIONS(2397), + [sym__superscript_open] = ACTIONS(2397), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2397), + [sym__strong_emphasis_open_underscore] = ACTIONS(2397), + [sym__emphasis_open_star] = ACTIONS(2397), + [sym__emphasis_open_underscore] = ACTIONS(2397), + [sym_inline_note_reference] = ACTIONS(2397), + [sym_html_element] = ACTIONS(2397), + [sym__pandoc_lt_str] = ACTIONS(2397), + [sym__pandoc_line_break] = ACTIONS(2397), + [sym_grid_table] = ACTIONS(2397), + [sym__caption_start] = ACTIONS(2397), + }, + [STATE(267)] = { + [ts_builtin_sym_end] = ACTIONS(2277), + [sym_entity_reference] = ACTIONS(2277), + [sym_numeric_character_reference] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_BANG_LBRACK] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2277), + [aux_sym_pandoc_str_token1] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2277), + [sym__whitespace] = ACTIONS(2277), + [sym__line_ending] = ACTIONS(2277), + [sym__soft_line_ending] = ACTIONS(2277), [sym_block_continuation] = ACTIONS(2649), - [sym__block_quote_start] = ACTIONS(2255), - [sym_atx_h1_marker] = ACTIONS(2255), - [sym_atx_h2_marker] = ACTIONS(2255), - [sym_atx_h3_marker] = ACTIONS(2255), - [sym_atx_h4_marker] = ACTIONS(2255), - [sym_atx_h5_marker] = ACTIONS(2255), - [sym_atx_h6_marker] = ACTIONS(2255), - [sym__thematic_break] = ACTIONS(2255), - [sym__list_marker_minus] = ACTIONS(2255), - [sym__list_marker_plus] = ACTIONS(2255), - [sym__list_marker_star] = ACTIONS(2255), - [sym__list_marker_parenthesis] = ACTIONS(2255), - [sym__list_marker_dot] = ACTIONS(2255), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_example] = ACTIONS(2255), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2255), - [sym__fenced_code_block_start_backtick] = ACTIONS(2255), - [sym_minus_metadata] = ACTIONS(2255), - [sym__pipe_table_start] = ACTIONS(2255), - [sym__fenced_div_start] = ACTIONS(2255), - [sym_ref_id_specifier] = ACTIONS(2255), - [sym__code_span_start] = ACTIONS(2255), - [sym__html_comment] = ACTIONS(2255), - [sym__autolink] = ACTIONS(2255), - [sym__highlight_span_start] = ACTIONS(2255), - [sym__insert_span_start] = ACTIONS(2255), - [sym__delete_span_start] = ACTIONS(2255), - [sym__edit_comment_span_start] = ACTIONS(2255), - [sym__single_quote_span_open] = ACTIONS(2255), - [sym__double_quote_span_open] = ACTIONS(2255), - [sym__shortcode_open_escaped] = ACTIONS(2255), - [sym__shortcode_open] = ACTIONS(2255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2255), - [sym__cite_author_in_text] = ACTIONS(2255), - [sym__cite_suppress_author] = ACTIONS(2255), - [sym__strikeout_open] = ACTIONS(2255), - [sym__subscript_open] = ACTIONS(2255), - [sym__superscript_open] = ACTIONS(2255), - [sym__inline_note_start_token] = ACTIONS(2255), - [sym__strong_emphasis_open_star] = ACTIONS(2255), - [sym__strong_emphasis_open_underscore] = ACTIONS(2255), - [sym__emphasis_open_star] = ACTIONS(2255), - [sym__emphasis_open_underscore] = ACTIONS(2255), - [sym_inline_note_reference] = ACTIONS(2255), - [sym_html_element] = ACTIONS(2255), - [sym__pandoc_lt_str] = ACTIONS(2255), - [sym__pandoc_line_break] = ACTIONS(2255), - [sym_grid_table] = ACTIONS(2255), - [sym__caption_start] = ACTIONS(2255), + [sym__block_quote_start] = ACTIONS(2277), + [sym_atx_h1_marker] = ACTIONS(2277), + [sym_atx_h2_marker] = ACTIONS(2277), + [sym_atx_h3_marker] = ACTIONS(2277), + [sym_atx_h4_marker] = ACTIONS(2277), + [sym_atx_h5_marker] = ACTIONS(2277), + [sym_atx_h6_marker] = ACTIONS(2277), + [sym__thematic_break] = ACTIONS(2277), + [sym__list_marker_minus] = ACTIONS(2277), + [sym__list_marker_plus] = ACTIONS(2277), + [sym__list_marker_star] = ACTIONS(2277), + [sym__list_marker_parenthesis] = ACTIONS(2277), + [sym__list_marker_dot] = ACTIONS(2277), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_example] = ACTIONS(2277), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2277), + [sym__fenced_code_block_start_backtick] = ACTIONS(2277), + [sym__minus_metadata_start] = ACTIONS(2277), + [sym__pipe_table_start] = ACTIONS(2277), + [sym__fenced_div_start] = ACTIONS(2277), + [sym_ref_id_specifier] = ACTIONS(2277), + [sym__code_span_start] = ACTIONS(2277), + [sym__html_comment] = ACTIONS(2277), + [sym__autolink] = ACTIONS(2277), + [sym__highlight_span_start] = ACTIONS(2277), + [sym__insert_span_start] = ACTIONS(2277), + [sym__delete_span_start] = ACTIONS(2277), + [sym__edit_comment_span_start] = ACTIONS(2277), + [sym__single_quote_span_open] = ACTIONS(2277), + [sym__double_quote_span_open] = ACTIONS(2277), + [sym__shortcode_open_escaped] = ACTIONS(2277), + [sym__shortcode_open] = ACTIONS(2277), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2277), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2277), + [sym__cite_author_in_text] = ACTIONS(2277), + [sym__cite_suppress_author] = ACTIONS(2277), + [sym__strikeout_open] = ACTIONS(2277), + [sym__subscript_open] = ACTIONS(2277), + [sym__superscript_open] = ACTIONS(2277), + [sym__inline_note_start_token] = ACTIONS(2277), + [sym__strong_emphasis_open_star] = ACTIONS(2277), + [sym__strong_emphasis_open_underscore] = ACTIONS(2277), + [sym__emphasis_open_star] = ACTIONS(2277), + [sym__emphasis_open_underscore] = ACTIONS(2277), + [sym_inline_note_reference] = ACTIONS(2277), + [sym_html_element] = ACTIONS(2277), + [sym__pandoc_lt_str] = ACTIONS(2277), + [sym__pandoc_line_break] = ACTIONS(2277), + [sym_grid_table] = ACTIONS(2277), + [sym__caption_start] = ACTIONS(2277), }, - [STATE(284)] = { - [ts_builtin_sym_end] = ACTIONS(2341), - [sym_entity_reference] = ACTIONS(2341), - [sym_numeric_character_reference] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_BANG_LBRACK] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2341), - [aux_sym_pandoc_str_token1] = ACTIONS(2343), - [anon_sym_PIPE] = ACTIONS(2341), - [sym__whitespace] = ACTIONS(2341), - [sym__line_ending] = ACTIONS(2341), - [sym__soft_line_ending] = ACTIONS(2341), + [STATE(268)] = { + [sym_entity_reference] = ACTIONS(2411), + [sym_numeric_character_reference] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_BANG_LBRACK] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [aux_sym_pandoc_str_token1] = ACTIONS(2413), + [anon_sym_PIPE] = ACTIONS(2411), + [sym__whitespace] = ACTIONS(2411), + [sym__line_ending] = ACTIONS(2411), + [sym__soft_line_ending] = ACTIONS(2411), + [sym__block_close] = ACTIONS(2411), + [sym__block_quote_start] = ACTIONS(2411), + [sym_atx_h1_marker] = ACTIONS(2411), + [sym_atx_h2_marker] = ACTIONS(2411), + [sym_atx_h3_marker] = ACTIONS(2411), + [sym_atx_h4_marker] = ACTIONS(2411), + [sym_atx_h5_marker] = ACTIONS(2411), + [sym_atx_h6_marker] = ACTIONS(2411), + [sym__thematic_break] = ACTIONS(2411), + [sym__list_marker_minus] = ACTIONS(2411), + [sym__list_marker_plus] = ACTIONS(2411), + [sym__list_marker_star] = ACTIONS(2411), + [sym__list_marker_parenthesis] = ACTIONS(2411), + [sym__list_marker_dot] = ACTIONS(2411), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_example] = ACTIONS(2411), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2411), + [sym__fenced_code_block_start_backtick] = ACTIONS(2411), + [sym__minus_metadata_start] = ACTIONS(2411), + [sym__pipe_table_start] = ACTIONS(2411), + [sym__fenced_div_start] = ACTIONS(2411), + [sym__fenced_div_end] = ACTIONS(2411), + [sym_ref_id_specifier] = ACTIONS(2411), + [sym__code_span_start] = ACTIONS(2411), + [sym__html_comment] = ACTIONS(2411), + [sym__autolink] = ACTIONS(2411), + [sym__highlight_span_start] = ACTIONS(2411), + [sym__insert_span_start] = ACTIONS(2411), + [sym__delete_span_start] = ACTIONS(2411), + [sym__edit_comment_span_start] = ACTIONS(2411), + [sym__single_quote_span_open] = ACTIONS(2411), + [sym__double_quote_span_open] = ACTIONS(2411), + [sym__shortcode_open_escaped] = ACTIONS(2411), + [sym__shortcode_open] = ACTIONS(2411), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2411), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2411), + [sym__cite_author_in_text] = ACTIONS(2411), + [sym__cite_suppress_author] = ACTIONS(2411), + [sym__strikeout_open] = ACTIONS(2411), + [sym__subscript_open] = ACTIONS(2411), + [sym__superscript_open] = ACTIONS(2411), + [sym__inline_note_start_token] = ACTIONS(2411), + [sym__strong_emphasis_open_star] = ACTIONS(2411), + [sym__strong_emphasis_open_underscore] = ACTIONS(2411), + [sym__emphasis_open_star] = ACTIONS(2411), + [sym__emphasis_open_underscore] = ACTIONS(2411), + [sym_inline_note_reference] = ACTIONS(2411), + [sym_html_element] = ACTIONS(2411), + [sym__pandoc_lt_str] = ACTIONS(2411), + [sym__pandoc_line_break] = ACTIONS(2411), + [sym_grid_table] = ACTIONS(2411), + [sym__caption_start] = ACTIONS(2411), + }, + [STATE(269)] = { + [sym_entity_reference] = ACTIONS(2313), + [sym_numeric_character_reference] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_BANG_LBRACK] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2313), + [aux_sym_pandoc_str_token1] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2313), + [sym__whitespace] = ACTIONS(2313), + [sym__line_ending] = ACTIONS(2313), + [sym__soft_line_ending] = ACTIONS(2313), + [sym__block_close] = ACTIONS(2313), + [sym__block_quote_start] = ACTIONS(2313), + [sym_atx_h1_marker] = ACTIONS(2313), + [sym_atx_h2_marker] = ACTIONS(2313), + [sym_atx_h3_marker] = ACTIONS(2313), + [sym_atx_h4_marker] = ACTIONS(2313), + [sym_atx_h5_marker] = ACTIONS(2313), + [sym_atx_h6_marker] = ACTIONS(2313), + [sym__thematic_break] = ACTIONS(2313), + [sym__list_marker_minus] = ACTIONS(2313), + [sym__list_marker_plus] = ACTIONS(2313), + [sym__list_marker_star] = ACTIONS(2313), + [sym__list_marker_parenthesis] = ACTIONS(2313), + [sym__list_marker_dot] = ACTIONS(2313), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_example] = ACTIONS(2313), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2313), + [sym__fenced_code_block_start_backtick] = ACTIONS(2313), + [sym__minus_metadata_start] = ACTIONS(2313), + [sym__pipe_table_start] = ACTIONS(2313), + [sym__fenced_div_start] = ACTIONS(2313), + [sym__fenced_div_end] = ACTIONS(2313), + [sym_ref_id_specifier] = ACTIONS(2313), + [sym__code_span_start] = ACTIONS(2313), + [sym__html_comment] = ACTIONS(2313), + [sym__autolink] = ACTIONS(2313), + [sym__highlight_span_start] = ACTIONS(2313), + [sym__insert_span_start] = ACTIONS(2313), + [sym__delete_span_start] = ACTIONS(2313), + [sym__edit_comment_span_start] = ACTIONS(2313), + [sym__single_quote_span_open] = ACTIONS(2313), + [sym__double_quote_span_open] = ACTIONS(2313), + [sym__shortcode_open_escaped] = ACTIONS(2313), + [sym__shortcode_open] = ACTIONS(2313), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2313), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2313), + [sym__cite_author_in_text] = ACTIONS(2313), + [sym__cite_suppress_author] = ACTIONS(2313), + [sym__strikeout_open] = ACTIONS(2313), + [sym__subscript_open] = ACTIONS(2313), + [sym__superscript_open] = ACTIONS(2313), + [sym__inline_note_start_token] = ACTIONS(2313), + [sym__strong_emphasis_open_star] = ACTIONS(2313), + [sym__strong_emphasis_open_underscore] = ACTIONS(2313), + [sym__emphasis_open_star] = ACTIONS(2313), + [sym__emphasis_open_underscore] = ACTIONS(2313), + [sym_inline_note_reference] = ACTIONS(2313), + [sym_html_element] = ACTIONS(2313), + [sym__pandoc_lt_str] = ACTIONS(2313), + [sym__pandoc_line_break] = ACTIONS(2313), + [sym_grid_table] = ACTIONS(2313), + [sym__caption_start] = ACTIONS(2313), + }, + [STATE(270)] = { + [ts_builtin_sym_end] = 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), + [sym__whitespace] = ACTIONS(2385), + [sym__line_ending] = ACTIONS(2385), + [sym__soft_line_ending] = ACTIONS(2385), [sym_block_continuation] = ACTIONS(2651), - [sym__block_quote_start] = ACTIONS(2341), - [sym_atx_h1_marker] = ACTIONS(2341), - [sym_atx_h2_marker] = ACTIONS(2341), - [sym_atx_h3_marker] = ACTIONS(2341), - [sym_atx_h4_marker] = ACTIONS(2341), - [sym_atx_h5_marker] = ACTIONS(2341), - [sym_atx_h6_marker] = ACTIONS(2341), - [sym__thematic_break] = ACTIONS(2341), - [sym__list_marker_minus] = ACTIONS(2341), - [sym__list_marker_plus] = ACTIONS(2341), - [sym__list_marker_star] = ACTIONS(2341), - [sym__list_marker_parenthesis] = ACTIONS(2341), - [sym__list_marker_dot] = ACTIONS(2341), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_example] = ACTIONS(2341), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2341), - [sym__fenced_code_block_start_backtick] = ACTIONS(2341), - [sym_minus_metadata] = ACTIONS(2341), - [sym__pipe_table_start] = ACTIONS(2341), - [sym__fenced_div_start] = ACTIONS(2341), - [sym_ref_id_specifier] = ACTIONS(2341), - [sym__code_span_start] = ACTIONS(2341), - [sym__html_comment] = ACTIONS(2341), - [sym__autolink] = ACTIONS(2341), - [sym__highlight_span_start] = ACTIONS(2341), - [sym__insert_span_start] = ACTIONS(2341), - [sym__delete_span_start] = ACTIONS(2341), - [sym__edit_comment_span_start] = ACTIONS(2341), - [sym__single_quote_span_open] = ACTIONS(2341), - [sym__double_quote_span_open] = ACTIONS(2341), - [sym__shortcode_open_escaped] = ACTIONS(2341), - [sym__shortcode_open] = ACTIONS(2341), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2341), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2341), - [sym__cite_author_in_text] = ACTIONS(2341), - [sym__cite_suppress_author] = ACTIONS(2341), - [sym__strikeout_open] = ACTIONS(2341), - [sym__subscript_open] = ACTIONS(2341), - [sym__superscript_open] = ACTIONS(2341), - [sym__inline_note_start_token] = ACTIONS(2341), - [sym__strong_emphasis_open_star] = ACTIONS(2341), - [sym__strong_emphasis_open_underscore] = ACTIONS(2341), - [sym__emphasis_open_star] = ACTIONS(2341), - [sym__emphasis_open_underscore] = ACTIONS(2341), - [sym_inline_note_reference] = ACTIONS(2341), - [sym_html_element] = ACTIONS(2341), - [sym__pandoc_lt_str] = ACTIONS(2341), - [sym__pandoc_line_break] = ACTIONS(2341), - [sym_grid_table] = ACTIONS(2341), - [sym__caption_start] = ACTIONS(2341), + [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(2385), + [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(2385), + [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_start] = 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__pandoc_lt_str] = ACTIONS(2385), + [sym__pandoc_line_break] = ACTIONS(2385), + [sym_grid_table] = ACTIONS(2385), + [sym__caption_start] = ACTIONS(2385), }, - [STATE(285)] = { - [ts_builtin_sym_end] = ACTIONS(2291), - [sym_entity_reference] = ACTIONS(2291), - [sym_numeric_character_reference] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_BANG_LBRACK] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2293), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [aux_sym_pandoc_str_token1] = ACTIONS(2293), - [anon_sym_PIPE] = ACTIONS(2291), - [sym__whitespace] = ACTIONS(2291), - [sym__line_ending] = ACTIONS(2291), - [sym__soft_line_ending] = ACTIONS(2291), - [sym_block_continuation] = ACTIONS(2653), - [sym__block_quote_start] = ACTIONS(2291), - [sym_atx_h1_marker] = ACTIONS(2291), - [sym_atx_h2_marker] = ACTIONS(2291), - [sym_atx_h3_marker] = ACTIONS(2291), - [sym_atx_h4_marker] = ACTIONS(2291), - [sym_atx_h5_marker] = ACTIONS(2291), - [sym_atx_h6_marker] = ACTIONS(2291), - [sym__thematic_break] = ACTIONS(2291), - [sym__list_marker_minus] = ACTIONS(2291), - [sym__list_marker_plus] = ACTIONS(2291), - [sym__list_marker_star] = ACTIONS(2291), - [sym__list_marker_parenthesis] = ACTIONS(2291), - [sym__list_marker_dot] = ACTIONS(2291), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_example] = ACTIONS(2291), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2291), - [sym__fenced_code_block_start_backtick] = ACTIONS(2291), - [sym_minus_metadata] = ACTIONS(2291), - [sym__pipe_table_start] = ACTIONS(2291), - [sym__fenced_div_start] = ACTIONS(2291), - [sym_ref_id_specifier] = ACTIONS(2291), - [sym__code_span_start] = ACTIONS(2291), - [sym__html_comment] = ACTIONS(2291), - [sym__autolink] = ACTIONS(2291), - [sym__highlight_span_start] = ACTIONS(2291), - [sym__insert_span_start] = ACTIONS(2291), - [sym__delete_span_start] = ACTIONS(2291), - [sym__edit_comment_span_start] = ACTIONS(2291), - [sym__single_quote_span_open] = ACTIONS(2291), - [sym__double_quote_span_open] = ACTIONS(2291), - [sym__shortcode_open_escaped] = ACTIONS(2291), - [sym__shortcode_open] = ACTIONS(2291), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2291), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2291), - [sym__cite_author_in_text] = ACTIONS(2291), - [sym__cite_suppress_author] = ACTIONS(2291), - [sym__strikeout_open] = ACTIONS(2291), - [sym__subscript_open] = ACTIONS(2291), - [sym__superscript_open] = ACTIONS(2291), - [sym__inline_note_start_token] = ACTIONS(2291), - [sym__strong_emphasis_open_star] = ACTIONS(2291), - [sym__strong_emphasis_open_underscore] = ACTIONS(2291), - [sym__emphasis_open_star] = ACTIONS(2291), - [sym__emphasis_open_underscore] = ACTIONS(2291), - [sym_inline_note_reference] = ACTIONS(2291), - [sym_html_element] = ACTIONS(2291), - [sym__pandoc_lt_str] = ACTIONS(2291), - [sym__pandoc_line_break] = ACTIONS(2291), - [sym_grid_table] = ACTIONS(2291), - [sym__caption_start] = ACTIONS(2291), + [STATE(271)] = { + [sym_entity_reference] = ACTIONS(2653), + [sym_numeric_character_reference] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_BANG_LBRACK] = ACTIONS(2653), + [anon_sym_DOLLAR] = ACTIONS(2655), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [aux_sym_pandoc_str_token1] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2653), + [sym__whitespace] = ACTIONS(2653), + [sym__line_ending] = ACTIONS(2653), + [sym__soft_line_ending] = ACTIONS(2653), + [sym__block_close] = ACTIONS(2653), + [sym__block_quote_start] = ACTIONS(2653), + [sym_atx_h1_marker] = ACTIONS(2653), + [sym_atx_h2_marker] = ACTIONS(2653), + [sym_atx_h3_marker] = ACTIONS(2653), + [sym_atx_h4_marker] = ACTIONS(2653), + [sym_atx_h5_marker] = ACTIONS(2653), + [sym_atx_h6_marker] = ACTIONS(2653), + [sym__thematic_break] = ACTIONS(2653), + [sym__list_marker_minus] = ACTIONS(2653), + [sym__list_marker_plus] = ACTIONS(2653), + [sym__list_marker_star] = ACTIONS(2653), + [sym__list_marker_parenthesis] = ACTIONS(2653), + [sym__list_marker_dot] = ACTIONS(2653), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_example] = ACTIONS(2653), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2653), + [sym__fenced_code_block_start_backtick] = ACTIONS(2653), + [sym__minus_metadata_start] = ACTIONS(2653), + [sym__pipe_table_start] = ACTIONS(2653), + [sym__fenced_div_start] = ACTIONS(2653), + [sym__fenced_div_end] = ACTIONS(2653), + [sym_ref_id_specifier] = ACTIONS(2653), + [sym__code_span_start] = ACTIONS(2653), + [sym__html_comment] = ACTIONS(2653), + [sym__autolink] = ACTIONS(2653), + [sym__highlight_span_start] = ACTIONS(2653), + [sym__insert_span_start] = ACTIONS(2653), + [sym__delete_span_start] = ACTIONS(2653), + [sym__edit_comment_span_start] = ACTIONS(2653), + [sym__single_quote_span_open] = ACTIONS(2653), + [sym__double_quote_span_open] = ACTIONS(2653), + [sym__shortcode_open_escaped] = ACTIONS(2653), + [sym__shortcode_open] = ACTIONS(2653), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2653), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2653), + [sym__cite_author_in_text] = ACTIONS(2653), + [sym__cite_suppress_author] = ACTIONS(2653), + [sym__strikeout_open] = ACTIONS(2653), + [sym__subscript_open] = ACTIONS(2653), + [sym__superscript_open] = ACTIONS(2653), + [sym__inline_note_start_token] = ACTIONS(2653), + [sym__strong_emphasis_open_star] = ACTIONS(2653), + [sym__strong_emphasis_open_underscore] = ACTIONS(2653), + [sym__emphasis_open_star] = ACTIONS(2653), + [sym__emphasis_open_underscore] = ACTIONS(2653), + [sym_inline_note_reference] = ACTIONS(2653), + [sym_html_element] = ACTIONS(2653), + [sym__pandoc_lt_str] = ACTIONS(2653), + [sym__pandoc_line_break] = ACTIONS(2653), + [sym_grid_table] = ACTIONS(2653), + [sym__caption_start] = ACTIONS(2653), }, - [STATE(286)] = { - [ts_builtin_sym_end] = ACTIONS(2219), - [sym_entity_reference] = ACTIONS(2219), - [sym_numeric_character_reference] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_BANG_LBRACK] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [aux_sym_pandoc_str_token1] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [sym__whitespace] = ACTIONS(2219), - [sym__line_ending] = ACTIONS(2219), - [sym__soft_line_ending] = ACTIONS(2219), - [sym_block_continuation] = ACTIONS(2655), - [sym__block_quote_start] = ACTIONS(2219), - [sym_atx_h1_marker] = ACTIONS(2219), - [sym_atx_h2_marker] = ACTIONS(2219), - [sym_atx_h3_marker] = ACTIONS(2219), - [sym_atx_h4_marker] = ACTIONS(2219), - [sym_atx_h5_marker] = ACTIONS(2219), - [sym_atx_h6_marker] = ACTIONS(2219), - [sym__thematic_break] = ACTIONS(2219), - [sym__list_marker_minus] = ACTIONS(2219), - [sym__list_marker_plus] = ACTIONS(2219), - [sym__list_marker_star] = ACTIONS(2219), - [sym__list_marker_parenthesis] = ACTIONS(2219), - [sym__list_marker_dot] = ACTIONS(2219), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_example] = ACTIONS(2219), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2219), - [sym__fenced_code_block_start_backtick] = ACTIONS(2219), - [sym_minus_metadata] = ACTIONS(2219), - [sym__pipe_table_start] = ACTIONS(2219), - [sym__fenced_div_start] = ACTIONS(2219), - [sym_ref_id_specifier] = ACTIONS(2219), - [sym__code_span_start] = ACTIONS(2219), - [sym__html_comment] = ACTIONS(2219), - [sym__autolink] = ACTIONS(2219), - [sym__highlight_span_start] = ACTIONS(2219), - [sym__insert_span_start] = ACTIONS(2219), - [sym__delete_span_start] = ACTIONS(2219), - [sym__edit_comment_span_start] = ACTIONS(2219), - [sym__single_quote_span_open] = ACTIONS(2219), - [sym__double_quote_span_open] = ACTIONS(2219), - [sym__shortcode_open_escaped] = ACTIONS(2219), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2219), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2219), - [sym__cite_author_in_text] = ACTIONS(2219), - [sym__cite_suppress_author] = ACTIONS(2219), - [sym__strikeout_open] = ACTIONS(2219), - [sym__subscript_open] = ACTIONS(2219), - [sym__superscript_open] = ACTIONS(2219), - [sym__inline_note_start_token] = ACTIONS(2219), - [sym__strong_emphasis_open_star] = ACTIONS(2219), - [sym__strong_emphasis_open_underscore] = ACTIONS(2219), - [sym__emphasis_open_star] = ACTIONS(2219), - [sym__emphasis_open_underscore] = ACTIONS(2219), - [sym_inline_note_reference] = ACTIONS(2219), - [sym_html_element] = ACTIONS(2219), - [sym__pandoc_lt_str] = ACTIONS(2219), - [sym__pandoc_line_break] = ACTIONS(2219), - [sym_grid_table] = ACTIONS(2219), - [sym__caption_start] = ACTIONS(2219), + [STATE(272)] = { + [sym_entity_reference] = ACTIONS(2319), + [sym_numeric_character_reference] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_BANG_LBRACK] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [aux_sym_pandoc_str_token1] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(2319), + [sym__whitespace] = ACTIONS(2319), + [sym__line_ending] = ACTIONS(2319), + [sym__soft_line_ending] = ACTIONS(2319), + [sym__block_close] = ACTIONS(2319), + [sym__block_quote_start] = ACTIONS(2319), + [sym_atx_h1_marker] = ACTIONS(2319), + [sym_atx_h2_marker] = ACTIONS(2319), + [sym_atx_h3_marker] = ACTIONS(2319), + [sym_atx_h4_marker] = ACTIONS(2319), + [sym_atx_h5_marker] = ACTIONS(2319), + [sym_atx_h6_marker] = ACTIONS(2319), + [sym__thematic_break] = ACTIONS(2319), + [sym__list_marker_minus] = ACTIONS(2319), + [sym__list_marker_plus] = ACTIONS(2319), + [sym__list_marker_star] = ACTIONS(2319), + [sym__list_marker_parenthesis] = ACTIONS(2319), + [sym__list_marker_dot] = ACTIONS(2319), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_example] = ACTIONS(2319), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2319), + [sym__fenced_code_block_start_backtick] = ACTIONS(2319), + [sym__minus_metadata_start] = ACTIONS(2319), + [sym__pipe_table_start] = ACTIONS(2319), + [sym__fenced_div_start] = ACTIONS(2319), + [sym__fenced_div_end] = ACTIONS(2319), + [sym_ref_id_specifier] = ACTIONS(2319), + [sym__code_span_start] = ACTIONS(2319), + [sym__html_comment] = ACTIONS(2319), + [sym__autolink] = ACTIONS(2319), + [sym__highlight_span_start] = ACTIONS(2319), + [sym__insert_span_start] = ACTIONS(2319), + [sym__delete_span_start] = ACTIONS(2319), + [sym__edit_comment_span_start] = ACTIONS(2319), + [sym__single_quote_span_open] = ACTIONS(2319), + [sym__double_quote_span_open] = ACTIONS(2319), + [sym__shortcode_open_escaped] = ACTIONS(2319), + [sym__shortcode_open] = ACTIONS(2319), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2319), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2319), + [sym__cite_author_in_text] = ACTIONS(2319), + [sym__cite_suppress_author] = ACTIONS(2319), + [sym__strikeout_open] = ACTIONS(2319), + [sym__subscript_open] = ACTIONS(2319), + [sym__superscript_open] = ACTIONS(2319), + [sym__inline_note_start_token] = ACTIONS(2319), + [sym__strong_emphasis_open_star] = ACTIONS(2319), + [sym__strong_emphasis_open_underscore] = ACTIONS(2319), + [sym__emphasis_open_star] = ACTIONS(2319), + [sym__emphasis_open_underscore] = ACTIONS(2319), + [sym_inline_note_reference] = ACTIONS(2319), + [sym_html_element] = ACTIONS(2319), + [sym__pandoc_lt_str] = ACTIONS(2319), + [sym__pandoc_line_break] = ACTIONS(2319), + [sym_grid_table] = ACTIONS(2319), + [sym__caption_start] = ACTIONS(2319), }, - [STATE(287)] = { - [sym_entity_reference] = ACTIONS(2279), - [sym_numeric_character_reference] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_BANG_LBRACK] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [aux_sym_pandoc_str_token1] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [sym__whitespace] = ACTIONS(2279), - [sym__line_ending] = ACTIONS(2279), - [sym__soft_line_ending] = ACTIONS(2279), - [sym__block_close] = ACTIONS(2279), - [sym_block_continuation] = ACTIONS(2657), - [sym__block_quote_start] = ACTIONS(2279), - [sym_atx_h1_marker] = ACTIONS(2279), - [sym_atx_h2_marker] = ACTIONS(2279), - [sym_atx_h3_marker] = ACTIONS(2279), - [sym_atx_h4_marker] = ACTIONS(2279), - [sym_atx_h5_marker] = ACTIONS(2279), - [sym_atx_h6_marker] = ACTIONS(2279), - [sym__thematic_break] = ACTIONS(2279), - [sym__list_marker_minus] = ACTIONS(2279), - [sym__list_marker_plus] = ACTIONS(2279), - [sym__list_marker_star] = ACTIONS(2279), - [sym__list_marker_parenthesis] = ACTIONS(2279), - [sym__list_marker_dot] = ACTIONS(2279), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_example] = ACTIONS(2279), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2279), - [sym__fenced_code_block_start_backtick] = ACTIONS(2279), - [sym_minus_metadata] = ACTIONS(2279), - [sym__pipe_table_start] = ACTIONS(2279), - [sym__fenced_div_start] = ACTIONS(2279), - [sym_ref_id_specifier] = ACTIONS(2279), - [sym__code_span_start] = ACTIONS(2279), - [sym__html_comment] = ACTIONS(2279), - [sym__autolink] = ACTIONS(2279), - [sym__highlight_span_start] = ACTIONS(2279), - [sym__insert_span_start] = ACTIONS(2279), - [sym__delete_span_start] = ACTIONS(2279), - [sym__edit_comment_span_start] = ACTIONS(2279), - [sym__single_quote_span_open] = ACTIONS(2279), - [sym__double_quote_span_open] = ACTIONS(2279), - [sym__shortcode_open_escaped] = ACTIONS(2279), - [sym__shortcode_open] = ACTIONS(2279), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2279), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2279), - [sym__cite_author_in_text] = ACTIONS(2279), - [sym__cite_suppress_author] = ACTIONS(2279), - [sym__strikeout_open] = ACTIONS(2279), - [sym__subscript_open] = ACTIONS(2279), - [sym__superscript_open] = ACTIONS(2279), - [sym__inline_note_start_token] = ACTIONS(2279), - [sym__strong_emphasis_open_star] = ACTIONS(2279), - [sym__strong_emphasis_open_underscore] = ACTIONS(2279), - [sym__emphasis_open_star] = ACTIONS(2279), - [sym__emphasis_open_underscore] = ACTIONS(2279), - [sym_inline_note_reference] = ACTIONS(2279), - [sym_html_element] = ACTIONS(2279), - [sym__pandoc_lt_str] = ACTIONS(2279), - [sym__pandoc_line_break] = ACTIONS(2279), - [sym_grid_table] = ACTIONS(2279), - [sym__caption_start] = ACTIONS(2279), + [STATE(273)] = { + [sym_entity_reference] = ACTIONS(2657), + [sym_numeric_character_reference] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_BANG_LBRACK] = ACTIONS(2657), + [anon_sym_DOLLAR] = ACTIONS(2659), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [aux_sym_pandoc_str_token1] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2657), + [sym__whitespace] = ACTIONS(2657), + [sym__line_ending] = ACTIONS(2657), + [sym__soft_line_ending] = ACTIONS(2657), + [sym__block_close] = ACTIONS(2657), + [sym__block_quote_start] = ACTIONS(2657), + [sym_atx_h1_marker] = ACTIONS(2657), + [sym_atx_h2_marker] = ACTIONS(2657), + [sym_atx_h3_marker] = ACTIONS(2657), + [sym_atx_h4_marker] = ACTIONS(2657), + [sym_atx_h5_marker] = ACTIONS(2657), + [sym_atx_h6_marker] = ACTIONS(2657), + [sym__thematic_break] = ACTIONS(2657), + [sym__list_marker_minus] = ACTIONS(2657), + [sym__list_marker_plus] = ACTIONS(2657), + [sym__list_marker_star] = ACTIONS(2657), + [sym__list_marker_parenthesis] = ACTIONS(2657), + [sym__list_marker_dot] = ACTIONS(2657), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_example] = ACTIONS(2657), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2657), + [sym__fenced_code_block_start_backtick] = ACTIONS(2657), + [sym__minus_metadata_start] = 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_lt_str] = ACTIONS(2657), + [sym__pandoc_line_break] = ACTIONS(2657), + [sym_grid_table] = ACTIONS(2657), + [sym__caption_start] = ACTIONS(2657), }, - [STATE(288)] = { - [sym_entity_reference] = ACTIONS(2659), - [sym_numeric_character_reference] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_BANG_LBRACK] = ACTIONS(2659), - [anon_sym_DOLLAR] = ACTIONS(2661), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2659), - [aux_sym_pandoc_str_token1] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2659), - [sym__whitespace] = ACTIONS(2659), - [sym__line_ending] = ACTIONS(2659), - [sym__soft_line_ending] = ACTIONS(2659), - [sym__block_close] = ACTIONS(2659), - [sym__block_quote_start] = ACTIONS(2659), - [sym_atx_h1_marker] = ACTIONS(2659), - [sym_atx_h2_marker] = ACTIONS(2659), - [sym_atx_h3_marker] = ACTIONS(2659), - [sym_atx_h4_marker] = ACTIONS(2659), - [sym_atx_h5_marker] = ACTIONS(2659), - [sym_atx_h6_marker] = ACTIONS(2659), - [sym__thematic_break] = ACTIONS(2659), - [sym__list_marker_minus] = ACTIONS(2659), - [sym__list_marker_plus] = ACTIONS(2659), - [sym__list_marker_star] = ACTIONS(2659), - [sym__list_marker_parenthesis] = ACTIONS(2659), - [sym__list_marker_dot] = ACTIONS(2659), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_example] = ACTIONS(2659), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2659), - [sym__fenced_code_block_start_backtick] = ACTIONS(2659), - [sym_minus_metadata] = ACTIONS(2659), - [sym__pipe_table_start] = ACTIONS(2659), - [sym__fenced_div_start] = ACTIONS(2659), - [sym__fenced_div_end] = ACTIONS(2659), - [sym_ref_id_specifier] = ACTIONS(2659), - [sym__code_span_start] = ACTIONS(2659), - [sym__html_comment] = ACTIONS(2659), - [sym__autolink] = ACTIONS(2659), - [sym__highlight_span_start] = ACTIONS(2659), - [sym__insert_span_start] = ACTIONS(2659), - [sym__delete_span_start] = ACTIONS(2659), - [sym__edit_comment_span_start] = ACTIONS(2659), - [sym__single_quote_span_open] = ACTIONS(2659), - [sym__double_quote_span_open] = ACTIONS(2659), - [sym__shortcode_open_escaped] = ACTIONS(2659), - [sym__shortcode_open] = ACTIONS(2659), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2659), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2659), - [sym__cite_author_in_text] = ACTIONS(2659), - [sym__cite_suppress_author] = ACTIONS(2659), - [sym__strikeout_open] = ACTIONS(2659), - [sym__subscript_open] = ACTIONS(2659), - [sym__superscript_open] = ACTIONS(2659), - [sym__inline_note_start_token] = ACTIONS(2659), - [sym__strong_emphasis_open_star] = ACTIONS(2659), - [sym__strong_emphasis_open_underscore] = ACTIONS(2659), - [sym__emphasis_open_star] = ACTIONS(2659), - [sym__emphasis_open_underscore] = ACTIONS(2659), - [sym_inline_note_reference] = ACTIONS(2659), - [sym_html_element] = ACTIONS(2659), - [sym__pandoc_lt_str] = ACTIONS(2659), - [sym__pandoc_line_break] = ACTIONS(2659), - [sym_grid_table] = ACTIONS(2659), - [sym__caption_start] = ACTIONS(2659), + [STATE(274)] = { + [sym_entity_reference] = ACTIONS(2661), + [sym_numeric_character_reference] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_BANG_LBRACK] = ACTIONS(2661), + [anon_sym_DOLLAR] = ACTIONS(2663), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2661), + [aux_sym_pandoc_str_token1] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2661), + [sym__whitespace] = ACTIONS(2661), + [sym__line_ending] = ACTIONS(2661), + [sym__soft_line_ending] = ACTIONS(2661), + [sym__block_close] = ACTIONS(2661), + [sym__block_quote_start] = ACTIONS(2661), + [sym_atx_h1_marker] = ACTIONS(2661), + [sym_atx_h2_marker] = ACTIONS(2661), + [sym_atx_h3_marker] = ACTIONS(2661), + [sym_atx_h4_marker] = ACTIONS(2661), + [sym_atx_h5_marker] = ACTIONS(2661), + [sym_atx_h6_marker] = ACTIONS(2661), + [sym__thematic_break] = ACTIONS(2661), + [sym__list_marker_minus] = ACTIONS(2661), + [sym__list_marker_plus] = ACTIONS(2661), + [sym__list_marker_star] = ACTIONS(2661), + [sym__list_marker_parenthesis] = ACTIONS(2661), + [sym__list_marker_dot] = ACTIONS(2661), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_example] = ACTIONS(2661), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2661), + [sym__fenced_code_block_start_backtick] = ACTIONS(2661), + [sym__minus_metadata_start] = ACTIONS(2661), + [sym__pipe_table_start] = ACTIONS(2661), + [sym__fenced_div_start] = ACTIONS(2661), + [sym__fenced_div_end] = ACTIONS(2661), + [sym_ref_id_specifier] = ACTIONS(2661), + [sym__code_span_start] = ACTIONS(2661), + [sym__html_comment] = ACTIONS(2661), + [sym__autolink] = ACTIONS(2661), + [sym__highlight_span_start] = ACTIONS(2661), + [sym__insert_span_start] = ACTIONS(2661), + [sym__delete_span_start] = ACTIONS(2661), + [sym__edit_comment_span_start] = ACTIONS(2661), + [sym__single_quote_span_open] = ACTIONS(2661), + [sym__double_quote_span_open] = ACTIONS(2661), + [sym__shortcode_open_escaped] = ACTIONS(2661), + [sym__shortcode_open] = ACTIONS(2661), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2661), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2661), + [sym__cite_author_in_text] = ACTIONS(2661), + [sym__cite_suppress_author] = ACTIONS(2661), + [sym__strikeout_open] = ACTIONS(2661), + [sym__subscript_open] = ACTIONS(2661), + [sym__superscript_open] = ACTIONS(2661), + [sym__inline_note_start_token] = ACTIONS(2661), + [sym__strong_emphasis_open_star] = ACTIONS(2661), + [sym__strong_emphasis_open_underscore] = ACTIONS(2661), + [sym__emphasis_open_star] = ACTIONS(2661), + [sym__emphasis_open_underscore] = ACTIONS(2661), + [sym_inline_note_reference] = ACTIONS(2661), + [sym_html_element] = ACTIONS(2661), + [sym__pandoc_lt_str] = ACTIONS(2661), + [sym__pandoc_line_break] = ACTIONS(2661), + [sym_grid_table] = ACTIONS(2661), + [sym__caption_start] = ACTIONS(2661), }, - [STATE(289)] = { - [sym_entity_reference] = ACTIONS(2285), - [sym_numeric_character_reference] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_BANG_LBRACK] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [aux_sym_pandoc_str_token1] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2285), - [sym__whitespace] = ACTIONS(2285), - [sym__line_ending] = ACTIONS(2285), - [sym__soft_line_ending] = ACTIONS(2285), - [sym__block_close] = ACTIONS(2285), - [sym_block_continuation] = ACTIONS(2663), - [sym__block_quote_start] = ACTIONS(2285), - [sym_atx_h1_marker] = ACTIONS(2285), - [sym_atx_h2_marker] = ACTIONS(2285), - [sym_atx_h3_marker] = ACTIONS(2285), - [sym_atx_h4_marker] = ACTIONS(2285), - [sym_atx_h5_marker] = ACTIONS(2285), - [sym_atx_h6_marker] = ACTIONS(2285), - [sym__thematic_break] = ACTIONS(2285), - [sym__list_marker_minus] = ACTIONS(2285), - [sym__list_marker_plus] = ACTIONS(2285), - [sym__list_marker_star] = ACTIONS(2285), - [sym__list_marker_parenthesis] = ACTIONS(2285), - [sym__list_marker_dot] = ACTIONS(2285), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_example] = ACTIONS(2285), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2285), - [sym__fenced_code_block_start_backtick] = ACTIONS(2285), - [sym_minus_metadata] = ACTIONS(2285), - [sym__pipe_table_start] = ACTIONS(2285), - [sym__fenced_div_start] = ACTIONS(2285), - [sym_ref_id_specifier] = ACTIONS(2285), - [sym__code_span_start] = ACTIONS(2285), - [sym__html_comment] = ACTIONS(2285), - [sym__autolink] = ACTIONS(2285), - [sym__highlight_span_start] = ACTIONS(2285), - [sym__insert_span_start] = ACTIONS(2285), - [sym__delete_span_start] = ACTIONS(2285), - [sym__edit_comment_span_start] = ACTIONS(2285), - [sym__single_quote_span_open] = ACTIONS(2285), - [sym__double_quote_span_open] = ACTIONS(2285), - [sym__shortcode_open_escaped] = ACTIONS(2285), - [sym__shortcode_open] = ACTIONS(2285), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2285), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2285), - [sym__cite_author_in_text] = ACTIONS(2285), - [sym__cite_suppress_author] = ACTIONS(2285), - [sym__strikeout_open] = ACTIONS(2285), - [sym__subscript_open] = ACTIONS(2285), - [sym__superscript_open] = ACTIONS(2285), - [sym__inline_note_start_token] = ACTIONS(2285), - [sym__strong_emphasis_open_star] = ACTIONS(2285), - [sym__strong_emphasis_open_underscore] = ACTIONS(2285), - [sym__emphasis_open_star] = ACTIONS(2285), - [sym__emphasis_open_underscore] = ACTIONS(2285), - [sym_inline_note_reference] = ACTIONS(2285), - [sym_html_element] = ACTIONS(2285), - [sym__pandoc_lt_str] = ACTIONS(2285), - [sym__pandoc_line_break] = ACTIONS(2285), - [sym_grid_table] = ACTIONS(2285), - [sym__caption_start] = ACTIONS(2285), + [STATE(275)] = { + [sym_entity_reference] = ACTIONS(2665), + [sym_numeric_character_reference] = ACTIONS(2665), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_BANG_LBRACK] = ACTIONS(2665), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2665), + [aux_sym_pandoc_str_token1] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2665), + [sym__whitespace] = ACTIONS(2665), + [sym__line_ending] = ACTIONS(2665), + [sym__soft_line_ending] = ACTIONS(2665), + [sym__block_close] = ACTIONS(2665), + [sym__block_quote_start] = ACTIONS(2665), + [sym_atx_h1_marker] = ACTIONS(2665), + [sym_atx_h2_marker] = ACTIONS(2665), + [sym_atx_h3_marker] = ACTIONS(2665), + [sym_atx_h4_marker] = ACTIONS(2665), + [sym_atx_h5_marker] = ACTIONS(2665), + [sym_atx_h6_marker] = ACTIONS(2665), + [sym__thematic_break] = ACTIONS(2665), + [sym__list_marker_minus] = ACTIONS(2665), + [sym__list_marker_plus] = ACTIONS(2665), + [sym__list_marker_star] = ACTIONS(2665), + [sym__list_marker_parenthesis] = ACTIONS(2665), + [sym__list_marker_dot] = ACTIONS(2665), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_example] = ACTIONS(2665), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2665), + [sym__fenced_code_block_start_backtick] = ACTIONS(2665), + [sym__minus_metadata_start] = ACTIONS(2665), + [sym__pipe_table_start] = ACTIONS(2665), + [sym__fenced_div_start] = ACTIONS(2665), + [sym__fenced_div_end] = ACTIONS(2665), + [sym_ref_id_specifier] = ACTIONS(2665), + [sym__code_span_start] = ACTIONS(2665), + [sym__html_comment] = ACTIONS(2665), + [sym__autolink] = ACTIONS(2665), + [sym__highlight_span_start] = ACTIONS(2665), + [sym__insert_span_start] = ACTIONS(2665), + [sym__delete_span_start] = ACTIONS(2665), + [sym__edit_comment_span_start] = ACTIONS(2665), + [sym__single_quote_span_open] = ACTIONS(2665), + [sym__double_quote_span_open] = ACTIONS(2665), + [sym__shortcode_open_escaped] = ACTIONS(2665), + [sym__shortcode_open] = ACTIONS(2665), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2665), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2665), + [sym__cite_author_in_text] = ACTIONS(2665), + [sym__cite_suppress_author] = ACTIONS(2665), + [sym__strikeout_open] = ACTIONS(2665), + [sym__subscript_open] = ACTIONS(2665), + [sym__superscript_open] = ACTIONS(2665), + [sym__inline_note_start_token] = ACTIONS(2665), + [sym__strong_emphasis_open_star] = ACTIONS(2665), + [sym__strong_emphasis_open_underscore] = ACTIONS(2665), + [sym__emphasis_open_star] = ACTIONS(2665), + [sym__emphasis_open_underscore] = ACTIONS(2665), + [sym_inline_note_reference] = ACTIONS(2665), + [sym_html_element] = ACTIONS(2665), + [sym__pandoc_lt_str] = ACTIONS(2665), + [sym__pandoc_line_break] = ACTIONS(2665), + [sym_grid_table] = ACTIONS(2665), + [sym__caption_start] = ACTIONS(2665), }, - [STATE(290)] = { - [sym_entity_reference] = ACTIONS(2297), - [sym_numeric_character_reference] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_BANG_LBRACK] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [aux_sym_pandoc_str_token1] = ACTIONS(2299), - [anon_sym_PIPE] = ACTIONS(2297), - [sym__whitespace] = ACTIONS(2297), - [sym__line_ending] = ACTIONS(2297), - [sym__soft_line_ending] = ACTIONS(2297), - [sym__block_close] = ACTIONS(2297), - [sym_block_continuation] = ACTIONS(2665), - [sym__block_quote_start] = ACTIONS(2297), - [sym_atx_h1_marker] = ACTIONS(2297), - [sym_atx_h2_marker] = ACTIONS(2297), - [sym_atx_h3_marker] = ACTIONS(2297), - [sym_atx_h4_marker] = ACTIONS(2297), - [sym_atx_h5_marker] = ACTIONS(2297), - [sym_atx_h6_marker] = ACTIONS(2297), - [sym__thematic_break] = ACTIONS(2297), - [sym__list_marker_minus] = ACTIONS(2297), - [sym__list_marker_plus] = ACTIONS(2297), - [sym__list_marker_star] = ACTIONS(2297), - [sym__list_marker_parenthesis] = ACTIONS(2297), - [sym__list_marker_dot] = ACTIONS(2297), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_example] = ACTIONS(2297), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2297), - [sym__fenced_code_block_start_backtick] = ACTIONS(2297), - [sym_minus_metadata] = ACTIONS(2297), - [sym__pipe_table_start] = ACTIONS(2297), - [sym__fenced_div_start] = ACTIONS(2297), - [sym_ref_id_specifier] = ACTIONS(2297), - [sym__code_span_start] = ACTIONS(2297), - [sym__html_comment] = ACTIONS(2297), - [sym__autolink] = ACTIONS(2297), - [sym__highlight_span_start] = ACTIONS(2297), - [sym__insert_span_start] = ACTIONS(2297), - [sym__delete_span_start] = ACTIONS(2297), - [sym__edit_comment_span_start] = ACTIONS(2297), - [sym__single_quote_span_open] = ACTIONS(2297), - [sym__double_quote_span_open] = ACTIONS(2297), - [sym__shortcode_open_escaped] = ACTIONS(2297), - [sym__shortcode_open] = ACTIONS(2297), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2297), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2297), - [sym__cite_author_in_text] = ACTIONS(2297), - [sym__cite_suppress_author] = ACTIONS(2297), - [sym__strikeout_open] = ACTIONS(2297), - [sym__subscript_open] = ACTIONS(2297), - [sym__superscript_open] = ACTIONS(2297), - [sym__inline_note_start_token] = ACTIONS(2297), - [sym__strong_emphasis_open_star] = ACTIONS(2297), - [sym__strong_emphasis_open_underscore] = ACTIONS(2297), - [sym__emphasis_open_star] = ACTIONS(2297), - [sym__emphasis_open_underscore] = ACTIONS(2297), - [sym_inline_note_reference] = ACTIONS(2297), - [sym_html_element] = ACTIONS(2297), - [sym__pandoc_lt_str] = ACTIONS(2297), - [sym__pandoc_line_break] = ACTIONS(2297), - [sym_grid_table] = ACTIONS(2297), - [sym__caption_start] = ACTIONS(2297), + [STATE(276)] = { + [sym_entity_reference] = ACTIONS(2325), + [sym_numeric_character_reference] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_BANG_LBRACK] = ACTIONS(2325), + [anon_sym_DOLLAR] = ACTIONS(2327), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2325), + [aux_sym_pandoc_str_token1] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2325), + [sym__whitespace] = ACTIONS(2325), + [sym__line_ending] = ACTIONS(2325), + [sym__soft_line_ending] = ACTIONS(2325), + [sym__block_close] = ACTIONS(2325), + [sym__block_quote_start] = ACTIONS(2325), + [sym_atx_h1_marker] = ACTIONS(2325), + [sym_atx_h2_marker] = ACTIONS(2325), + [sym_atx_h3_marker] = ACTIONS(2325), + [sym_atx_h4_marker] = ACTIONS(2325), + [sym_atx_h5_marker] = ACTIONS(2325), + [sym_atx_h6_marker] = ACTIONS(2325), + [sym__thematic_break] = ACTIONS(2325), + [sym__list_marker_minus] = ACTIONS(2325), + [sym__list_marker_plus] = ACTIONS(2325), + [sym__list_marker_star] = ACTIONS(2325), + [sym__list_marker_parenthesis] = ACTIONS(2325), + [sym__list_marker_dot] = ACTIONS(2325), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_example] = ACTIONS(2325), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2325), + [sym__fenced_code_block_start_backtick] = ACTIONS(2325), + [sym__minus_metadata_start] = ACTIONS(2325), + [sym__pipe_table_start] = ACTIONS(2325), + [sym__fenced_div_start] = ACTIONS(2325), + [sym__fenced_div_end] = ACTIONS(2325), + [sym_ref_id_specifier] = ACTIONS(2325), + [sym__code_span_start] = ACTIONS(2325), + [sym__html_comment] = ACTIONS(2325), + [sym__autolink] = ACTIONS(2325), + [sym__highlight_span_start] = ACTIONS(2325), + [sym__insert_span_start] = ACTIONS(2325), + [sym__delete_span_start] = ACTIONS(2325), + [sym__edit_comment_span_start] = ACTIONS(2325), + [sym__single_quote_span_open] = ACTIONS(2325), + [sym__double_quote_span_open] = ACTIONS(2325), + [sym__shortcode_open_escaped] = ACTIONS(2325), + [sym__shortcode_open] = ACTIONS(2325), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2325), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2325), + [sym__cite_author_in_text] = ACTIONS(2325), + [sym__cite_suppress_author] = ACTIONS(2325), + [sym__strikeout_open] = ACTIONS(2325), + [sym__subscript_open] = ACTIONS(2325), + [sym__superscript_open] = ACTIONS(2325), + [sym__inline_note_start_token] = ACTIONS(2325), + [sym__strong_emphasis_open_star] = ACTIONS(2325), + [sym__strong_emphasis_open_underscore] = ACTIONS(2325), + [sym__emphasis_open_star] = ACTIONS(2325), + [sym__emphasis_open_underscore] = ACTIONS(2325), + [sym_inline_note_reference] = ACTIONS(2325), + [sym_html_element] = ACTIONS(2325), + [sym__pandoc_lt_str] = ACTIONS(2325), + [sym__pandoc_line_break] = ACTIONS(2325), + [sym_grid_table] = ACTIONS(2325), + [sym__caption_start] = ACTIONS(2325), }, - [STATE(291)] = { - [sym_entity_reference] = ACTIONS(2667), - [sym_numeric_character_reference] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_BANG_LBRACK] = ACTIONS(2667), - [anon_sym_DOLLAR] = ACTIONS(2669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2667), - [aux_sym_pandoc_str_token1] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2667), - [sym__whitespace] = ACTIONS(2667), - [sym__line_ending] = ACTIONS(2667), - [sym__soft_line_ending] = ACTIONS(2667), - [sym__block_close] = ACTIONS(2667), - [sym__block_quote_start] = ACTIONS(2667), - [sym_atx_h1_marker] = ACTIONS(2667), - [sym_atx_h2_marker] = ACTIONS(2667), - [sym_atx_h3_marker] = ACTIONS(2667), - [sym_atx_h4_marker] = ACTIONS(2667), - [sym_atx_h5_marker] = ACTIONS(2667), - [sym_atx_h6_marker] = ACTIONS(2667), - [sym__thematic_break] = ACTIONS(2667), - [sym__list_marker_minus] = ACTIONS(2667), - [sym__list_marker_plus] = ACTIONS(2667), - [sym__list_marker_star] = ACTIONS(2667), - [sym__list_marker_parenthesis] = ACTIONS(2667), - [sym__list_marker_dot] = ACTIONS(2667), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_example] = ACTIONS(2667), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2667), - [sym__fenced_code_block_start_backtick] = ACTIONS(2667), - [sym_minus_metadata] = ACTIONS(2667), - [sym__pipe_table_start] = ACTIONS(2667), - [sym__fenced_div_start] = ACTIONS(2667), - [sym__fenced_div_end] = ACTIONS(2667), - [sym_ref_id_specifier] = ACTIONS(2667), - [sym__code_span_start] = ACTIONS(2667), - [sym__html_comment] = ACTIONS(2667), - [sym__autolink] = ACTIONS(2667), - [sym__highlight_span_start] = ACTIONS(2667), - [sym__insert_span_start] = ACTIONS(2667), - [sym__delete_span_start] = ACTIONS(2667), - [sym__edit_comment_span_start] = ACTIONS(2667), - [sym__single_quote_span_open] = ACTIONS(2667), - [sym__double_quote_span_open] = ACTIONS(2667), - [sym__shortcode_open_escaped] = ACTIONS(2667), - [sym__shortcode_open] = ACTIONS(2667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2667), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2667), - [sym__cite_author_in_text] = ACTIONS(2667), - [sym__cite_suppress_author] = ACTIONS(2667), - [sym__strikeout_open] = ACTIONS(2667), - [sym__subscript_open] = ACTIONS(2667), - [sym__superscript_open] = ACTIONS(2667), - [sym__inline_note_start_token] = ACTIONS(2667), - [sym__strong_emphasis_open_star] = ACTIONS(2667), - [sym__strong_emphasis_open_underscore] = ACTIONS(2667), - [sym__emphasis_open_star] = ACTIONS(2667), - [sym__emphasis_open_underscore] = ACTIONS(2667), - [sym_inline_note_reference] = ACTIONS(2667), - [sym_html_element] = ACTIONS(2667), - [sym__pandoc_lt_str] = ACTIONS(2667), - [sym__pandoc_line_break] = ACTIONS(2667), - [sym_grid_table] = ACTIONS(2667), - [sym__caption_start] = ACTIONS(2667), + [STATE(277)] = { + [sym_entity_reference] = ACTIONS(2337), + [sym_numeric_character_reference] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_BANG_LBRACK] = ACTIONS(2337), + [anon_sym_DOLLAR] = ACTIONS(2339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [aux_sym_pandoc_str_token1] = ACTIONS(2339), + [anon_sym_PIPE] = ACTIONS(2337), + [sym__whitespace] = ACTIONS(2337), + [sym__line_ending] = ACTIONS(2337), + [sym__soft_line_ending] = ACTIONS(2337), + [sym__block_close] = ACTIONS(2337), + [sym__block_quote_start] = ACTIONS(2337), + [sym_atx_h1_marker] = ACTIONS(2337), + [sym_atx_h2_marker] = ACTIONS(2337), + [sym_atx_h3_marker] = ACTIONS(2337), + [sym_atx_h4_marker] = ACTIONS(2337), + [sym_atx_h5_marker] = ACTIONS(2337), + [sym_atx_h6_marker] = ACTIONS(2337), + [sym__thematic_break] = ACTIONS(2337), + [sym__list_marker_minus] = ACTIONS(2337), + [sym__list_marker_plus] = ACTIONS(2337), + [sym__list_marker_star] = ACTIONS(2337), + [sym__list_marker_parenthesis] = ACTIONS(2337), + [sym__list_marker_dot] = ACTIONS(2337), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_example] = ACTIONS(2337), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2337), + [sym__fenced_code_block_start_backtick] = ACTIONS(2337), + [sym__minus_metadata_start] = ACTIONS(2337), + [sym__pipe_table_start] = ACTIONS(2337), + [sym__fenced_div_start] = ACTIONS(2337), + [sym__fenced_div_end] = ACTIONS(2337), + [sym_ref_id_specifier] = ACTIONS(2337), + [sym__code_span_start] = ACTIONS(2337), + [sym__html_comment] = ACTIONS(2337), + [sym__autolink] = ACTIONS(2337), + [sym__highlight_span_start] = ACTIONS(2337), + [sym__insert_span_start] = ACTIONS(2337), + [sym__delete_span_start] = ACTIONS(2337), + [sym__edit_comment_span_start] = ACTIONS(2337), + [sym__single_quote_span_open] = ACTIONS(2337), + [sym__double_quote_span_open] = ACTIONS(2337), + [sym__shortcode_open_escaped] = ACTIONS(2337), + [sym__shortcode_open] = ACTIONS(2337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2337), + [sym__cite_author_in_text] = ACTIONS(2337), + [sym__cite_suppress_author] = ACTIONS(2337), + [sym__strikeout_open] = ACTIONS(2337), + [sym__subscript_open] = ACTIONS(2337), + [sym__superscript_open] = ACTIONS(2337), + [sym__inline_note_start_token] = ACTIONS(2337), + [sym__strong_emphasis_open_star] = ACTIONS(2337), + [sym__strong_emphasis_open_underscore] = ACTIONS(2337), + [sym__emphasis_open_star] = ACTIONS(2337), + [sym__emphasis_open_underscore] = ACTIONS(2337), + [sym_inline_note_reference] = ACTIONS(2337), + [sym_html_element] = ACTIONS(2337), + [sym__pandoc_lt_str] = ACTIONS(2337), + [sym__pandoc_line_break] = ACTIONS(2337), + [sym_grid_table] = ACTIONS(2337), + [sym__caption_start] = ACTIONS(2337), }, - [STATE(292)] = { - [sym__inlines] = STATE(3501), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1138), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(643), - [sym__inline_whitespace] = STATE(643), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2671), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2673), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2675), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [STATE(278)] = { + [sym_entity_reference] = ACTIONS(2367), + [sym_numeric_character_reference] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2367), + [anon_sym_BANG_LBRACK] = ACTIONS(2367), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [aux_sym_pandoc_str_token1] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2367), + [sym__whitespace] = ACTIONS(2367), + [sym__line_ending] = ACTIONS(2367), + [sym__soft_line_ending] = ACTIONS(2367), + [sym__block_close] = ACTIONS(2367), + [sym__block_quote_start] = ACTIONS(2367), + [sym_atx_h1_marker] = ACTIONS(2367), + [sym_atx_h2_marker] = ACTIONS(2367), + [sym_atx_h3_marker] = ACTIONS(2367), + [sym_atx_h4_marker] = ACTIONS(2367), + [sym_atx_h5_marker] = ACTIONS(2367), + [sym_atx_h6_marker] = ACTIONS(2367), + [sym__thematic_break] = ACTIONS(2367), + [sym__list_marker_minus] = ACTIONS(2367), + [sym__list_marker_plus] = ACTIONS(2367), + [sym__list_marker_star] = ACTIONS(2367), + [sym__list_marker_parenthesis] = ACTIONS(2367), + [sym__list_marker_dot] = ACTIONS(2367), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_example] = ACTIONS(2367), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2367), + [sym__fenced_code_block_start_backtick] = ACTIONS(2367), + [sym__minus_metadata_start] = ACTIONS(2367), + [sym__pipe_table_start] = ACTIONS(2367), + [sym__fenced_div_start] = ACTIONS(2367), + [sym__fenced_div_end] = ACTIONS(2367), + [sym_ref_id_specifier] = ACTIONS(2367), + [sym__code_span_start] = ACTIONS(2367), + [sym__html_comment] = ACTIONS(2367), + [sym__autolink] = ACTIONS(2367), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2367), + [sym__delete_span_start] = ACTIONS(2367), + [sym__edit_comment_span_start] = ACTIONS(2367), + [sym__single_quote_span_open] = ACTIONS(2367), + [sym__double_quote_span_open] = ACTIONS(2367), + [sym__shortcode_open_escaped] = ACTIONS(2367), + [sym__shortcode_open] = ACTIONS(2367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2367), + [sym__cite_author_in_text] = ACTIONS(2367), + [sym__cite_suppress_author] = ACTIONS(2367), + [sym__strikeout_open] = ACTIONS(2367), + [sym__subscript_open] = ACTIONS(2367), + [sym__superscript_open] = ACTIONS(2367), + [sym__inline_note_start_token] = ACTIONS(2367), + [sym__strong_emphasis_open_star] = ACTIONS(2367), + [sym__strong_emphasis_open_underscore] = ACTIONS(2367), + [sym__emphasis_open_star] = ACTIONS(2367), + [sym__emphasis_open_underscore] = ACTIONS(2367), + [sym_inline_note_reference] = ACTIONS(2367), + [sym_html_element] = ACTIONS(2367), + [sym__pandoc_lt_str] = ACTIONS(2367), + [sym__pandoc_line_break] = ACTIONS(2367), + [sym_grid_table] = ACTIONS(2367), + [sym__caption_start] = ACTIONS(2367), }, - [STATE(293)] = { - [sym__inlines] = STATE(3299), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1139), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(644), - [sym__inline_whitespace] = STATE(644), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2677), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2673), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2679), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [STATE(279)] = { + [sym_entity_reference] = ACTIONS(2373), + [sym_numeric_character_reference] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_BANG_LBRACK] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [aux_sym_pandoc_str_token1] = ACTIONS(2375), + [anon_sym_PIPE] = ACTIONS(2373), + [sym__whitespace] = ACTIONS(2373), + [sym__line_ending] = ACTIONS(2373), + [sym__soft_line_ending] = ACTIONS(2373), + [sym__block_close] = ACTIONS(2373), + [sym__block_quote_start] = ACTIONS(2373), + [sym_atx_h1_marker] = ACTIONS(2373), + [sym_atx_h2_marker] = ACTIONS(2373), + [sym_atx_h3_marker] = ACTIONS(2373), + [sym_atx_h4_marker] = ACTIONS(2373), + [sym_atx_h5_marker] = ACTIONS(2373), + [sym_atx_h6_marker] = ACTIONS(2373), + [sym__thematic_break] = ACTIONS(2373), + [sym__list_marker_minus] = ACTIONS(2373), + [sym__list_marker_plus] = ACTIONS(2373), + [sym__list_marker_star] = ACTIONS(2373), + [sym__list_marker_parenthesis] = ACTIONS(2373), + [sym__list_marker_dot] = ACTIONS(2373), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_example] = ACTIONS(2373), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2373), + [sym__fenced_code_block_start_backtick] = ACTIONS(2373), + [sym__minus_metadata_start] = ACTIONS(2373), + [sym__pipe_table_start] = ACTIONS(2373), + [sym__fenced_div_start] = ACTIONS(2373), + [sym__fenced_div_end] = ACTIONS(2373), + [sym_ref_id_specifier] = ACTIONS(2373), + [sym__code_span_start] = ACTIONS(2373), + [sym__html_comment] = ACTIONS(2373), + [sym__autolink] = ACTIONS(2373), + [sym__highlight_span_start] = ACTIONS(2373), + [sym__insert_span_start] = ACTIONS(2373), + [sym__delete_span_start] = ACTIONS(2373), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2373), + [sym__double_quote_span_open] = ACTIONS(2373), + [sym__shortcode_open_escaped] = ACTIONS(2373), + [sym__shortcode_open] = ACTIONS(2373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2373), + [sym__cite_author_in_text] = ACTIONS(2373), + [sym__cite_suppress_author] = ACTIONS(2373), + [sym__strikeout_open] = ACTIONS(2373), + [sym__subscript_open] = ACTIONS(2373), + [sym__superscript_open] = ACTIONS(2373), + [sym__inline_note_start_token] = ACTIONS(2373), + [sym__strong_emphasis_open_star] = ACTIONS(2373), + [sym__strong_emphasis_open_underscore] = ACTIONS(2373), + [sym__emphasis_open_star] = ACTIONS(2373), + [sym__emphasis_open_underscore] = ACTIONS(2373), + [sym_inline_note_reference] = ACTIONS(2373), + [sym_html_element] = ACTIONS(2373), + [sym__pandoc_lt_str] = ACTIONS(2373), + [sym__pandoc_line_break] = ACTIONS(2373), + [sym_grid_table] = ACTIONS(2373), + [sym__caption_start] = ACTIONS(2373), }, - [STATE(294)] = { + [STATE(280)] = { + [sym_entity_reference] = ACTIONS(2277), + [sym_numeric_character_reference] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_BANG_LBRACK] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2277), + [aux_sym_pandoc_str_token1] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2277), + [sym__whitespace] = ACTIONS(2277), + [sym__line_ending] = ACTIONS(2277), + [sym__soft_line_ending] = ACTIONS(2277), + [sym__block_close] = ACTIONS(2277), + [sym__block_quote_start] = ACTIONS(2277), + [sym_atx_h1_marker] = ACTIONS(2277), + [sym_atx_h2_marker] = ACTIONS(2277), + [sym_atx_h3_marker] = ACTIONS(2277), + [sym_atx_h4_marker] = ACTIONS(2277), + [sym_atx_h5_marker] = ACTIONS(2277), + [sym_atx_h6_marker] = ACTIONS(2277), + [sym__thematic_break] = ACTIONS(2277), + [sym__list_marker_minus] = ACTIONS(2277), + [sym__list_marker_plus] = ACTIONS(2277), + [sym__list_marker_star] = ACTIONS(2277), + [sym__list_marker_parenthesis] = ACTIONS(2277), + [sym__list_marker_dot] = ACTIONS(2277), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_example] = ACTIONS(2277), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2277), + [sym__fenced_code_block_start_backtick] = ACTIONS(2277), + [sym__minus_metadata_start] = ACTIONS(2277), + [sym__pipe_table_start] = ACTIONS(2277), + [sym__fenced_div_start] = ACTIONS(2277), + [sym__fenced_div_end] = ACTIONS(2277), + [sym_ref_id_specifier] = ACTIONS(2277), + [sym__code_span_start] = ACTIONS(2277), + [sym__html_comment] = ACTIONS(2277), + [sym__autolink] = ACTIONS(2277), + [sym__highlight_span_start] = ACTIONS(2277), + [sym__insert_span_start] = ACTIONS(2277), + [sym__delete_span_start] = ACTIONS(2277), + [sym__edit_comment_span_start] = ACTIONS(2277), + [sym__single_quote_span_open] = ACTIONS(2277), + [sym__double_quote_span_open] = ACTIONS(2277), + [sym__shortcode_open_escaped] = ACTIONS(2277), + [sym__shortcode_open] = ACTIONS(2277), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2277), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2277), + [sym__cite_author_in_text] = ACTIONS(2277), + [sym__cite_suppress_author] = ACTIONS(2277), + [sym__strikeout_open] = ACTIONS(2277), + [sym__subscript_open] = ACTIONS(2277), + [sym__superscript_open] = ACTIONS(2277), + [sym__inline_note_start_token] = ACTIONS(2277), + [sym__strong_emphasis_open_star] = ACTIONS(2277), + [sym__strong_emphasis_open_underscore] = ACTIONS(2277), + [sym__emphasis_open_star] = ACTIONS(2277), + [sym__emphasis_open_underscore] = ACTIONS(2277), + [sym_inline_note_reference] = ACTIONS(2277), + [sym_html_element] = ACTIONS(2277), + [sym__pandoc_lt_str] = ACTIONS(2277), + [sym__pandoc_line_break] = ACTIONS(2277), + [sym_grid_table] = ACTIONS(2277), + [sym__caption_start] = ACTIONS(2277), + }, + [STATE(281)] = { + [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), + [sym__whitespace] = ACTIONS(2385), + [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(2385), + [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(2385), + [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_start] = 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), + [sym__pandoc_lt_str] = ACTIONS(2385), + [sym__pandoc_line_break] = ACTIONS(2385), + [sym_grid_table] = ACTIONS(2385), + [sym__caption_start] = ACTIONS(2385), + }, + [STATE(282)] = { + [sym_entity_reference] = ACTIONS(2669), + [sym_numeric_character_reference] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_BANG_LBRACK] = ACTIONS(2669), + [anon_sym_DOLLAR] = ACTIONS(2671), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [aux_sym_pandoc_str_token1] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2669), + [sym__whitespace] = ACTIONS(2669), + [sym__line_ending] = ACTIONS(2669), + [sym__soft_line_ending] = ACTIONS(2669), + [sym__block_close] = ACTIONS(2669), + [sym__block_quote_start] = ACTIONS(2669), + [sym_atx_h1_marker] = ACTIONS(2669), + [sym_atx_h2_marker] = ACTIONS(2669), + [sym_atx_h3_marker] = ACTIONS(2669), + [sym_atx_h4_marker] = ACTIONS(2669), + [sym_atx_h5_marker] = ACTIONS(2669), + [sym_atx_h6_marker] = ACTIONS(2669), + [sym__thematic_break] = ACTIONS(2669), + [sym__list_marker_minus] = ACTIONS(2669), + [sym__list_marker_plus] = ACTIONS(2669), + [sym__list_marker_star] = ACTIONS(2669), + [sym__list_marker_parenthesis] = ACTIONS(2669), + [sym__list_marker_dot] = ACTIONS(2669), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_example] = ACTIONS(2669), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2669), + [sym__fenced_code_block_start_backtick] = ACTIONS(2669), + [sym__minus_metadata_start] = 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_lt_str] = ACTIONS(2669), + [sym__pandoc_line_break] = ACTIONS(2669), + [sym_grid_table] = ACTIONS(2669), + [sym__caption_start] = ACTIONS(2669), + }, + [STATE(283)] = { + [sym_entity_reference] = ACTIONS(2673), + [sym_numeric_character_reference] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_BANG_LBRACK] = ACTIONS(2673), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2673), + [aux_sym_pandoc_str_token1] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2673), + [sym__whitespace] = ACTIONS(2673), + [sym__line_ending] = ACTIONS(2673), + [sym__soft_line_ending] = ACTIONS(2673), + [sym__block_close] = ACTIONS(2673), + [sym__block_quote_start] = ACTIONS(2673), + [sym_atx_h1_marker] = ACTIONS(2673), + [sym_atx_h2_marker] = ACTIONS(2673), + [sym_atx_h3_marker] = ACTIONS(2673), + [sym_atx_h4_marker] = ACTIONS(2673), + [sym_atx_h5_marker] = ACTIONS(2673), + [sym_atx_h6_marker] = ACTIONS(2673), + [sym__thematic_break] = ACTIONS(2673), + [sym__list_marker_minus] = ACTIONS(2673), + [sym__list_marker_plus] = ACTIONS(2673), + [sym__list_marker_star] = ACTIONS(2673), + [sym__list_marker_parenthesis] = ACTIONS(2673), + [sym__list_marker_dot] = ACTIONS(2673), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_example] = ACTIONS(2673), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2673), + [sym__fenced_code_block_start_backtick] = ACTIONS(2673), + [sym__minus_metadata_start] = ACTIONS(2673), + [sym__pipe_table_start] = ACTIONS(2673), + [sym__fenced_div_start] = ACTIONS(2673), + [sym__fenced_div_end] = ACTIONS(2673), + [sym_ref_id_specifier] = ACTIONS(2673), + [sym__code_span_start] = ACTIONS(2673), + [sym__html_comment] = ACTIONS(2673), + [sym__autolink] = ACTIONS(2673), + [sym__highlight_span_start] = ACTIONS(2673), + [sym__insert_span_start] = ACTIONS(2673), + [sym__delete_span_start] = ACTIONS(2673), + [sym__edit_comment_span_start] = ACTIONS(2673), + [sym__single_quote_span_open] = ACTIONS(2673), + [sym__double_quote_span_open] = ACTIONS(2673), + [sym__shortcode_open_escaped] = ACTIONS(2673), + [sym__shortcode_open] = ACTIONS(2673), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2673), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2673), + [sym__cite_author_in_text] = ACTIONS(2673), + [sym__cite_suppress_author] = ACTIONS(2673), + [sym__strikeout_open] = ACTIONS(2673), + [sym__subscript_open] = ACTIONS(2673), + [sym__superscript_open] = ACTIONS(2673), + [sym__inline_note_start_token] = ACTIONS(2673), + [sym__strong_emphasis_open_star] = ACTIONS(2673), + [sym__strong_emphasis_open_underscore] = ACTIONS(2673), + [sym__emphasis_open_star] = ACTIONS(2673), + [sym__emphasis_open_underscore] = ACTIONS(2673), + [sym_inline_note_reference] = ACTIONS(2673), + [sym_html_element] = ACTIONS(2673), + [sym__pandoc_lt_str] = ACTIONS(2673), + [sym__pandoc_line_break] = ACTIONS(2673), + [sym_grid_table] = ACTIONS(2673), + [sym__caption_start] = ACTIONS(2673), + }, + [STATE(284)] = { + [sym_entity_reference] = ACTIONS(2677), + [sym_numeric_character_reference] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_BANG_LBRACK] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2677), + [aux_sym_pandoc_str_token1] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2677), + [sym__whitespace] = ACTIONS(2677), + [sym__line_ending] = ACTIONS(2677), + [sym__soft_line_ending] = ACTIONS(2677), + [sym__block_close] = ACTIONS(2677), + [sym__block_quote_start] = ACTIONS(2677), + [sym_atx_h1_marker] = ACTIONS(2677), + [sym_atx_h2_marker] = ACTIONS(2677), + [sym_atx_h3_marker] = ACTIONS(2677), + [sym_atx_h4_marker] = ACTIONS(2677), + [sym_atx_h5_marker] = ACTIONS(2677), + [sym_atx_h6_marker] = ACTIONS(2677), + [sym__thematic_break] = ACTIONS(2677), + [sym__list_marker_minus] = ACTIONS(2677), + [sym__list_marker_plus] = ACTIONS(2677), + [sym__list_marker_star] = ACTIONS(2677), + [sym__list_marker_parenthesis] = ACTIONS(2677), + [sym__list_marker_dot] = ACTIONS(2677), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_example] = ACTIONS(2677), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2677), + [sym__fenced_code_block_start_backtick] = ACTIONS(2677), + [sym__minus_metadata_start] = ACTIONS(2677), + [sym__pipe_table_start] = ACTIONS(2677), + [sym__fenced_div_start] = ACTIONS(2677), + [sym__fenced_div_end] = ACTIONS(2677), + [sym_ref_id_specifier] = ACTIONS(2677), + [sym__code_span_start] = ACTIONS(2677), + [sym__html_comment] = ACTIONS(2677), + [sym__autolink] = ACTIONS(2677), + [sym__highlight_span_start] = ACTIONS(2677), + [sym__insert_span_start] = ACTIONS(2677), + [sym__delete_span_start] = ACTIONS(2677), + [sym__edit_comment_span_start] = ACTIONS(2677), + [sym__single_quote_span_open] = ACTIONS(2677), + [sym__double_quote_span_open] = ACTIONS(2677), + [sym__shortcode_open_escaped] = ACTIONS(2677), + [sym__shortcode_open] = ACTIONS(2677), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2677), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2677), + [sym__cite_author_in_text] = ACTIONS(2677), + [sym__cite_suppress_author] = ACTIONS(2677), + [sym__strikeout_open] = ACTIONS(2677), + [sym__subscript_open] = ACTIONS(2677), + [sym__superscript_open] = ACTIONS(2677), + [sym__inline_note_start_token] = ACTIONS(2677), + [sym__strong_emphasis_open_star] = ACTIONS(2677), + [sym__strong_emphasis_open_underscore] = ACTIONS(2677), + [sym__emphasis_open_star] = ACTIONS(2677), + [sym__emphasis_open_underscore] = ACTIONS(2677), + [sym_inline_note_reference] = ACTIONS(2677), + [sym_html_element] = ACTIONS(2677), + [sym__pandoc_lt_str] = ACTIONS(2677), + [sym__pandoc_line_break] = ACTIONS(2677), + [sym_grid_table] = ACTIONS(2677), + [sym__caption_start] = ACTIONS(2677), + }, + [STATE(285)] = { [sym_entity_reference] = ACTIONS(2681), [sym_numeric_character_reference] = ACTIONS(2681), [anon_sym_LBRACK] = ACTIONS(2681), @@ -54333,7 +53911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__minus_metadata_start] = ACTIONS(2681), [sym__pipe_table_start] = ACTIONS(2681), [sym__fenced_div_start] = ACTIONS(2681), [sym__fenced_div_end] = ACTIONS(2681), @@ -54368,637 +53946,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2681), [sym__caption_start] = ACTIONS(2681), }, - [STATE(295)] = { - [sym_entity_reference] = ACTIONS(2347), - [sym_numeric_character_reference] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_BANG_LBRACK] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [aux_sym_pandoc_str_token1] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2347), - [sym__whitespace] = ACTIONS(2347), - [sym__line_ending] = ACTIONS(2347), - [sym__soft_line_ending] = ACTIONS(2347), - [sym__block_close] = ACTIONS(2347), - [sym_block_continuation] = ACTIONS(2685), - [sym__block_quote_start] = ACTIONS(2347), - [sym_atx_h1_marker] = ACTIONS(2347), - [sym_atx_h2_marker] = ACTIONS(2347), - [sym_atx_h3_marker] = ACTIONS(2347), - [sym_atx_h4_marker] = ACTIONS(2347), - [sym_atx_h5_marker] = ACTIONS(2347), - [sym_atx_h6_marker] = ACTIONS(2347), - [sym__thematic_break] = ACTIONS(2347), - [sym__list_marker_minus] = ACTIONS(2347), - [sym__list_marker_plus] = ACTIONS(2347), - [sym__list_marker_star] = ACTIONS(2347), - [sym__list_marker_parenthesis] = ACTIONS(2347), - [sym__list_marker_dot] = ACTIONS(2347), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_example] = ACTIONS(2347), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2347), - [sym__fenced_code_block_start_backtick] = ACTIONS(2347), - [sym_minus_metadata] = ACTIONS(2347), - [sym__pipe_table_start] = ACTIONS(2347), - [sym__fenced_div_start] = ACTIONS(2347), - [sym_ref_id_specifier] = ACTIONS(2347), - [sym__code_span_start] = ACTIONS(2347), - [sym__html_comment] = ACTIONS(2347), - [sym__autolink] = ACTIONS(2347), - [sym__highlight_span_start] = ACTIONS(2347), - [sym__insert_span_start] = ACTIONS(2347), - [sym__delete_span_start] = ACTIONS(2347), - [sym__edit_comment_span_start] = ACTIONS(2347), - [sym__single_quote_span_open] = ACTIONS(2347), - [sym__double_quote_span_open] = ACTIONS(2347), - [sym__shortcode_open_escaped] = ACTIONS(2347), - [sym__shortcode_open] = ACTIONS(2347), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2347), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2347), - [sym__cite_author_in_text] = ACTIONS(2347), - [sym__cite_suppress_author] = ACTIONS(2347), - [sym__strikeout_open] = ACTIONS(2347), - [sym__subscript_open] = ACTIONS(2347), - [sym__superscript_open] = ACTIONS(2347), - [sym__inline_note_start_token] = ACTIONS(2347), - [sym__strong_emphasis_open_star] = ACTIONS(2347), - [sym__strong_emphasis_open_underscore] = ACTIONS(2347), - [sym__emphasis_open_star] = ACTIONS(2347), - [sym__emphasis_open_underscore] = ACTIONS(2347), - [sym_inline_note_reference] = ACTIONS(2347), - [sym_html_element] = ACTIONS(2347), - [sym__pandoc_lt_str] = ACTIONS(2347), - [sym__pandoc_line_break] = ACTIONS(2347), - [sym_grid_table] = ACTIONS(2347), - [sym__caption_start] = ACTIONS(2347), - }, - [STATE(296)] = { - [sym_entity_reference] = ACTIONS(2225), - [sym_numeric_character_reference] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_BANG_LBRACK] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [aux_sym_pandoc_str_token1] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2225), - [sym__whitespace] = ACTIONS(2225), - [sym__line_ending] = ACTIONS(2225), - [sym__soft_line_ending] = ACTIONS(2225), - [sym__block_close] = ACTIONS(2225), - [sym_block_continuation] = ACTIONS(2687), - [sym__block_quote_start] = ACTIONS(2225), - [sym_atx_h1_marker] = ACTIONS(2225), - [sym_atx_h2_marker] = ACTIONS(2225), - [sym_atx_h3_marker] = ACTIONS(2225), - [sym_atx_h4_marker] = ACTIONS(2225), - [sym_atx_h5_marker] = ACTIONS(2225), - [sym_atx_h6_marker] = ACTIONS(2225), - [sym__thematic_break] = ACTIONS(2225), - [sym__list_marker_minus] = ACTIONS(2225), - [sym__list_marker_plus] = ACTIONS(2225), - [sym__list_marker_star] = ACTIONS(2225), - [sym__list_marker_parenthesis] = ACTIONS(2225), - [sym__list_marker_dot] = ACTIONS(2225), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_example] = ACTIONS(2225), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2225), - [sym__fenced_code_block_start_backtick] = ACTIONS(2225), - [sym_minus_metadata] = ACTIONS(2225), - [sym__pipe_table_start] = ACTIONS(2225), - [sym__fenced_div_start] = ACTIONS(2225), - [sym_ref_id_specifier] = ACTIONS(2225), - [sym__code_span_start] = ACTIONS(2225), - [sym__html_comment] = ACTIONS(2225), - [sym__autolink] = ACTIONS(2225), - [sym__highlight_span_start] = ACTIONS(2225), - [sym__insert_span_start] = ACTIONS(2225), - [sym__delete_span_start] = ACTIONS(2225), - [sym__edit_comment_span_start] = ACTIONS(2225), - [sym__single_quote_span_open] = ACTIONS(2225), - [sym__double_quote_span_open] = ACTIONS(2225), - [sym__shortcode_open_escaped] = ACTIONS(2225), - [sym__shortcode_open] = ACTIONS(2225), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2225), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2225), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2225), - [sym__strikeout_open] = ACTIONS(2225), - [sym__subscript_open] = ACTIONS(2225), - [sym__superscript_open] = ACTIONS(2225), - [sym__inline_note_start_token] = ACTIONS(2225), - [sym__strong_emphasis_open_star] = ACTIONS(2225), - [sym__strong_emphasis_open_underscore] = ACTIONS(2225), - [sym__emphasis_open_star] = ACTIONS(2225), - [sym__emphasis_open_underscore] = ACTIONS(2225), - [sym_inline_note_reference] = ACTIONS(2225), - [sym_html_element] = ACTIONS(2225), - [sym__pandoc_lt_str] = ACTIONS(2225), - [sym__pandoc_line_break] = ACTIONS(2225), - [sym_grid_table] = ACTIONS(2225), - [sym__caption_start] = ACTIONS(2225), + [STATE(286)] = { + [sym_entity_reference] = ACTIONS(2685), + [sym_numeric_character_reference] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_BANG_LBRACK] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [aux_sym_pandoc_str_token1] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2685), + [sym__whitespace] = ACTIONS(2685), + [sym__line_ending] = ACTIONS(2685), + [sym__soft_line_ending] = ACTIONS(2685), + [sym__block_close] = ACTIONS(2685), + [sym__block_quote_start] = ACTIONS(2685), + [sym_atx_h1_marker] = ACTIONS(2685), + [sym_atx_h2_marker] = ACTIONS(2685), + [sym_atx_h3_marker] = ACTIONS(2685), + [sym_atx_h4_marker] = ACTIONS(2685), + [sym_atx_h5_marker] = ACTIONS(2685), + [sym_atx_h6_marker] = ACTIONS(2685), + [sym__thematic_break] = ACTIONS(2685), + [sym__list_marker_minus] = ACTIONS(2685), + [sym__list_marker_plus] = ACTIONS(2685), + [sym__list_marker_star] = ACTIONS(2685), + [sym__list_marker_parenthesis] = ACTIONS(2685), + [sym__list_marker_dot] = ACTIONS(2685), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_example] = ACTIONS(2685), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2685), + [sym__fenced_code_block_start_backtick] = ACTIONS(2685), + [sym__minus_metadata_start] = ACTIONS(2685), + [sym__pipe_table_start] = ACTIONS(2685), + [sym__fenced_div_start] = ACTIONS(2685), + [sym__fenced_div_end] = ACTIONS(2685), + [sym_ref_id_specifier] = ACTIONS(2685), + [sym__code_span_start] = ACTIONS(2685), + [sym__html_comment] = ACTIONS(2685), + [sym__autolink] = ACTIONS(2685), + [sym__highlight_span_start] = ACTIONS(2685), + [sym__insert_span_start] = ACTIONS(2685), + [sym__delete_span_start] = ACTIONS(2685), + [sym__edit_comment_span_start] = ACTIONS(2685), + [sym__single_quote_span_open] = ACTIONS(2685), + [sym__double_quote_span_open] = ACTIONS(2685), + [sym__shortcode_open_escaped] = ACTIONS(2685), + [sym__shortcode_open] = ACTIONS(2685), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2685), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2685), + [sym__cite_author_in_text] = ACTIONS(2685), + [sym__cite_suppress_author] = ACTIONS(2685), + [sym__strikeout_open] = ACTIONS(2685), + [sym__subscript_open] = ACTIONS(2685), + [sym__superscript_open] = ACTIONS(2685), + [sym__inline_note_start_token] = ACTIONS(2685), + [sym__strong_emphasis_open_star] = ACTIONS(2685), + [sym__strong_emphasis_open_underscore] = ACTIONS(2685), + [sym__emphasis_open_star] = ACTIONS(2685), + [sym__emphasis_open_underscore] = ACTIONS(2685), + [sym_inline_note_reference] = ACTIONS(2685), + [sym_html_element] = ACTIONS(2685), + [sym__pandoc_lt_str] = ACTIONS(2685), + [sym__pandoc_line_break] = ACTIONS(2685), + [sym_grid_table] = ACTIONS(2685), + [sym__caption_start] = ACTIONS(2685), }, - [STATE(297)] = { - [sym_entity_reference] = ACTIONS(2231), - [sym_numeric_character_reference] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_BANG_LBRACK] = ACTIONS(2231), - [anon_sym_DOLLAR] = ACTIONS(2233), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [aux_sym_pandoc_str_token1] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2231), - [sym__whitespace] = ACTIONS(2231), - [sym__line_ending] = ACTIONS(2231), - [sym__soft_line_ending] = ACTIONS(2231), - [sym__block_close] = ACTIONS(2231), - [sym_block_continuation] = ACTIONS(2689), - [sym__block_quote_start] = ACTIONS(2231), - [sym_atx_h1_marker] = ACTIONS(2231), - [sym_atx_h2_marker] = ACTIONS(2231), - [sym_atx_h3_marker] = ACTIONS(2231), - [sym_atx_h4_marker] = ACTIONS(2231), - [sym_atx_h5_marker] = ACTIONS(2231), - [sym_atx_h6_marker] = ACTIONS(2231), - [sym__thematic_break] = ACTIONS(2231), - [sym__list_marker_minus] = ACTIONS(2231), - [sym__list_marker_plus] = ACTIONS(2231), - [sym__list_marker_star] = ACTIONS(2231), - [sym__list_marker_parenthesis] = ACTIONS(2231), - [sym__list_marker_dot] = ACTIONS(2231), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_example] = ACTIONS(2231), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2231), - [sym__fenced_code_block_start_backtick] = ACTIONS(2231), - [sym_minus_metadata] = ACTIONS(2231), - [sym__pipe_table_start] = ACTIONS(2231), - [sym__fenced_div_start] = ACTIONS(2231), - [sym_ref_id_specifier] = ACTIONS(2231), - [sym__code_span_start] = ACTIONS(2231), - [sym__html_comment] = ACTIONS(2231), - [sym__autolink] = ACTIONS(2231), - [sym__highlight_span_start] = ACTIONS(2231), - [sym__insert_span_start] = ACTIONS(2231), - [sym__delete_span_start] = ACTIONS(2231), - [sym__edit_comment_span_start] = ACTIONS(2231), - [sym__single_quote_span_open] = ACTIONS(2231), - [sym__double_quote_span_open] = ACTIONS(2231), - [sym__shortcode_open_escaped] = ACTIONS(2231), - [sym__shortcode_open] = ACTIONS(2231), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2231), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2231), - [sym__cite_author_in_text] = ACTIONS(2231), - [sym__cite_suppress_author] = ACTIONS(2231), - [sym__strikeout_open] = ACTIONS(2231), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2231), - [sym__inline_note_start_token] = ACTIONS(2231), - [sym__strong_emphasis_open_star] = ACTIONS(2231), - [sym__strong_emphasis_open_underscore] = ACTIONS(2231), - [sym__emphasis_open_star] = ACTIONS(2231), - [sym__emphasis_open_underscore] = ACTIONS(2231), - [sym_inline_note_reference] = ACTIONS(2231), - [sym_html_element] = ACTIONS(2231), - [sym__pandoc_lt_str] = ACTIONS(2231), - [sym__pandoc_line_break] = ACTIONS(2231), - [sym_grid_table] = ACTIONS(2231), - [sym__caption_start] = ACTIONS(2231), + [STATE(287)] = { + [sym_entity_reference] = ACTIONS(2689), + [sym_numeric_character_reference] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_BANG_LBRACK] = ACTIONS(2689), + [anon_sym_DOLLAR] = ACTIONS(2691), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [aux_sym_pandoc_str_token1] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2689), + [sym__whitespace] = ACTIONS(2689), + [sym__line_ending] = ACTIONS(2689), + [sym__soft_line_ending] = ACTIONS(2689), + [sym__block_close] = ACTIONS(2689), + [sym__block_quote_start] = ACTIONS(2689), + [sym_atx_h1_marker] = ACTIONS(2689), + [sym_atx_h2_marker] = ACTIONS(2689), + [sym_atx_h3_marker] = ACTIONS(2689), + [sym_atx_h4_marker] = ACTIONS(2689), + [sym_atx_h5_marker] = ACTIONS(2689), + [sym_atx_h6_marker] = ACTIONS(2689), + [sym__thematic_break] = ACTIONS(2689), + [sym__list_marker_minus] = ACTIONS(2689), + [sym__list_marker_plus] = ACTIONS(2689), + [sym__list_marker_star] = ACTIONS(2689), + [sym__list_marker_parenthesis] = ACTIONS(2689), + [sym__list_marker_dot] = ACTIONS(2689), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_example] = ACTIONS(2689), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2689), + [sym__fenced_code_block_start_backtick] = ACTIONS(2689), + [sym__minus_metadata_start] = ACTIONS(2689), + [sym__pipe_table_start] = ACTIONS(2689), + [sym__fenced_div_start] = ACTIONS(2689), + [sym__fenced_div_end] = ACTIONS(2689), + [sym_ref_id_specifier] = ACTIONS(2689), + [sym__code_span_start] = ACTIONS(2689), + [sym__html_comment] = ACTIONS(2689), + [sym__autolink] = ACTIONS(2689), + [sym__highlight_span_start] = ACTIONS(2689), + [sym__insert_span_start] = ACTIONS(2689), + [sym__delete_span_start] = ACTIONS(2689), + [sym__edit_comment_span_start] = ACTIONS(2689), + [sym__single_quote_span_open] = ACTIONS(2689), + [sym__double_quote_span_open] = ACTIONS(2689), + [sym__shortcode_open_escaped] = ACTIONS(2689), + [sym__shortcode_open] = ACTIONS(2689), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2689), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2689), + [sym__cite_author_in_text] = ACTIONS(2689), + [sym__cite_suppress_author] = ACTIONS(2689), + [sym__strikeout_open] = ACTIONS(2689), + [sym__subscript_open] = ACTIONS(2689), + [sym__superscript_open] = ACTIONS(2689), + [sym__inline_note_start_token] = ACTIONS(2689), + [sym__strong_emphasis_open_star] = ACTIONS(2689), + [sym__strong_emphasis_open_underscore] = ACTIONS(2689), + [sym__emphasis_open_star] = ACTIONS(2689), + [sym__emphasis_open_underscore] = ACTIONS(2689), + [sym_inline_note_reference] = ACTIONS(2689), + [sym_html_element] = ACTIONS(2689), + [sym__pandoc_lt_str] = ACTIONS(2689), + [sym__pandoc_line_break] = ACTIONS(2689), + [sym_grid_table] = ACTIONS(2689), + [sym__caption_start] = ACTIONS(2689), }, - [STATE(298)] = { - [sym_entity_reference] = ACTIONS(2291), - [sym_numeric_character_reference] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_BANG_LBRACK] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2293), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [aux_sym_pandoc_str_token1] = ACTIONS(2293), - [anon_sym_PIPE] = ACTIONS(2291), - [sym__whitespace] = ACTIONS(2291), - [sym__line_ending] = ACTIONS(2291), - [sym__soft_line_ending] = ACTIONS(2291), - [sym__block_close] = ACTIONS(2291), - [sym_block_continuation] = ACTIONS(2691), - [sym__block_quote_start] = ACTIONS(2291), - [sym_atx_h1_marker] = ACTIONS(2291), - [sym_atx_h2_marker] = ACTIONS(2291), - [sym_atx_h3_marker] = ACTIONS(2291), - [sym_atx_h4_marker] = ACTIONS(2291), - [sym_atx_h5_marker] = ACTIONS(2291), - [sym_atx_h6_marker] = ACTIONS(2291), - [sym__thematic_break] = ACTIONS(2291), - [sym__list_marker_minus] = ACTIONS(2291), - [sym__list_marker_plus] = ACTIONS(2291), - [sym__list_marker_star] = ACTIONS(2291), - [sym__list_marker_parenthesis] = ACTIONS(2291), - [sym__list_marker_dot] = ACTIONS(2291), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2291), - [sym__list_marker_example] = ACTIONS(2291), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2291), - [sym__fenced_code_block_start_backtick] = ACTIONS(2291), - [sym_minus_metadata] = ACTIONS(2291), - [sym__pipe_table_start] = ACTIONS(2291), - [sym__fenced_div_start] = ACTIONS(2291), - [sym_ref_id_specifier] = ACTIONS(2291), - [sym__code_span_start] = ACTIONS(2291), - [sym__html_comment] = ACTIONS(2291), - [sym__autolink] = ACTIONS(2291), - [sym__highlight_span_start] = ACTIONS(2291), - [sym__insert_span_start] = ACTIONS(2291), - [sym__delete_span_start] = ACTIONS(2291), - [sym__edit_comment_span_start] = ACTIONS(2291), - [sym__single_quote_span_open] = ACTIONS(2291), - [sym__double_quote_span_open] = ACTIONS(2291), - [sym__shortcode_open_escaped] = ACTIONS(2291), - [sym__shortcode_open] = ACTIONS(2291), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2291), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2291), - [sym__cite_author_in_text] = ACTIONS(2291), - [sym__cite_suppress_author] = ACTIONS(2291), - [sym__strikeout_open] = ACTIONS(2291), - [sym__subscript_open] = ACTIONS(2291), - [sym__superscript_open] = ACTIONS(2291), - [sym__inline_note_start_token] = ACTIONS(2291), - [sym__strong_emphasis_open_star] = ACTIONS(2291), - [sym__strong_emphasis_open_underscore] = ACTIONS(2291), - [sym__emphasis_open_star] = ACTIONS(2291), - [sym__emphasis_open_underscore] = ACTIONS(2291), - [sym_inline_note_reference] = ACTIONS(2291), - [sym_html_element] = ACTIONS(2291), - [sym__pandoc_lt_str] = ACTIONS(2291), - [sym__pandoc_line_break] = ACTIONS(2291), - [sym_grid_table] = ACTIONS(2291), - [sym__caption_start] = ACTIONS(2291), + [STATE(288)] = { + [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), + [sym__whitespace] = ACTIONS(2693), + [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_start] = 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_lt_str] = ACTIONS(2693), + [sym__pandoc_line_break] = ACTIONS(2693), + [sym_grid_table] = ACTIONS(2693), + [sym__caption_start] = ACTIONS(2693), }, - [STATE(299)] = { - [sym__inlines] = STATE(3444), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1071), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(632), - [sym__inline_whitespace] = STATE(632), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2693), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2695), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), + [STATE(289)] = { + [sym_entity_reference] = ACTIONS(2697), + [sym_numeric_character_reference] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_BANG_LBRACK] = ACTIONS(2697), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2697), + [aux_sym_pandoc_str_token1] = ACTIONS(2699), + [anon_sym_PIPE] = ACTIONS(2697), [sym__whitespace] = ACTIONS(2697), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), - }, - [STATE(300)] = { - [ts_builtin_sym_end] = ACTIONS(2309), - [sym_entity_reference] = ACTIONS(2309), - [sym_numeric_character_reference] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_BANG_LBRACK] = ACTIONS(2309), - [anon_sym_DOLLAR] = ACTIONS(2311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [aux_sym_pandoc_str_token1] = ACTIONS(2311), - [anon_sym_PIPE] = ACTIONS(2309), - [sym__whitespace] = ACTIONS(2309), - [sym__line_ending] = ACTIONS(2309), - [sym__soft_line_ending] = ACTIONS(2309), - [sym_block_continuation] = ACTIONS(2699), - [sym__block_quote_start] = ACTIONS(2309), - [sym_atx_h1_marker] = ACTIONS(2309), - [sym_atx_h2_marker] = ACTIONS(2309), - [sym_atx_h3_marker] = ACTIONS(2309), - [sym_atx_h4_marker] = ACTIONS(2309), - [sym_atx_h5_marker] = ACTIONS(2309), - [sym_atx_h6_marker] = ACTIONS(2309), - [sym__thematic_break] = ACTIONS(2309), - [sym__list_marker_minus] = ACTIONS(2309), - [sym__list_marker_plus] = ACTIONS(2309), - [sym__list_marker_star] = ACTIONS(2309), - [sym__list_marker_parenthesis] = ACTIONS(2309), - [sym__list_marker_dot] = ACTIONS(2309), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_example] = ACTIONS(2309), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2309), - [sym__fenced_code_block_start_backtick] = ACTIONS(2309), - [sym_minus_metadata] = ACTIONS(2309), - [sym__pipe_table_start] = ACTIONS(2309), - [sym__fenced_div_start] = ACTIONS(2309), - [sym_ref_id_specifier] = ACTIONS(2309), - [sym__code_span_start] = ACTIONS(2309), - [sym__html_comment] = ACTIONS(2309), - [sym__autolink] = ACTIONS(2309), - [sym__highlight_span_start] = ACTIONS(2309), - [sym__insert_span_start] = ACTIONS(2309), - [sym__delete_span_start] = ACTIONS(2309), - [sym__edit_comment_span_start] = ACTIONS(2309), - [sym__single_quote_span_open] = ACTIONS(2309), - [sym__double_quote_span_open] = ACTIONS(2309), - [sym__shortcode_open_escaped] = ACTIONS(2309), - [sym__shortcode_open] = ACTIONS(2309), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2309), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2309), - [sym__cite_author_in_text] = ACTIONS(2309), - [sym__cite_suppress_author] = ACTIONS(2309), - [sym__strikeout_open] = ACTIONS(2309), - [sym__subscript_open] = ACTIONS(2309), - [sym__superscript_open] = ACTIONS(2309), - [sym__inline_note_start_token] = ACTIONS(2309), - [sym__strong_emphasis_open_star] = ACTIONS(2309), - [sym__strong_emphasis_open_underscore] = ACTIONS(2309), - [sym__emphasis_open_star] = ACTIONS(2309), - [sym__emphasis_open_underscore] = ACTIONS(2309), - [sym_inline_note_reference] = ACTIONS(2309), - [sym_html_element] = ACTIONS(2309), - [sym__pandoc_lt_str] = ACTIONS(2309), - [sym__pandoc_line_break] = ACTIONS(2309), - [sym_grid_table] = ACTIONS(2309), - [sym__caption_start] = ACTIONS(2309), - }, - [STATE(301)] = { - [ts_builtin_sym_end] = ACTIONS(2347), - [sym_entity_reference] = ACTIONS(2347), - [sym_numeric_character_reference] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_BANG_LBRACK] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [aux_sym_pandoc_str_token1] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2347), - [sym__whitespace] = ACTIONS(2347), - [sym__line_ending] = ACTIONS(2347), - [sym__soft_line_ending] = ACTIONS(2347), - [sym_block_continuation] = ACTIONS(2701), - [sym__block_quote_start] = ACTIONS(2347), - [sym_atx_h1_marker] = ACTIONS(2347), - [sym_atx_h2_marker] = ACTIONS(2347), - [sym_atx_h3_marker] = ACTIONS(2347), - [sym_atx_h4_marker] = ACTIONS(2347), - [sym_atx_h5_marker] = ACTIONS(2347), - [sym_atx_h6_marker] = ACTIONS(2347), - [sym__thematic_break] = ACTIONS(2347), - [sym__list_marker_minus] = ACTIONS(2347), - [sym__list_marker_plus] = ACTIONS(2347), - [sym__list_marker_star] = ACTIONS(2347), - [sym__list_marker_parenthesis] = ACTIONS(2347), - [sym__list_marker_dot] = ACTIONS(2347), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_example] = ACTIONS(2347), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2347), - [sym__fenced_code_block_start_backtick] = ACTIONS(2347), - [sym_minus_metadata] = ACTIONS(2347), - [sym__pipe_table_start] = ACTIONS(2347), - [sym__fenced_div_start] = ACTIONS(2347), - [sym_ref_id_specifier] = ACTIONS(2347), - [sym__code_span_start] = ACTIONS(2347), - [sym__html_comment] = ACTIONS(2347), - [sym__autolink] = ACTIONS(2347), - [sym__highlight_span_start] = ACTIONS(2347), - [sym__insert_span_start] = ACTIONS(2347), - [sym__delete_span_start] = ACTIONS(2347), - [sym__edit_comment_span_start] = ACTIONS(2347), - [sym__single_quote_span_open] = ACTIONS(2347), - [sym__double_quote_span_open] = ACTIONS(2347), - [sym__shortcode_open_escaped] = ACTIONS(2347), - [sym__shortcode_open] = ACTIONS(2347), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2347), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2347), - [sym__cite_author_in_text] = ACTIONS(2347), - [sym__cite_suppress_author] = ACTIONS(2347), - [sym__strikeout_open] = ACTIONS(2347), - [sym__subscript_open] = ACTIONS(2347), - [sym__superscript_open] = ACTIONS(2347), - [sym__inline_note_start_token] = ACTIONS(2347), - [sym__strong_emphasis_open_star] = ACTIONS(2347), - [sym__strong_emphasis_open_underscore] = ACTIONS(2347), - [sym__emphasis_open_star] = ACTIONS(2347), - [sym__emphasis_open_underscore] = ACTIONS(2347), - [sym_inline_note_reference] = ACTIONS(2347), - [sym_html_element] = ACTIONS(2347), - [sym__pandoc_lt_str] = ACTIONS(2347), - [sym__pandoc_line_break] = ACTIONS(2347), - [sym_grid_table] = ACTIONS(2347), - [sym__caption_start] = ACTIONS(2347), + [sym__line_ending] = ACTIONS(2697), + [sym__soft_line_ending] = ACTIONS(2697), + [sym__block_close] = ACTIONS(2697), + [sym__block_quote_start] = ACTIONS(2697), + [sym_atx_h1_marker] = ACTIONS(2697), + [sym_atx_h2_marker] = ACTIONS(2697), + [sym_atx_h3_marker] = ACTIONS(2697), + [sym_atx_h4_marker] = ACTIONS(2697), + [sym_atx_h5_marker] = ACTIONS(2697), + [sym_atx_h6_marker] = ACTIONS(2697), + [sym__thematic_break] = ACTIONS(2697), + [sym__list_marker_minus] = ACTIONS(2697), + [sym__list_marker_plus] = ACTIONS(2697), + [sym__list_marker_star] = ACTIONS(2697), + [sym__list_marker_parenthesis] = ACTIONS(2697), + [sym__list_marker_dot] = ACTIONS(2697), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_example] = ACTIONS(2697), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2697), + [sym__fenced_code_block_start_backtick] = ACTIONS(2697), + [sym__minus_metadata_start] = ACTIONS(2697), + [sym__pipe_table_start] = ACTIONS(2697), + [sym__fenced_div_start] = ACTIONS(2697), + [sym__fenced_div_end] = ACTIONS(2697), + [sym_ref_id_specifier] = ACTIONS(2697), + [sym__code_span_start] = ACTIONS(2697), + [sym__html_comment] = ACTIONS(2697), + [sym__autolink] = ACTIONS(2697), + [sym__highlight_span_start] = ACTIONS(2697), + [sym__insert_span_start] = ACTIONS(2697), + [sym__delete_span_start] = ACTIONS(2697), + [sym__edit_comment_span_start] = ACTIONS(2697), + [sym__single_quote_span_open] = ACTIONS(2697), + [sym__double_quote_span_open] = ACTIONS(2697), + [sym__shortcode_open_escaped] = ACTIONS(2697), + [sym__shortcode_open] = ACTIONS(2697), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2697), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2697), + [sym__cite_author_in_text] = ACTIONS(2697), + [sym__cite_suppress_author] = ACTIONS(2697), + [sym__strikeout_open] = ACTIONS(2697), + [sym__subscript_open] = ACTIONS(2697), + [sym__superscript_open] = ACTIONS(2697), + [sym__inline_note_start_token] = ACTIONS(2697), + [sym__strong_emphasis_open_star] = ACTIONS(2697), + [sym__strong_emphasis_open_underscore] = ACTIONS(2697), + [sym__emphasis_open_star] = ACTIONS(2697), + [sym__emphasis_open_underscore] = ACTIONS(2697), + [sym_inline_note_reference] = ACTIONS(2697), + [sym_html_element] = ACTIONS(2697), + [sym__pandoc_lt_str] = ACTIONS(2697), + [sym__pandoc_line_break] = ACTIONS(2697), + [sym_grid_table] = ACTIONS(2697), + [sym__caption_start] = ACTIONS(2697), }, - [STATE(302)] = { - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_entity_reference] = ACTIONS(2225), - [sym_numeric_character_reference] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_BANG_LBRACK] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [aux_sym_pandoc_str_token1] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2225), - [sym__whitespace] = ACTIONS(2225), - [sym__line_ending] = ACTIONS(2225), - [sym__soft_line_ending] = ACTIONS(2225), - [sym_block_continuation] = ACTIONS(2703), - [sym__block_quote_start] = ACTIONS(2225), - [sym_atx_h1_marker] = ACTIONS(2225), - [sym_atx_h2_marker] = ACTIONS(2225), - [sym_atx_h3_marker] = ACTIONS(2225), - [sym_atx_h4_marker] = ACTIONS(2225), - [sym_atx_h5_marker] = ACTIONS(2225), - [sym_atx_h6_marker] = ACTIONS(2225), - [sym__thematic_break] = ACTIONS(2225), - [sym__list_marker_minus] = ACTIONS(2225), - [sym__list_marker_plus] = ACTIONS(2225), - [sym__list_marker_star] = ACTIONS(2225), - [sym__list_marker_parenthesis] = ACTIONS(2225), - [sym__list_marker_dot] = ACTIONS(2225), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_example] = ACTIONS(2225), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2225), - [sym__fenced_code_block_start_backtick] = ACTIONS(2225), - [sym_minus_metadata] = ACTIONS(2225), - [sym__pipe_table_start] = ACTIONS(2225), - [sym__fenced_div_start] = ACTIONS(2225), - [sym_ref_id_specifier] = ACTIONS(2225), - [sym__code_span_start] = ACTIONS(2225), - [sym__html_comment] = ACTIONS(2225), - [sym__autolink] = ACTIONS(2225), - [sym__highlight_span_start] = ACTIONS(2225), - [sym__insert_span_start] = ACTIONS(2225), - [sym__delete_span_start] = ACTIONS(2225), - [sym__edit_comment_span_start] = ACTIONS(2225), - [sym__single_quote_span_open] = ACTIONS(2225), - [sym__double_quote_span_open] = ACTIONS(2225), - [sym__shortcode_open_escaped] = ACTIONS(2225), - [sym__shortcode_open] = ACTIONS(2225), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2225), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2225), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2225), - [sym__strikeout_open] = ACTIONS(2225), - [sym__subscript_open] = ACTIONS(2225), - [sym__superscript_open] = ACTIONS(2225), - [sym__inline_note_start_token] = ACTIONS(2225), - [sym__strong_emphasis_open_star] = ACTIONS(2225), - [sym__strong_emphasis_open_underscore] = ACTIONS(2225), - [sym__emphasis_open_star] = ACTIONS(2225), - [sym__emphasis_open_underscore] = ACTIONS(2225), - [sym_inline_note_reference] = ACTIONS(2225), - [sym_html_element] = ACTIONS(2225), - [sym__pandoc_lt_str] = ACTIONS(2225), - [sym__pandoc_line_break] = ACTIONS(2225), - [sym_grid_table] = ACTIONS(2225), - [sym__caption_start] = ACTIONS(2225), + [STATE(290)] = { + [sym_entity_reference] = ACTIONS(2701), + [sym_numeric_character_reference] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_BANG_LBRACK] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2703), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2701), + [aux_sym_pandoc_str_token1] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2701), + [sym__whitespace] = ACTIONS(2701), + [sym__line_ending] = ACTIONS(2701), + [sym__soft_line_ending] = ACTIONS(2701), + [sym__block_close] = ACTIONS(2701), + [sym__block_quote_start] = ACTIONS(2701), + [sym_atx_h1_marker] = ACTIONS(2701), + [sym_atx_h2_marker] = ACTIONS(2701), + [sym_atx_h3_marker] = ACTIONS(2701), + [sym_atx_h4_marker] = ACTIONS(2701), + [sym_atx_h5_marker] = ACTIONS(2701), + [sym_atx_h6_marker] = ACTIONS(2701), + [sym__thematic_break] = ACTIONS(2701), + [sym__list_marker_minus] = ACTIONS(2701), + [sym__list_marker_plus] = ACTIONS(2701), + [sym__list_marker_star] = ACTIONS(2701), + [sym__list_marker_parenthesis] = ACTIONS(2701), + [sym__list_marker_dot] = ACTIONS(2701), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_example] = ACTIONS(2701), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2701), + [sym__fenced_code_block_start_backtick] = ACTIONS(2701), + [sym__minus_metadata_start] = ACTIONS(2701), + [sym__pipe_table_start] = ACTIONS(2701), + [sym__fenced_div_start] = ACTIONS(2701), + [sym__fenced_div_end] = ACTIONS(2701), + [sym_ref_id_specifier] = ACTIONS(2701), + [sym__code_span_start] = ACTIONS(2701), + [sym__html_comment] = ACTIONS(2701), + [sym__autolink] = ACTIONS(2701), + [sym__highlight_span_start] = ACTIONS(2701), + [sym__insert_span_start] = ACTIONS(2701), + [sym__delete_span_start] = ACTIONS(2701), + [sym__edit_comment_span_start] = ACTIONS(2701), + [sym__single_quote_span_open] = ACTIONS(2701), + [sym__double_quote_span_open] = ACTIONS(2701), + [sym__shortcode_open_escaped] = ACTIONS(2701), + [sym__shortcode_open] = ACTIONS(2701), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2701), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2701), + [sym__cite_author_in_text] = ACTIONS(2701), + [sym__cite_suppress_author] = ACTIONS(2701), + [sym__strikeout_open] = ACTIONS(2701), + [sym__subscript_open] = ACTIONS(2701), + [sym__superscript_open] = ACTIONS(2701), + [sym__inline_note_start_token] = ACTIONS(2701), + [sym__strong_emphasis_open_star] = ACTIONS(2701), + [sym__strong_emphasis_open_underscore] = ACTIONS(2701), + [sym__emphasis_open_star] = ACTIONS(2701), + [sym__emphasis_open_underscore] = ACTIONS(2701), + [sym_inline_note_reference] = ACTIONS(2701), + [sym_html_element] = ACTIONS(2701), + [sym__pandoc_lt_str] = ACTIONS(2701), + [sym__pandoc_line_break] = ACTIONS(2701), + [sym_grid_table] = ACTIONS(2701), + [sym__caption_start] = ACTIONS(2701), }, - [STATE(303)] = { - [ts_builtin_sym_end] = ACTIONS(2321), - [sym_entity_reference] = ACTIONS(2321), - [sym_numeric_character_reference] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_BANG_LBRACK] = ACTIONS(2321), - [anon_sym_DOLLAR] = ACTIONS(2323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [aux_sym_pandoc_str_token1] = ACTIONS(2323), - [anon_sym_PIPE] = ACTIONS(2321), + [STATE(291)] = { + [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), [sym__whitespace] = ACTIONS(2705), - [sym__line_ending] = ACTIONS(2321), - [sym__soft_line_ending] = ACTIONS(2321), - [sym_block_continuation] = ACTIONS(2707), - [sym__block_quote_start] = ACTIONS(2321), - [sym_atx_h1_marker] = ACTIONS(2321), - [sym_atx_h2_marker] = ACTIONS(2321), - [sym_atx_h3_marker] = ACTIONS(2321), - [sym_atx_h4_marker] = ACTIONS(2321), - [sym_atx_h5_marker] = ACTIONS(2321), - [sym_atx_h6_marker] = ACTIONS(2321), - [sym__thematic_break] = ACTIONS(2321), - [sym__list_marker_minus] = ACTIONS(2321), - [sym__list_marker_plus] = ACTIONS(2321), - [sym__list_marker_star] = ACTIONS(2321), - [sym__list_marker_parenthesis] = ACTIONS(2321), - [sym__list_marker_dot] = ACTIONS(2321), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2321), - [sym__list_marker_example] = ACTIONS(2321), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2321), - [sym__fenced_code_block_start_backtick] = ACTIONS(2321), - [sym_minus_metadata] = ACTIONS(2321), - [sym__pipe_table_start] = ACTIONS(2321), - [sym__fenced_div_start] = ACTIONS(2321), - [sym_ref_id_specifier] = ACTIONS(2321), - [sym__code_span_start] = ACTIONS(2321), - [sym__html_comment] = ACTIONS(2321), - [sym__autolink] = ACTIONS(2321), - [sym__highlight_span_start] = ACTIONS(2321), - [sym__insert_span_start] = ACTIONS(2321), - [sym__delete_span_start] = ACTIONS(2321), - [sym__edit_comment_span_start] = ACTIONS(2321), - [sym__single_quote_span_open] = ACTIONS(2321), - [sym__double_quote_span_open] = ACTIONS(2321), - [sym__shortcode_open_escaped] = ACTIONS(2321), - [sym__shortcode_open] = ACTIONS(2321), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2321), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2321), - [sym__cite_author_in_text] = ACTIONS(2321), - [sym__cite_suppress_author] = ACTIONS(2321), - [sym__strikeout_open] = ACTIONS(2321), - [sym__subscript_open] = ACTIONS(2321), - [sym__superscript_open] = ACTIONS(2321), - [sym__inline_note_start_token] = ACTIONS(2321), - [sym__strong_emphasis_open_star] = ACTIONS(2321), - [sym__strong_emphasis_open_underscore] = ACTIONS(2321), - [sym__emphasis_open_star] = ACTIONS(2321), - [sym__emphasis_open_underscore] = ACTIONS(2321), - [sym_inline_note_reference] = ACTIONS(2321), - [sym_html_element] = ACTIONS(2321), - [sym__pandoc_lt_str] = ACTIONS(2321), - [sym__pandoc_line_break] = ACTIONS(2321), - [sym_grid_table] = ACTIONS(2321), - [sym__caption_start] = ACTIONS(2321), + [sym__line_ending] = ACTIONS(2705), + [sym__soft_line_ending] = ACTIONS(2705), + [sym__block_close] = ACTIONS(2705), + [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_start] = 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_lt_str] = ACTIONS(2705), + [sym__pandoc_line_break] = ACTIONS(2705), + [sym_grid_table] = ACTIONS(2705), + [sym__caption_start] = ACTIONS(2705), }, - [STATE(304)] = { + [STATE(292)] = { [sym_entity_reference] = ACTIONS(2709), [sym_numeric_character_reference] = ACTIONS(2709), [anon_sym_LBRACK] = ACTIONS(2709), @@ -55033,7 +54401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2709), [sym__list_marker_example_dont_interrupt] = ACTIONS(2709), [sym__fenced_code_block_start_backtick] = ACTIONS(2709), - [sym_minus_metadata] = ACTIONS(2709), + [sym__minus_metadata_start] = ACTIONS(2709), [sym__pipe_table_start] = ACTIONS(2709), [sym__fenced_div_start] = ACTIONS(2709), [sym__fenced_div_end] = ACTIONS(2709), @@ -55068,3641 +54436,4067 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2709), [sym__caption_start] = ACTIONS(2709), }, + [STATE(293)] = { + [sym_entity_reference] = ACTIONS(2713), + [sym_numeric_character_reference] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_BANG_LBRACK] = ACTIONS(2713), + [anon_sym_DOLLAR] = ACTIONS(2715), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2713), + [aux_sym_pandoc_str_token1] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2713), + [sym__whitespace] = ACTIONS(2713), + [sym__line_ending] = ACTIONS(2713), + [sym__soft_line_ending] = ACTIONS(2713), + [sym__block_close] = ACTIONS(2713), + [sym__block_quote_start] = ACTIONS(2713), + [sym_atx_h1_marker] = ACTIONS(2713), + [sym_atx_h2_marker] = ACTIONS(2713), + [sym_atx_h3_marker] = ACTIONS(2713), + [sym_atx_h4_marker] = ACTIONS(2713), + [sym_atx_h5_marker] = ACTIONS(2713), + [sym_atx_h6_marker] = ACTIONS(2713), + [sym__thematic_break] = ACTIONS(2713), + [sym__list_marker_minus] = ACTIONS(2713), + [sym__list_marker_plus] = ACTIONS(2713), + [sym__list_marker_star] = ACTIONS(2713), + [sym__list_marker_parenthesis] = ACTIONS(2713), + [sym__list_marker_dot] = ACTIONS(2713), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_example] = ACTIONS(2713), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2713), + [sym__fenced_code_block_start_backtick] = ACTIONS(2713), + [sym__minus_metadata_start] = ACTIONS(2713), + [sym__pipe_table_start] = ACTIONS(2713), + [sym__fenced_div_start] = ACTIONS(2713), + [sym__fenced_div_end] = ACTIONS(2713), + [sym_ref_id_specifier] = ACTIONS(2713), + [sym__code_span_start] = ACTIONS(2713), + [sym__html_comment] = ACTIONS(2713), + [sym__autolink] = ACTIONS(2713), + [sym__highlight_span_start] = ACTIONS(2713), + [sym__insert_span_start] = ACTIONS(2713), + [sym__delete_span_start] = ACTIONS(2713), + [sym__edit_comment_span_start] = ACTIONS(2713), + [sym__single_quote_span_open] = ACTIONS(2713), + [sym__double_quote_span_open] = ACTIONS(2713), + [sym__shortcode_open_escaped] = ACTIONS(2713), + [sym__shortcode_open] = ACTIONS(2713), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2713), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2713), + [sym__cite_author_in_text] = ACTIONS(2713), + [sym__cite_suppress_author] = ACTIONS(2713), + [sym__strikeout_open] = ACTIONS(2713), + [sym__subscript_open] = ACTIONS(2713), + [sym__superscript_open] = ACTIONS(2713), + [sym__inline_note_start_token] = ACTIONS(2713), + [sym__strong_emphasis_open_star] = ACTIONS(2713), + [sym__strong_emphasis_open_underscore] = ACTIONS(2713), + [sym__emphasis_open_star] = ACTIONS(2713), + [sym__emphasis_open_underscore] = ACTIONS(2713), + [sym_inline_note_reference] = ACTIONS(2713), + [sym_html_element] = ACTIONS(2713), + [sym__pandoc_lt_str] = ACTIONS(2713), + [sym__pandoc_line_break] = ACTIONS(2713), + [sym_grid_table] = ACTIONS(2713), + [sym__caption_start] = ACTIONS(2713), + }, + [STATE(294)] = { + [sym_entity_reference] = ACTIONS(2717), + [sym_numeric_character_reference] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_BANG_LBRACK] = ACTIONS(2717), + [anon_sym_DOLLAR] = ACTIONS(2719), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2717), + [aux_sym_pandoc_str_token1] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2717), + [sym__whitespace] = ACTIONS(2717), + [sym__line_ending] = ACTIONS(2717), + [sym__soft_line_ending] = ACTIONS(2717), + [sym__block_close] = ACTIONS(2717), + [sym__block_quote_start] = ACTIONS(2717), + [sym_atx_h1_marker] = ACTIONS(2717), + [sym_atx_h2_marker] = ACTIONS(2717), + [sym_atx_h3_marker] = ACTIONS(2717), + [sym_atx_h4_marker] = ACTIONS(2717), + [sym_atx_h5_marker] = ACTIONS(2717), + [sym_atx_h6_marker] = ACTIONS(2717), + [sym__thematic_break] = ACTIONS(2717), + [sym__list_marker_minus] = ACTIONS(2717), + [sym__list_marker_plus] = ACTIONS(2717), + [sym__list_marker_star] = ACTIONS(2717), + [sym__list_marker_parenthesis] = ACTIONS(2717), + [sym__list_marker_dot] = ACTIONS(2717), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_example] = ACTIONS(2717), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2717), + [sym__fenced_code_block_start_backtick] = ACTIONS(2717), + [sym__minus_metadata_start] = ACTIONS(2717), + [sym__pipe_table_start] = ACTIONS(2717), + [sym__fenced_div_start] = ACTIONS(2717), + [sym__fenced_div_end] = ACTIONS(2717), + [sym_ref_id_specifier] = ACTIONS(2717), + [sym__code_span_start] = ACTIONS(2717), + [sym__html_comment] = ACTIONS(2717), + [sym__autolink] = ACTIONS(2717), + [sym__highlight_span_start] = ACTIONS(2717), + [sym__insert_span_start] = ACTIONS(2717), + [sym__delete_span_start] = ACTIONS(2717), + [sym__edit_comment_span_start] = ACTIONS(2717), + [sym__single_quote_span_open] = ACTIONS(2717), + [sym__double_quote_span_open] = ACTIONS(2717), + [sym__shortcode_open_escaped] = ACTIONS(2717), + [sym__shortcode_open] = ACTIONS(2717), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2717), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2717), + [sym__cite_author_in_text] = ACTIONS(2717), + [sym__cite_suppress_author] = ACTIONS(2717), + [sym__strikeout_open] = ACTIONS(2717), + [sym__subscript_open] = ACTIONS(2717), + [sym__superscript_open] = ACTIONS(2717), + [sym__inline_note_start_token] = ACTIONS(2717), + [sym__strong_emphasis_open_star] = ACTIONS(2717), + [sym__strong_emphasis_open_underscore] = ACTIONS(2717), + [sym__emphasis_open_star] = ACTIONS(2717), + [sym__emphasis_open_underscore] = ACTIONS(2717), + [sym_inline_note_reference] = ACTIONS(2717), + [sym_html_element] = ACTIONS(2717), + [sym__pandoc_lt_str] = ACTIONS(2717), + [sym__pandoc_line_break] = ACTIONS(2717), + [sym_grid_table] = ACTIONS(2717), + [sym__caption_start] = ACTIONS(2717), + }, + [STATE(295)] = { + [sym_entity_reference] = ACTIONS(2721), + [sym_numeric_character_reference] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_BANG_LBRACK] = ACTIONS(2721), + [anon_sym_DOLLAR] = ACTIONS(2723), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2721), + [aux_sym_pandoc_str_token1] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2721), + [sym__whitespace] = ACTIONS(2721), + [sym__line_ending] = ACTIONS(2721), + [sym__soft_line_ending] = ACTIONS(2721), + [sym__block_close] = ACTIONS(2721), + [sym__block_quote_start] = ACTIONS(2721), + [sym_atx_h1_marker] = ACTIONS(2721), + [sym_atx_h2_marker] = ACTIONS(2721), + [sym_atx_h3_marker] = ACTIONS(2721), + [sym_atx_h4_marker] = ACTIONS(2721), + [sym_atx_h5_marker] = ACTIONS(2721), + [sym_atx_h6_marker] = ACTIONS(2721), + [sym__thematic_break] = ACTIONS(2721), + [sym__list_marker_minus] = ACTIONS(2721), + [sym__list_marker_plus] = ACTIONS(2721), + [sym__list_marker_star] = ACTIONS(2721), + [sym__list_marker_parenthesis] = ACTIONS(2721), + [sym__list_marker_dot] = ACTIONS(2721), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_example] = ACTIONS(2721), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2721), + [sym__fenced_code_block_start_backtick] = ACTIONS(2721), + [sym__minus_metadata_start] = ACTIONS(2721), + [sym__pipe_table_start] = ACTIONS(2721), + [sym__fenced_div_start] = ACTIONS(2721), + [sym__fenced_div_end] = ACTIONS(2721), + [sym_ref_id_specifier] = ACTIONS(2721), + [sym__code_span_start] = ACTIONS(2721), + [sym__html_comment] = ACTIONS(2721), + [sym__autolink] = ACTIONS(2721), + [sym__highlight_span_start] = ACTIONS(2721), + [sym__insert_span_start] = ACTIONS(2721), + [sym__delete_span_start] = ACTIONS(2721), + [sym__edit_comment_span_start] = ACTIONS(2721), + [sym__single_quote_span_open] = ACTIONS(2721), + [sym__double_quote_span_open] = ACTIONS(2721), + [sym__shortcode_open_escaped] = ACTIONS(2721), + [sym__shortcode_open] = ACTIONS(2721), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2721), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2721), + [sym__cite_author_in_text] = ACTIONS(2721), + [sym__cite_suppress_author] = ACTIONS(2721), + [sym__strikeout_open] = ACTIONS(2721), + [sym__subscript_open] = ACTIONS(2721), + [sym__superscript_open] = ACTIONS(2721), + [sym__inline_note_start_token] = ACTIONS(2721), + [sym__strong_emphasis_open_star] = ACTIONS(2721), + [sym__strong_emphasis_open_underscore] = ACTIONS(2721), + [sym__emphasis_open_star] = ACTIONS(2721), + [sym__emphasis_open_underscore] = ACTIONS(2721), + [sym_inline_note_reference] = ACTIONS(2721), + [sym_html_element] = ACTIONS(2721), + [sym__pandoc_lt_str] = ACTIONS(2721), + [sym__pandoc_line_break] = ACTIONS(2721), + [sym_grid_table] = ACTIONS(2721), + [sym__caption_start] = ACTIONS(2721), + }, + [STATE(296)] = { + [sym_entity_reference] = ACTIONS(2725), + [sym_numeric_character_reference] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_BANG_LBRACK] = ACTIONS(2725), + [anon_sym_DOLLAR] = ACTIONS(2727), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2725), + [aux_sym_pandoc_str_token1] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2725), + [sym__whitespace] = ACTIONS(2725), + [sym__line_ending] = ACTIONS(2725), + [sym__soft_line_ending] = ACTIONS(2725), + [sym__block_close] = ACTIONS(2725), + [sym__block_quote_start] = ACTIONS(2725), + [sym_atx_h1_marker] = ACTIONS(2725), + [sym_atx_h2_marker] = ACTIONS(2725), + [sym_atx_h3_marker] = ACTIONS(2725), + [sym_atx_h4_marker] = ACTIONS(2725), + [sym_atx_h5_marker] = ACTIONS(2725), + [sym_atx_h6_marker] = ACTIONS(2725), + [sym__thematic_break] = ACTIONS(2725), + [sym__list_marker_minus] = ACTIONS(2725), + [sym__list_marker_plus] = ACTIONS(2725), + [sym__list_marker_star] = ACTIONS(2725), + [sym__list_marker_parenthesis] = ACTIONS(2725), + [sym__list_marker_dot] = ACTIONS(2725), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_example] = ACTIONS(2725), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2725), + [sym__fenced_code_block_start_backtick] = ACTIONS(2725), + [sym__minus_metadata_start] = ACTIONS(2725), + [sym__pipe_table_start] = ACTIONS(2725), + [sym__fenced_div_start] = ACTIONS(2725), + [sym__fenced_div_end] = ACTIONS(2725), + [sym_ref_id_specifier] = ACTIONS(2725), + [sym__code_span_start] = ACTIONS(2725), + [sym__html_comment] = ACTIONS(2725), + [sym__autolink] = ACTIONS(2725), + [sym__highlight_span_start] = ACTIONS(2725), + [sym__insert_span_start] = ACTIONS(2725), + [sym__delete_span_start] = ACTIONS(2725), + [sym__edit_comment_span_start] = ACTIONS(2725), + [sym__single_quote_span_open] = ACTIONS(2725), + [sym__double_quote_span_open] = ACTIONS(2725), + [sym__shortcode_open_escaped] = ACTIONS(2725), + [sym__shortcode_open] = ACTIONS(2725), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2725), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2725), + [sym__cite_author_in_text] = ACTIONS(2725), + [sym__cite_suppress_author] = ACTIONS(2725), + [sym__strikeout_open] = ACTIONS(2725), + [sym__subscript_open] = ACTIONS(2725), + [sym__superscript_open] = ACTIONS(2725), + [sym__inline_note_start_token] = ACTIONS(2725), + [sym__strong_emphasis_open_star] = ACTIONS(2725), + [sym__strong_emphasis_open_underscore] = ACTIONS(2725), + [sym__emphasis_open_star] = ACTIONS(2725), + [sym__emphasis_open_underscore] = ACTIONS(2725), + [sym_inline_note_reference] = ACTIONS(2725), + [sym_html_element] = ACTIONS(2725), + [sym__pandoc_lt_str] = ACTIONS(2725), + [sym__pandoc_line_break] = ACTIONS(2725), + [sym_grid_table] = ACTIONS(2725), + [sym__caption_start] = ACTIONS(2725), + }, + [STATE(297)] = { + [sym_entity_reference] = ACTIONS(2729), + [sym_numeric_character_reference] = ACTIONS(2729), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_BANG_LBRACK] = ACTIONS(2729), + [anon_sym_DOLLAR] = ACTIONS(2731), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2729), + [aux_sym_pandoc_str_token1] = ACTIONS(2731), + [anon_sym_PIPE] = ACTIONS(2729), + [sym__whitespace] = ACTIONS(2729), + [sym__line_ending] = ACTIONS(2729), + [sym__soft_line_ending] = ACTIONS(2729), + [sym__block_close] = ACTIONS(2729), + [sym__block_quote_start] = ACTIONS(2729), + [sym_atx_h1_marker] = ACTIONS(2729), + [sym_atx_h2_marker] = ACTIONS(2729), + [sym_atx_h3_marker] = ACTIONS(2729), + [sym_atx_h4_marker] = ACTIONS(2729), + [sym_atx_h5_marker] = ACTIONS(2729), + [sym_atx_h6_marker] = ACTIONS(2729), + [sym__thematic_break] = ACTIONS(2729), + [sym__list_marker_minus] = ACTIONS(2729), + [sym__list_marker_plus] = ACTIONS(2729), + [sym__list_marker_star] = ACTIONS(2729), + [sym__list_marker_parenthesis] = ACTIONS(2729), + [sym__list_marker_dot] = ACTIONS(2729), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_example] = ACTIONS(2729), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2729), + [sym__fenced_code_block_start_backtick] = ACTIONS(2729), + [sym__minus_metadata_start] = ACTIONS(2729), + [sym__pipe_table_start] = ACTIONS(2729), + [sym__fenced_div_start] = ACTIONS(2729), + [sym__fenced_div_end] = ACTIONS(2729), + [sym_ref_id_specifier] = ACTIONS(2729), + [sym__code_span_start] = ACTIONS(2729), + [sym__html_comment] = ACTIONS(2729), + [sym__autolink] = ACTIONS(2729), + [sym__highlight_span_start] = ACTIONS(2729), + [sym__insert_span_start] = ACTIONS(2729), + [sym__delete_span_start] = ACTIONS(2729), + [sym__edit_comment_span_start] = ACTIONS(2729), + [sym__single_quote_span_open] = ACTIONS(2729), + [sym__double_quote_span_open] = ACTIONS(2729), + [sym__shortcode_open_escaped] = ACTIONS(2729), + [sym__shortcode_open] = ACTIONS(2729), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2729), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2729), + [sym__cite_author_in_text] = ACTIONS(2729), + [sym__cite_suppress_author] = ACTIONS(2729), + [sym__strikeout_open] = ACTIONS(2729), + [sym__subscript_open] = ACTIONS(2729), + [sym__superscript_open] = ACTIONS(2729), + [sym__inline_note_start_token] = ACTIONS(2729), + [sym__strong_emphasis_open_star] = ACTIONS(2729), + [sym__strong_emphasis_open_underscore] = ACTIONS(2729), + [sym__emphasis_open_star] = ACTIONS(2729), + [sym__emphasis_open_underscore] = ACTIONS(2729), + [sym_inline_note_reference] = ACTIONS(2729), + [sym_html_element] = ACTIONS(2729), + [sym__pandoc_lt_str] = ACTIONS(2729), + [sym__pandoc_line_break] = ACTIONS(2729), + [sym_grid_table] = ACTIONS(2729), + [sym__caption_start] = ACTIONS(2729), + }, + [STATE(298)] = { + [sym_entity_reference] = ACTIONS(2733), + [sym_numeric_character_reference] = ACTIONS(2733), + [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_BANG_LBRACK] = ACTIONS(2733), + [anon_sym_DOLLAR] = ACTIONS(2735), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2733), + [aux_sym_pandoc_str_token1] = ACTIONS(2735), + [anon_sym_PIPE] = ACTIONS(2733), + [sym__whitespace] = ACTIONS(2733), + [sym__line_ending] = ACTIONS(2733), + [sym__soft_line_ending] = ACTIONS(2733), + [sym__block_close] = ACTIONS(2733), + [sym__block_quote_start] = ACTIONS(2733), + [sym_atx_h1_marker] = ACTIONS(2733), + [sym_atx_h2_marker] = ACTIONS(2733), + [sym_atx_h3_marker] = ACTIONS(2733), + [sym_atx_h4_marker] = ACTIONS(2733), + [sym_atx_h5_marker] = ACTIONS(2733), + [sym_atx_h6_marker] = ACTIONS(2733), + [sym__thematic_break] = ACTIONS(2733), + [sym__list_marker_minus] = ACTIONS(2733), + [sym__list_marker_plus] = ACTIONS(2733), + [sym__list_marker_star] = ACTIONS(2733), + [sym__list_marker_parenthesis] = ACTIONS(2733), + [sym__list_marker_dot] = ACTIONS(2733), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_example] = ACTIONS(2733), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2733), + [sym__fenced_code_block_start_backtick] = ACTIONS(2733), + [sym__minus_metadata_start] = ACTIONS(2733), + [sym__pipe_table_start] = ACTIONS(2733), + [sym__fenced_div_start] = ACTIONS(2733), + [sym__fenced_div_end] = ACTIONS(2733), + [sym_ref_id_specifier] = ACTIONS(2733), + [sym__code_span_start] = ACTIONS(2733), + [sym__html_comment] = ACTIONS(2733), + [sym__autolink] = ACTIONS(2733), + [sym__highlight_span_start] = ACTIONS(2733), + [sym__insert_span_start] = ACTIONS(2733), + [sym__delete_span_start] = ACTIONS(2733), + [sym__edit_comment_span_start] = ACTIONS(2733), + [sym__single_quote_span_open] = ACTIONS(2733), + [sym__double_quote_span_open] = ACTIONS(2733), + [sym__shortcode_open_escaped] = ACTIONS(2733), + [sym__shortcode_open] = ACTIONS(2733), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2733), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2733), + [sym__cite_author_in_text] = ACTIONS(2733), + [sym__cite_suppress_author] = ACTIONS(2733), + [sym__strikeout_open] = ACTIONS(2733), + [sym__subscript_open] = ACTIONS(2733), + [sym__superscript_open] = ACTIONS(2733), + [sym__inline_note_start_token] = ACTIONS(2733), + [sym__strong_emphasis_open_star] = ACTIONS(2733), + [sym__strong_emphasis_open_underscore] = ACTIONS(2733), + [sym__emphasis_open_star] = ACTIONS(2733), + [sym__emphasis_open_underscore] = ACTIONS(2733), + [sym_inline_note_reference] = ACTIONS(2733), + [sym_html_element] = ACTIONS(2733), + [sym__pandoc_lt_str] = ACTIONS(2733), + [sym__pandoc_line_break] = ACTIONS(2733), + [sym_grid_table] = ACTIONS(2733), + [sym__caption_start] = ACTIONS(2733), + }, + [STATE(299)] = { + [sym_entity_reference] = ACTIONS(2737), + [sym_numeric_character_reference] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_BANG_LBRACK] = ACTIONS(2737), + [anon_sym_DOLLAR] = ACTIONS(2739), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2737), + [aux_sym_pandoc_str_token1] = ACTIONS(2739), + [anon_sym_PIPE] = ACTIONS(2737), + [sym__whitespace] = ACTIONS(2737), + [sym__line_ending] = ACTIONS(2737), + [sym__soft_line_ending] = ACTIONS(2737), + [sym__block_close] = ACTIONS(2737), + [sym__block_quote_start] = ACTIONS(2737), + [sym_atx_h1_marker] = ACTIONS(2737), + [sym_atx_h2_marker] = ACTIONS(2737), + [sym_atx_h3_marker] = ACTIONS(2737), + [sym_atx_h4_marker] = ACTIONS(2737), + [sym_atx_h5_marker] = ACTIONS(2737), + [sym_atx_h6_marker] = ACTIONS(2737), + [sym__thematic_break] = ACTIONS(2737), + [sym__list_marker_minus] = ACTIONS(2737), + [sym__list_marker_plus] = ACTIONS(2737), + [sym__list_marker_star] = ACTIONS(2737), + [sym__list_marker_parenthesis] = ACTIONS(2737), + [sym__list_marker_dot] = ACTIONS(2737), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_example] = ACTIONS(2737), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2737), + [sym__fenced_code_block_start_backtick] = ACTIONS(2737), + [sym__minus_metadata_start] = ACTIONS(2737), + [sym__pipe_table_start] = ACTIONS(2737), + [sym__fenced_div_start] = ACTIONS(2737), + [sym__fenced_div_end] = ACTIONS(2737), + [sym_ref_id_specifier] = ACTIONS(2737), + [sym__code_span_start] = ACTIONS(2737), + [sym__html_comment] = ACTIONS(2737), + [sym__autolink] = ACTIONS(2737), + [sym__highlight_span_start] = ACTIONS(2737), + [sym__insert_span_start] = ACTIONS(2737), + [sym__delete_span_start] = ACTIONS(2737), + [sym__edit_comment_span_start] = ACTIONS(2737), + [sym__single_quote_span_open] = ACTIONS(2737), + [sym__double_quote_span_open] = ACTIONS(2737), + [sym__shortcode_open_escaped] = ACTIONS(2737), + [sym__shortcode_open] = ACTIONS(2737), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2737), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2737), + [sym__cite_author_in_text] = ACTIONS(2737), + [sym__cite_suppress_author] = ACTIONS(2737), + [sym__strikeout_open] = ACTIONS(2737), + [sym__subscript_open] = ACTIONS(2737), + [sym__superscript_open] = ACTIONS(2737), + [sym__inline_note_start_token] = ACTIONS(2737), + [sym__strong_emphasis_open_star] = ACTIONS(2737), + [sym__strong_emphasis_open_underscore] = ACTIONS(2737), + [sym__emphasis_open_star] = ACTIONS(2737), + [sym__emphasis_open_underscore] = ACTIONS(2737), + [sym_inline_note_reference] = ACTIONS(2737), + [sym_html_element] = ACTIONS(2737), + [sym__pandoc_lt_str] = ACTIONS(2737), + [sym__pandoc_line_break] = ACTIONS(2737), + [sym_grid_table] = ACTIONS(2737), + [sym__caption_start] = ACTIONS(2737), + }, + [STATE(300)] = { + [sym_entity_reference] = ACTIONS(2741), + [sym_numeric_character_reference] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_BANG_LBRACK] = ACTIONS(2741), + [anon_sym_DOLLAR] = ACTIONS(2743), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2741), + [aux_sym_pandoc_str_token1] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2741), + [sym__whitespace] = ACTIONS(2741), + [sym__line_ending] = ACTIONS(2741), + [sym__soft_line_ending] = ACTIONS(2741), + [sym__block_close] = ACTIONS(2741), + [sym__block_quote_start] = ACTIONS(2741), + [sym_atx_h1_marker] = ACTIONS(2741), + [sym_atx_h2_marker] = ACTIONS(2741), + [sym_atx_h3_marker] = ACTIONS(2741), + [sym_atx_h4_marker] = ACTIONS(2741), + [sym_atx_h5_marker] = ACTIONS(2741), + [sym_atx_h6_marker] = ACTIONS(2741), + [sym__thematic_break] = ACTIONS(2741), + [sym__list_marker_minus] = ACTIONS(2741), + [sym__list_marker_plus] = ACTIONS(2741), + [sym__list_marker_star] = ACTIONS(2741), + [sym__list_marker_parenthesis] = ACTIONS(2741), + [sym__list_marker_dot] = ACTIONS(2741), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_example] = ACTIONS(2741), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2741), + [sym__fenced_code_block_start_backtick] = ACTIONS(2741), + [sym__minus_metadata_start] = ACTIONS(2741), + [sym__pipe_table_start] = ACTIONS(2741), + [sym__fenced_div_start] = ACTIONS(2741), + [sym__fenced_div_end] = ACTIONS(2741), + [sym_ref_id_specifier] = ACTIONS(2741), + [sym__code_span_start] = ACTIONS(2741), + [sym__html_comment] = ACTIONS(2741), + [sym__autolink] = ACTIONS(2741), + [sym__highlight_span_start] = ACTIONS(2741), + [sym__insert_span_start] = ACTIONS(2741), + [sym__delete_span_start] = ACTIONS(2741), + [sym__edit_comment_span_start] = ACTIONS(2741), + [sym__single_quote_span_open] = ACTIONS(2741), + [sym__double_quote_span_open] = ACTIONS(2741), + [sym__shortcode_open_escaped] = ACTIONS(2741), + [sym__shortcode_open] = ACTIONS(2741), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2741), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2741), + [sym__cite_author_in_text] = ACTIONS(2741), + [sym__cite_suppress_author] = ACTIONS(2741), + [sym__strikeout_open] = ACTIONS(2741), + [sym__subscript_open] = ACTIONS(2741), + [sym__superscript_open] = ACTIONS(2741), + [sym__inline_note_start_token] = ACTIONS(2741), + [sym__strong_emphasis_open_star] = ACTIONS(2741), + [sym__strong_emphasis_open_underscore] = ACTIONS(2741), + [sym__emphasis_open_star] = ACTIONS(2741), + [sym__emphasis_open_underscore] = ACTIONS(2741), + [sym_inline_note_reference] = ACTIONS(2741), + [sym_html_element] = ACTIONS(2741), + [sym__pandoc_lt_str] = ACTIONS(2741), + [sym__pandoc_line_break] = ACTIONS(2741), + [sym_grid_table] = ACTIONS(2741), + [sym__caption_start] = ACTIONS(2741), + }, + [STATE(301)] = { + [sym_entity_reference] = ACTIONS(2745), + [sym_numeric_character_reference] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_BANG_LBRACK] = ACTIONS(2745), + [anon_sym_DOLLAR] = ACTIONS(2747), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [aux_sym_pandoc_str_token1] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2745), + [sym__whitespace] = ACTIONS(2745), + [sym__line_ending] = ACTIONS(2745), + [sym__soft_line_ending] = ACTIONS(2745), + [sym__block_close] = ACTIONS(2745), + [sym__block_quote_start] = ACTIONS(2745), + [sym_atx_h1_marker] = ACTIONS(2745), + [sym_atx_h2_marker] = ACTIONS(2745), + [sym_atx_h3_marker] = ACTIONS(2745), + [sym_atx_h4_marker] = ACTIONS(2745), + [sym_atx_h5_marker] = ACTIONS(2745), + [sym_atx_h6_marker] = ACTIONS(2745), + [sym__thematic_break] = ACTIONS(2745), + [sym__list_marker_minus] = ACTIONS(2745), + [sym__list_marker_plus] = ACTIONS(2745), + [sym__list_marker_star] = ACTIONS(2745), + [sym__list_marker_parenthesis] = ACTIONS(2745), + [sym__list_marker_dot] = ACTIONS(2745), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_example] = ACTIONS(2745), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2745), + [sym__fenced_code_block_start_backtick] = ACTIONS(2745), + [sym__minus_metadata_start] = ACTIONS(2745), + [sym__pipe_table_start] = ACTIONS(2745), + [sym__fenced_div_start] = ACTIONS(2745), + [sym__fenced_div_end] = ACTIONS(2745), + [sym_ref_id_specifier] = ACTIONS(2745), + [sym__code_span_start] = ACTIONS(2745), + [sym__html_comment] = ACTIONS(2745), + [sym__autolink] = ACTIONS(2745), + [sym__highlight_span_start] = ACTIONS(2745), + [sym__insert_span_start] = ACTIONS(2745), + [sym__delete_span_start] = ACTIONS(2745), + [sym__edit_comment_span_start] = ACTIONS(2745), + [sym__single_quote_span_open] = ACTIONS(2745), + [sym__double_quote_span_open] = ACTIONS(2745), + [sym__shortcode_open_escaped] = ACTIONS(2745), + [sym__shortcode_open] = ACTIONS(2745), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2745), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2745), + [sym__cite_author_in_text] = ACTIONS(2745), + [sym__cite_suppress_author] = ACTIONS(2745), + [sym__strikeout_open] = ACTIONS(2745), + [sym__subscript_open] = ACTIONS(2745), + [sym__superscript_open] = ACTIONS(2745), + [sym__inline_note_start_token] = ACTIONS(2745), + [sym__strong_emphasis_open_star] = ACTIONS(2745), + [sym__strong_emphasis_open_underscore] = ACTIONS(2745), + [sym__emphasis_open_star] = ACTIONS(2745), + [sym__emphasis_open_underscore] = ACTIONS(2745), + [sym_inline_note_reference] = ACTIONS(2745), + [sym_html_element] = ACTIONS(2745), + [sym__pandoc_lt_str] = ACTIONS(2745), + [sym__pandoc_line_break] = ACTIONS(2745), + [sym_grid_table] = ACTIONS(2745), + [sym__caption_start] = ACTIONS(2745), + }, + [STATE(302)] = { + [sym_entity_reference] = ACTIONS(2749), + [sym_numeric_character_reference] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_BANG_LBRACK] = ACTIONS(2749), + [anon_sym_DOLLAR] = ACTIONS(2751), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2749), + [aux_sym_pandoc_str_token1] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2749), + [sym__whitespace] = ACTIONS(2749), + [sym__line_ending] = ACTIONS(2749), + [sym__soft_line_ending] = ACTIONS(2749), + [sym__block_close] = ACTIONS(2749), + [sym__block_quote_start] = ACTIONS(2749), + [sym_atx_h1_marker] = ACTIONS(2749), + [sym_atx_h2_marker] = ACTIONS(2749), + [sym_atx_h3_marker] = ACTIONS(2749), + [sym_atx_h4_marker] = ACTIONS(2749), + [sym_atx_h5_marker] = ACTIONS(2749), + [sym_atx_h6_marker] = ACTIONS(2749), + [sym__thematic_break] = ACTIONS(2749), + [sym__list_marker_minus] = ACTIONS(2749), + [sym__list_marker_plus] = ACTIONS(2749), + [sym__list_marker_star] = ACTIONS(2749), + [sym__list_marker_parenthesis] = ACTIONS(2749), + [sym__list_marker_dot] = ACTIONS(2749), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_example] = ACTIONS(2749), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2749), + [sym__fenced_code_block_start_backtick] = ACTIONS(2749), + [sym__minus_metadata_start] = ACTIONS(2749), + [sym__pipe_table_start] = ACTIONS(2749), + [sym__fenced_div_start] = ACTIONS(2749), + [sym__fenced_div_end] = ACTIONS(2749), + [sym_ref_id_specifier] = ACTIONS(2749), + [sym__code_span_start] = ACTIONS(2749), + [sym__html_comment] = ACTIONS(2749), + [sym__autolink] = ACTIONS(2749), + [sym__highlight_span_start] = ACTIONS(2749), + [sym__insert_span_start] = ACTIONS(2749), + [sym__delete_span_start] = ACTIONS(2749), + [sym__edit_comment_span_start] = ACTIONS(2749), + [sym__single_quote_span_open] = ACTIONS(2749), + [sym__double_quote_span_open] = ACTIONS(2749), + [sym__shortcode_open_escaped] = ACTIONS(2749), + [sym__shortcode_open] = ACTIONS(2749), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2749), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2749), + [sym__cite_author_in_text] = ACTIONS(2749), + [sym__cite_suppress_author] = ACTIONS(2749), + [sym__strikeout_open] = ACTIONS(2749), + [sym__subscript_open] = ACTIONS(2749), + [sym__superscript_open] = ACTIONS(2749), + [sym__inline_note_start_token] = ACTIONS(2749), + [sym__strong_emphasis_open_star] = ACTIONS(2749), + [sym__strong_emphasis_open_underscore] = ACTIONS(2749), + [sym__emphasis_open_star] = ACTIONS(2749), + [sym__emphasis_open_underscore] = ACTIONS(2749), + [sym_inline_note_reference] = ACTIONS(2749), + [sym_html_element] = ACTIONS(2749), + [sym__pandoc_lt_str] = ACTIONS(2749), + [sym__pandoc_line_break] = ACTIONS(2749), + [sym_grid_table] = ACTIONS(2749), + [sym__caption_start] = ACTIONS(2749), + }, + [STATE(303)] = { + [sym_entity_reference] = ACTIONS(2753), + [sym_numeric_character_reference] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_BANG_LBRACK] = ACTIONS(2753), + [anon_sym_DOLLAR] = ACTIONS(2755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2753), + [aux_sym_pandoc_str_token1] = ACTIONS(2755), + [anon_sym_PIPE] = ACTIONS(2753), + [sym__whitespace] = ACTIONS(2753), + [sym__line_ending] = ACTIONS(2753), + [sym__soft_line_ending] = ACTIONS(2753), + [sym__block_close] = ACTIONS(2753), + [sym__block_quote_start] = ACTIONS(2753), + [sym_atx_h1_marker] = ACTIONS(2753), + [sym_atx_h2_marker] = ACTIONS(2753), + [sym_atx_h3_marker] = ACTIONS(2753), + [sym_atx_h4_marker] = ACTIONS(2753), + [sym_atx_h5_marker] = ACTIONS(2753), + [sym_atx_h6_marker] = ACTIONS(2753), + [sym__thematic_break] = ACTIONS(2753), + [sym__list_marker_minus] = ACTIONS(2753), + [sym__list_marker_plus] = ACTIONS(2753), + [sym__list_marker_star] = ACTIONS(2753), + [sym__list_marker_parenthesis] = ACTIONS(2753), + [sym__list_marker_dot] = ACTIONS(2753), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_example] = ACTIONS(2753), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2753), + [sym__fenced_code_block_start_backtick] = ACTIONS(2753), + [sym__minus_metadata_start] = ACTIONS(2753), + [sym__pipe_table_start] = ACTIONS(2753), + [sym__fenced_div_start] = ACTIONS(2753), + [sym__fenced_div_end] = ACTIONS(2753), + [sym_ref_id_specifier] = ACTIONS(2753), + [sym__code_span_start] = ACTIONS(2753), + [sym__html_comment] = ACTIONS(2753), + [sym__autolink] = ACTIONS(2753), + [sym__highlight_span_start] = ACTIONS(2753), + [sym__insert_span_start] = ACTIONS(2753), + [sym__delete_span_start] = ACTIONS(2753), + [sym__edit_comment_span_start] = ACTIONS(2753), + [sym__single_quote_span_open] = ACTIONS(2753), + [sym__double_quote_span_open] = ACTIONS(2753), + [sym__shortcode_open_escaped] = ACTIONS(2753), + [sym__shortcode_open] = ACTIONS(2753), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2753), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2753), + [sym__cite_author_in_text] = ACTIONS(2753), + [sym__cite_suppress_author] = ACTIONS(2753), + [sym__strikeout_open] = ACTIONS(2753), + [sym__subscript_open] = ACTIONS(2753), + [sym__superscript_open] = ACTIONS(2753), + [sym__inline_note_start_token] = ACTIONS(2753), + [sym__strong_emphasis_open_star] = ACTIONS(2753), + [sym__strong_emphasis_open_underscore] = ACTIONS(2753), + [sym__emphasis_open_star] = ACTIONS(2753), + [sym__emphasis_open_underscore] = ACTIONS(2753), + [sym_inline_note_reference] = ACTIONS(2753), + [sym_html_element] = ACTIONS(2753), + [sym__pandoc_lt_str] = ACTIONS(2753), + [sym__pandoc_line_break] = ACTIONS(2753), + [sym_grid_table] = ACTIONS(2753), + [sym__caption_start] = ACTIONS(2753), + }, + [STATE(304)] = { + [sym_entity_reference] = ACTIONS(2757), + [sym_numeric_character_reference] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_BANG_LBRACK] = ACTIONS(2757), + [anon_sym_DOLLAR] = ACTIONS(2759), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2757), + [aux_sym_pandoc_str_token1] = ACTIONS(2759), + [anon_sym_PIPE] = ACTIONS(2757), + [sym__whitespace] = ACTIONS(2757), + [sym__line_ending] = ACTIONS(2757), + [sym__soft_line_ending] = ACTIONS(2757), + [sym__block_close] = ACTIONS(2757), + [sym__block_quote_start] = ACTIONS(2757), + [sym_atx_h1_marker] = ACTIONS(2757), + [sym_atx_h2_marker] = ACTIONS(2757), + [sym_atx_h3_marker] = ACTIONS(2757), + [sym_atx_h4_marker] = ACTIONS(2757), + [sym_atx_h5_marker] = ACTIONS(2757), + [sym_atx_h6_marker] = ACTIONS(2757), + [sym__thematic_break] = ACTIONS(2757), + [sym__list_marker_minus] = ACTIONS(2757), + [sym__list_marker_plus] = ACTIONS(2757), + [sym__list_marker_star] = ACTIONS(2757), + [sym__list_marker_parenthesis] = ACTIONS(2757), + [sym__list_marker_dot] = ACTIONS(2757), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_example] = ACTIONS(2757), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2757), + [sym__fenced_code_block_start_backtick] = ACTIONS(2757), + [sym__minus_metadata_start] = ACTIONS(2757), + [sym__pipe_table_start] = ACTIONS(2757), + [sym__fenced_div_start] = ACTIONS(2757), + [sym__fenced_div_end] = ACTIONS(2757), + [sym_ref_id_specifier] = ACTIONS(2757), + [sym__code_span_start] = ACTIONS(2757), + [sym__html_comment] = ACTIONS(2757), + [sym__autolink] = ACTIONS(2757), + [sym__highlight_span_start] = ACTIONS(2757), + [sym__insert_span_start] = ACTIONS(2757), + [sym__delete_span_start] = ACTIONS(2757), + [sym__edit_comment_span_start] = ACTIONS(2757), + [sym__single_quote_span_open] = ACTIONS(2757), + [sym__double_quote_span_open] = ACTIONS(2757), + [sym__shortcode_open_escaped] = ACTIONS(2757), + [sym__shortcode_open] = ACTIONS(2757), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2757), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2757), + [sym__cite_author_in_text] = ACTIONS(2757), + [sym__cite_suppress_author] = ACTIONS(2757), + [sym__strikeout_open] = ACTIONS(2757), + [sym__subscript_open] = ACTIONS(2757), + [sym__superscript_open] = ACTIONS(2757), + [sym__inline_note_start_token] = ACTIONS(2757), + [sym__strong_emphasis_open_star] = ACTIONS(2757), + [sym__strong_emphasis_open_underscore] = ACTIONS(2757), + [sym__emphasis_open_star] = ACTIONS(2757), + [sym__emphasis_open_underscore] = ACTIONS(2757), + [sym_inline_note_reference] = ACTIONS(2757), + [sym_html_element] = ACTIONS(2757), + [sym__pandoc_lt_str] = ACTIONS(2757), + [sym__pandoc_line_break] = ACTIONS(2757), + [sym_grid_table] = ACTIONS(2757), + [sym__caption_start] = ACTIONS(2757), + }, [STATE(305)] = { - [sym_entity_reference] = ACTIONS(2309), - [sym_numeric_character_reference] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_BANG_LBRACK] = ACTIONS(2309), - [anon_sym_DOLLAR] = ACTIONS(2311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [aux_sym_pandoc_str_token1] = ACTIONS(2311), - [anon_sym_PIPE] = ACTIONS(2309), - [sym__whitespace] = ACTIONS(2309), - [sym__line_ending] = ACTIONS(2309), - [sym__soft_line_ending] = ACTIONS(2309), - [sym__block_close] = ACTIONS(2309), - [sym_block_continuation] = ACTIONS(2713), - [sym__block_quote_start] = ACTIONS(2309), - [sym_atx_h1_marker] = ACTIONS(2309), - [sym_atx_h2_marker] = ACTIONS(2309), - [sym_atx_h3_marker] = ACTIONS(2309), - [sym_atx_h4_marker] = ACTIONS(2309), - [sym_atx_h5_marker] = ACTIONS(2309), - [sym_atx_h6_marker] = ACTIONS(2309), - [sym__thematic_break] = ACTIONS(2309), - [sym__list_marker_minus] = ACTIONS(2309), - [sym__list_marker_plus] = ACTIONS(2309), - [sym__list_marker_star] = ACTIONS(2309), - [sym__list_marker_parenthesis] = ACTIONS(2309), - [sym__list_marker_dot] = ACTIONS(2309), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2309), - [sym__list_marker_example] = ACTIONS(2309), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2309), - [sym__fenced_code_block_start_backtick] = ACTIONS(2309), - [sym_minus_metadata] = ACTIONS(2309), - [sym__pipe_table_start] = ACTIONS(2309), - [sym__fenced_div_start] = ACTIONS(2309), - [sym_ref_id_specifier] = ACTIONS(2309), - [sym__code_span_start] = ACTIONS(2309), - [sym__html_comment] = ACTIONS(2309), - [sym__autolink] = ACTIONS(2309), - [sym__highlight_span_start] = ACTIONS(2309), - [sym__insert_span_start] = ACTIONS(2309), - [sym__delete_span_start] = ACTIONS(2309), - [sym__edit_comment_span_start] = ACTIONS(2309), - [sym__single_quote_span_open] = ACTIONS(2309), - [sym__double_quote_span_open] = ACTIONS(2309), - [sym__shortcode_open_escaped] = ACTIONS(2309), - [sym__shortcode_open] = ACTIONS(2309), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2309), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2309), - [sym__cite_author_in_text] = ACTIONS(2309), - [sym__cite_suppress_author] = ACTIONS(2309), - [sym__strikeout_open] = ACTIONS(2309), - [sym__subscript_open] = ACTIONS(2309), - [sym__superscript_open] = ACTIONS(2309), - [sym__inline_note_start_token] = ACTIONS(2309), - [sym__strong_emphasis_open_star] = ACTIONS(2309), - [sym__strong_emphasis_open_underscore] = ACTIONS(2309), - [sym__emphasis_open_star] = ACTIONS(2309), - [sym__emphasis_open_underscore] = ACTIONS(2309), - [sym_inline_note_reference] = ACTIONS(2309), - [sym_html_element] = ACTIONS(2309), - [sym__pandoc_lt_str] = ACTIONS(2309), - [sym__pandoc_line_break] = ACTIONS(2309), - [sym_grid_table] = ACTIONS(2309), - [sym__caption_start] = ACTIONS(2309), + [sym_entity_reference] = ACTIONS(2761), + [sym_numeric_character_reference] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_BANG_LBRACK] = ACTIONS(2761), + [anon_sym_DOLLAR] = ACTIONS(2763), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2761), + [aux_sym_pandoc_str_token1] = ACTIONS(2763), + [anon_sym_PIPE] = ACTIONS(2761), + [sym__whitespace] = ACTIONS(2761), + [sym__line_ending] = ACTIONS(2761), + [sym__soft_line_ending] = ACTIONS(2761), + [sym__block_close] = ACTIONS(2761), + [sym__block_quote_start] = ACTIONS(2761), + [sym_atx_h1_marker] = ACTIONS(2761), + [sym_atx_h2_marker] = ACTIONS(2761), + [sym_atx_h3_marker] = ACTIONS(2761), + [sym_atx_h4_marker] = ACTIONS(2761), + [sym_atx_h5_marker] = ACTIONS(2761), + [sym_atx_h6_marker] = ACTIONS(2761), + [sym__thematic_break] = ACTIONS(2761), + [sym__list_marker_minus] = ACTIONS(2761), + [sym__list_marker_plus] = ACTIONS(2761), + [sym__list_marker_star] = ACTIONS(2761), + [sym__list_marker_parenthesis] = ACTIONS(2761), + [sym__list_marker_dot] = ACTIONS(2761), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_example] = ACTIONS(2761), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2761), + [sym__fenced_code_block_start_backtick] = ACTIONS(2761), + [sym__minus_metadata_start] = ACTIONS(2761), + [sym__pipe_table_start] = ACTIONS(2761), + [sym__fenced_div_start] = ACTIONS(2761), + [sym__fenced_div_end] = ACTIONS(2761), + [sym_ref_id_specifier] = ACTIONS(2761), + [sym__code_span_start] = ACTIONS(2761), + [sym__html_comment] = ACTIONS(2761), + [sym__autolink] = ACTIONS(2761), + [sym__highlight_span_start] = ACTIONS(2761), + [sym__insert_span_start] = ACTIONS(2761), + [sym__delete_span_start] = ACTIONS(2761), + [sym__edit_comment_span_start] = ACTIONS(2761), + [sym__single_quote_span_open] = ACTIONS(2761), + [sym__double_quote_span_open] = ACTIONS(2761), + [sym__shortcode_open_escaped] = ACTIONS(2761), + [sym__shortcode_open] = ACTIONS(2761), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2761), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2761), + [sym__cite_author_in_text] = ACTIONS(2761), + [sym__cite_suppress_author] = ACTIONS(2761), + [sym__strikeout_open] = ACTIONS(2761), + [sym__subscript_open] = ACTIONS(2761), + [sym__superscript_open] = ACTIONS(2761), + [sym__inline_note_start_token] = ACTIONS(2761), + [sym__strong_emphasis_open_star] = ACTIONS(2761), + [sym__strong_emphasis_open_underscore] = ACTIONS(2761), + [sym__emphasis_open_star] = ACTIONS(2761), + [sym__emphasis_open_underscore] = ACTIONS(2761), + [sym_inline_note_reference] = ACTIONS(2761), + [sym_html_element] = ACTIONS(2761), + [sym__pandoc_lt_str] = ACTIONS(2761), + [sym__pandoc_line_break] = ACTIONS(2761), + [sym_grid_table] = ACTIONS(2761), + [sym__caption_start] = ACTIONS(2761), }, [STATE(306)] = { - [sym_entity_reference] = ACTIONS(2335), - [sym_numeric_character_reference] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_BANG_LBRACK] = ACTIONS(2335), - [anon_sym_DOLLAR] = ACTIONS(2337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [aux_sym_pandoc_str_token1] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2335), - [sym__whitespace] = ACTIONS(2335), - [sym__line_ending] = ACTIONS(2335), - [sym__soft_line_ending] = ACTIONS(2335), - [sym__block_close] = ACTIONS(2335), - [sym_block_continuation] = ACTIONS(2715), - [sym__block_quote_start] = ACTIONS(2335), - [sym_atx_h1_marker] = ACTIONS(2335), - [sym_atx_h2_marker] = ACTIONS(2335), - [sym_atx_h3_marker] = ACTIONS(2335), - [sym_atx_h4_marker] = ACTIONS(2335), - [sym_atx_h5_marker] = ACTIONS(2335), - [sym_atx_h6_marker] = ACTIONS(2335), - [sym__thematic_break] = ACTIONS(2335), - [sym__list_marker_minus] = ACTIONS(2335), - [sym__list_marker_plus] = ACTIONS(2335), - [sym__list_marker_star] = ACTIONS(2335), - [sym__list_marker_parenthesis] = ACTIONS(2335), - [sym__list_marker_dot] = ACTIONS(2335), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2335), - [sym__list_marker_example] = ACTIONS(2335), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2335), - [sym__fenced_code_block_start_backtick] = ACTIONS(2335), - [sym_minus_metadata] = ACTIONS(2335), - [sym__pipe_table_start] = ACTIONS(2335), - [sym__fenced_div_start] = ACTIONS(2335), - [sym_ref_id_specifier] = ACTIONS(2335), - [sym__code_span_start] = ACTIONS(2335), - [sym__html_comment] = ACTIONS(2335), - [sym__autolink] = ACTIONS(2335), - [sym__highlight_span_start] = ACTIONS(2335), - [sym__insert_span_start] = ACTIONS(2335), - [sym__delete_span_start] = ACTIONS(2335), - [sym__edit_comment_span_start] = ACTIONS(2335), - [sym__single_quote_span_open] = ACTIONS(2335), - [sym__double_quote_span_open] = ACTIONS(2335), - [sym__shortcode_open_escaped] = ACTIONS(2335), - [sym__shortcode_open] = ACTIONS(2335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2335), - [sym__cite_author_in_text] = ACTIONS(2335), - [sym__cite_suppress_author] = ACTIONS(2335), - [sym__strikeout_open] = ACTIONS(2335), - [sym__subscript_open] = ACTIONS(2335), - [sym__superscript_open] = ACTIONS(2335), - [sym__inline_note_start_token] = ACTIONS(2335), - [sym__strong_emphasis_open_star] = ACTIONS(2335), - [sym__strong_emphasis_open_underscore] = ACTIONS(2335), - [sym__emphasis_open_star] = ACTIONS(2335), - [sym__emphasis_open_underscore] = ACTIONS(2335), - [sym_inline_note_reference] = ACTIONS(2335), - [sym_html_element] = ACTIONS(2335), - [sym__pandoc_lt_str] = ACTIONS(2335), - [sym__pandoc_line_break] = ACTIONS(2335), - [sym_grid_table] = ACTIONS(2335), - [sym__caption_start] = ACTIONS(2335), + [sym_entity_reference] = ACTIONS(2765), + [sym_numeric_character_reference] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_BANG_LBRACK] = ACTIONS(2765), + [anon_sym_DOLLAR] = ACTIONS(2767), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2765), + [aux_sym_pandoc_str_token1] = ACTIONS(2767), + [anon_sym_PIPE] = ACTIONS(2765), + [sym__whitespace] = ACTIONS(2765), + [sym__line_ending] = ACTIONS(2765), + [sym__soft_line_ending] = ACTIONS(2765), + [sym__block_close] = ACTIONS(2765), + [sym__block_quote_start] = ACTIONS(2765), + [sym_atx_h1_marker] = ACTIONS(2765), + [sym_atx_h2_marker] = ACTIONS(2765), + [sym_atx_h3_marker] = ACTIONS(2765), + [sym_atx_h4_marker] = ACTIONS(2765), + [sym_atx_h5_marker] = ACTIONS(2765), + [sym_atx_h6_marker] = ACTIONS(2765), + [sym__thematic_break] = ACTIONS(2765), + [sym__list_marker_minus] = ACTIONS(2765), + [sym__list_marker_plus] = ACTIONS(2765), + [sym__list_marker_star] = ACTIONS(2765), + [sym__list_marker_parenthesis] = ACTIONS(2765), + [sym__list_marker_dot] = ACTIONS(2765), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_example] = ACTIONS(2765), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2765), + [sym__fenced_code_block_start_backtick] = ACTIONS(2765), + [sym__minus_metadata_start] = ACTIONS(2765), + [sym__pipe_table_start] = ACTIONS(2765), + [sym__fenced_div_start] = ACTIONS(2765), + [sym__fenced_div_end] = ACTIONS(2765), + [sym_ref_id_specifier] = ACTIONS(2765), + [sym__code_span_start] = ACTIONS(2765), + [sym__html_comment] = ACTIONS(2765), + [sym__autolink] = ACTIONS(2765), + [sym__highlight_span_start] = ACTIONS(2765), + [sym__insert_span_start] = ACTIONS(2765), + [sym__delete_span_start] = ACTIONS(2765), + [sym__edit_comment_span_start] = ACTIONS(2765), + [sym__single_quote_span_open] = ACTIONS(2765), + [sym__double_quote_span_open] = ACTIONS(2765), + [sym__shortcode_open_escaped] = ACTIONS(2765), + [sym__shortcode_open] = ACTIONS(2765), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2765), + [sym__cite_author_in_text] = ACTIONS(2765), + [sym__cite_suppress_author] = ACTIONS(2765), + [sym__strikeout_open] = ACTIONS(2765), + [sym__subscript_open] = ACTIONS(2765), + [sym__superscript_open] = ACTIONS(2765), + [sym__inline_note_start_token] = ACTIONS(2765), + [sym__strong_emphasis_open_star] = ACTIONS(2765), + [sym__strong_emphasis_open_underscore] = ACTIONS(2765), + [sym__emphasis_open_star] = ACTIONS(2765), + [sym__emphasis_open_underscore] = ACTIONS(2765), + [sym_inline_note_reference] = ACTIONS(2765), + [sym_html_element] = ACTIONS(2765), + [sym__pandoc_lt_str] = ACTIONS(2765), + [sym__pandoc_line_break] = ACTIONS(2765), + [sym_grid_table] = ACTIONS(2765), + [sym__caption_start] = ACTIONS(2765), }, [STATE(307)] = { - [sym_entity_reference] = ACTIONS(2237), - [sym_numeric_character_reference] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_BANG_LBRACK] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [aux_sym_pandoc_str_token1] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2237), - [sym__whitespace] = ACTIONS(2237), - [sym__line_ending] = ACTIONS(2237), - [sym__soft_line_ending] = ACTIONS(2237), - [sym__block_close] = ACTIONS(2237), - [sym_block_continuation] = ACTIONS(2717), - [sym__block_quote_start] = ACTIONS(2237), - [sym_atx_h1_marker] = ACTIONS(2237), - [sym_atx_h2_marker] = ACTIONS(2237), - [sym_atx_h3_marker] = ACTIONS(2237), - [sym_atx_h4_marker] = ACTIONS(2237), - [sym_atx_h5_marker] = ACTIONS(2237), - [sym_atx_h6_marker] = ACTIONS(2237), - [sym__thematic_break] = ACTIONS(2237), - [sym__list_marker_minus] = ACTIONS(2237), - [sym__list_marker_plus] = ACTIONS(2237), - [sym__list_marker_star] = ACTIONS(2237), - [sym__list_marker_parenthesis] = ACTIONS(2237), - [sym__list_marker_dot] = ACTIONS(2237), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_example] = ACTIONS(2237), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2237), - [sym__fenced_code_block_start_backtick] = ACTIONS(2237), - [sym_minus_metadata] = ACTIONS(2237), - [sym__pipe_table_start] = ACTIONS(2237), - [sym__fenced_div_start] = ACTIONS(2237), - [sym_ref_id_specifier] = ACTIONS(2237), - [sym__code_span_start] = ACTIONS(2237), - [sym__html_comment] = ACTIONS(2237), - [sym__autolink] = ACTIONS(2237), - [sym__highlight_span_start] = ACTIONS(2237), - [sym__insert_span_start] = ACTIONS(2237), - [sym__delete_span_start] = ACTIONS(2237), - [sym__edit_comment_span_start] = ACTIONS(2237), - [sym__single_quote_span_open] = ACTIONS(2237), - [sym__double_quote_span_open] = ACTIONS(2237), - [sym__shortcode_open_escaped] = ACTIONS(2237), - [sym__shortcode_open] = ACTIONS(2237), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2237), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), - [sym__cite_author_in_text] = ACTIONS(2237), - [sym__cite_suppress_author] = ACTIONS(2237), - [sym__strikeout_open] = ACTIONS(2237), - [sym__subscript_open] = ACTIONS(2237), - [sym__superscript_open] = ACTIONS(2237), - [sym__inline_note_start_token] = ACTIONS(2237), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2237), - [sym__emphasis_open_star] = ACTIONS(2237), - [sym__emphasis_open_underscore] = ACTIONS(2237), - [sym_inline_note_reference] = ACTIONS(2237), - [sym_html_element] = ACTIONS(2237), - [sym__pandoc_lt_str] = ACTIONS(2237), - [sym__pandoc_line_break] = ACTIONS(2237), - [sym_grid_table] = ACTIONS(2237), - [sym__caption_start] = ACTIONS(2237), + [sym_entity_reference] = ACTIONS(2769), + [sym_numeric_character_reference] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_BANG_LBRACK] = ACTIONS(2769), + [anon_sym_DOLLAR] = ACTIONS(2771), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2769), + [aux_sym_pandoc_str_token1] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2769), + [sym__whitespace] = ACTIONS(2769), + [sym__line_ending] = ACTIONS(2769), + [sym__soft_line_ending] = ACTIONS(2769), + [sym__block_close] = ACTIONS(2769), + [sym__block_quote_start] = ACTIONS(2769), + [sym_atx_h1_marker] = ACTIONS(2769), + [sym_atx_h2_marker] = ACTIONS(2769), + [sym_atx_h3_marker] = ACTIONS(2769), + [sym_atx_h4_marker] = ACTIONS(2769), + [sym_atx_h5_marker] = ACTIONS(2769), + [sym_atx_h6_marker] = ACTIONS(2769), + [sym__thematic_break] = ACTIONS(2769), + [sym__list_marker_minus] = ACTIONS(2769), + [sym__list_marker_plus] = ACTIONS(2769), + [sym__list_marker_star] = ACTIONS(2769), + [sym__list_marker_parenthesis] = ACTIONS(2769), + [sym__list_marker_dot] = ACTIONS(2769), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_example] = ACTIONS(2769), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2769), + [sym__fenced_code_block_start_backtick] = ACTIONS(2769), + [sym__minus_metadata_start] = ACTIONS(2769), + [sym__pipe_table_start] = ACTIONS(2769), + [sym__fenced_div_start] = ACTIONS(2769), + [sym__fenced_div_end] = ACTIONS(2769), + [sym_ref_id_specifier] = ACTIONS(2769), + [sym__code_span_start] = ACTIONS(2769), + [sym__html_comment] = ACTIONS(2769), + [sym__autolink] = ACTIONS(2769), + [sym__highlight_span_start] = ACTIONS(2769), + [sym__insert_span_start] = ACTIONS(2769), + [sym__delete_span_start] = ACTIONS(2769), + [sym__edit_comment_span_start] = ACTIONS(2769), + [sym__single_quote_span_open] = ACTIONS(2769), + [sym__double_quote_span_open] = ACTIONS(2769), + [sym__shortcode_open_escaped] = ACTIONS(2769), + [sym__shortcode_open] = ACTIONS(2769), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2769), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2769), + [sym__cite_author_in_text] = ACTIONS(2769), + [sym__cite_suppress_author] = ACTIONS(2769), + [sym__strikeout_open] = ACTIONS(2769), + [sym__subscript_open] = ACTIONS(2769), + [sym__superscript_open] = ACTIONS(2769), + [sym__inline_note_start_token] = ACTIONS(2769), + [sym__strong_emphasis_open_star] = ACTIONS(2769), + [sym__strong_emphasis_open_underscore] = ACTIONS(2769), + [sym__emphasis_open_star] = ACTIONS(2769), + [sym__emphasis_open_underscore] = ACTIONS(2769), + [sym_inline_note_reference] = ACTIONS(2769), + [sym_html_element] = ACTIONS(2769), + [sym__pandoc_lt_str] = ACTIONS(2769), + [sym__pandoc_line_break] = ACTIONS(2769), + [sym_grid_table] = ACTIONS(2769), + [sym__caption_start] = ACTIONS(2769), }, [STATE(308)] = { - [sym_entity_reference] = ACTIONS(2303), - [sym_numeric_character_reference] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_BANG_LBRACK] = ACTIONS(2303), - [anon_sym_DOLLAR] = ACTIONS(2305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [aux_sym_pandoc_str_token1] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2303), - [sym__whitespace] = ACTIONS(2303), - [sym__line_ending] = ACTIONS(2303), - [sym__soft_line_ending] = ACTIONS(2303), - [sym__block_close] = ACTIONS(2303), - [sym_block_continuation] = ACTIONS(2719), - [sym__block_quote_start] = ACTIONS(2303), - [sym_atx_h1_marker] = ACTIONS(2303), - [sym_atx_h2_marker] = ACTIONS(2303), - [sym_atx_h3_marker] = ACTIONS(2303), - [sym_atx_h4_marker] = ACTIONS(2303), - [sym_atx_h5_marker] = ACTIONS(2303), - [sym_atx_h6_marker] = ACTIONS(2303), - [sym__thematic_break] = ACTIONS(2303), - [sym__list_marker_minus] = ACTIONS(2303), - [sym__list_marker_plus] = ACTIONS(2303), - [sym__list_marker_star] = ACTIONS(2303), - [sym__list_marker_parenthesis] = ACTIONS(2303), - [sym__list_marker_dot] = ACTIONS(2303), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2303), - [sym__list_marker_example] = ACTIONS(2303), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2303), - [sym__fenced_code_block_start_backtick] = ACTIONS(2303), - [sym_minus_metadata] = ACTIONS(2303), - [sym__pipe_table_start] = ACTIONS(2303), - [sym__fenced_div_start] = ACTIONS(2303), - [sym_ref_id_specifier] = ACTIONS(2303), - [sym__code_span_start] = ACTIONS(2303), - [sym__html_comment] = ACTIONS(2303), - [sym__autolink] = ACTIONS(2303), - [sym__highlight_span_start] = ACTIONS(2303), - [sym__insert_span_start] = ACTIONS(2303), - [sym__delete_span_start] = ACTIONS(2303), - [sym__edit_comment_span_start] = ACTIONS(2303), - [sym__single_quote_span_open] = ACTIONS(2303), - [sym__double_quote_span_open] = ACTIONS(2303), - [sym__shortcode_open_escaped] = ACTIONS(2303), - [sym__shortcode_open] = ACTIONS(2303), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2303), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2303), - [sym__cite_author_in_text] = ACTIONS(2303), - [sym__cite_suppress_author] = ACTIONS(2303), - [sym__strikeout_open] = ACTIONS(2303), - [sym__subscript_open] = ACTIONS(2303), - [sym__superscript_open] = ACTIONS(2303), - [sym__inline_note_start_token] = ACTIONS(2303), - [sym__strong_emphasis_open_star] = ACTIONS(2303), - [sym__strong_emphasis_open_underscore] = ACTIONS(2303), - [sym__emphasis_open_star] = ACTIONS(2303), - [sym__emphasis_open_underscore] = ACTIONS(2303), - [sym_inline_note_reference] = ACTIONS(2303), - [sym_html_element] = ACTIONS(2303), - [sym__pandoc_lt_str] = ACTIONS(2303), - [sym__pandoc_line_break] = ACTIONS(2303), - [sym_grid_table] = ACTIONS(2303), - [sym__caption_start] = ACTIONS(2303), + [sym_entity_reference] = ACTIONS(2773), + [sym_numeric_character_reference] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_BANG_LBRACK] = ACTIONS(2773), + [anon_sym_DOLLAR] = ACTIONS(2775), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2773), + [aux_sym_pandoc_str_token1] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2773), + [sym__whitespace] = ACTIONS(2773), + [sym__line_ending] = ACTIONS(2773), + [sym__soft_line_ending] = ACTIONS(2773), + [sym__block_close] = ACTIONS(2773), + [sym__block_quote_start] = ACTIONS(2773), + [sym_atx_h1_marker] = ACTIONS(2773), + [sym_atx_h2_marker] = ACTIONS(2773), + [sym_atx_h3_marker] = ACTIONS(2773), + [sym_atx_h4_marker] = ACTIONS(2773), + [sym_atx_h5_marker] = ACTIONS(2773), + [sym_atx_h6_marker] = ACTIONS(2773), + [sym__thematic_break] = ACTIONS(2773), + [sym__list_marker_minus] = ACTIONS(2773), + [sym__list_marker_plus] = ACTIONS(2773), + [sym__list_marker_star] = ACTIONS(2773), + [sym__list_marker_parenthesis] = ACTIONS(2773), + [sym__list_marker_dot] = ACTIONS(2773), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_example] = ACTIONS(2773), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2773), + [sym__fenced_code_block_start_backtick] = ACTIONS(2773), + [sym__minus_metadata_start] = ACTIONS(2773), + [sym__pipe_table_start] = ACTIONS(2773), + [sym__fenced_div_start] = ACTIONS(2773), + [sym__fenced_div_end] = ACTIONS(2773), + [sym_ref_id_specifier] = ACTIONS(2773), + [sym__code_span_start] = ACTIONS(2773), + [sym__html_comment] = ACTIONS(2773), + [sym__autolink] = ACTIONS(2773), + [sym__highlight_span_start] = ACTIONS(2773), + [sym__insert_span_start] = ACTIONS(2773), + [sym__delete_span_start] = ACTIONS(2773), + [sym__edit_comment_span_start] = ACTIONS(2773), + [sym__single_quote_span_open] = ACTIONS(2773), + [sym__double_quote_span_open] = ACTIONS(2773), + [sym__shortcode_open_escaped] = ACTIONS(2773), + [sym__shortcode_open] = ACTIONS(2773), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2773), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2773), + [sym__cite_author_in_text] = ACTIONS(2773), + [sym__cite_suppress_author] = ACTIONS(2773), + [sym__strikeout_open] = ACTIONS(2773), + [sym__subscript_open] = ACTIONS(2773), + [sym__superscript_open] = ACTIONS(2773), + [sym__inline_note_start_token] = ACTIONS(2773), + [sym__strong_emphasis_open_star] = ACTIONS(2773), + [sym__strong_emphasis_open_underscore] = ACTIONS(2773), + [sym__emphasis_open_star] = ACTIONS(2773), + [sym__emphasis_open_underscore] = ACTIONS(2773), + [sym_inline_note_reference] = ACTIONS(2773), + [sym_html_element] = ACTIONS(2773), + [sym__pandoc_lt_str] = ACTIONS(2773), + [sym__pandoc_line_break] = ACTIONS(2773), + [sym_grid_table] = ACTIONS(2773), + [sym__caption_start] = ACTIONS(2773), }, [STATE(309)] = { - [sym_entity_reference] = ACTIONS(2329), - [sym_numeric_character_reference] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_BANG_LBRACK] = ACTIONS(2329), - [anon_sym_DOLLAR] = ACTIONS(2331), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2329), - [aux_sym_pandoc_str_token1] = ACTIONS(2331), - [anon_sym_PIPE] = ACTIONS(2329), - [sym__whitespace] = ACTIONS(2329), - [sym__line_ending] = ACTIONS(2329), - [sym__soft_line_ending] = ACTIONS(2329), - [sym__block_close] = ACTIONS(2329), - [sym_block_continuation] = ACTIONS(2721), - [sym__block_quote_start] = ACTIONS(2329), - [sym_atx_h1_marker] = ACTIONS(2329), - [sym_atx_h2_marker] = ACTIONS(2329), - [sym_atx_h3_marker] = ACTIONS(2329), - [sym_atx_h4_marker] = ACTIONS(2329), - [sym_atx_h5_marker] = ACTIONS(2329), - [sym_atx_h6_marker] = ACTIONS(2329), - [sym__thematic_break] = ACTIONS(2329), - [sym__list_marker_minus] = ACTIONS(2329), - [sym__list_marker_plus] = ACTIONS(2329), - [sym__list_marker_star] = ACTIONS(2329), - [sym__list_marker_parenthesis] = ACTIONS(2329), - [sym__list_marker_dot] = ACTIONS(2329), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_example] = ACTIONS(2329), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2329), - [sym__fenced_code_block_start_backtick] = ACTIONS(2329), - [sym_minus_metadata] = ACTIONS(2329), - [sym__pipe_table_start] = ACTIONS(2329), - [sym__fenced_div_start] = ACTIONS(2329), - [sym_ref_id_specifier] = ACTIONS(2329), - [sym__code_span_start] = ACTIONS(2329), - [sym__html_comment] = ACTIONS(2329), - [sym__autolink] = ACTIONS(2329), - [sym__highlight_span_start] = ACTIONS(2329), - [sym__insert_span_start] = ACTIONS(2329), - [sym__delete_span_start] = ACTIONS(2329), - [sym__edit_comment_span_start] = ACTIONS(2329), - [sym__single_quote_span_open] = ACTIONS(2329), - [sym__double_quote_span_open] = ACTIONS(2329), - [sym__shortcode_open_escaped] = ACTIONS(2329), - [sym__shortcode_open] = ACTIONS(2329), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2329), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2329), - [sym__cite_author_in_text] = ACTIONS(2329), - [sym__cite_suppress_author] = ACTIONS(2329), - [sym__strikeout_open] = ACTIONS(2329), - [sym__subscript_open] = ACTIONS(2329), - [sym__superscript_open] = ACTIONS(2329), - [sym__inline_note_start_token] = ACTIONS(2329), - [sym__strong_emphasis_open_star] = ACTIONS(2329), - [sym__strong_emphasis_open_underscore] = ACTIONS(2329), - [sym__emphasis_open_star] = ACTIONS(2329), - [sym__emphasis_open_underscore] = ACTIONS(2329), - [sym_inline_note_reference] = ACTIONS(2329), - [sym_html_element] = ACTIONS(2329), - [sym__pandoc_lt_str] = ACTIONS(2329), - [sym__pandoc_line_break] = ACTIONS(2329), - [sym_grid_table] = ACTIONS(2329), - [sym__caption_start] = ACTIONS(2329), + [sym__inlines] = STATE(3325), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1078), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(650), + [sym__inline_whitespace] = STATE(650), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2777), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2779), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2781), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(310)] = { - [sym_entity_reference] = ACTIONS(2213), - [sym_numeric_character_reference] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_BANG_LBRACK] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2215), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [aux_sym_pandoc_str_token1] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2213), - [sym__whitespace] = ACTIONS(2213), - [sym__line_ending] = ACTIONS(2213), - [sym__soft_line_ending] = ACTIONS(2213), - [sym__block_close] = ACTIONS(2213), - [sym__block_quote_start] = ACTIONS(2213), - [sym_atx_h1_marker] = ACTIONS(2213), - [sym_atx_h2_marker] = ACTIONS(2213), - [sym_atx_h3_marker] = ACTIONS(2213), - [sym_atx_h4_marker] = ACTIONS(2213), - [sym_atx_h5_marker] = ACTIONS(2213), - [sym_atx_h6_marker] = ACTIONS(2213), - [sym__thematic_break] = ACTIONS(2213), - [sym__list_marker_minus] = ACTIONS(2213), - [sym__list_marker_plus] = ACTIONS(2213), - [sym__list_marker_star] = ACTIONS(2213), - [sym__list_marker_parenthesis] = ACTIONS(2213), - [sym__list_marker_dot] = ACTIONS(2213), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_example] = ACTIONS(2213), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2213), - [sym__fenced_code_block_start_backtick] = ACTIONS(2213), - [sym_minus_metadata] = ACTIONS(2213), - [sym__pipe_table_start] = ACTIONS(2213), - [sym__fenced_div_start] = ACTIONS(2213), - [sym__fenced_div_end] = ACTIONS(2213), - [sym_ref_id_specifier] = ACTIONS(2213), - [sym__code_span_start] = ACTIONS(2213), - [sym__html_comment] = ACTIONS(2213), - [sym__autolink] = ACTIONS(2213), - [sym__highlight_span_start] = ACTIONS(2213), - [sym__insert_span_start] = ACTIONS(2213), - [sym__delete_span_start] = ACTIONS(2213), - [sym__edit_comment_span_start] = ACTIONS(2213), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2213), - [sym__shortcode_open_escaped] = ACTIONS(2213), - [sym__shortcode_open] = ACTIONS(2213), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2213), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2213), - [sym__cite_author_in_text] = ACTIONS(2213), - [sym__cite_suppress_author] = ACTIONS(2213), - [sym__strikeout_open] = ACTIONS(2213), - [sym__subscript_open] = ACTIONS(2213), - [sym__superscript_open] = ACTIONS(2213), - [sym__inline_note_start_token] = ACTIONS(2213), - [sym__strong_emphasis_open_star] = ACTIONS(2213), - [sym__strong_emphasis_open_underscore] = ACTIONS(2213), - [sym__emphasis_open_star] = ACTIONS(2213), - [sym__emphasis_open_underscore] = ACTIONS(2213), - [sym_inline_note_reference] = ACTIONS(2213), - [sym_html_element] = ACTIONS(2213), - [sym__pandoc_lt_str] = ACTIONS(2213), - [sym__pandoc_line_break] = ACTIONS(2213), - [sym_grid_table] = ACTIONS(2213), - [sym__caption_start] = ACTIONS(2213), + [sym_entity_reference] = ACTIONS(2783), + [sym_numeric_character_reference] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_BANG_LBRACK] = ACTIONS(2783), + [anon_sym_DOLLAR] = ACTIONS(2785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2783), + [aux_sym_pandoc_str_token1] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2783), + [sym__whitespace] = ACTIONS(2783), + [sym__line_ending] = ACTIONS(2783), + [sym__soft_line_ending] = ACTIONS(2783), + [sym__block_close] = ACTIONS(2783), + [sym__block_quote_start] = ACTIONS(2783), + [sym_atx_h1_marker] = ACTIONS(2783), + [sym_atx_h2_marker] = ACTIONS(2783), + [sym_atx_h3_marker] = ACTIONS(2783), + [sym_atx_h4_marker] = ACTIONS(2783), + [sym_atx_h5_marker] = ACTIONS(2783), + [sym_atx_h6_marker] = ACTIONS(2783), + [sym__thematic_break] = ACTIONS(2783), + [sym__list_marker_minus] = ACTIONS(2783), + [sym__list_marker_plus] = ACTIONS(2783), + [sym__list_marker_star] = ACTIONS(2783), + [sym__list_marker_parenthesis] = ACTIONS(2783), + [sym__list_marker_dot] = ACTIONS(2783), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_example] = ACTIONS(2783), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2783), + [sym__fenced_code_block_start_backtick] = ACTIONS(2783), + [sym__minus_metadata_start] = ACTIONS(2783), + [sym__pipe_table_start] = ACTIONS(2783), + [sym__fenced_div_start] = ACTIONS(2783), + [sym__fenced_div_end] = ACTIONS(2783), + [sym_ref_id_specifier] = ACTIONS(2783), + [sym__code_span_start] = ACTIONS(2783), + [sym__html_comment] = ACTIONS(2783), + [sym__autolink] = ACTIONS(2783), + [sym__highlight_span_start] = ACTIONS(2783), + [sym__insert_span_start] = ACTIONS(2783), + [sym__delete_span_start] = ACTIONS(2783), + [sym__edit_comment_span_start] = ACTIONS(2783), + [sym__single_quote_span_open] = ACTIONS(2783), + [sym__double_quote_span_open] = ACTIONS(2783), + [sym__shortcode_open_escaped] = ACTIONS(2783), + [sym__shortcode_open] = ACTIONS(2783), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2783), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2783), + [sym__cite_author_in_text] = ACTIONS(2783), + [sym__cite_suppress_author] = ACTIONS(2783), + [sym__strikeout_open] = ACTIONS(2783), + [sym__subscript_open] = ACTIONS(2783), + [sym__superscript_open] = ACTIONS(2783), + [sym__inline_note_start_token] = ACTIONS(2783), + [sym__strong_emphasis_open_star] = ACTIONS(2783), + [sym__strong_emphasis_open_underscore] = ACTIONS(2783), + [sym__emphasis_open_star] = ACTIONS(2783), + [sym__emphasis_open_underscore] = ACTIONS(2783), + [sym_inline_note_reference] = ACTIONS(2783), + [sym_html_element] = ACTIONS(2783), + [sym__pandoc_lt_str] = ACTIONS(2783), + [sym__pandoc_line_break] = ACTIONS(2783), + [sym_grid_table] = ACTIONS(2783), + [sym__caption_start] = ACTIONS(2783), }, [STATE(311)] = { - [sym__inlines] = STATE(3462), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1282), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(657), - [sym__inline_whitespace] = STATE(657), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2723), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2725), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2727), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym_entity_reference] = ACTIONS(2787), + [sym_numeric_character_reference] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_BANG_LBRACK] = ACTIONS(2787), + [anon_sym_DOLLAR] = ACTIONS(2789), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2787), + [aux_sym_pandoc_str_token1] = ACTIONS(2789), + [anon_sym_PIPE] = ACTIONS(2787), + [sym__whitespace] = ACTIONS(2787), + [sym__line_ending] = ACTIONS(2787), + [sym__soft_line_ending] = ACTIONS(2787), + [sym__block_close] = ACTIONS(2787), + [sym__block_quote_start] = ACTIONS(2787), + [sym_atx_h1_marker] = ACTIONS(2787), + [sym_atx_h2_marker] = ACTIONS(2787), + [sym_atx_h3_marker] = ACTIONS(2787), + [sym_atx_h4_marker] = ACTIONS(2787), + [sym_atx_h5_marker] = ACTIONS(2787), + [sym_atx_h6_marker] = ACTIONS(2787), + [sym__thematic_break] = ACTIONS(2787), + [sym__list_marker_minus] = ACTIONS(2787), + [sym__list_marker_plus] = ACTIONS(2787), + [sym__list_marker_star] = ACTIONS(2787), + [sym__list_marker_parenthesis] = ACTIONS(2787), + [sym__list_marker_dot] = ACTIONS(2787), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_example] = ACTIONS(2787), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2787), + [sym__fenced_code_block_start_backtick] = ACTIONS(2787), + [sym__minus_metadata_start] = ACTIONS(2787), + [sym__pipe_table_start] = ACTIONS(2787), + [sym__fenced_div_start] = ACTIONS(2787), + [sym__fenced_div_end] = ACTIONS(2787), + [sym_ref_id_specifier] = ACTIONS(2787), + [sym__code_span_start] = ACTIONS(2787), + [sym__html_comment] = ACTIONS(2787), + [sym__autolink] = ACTIONS(2787), + [sym__highlight_span_start] = ACTIONS(2787), + [sym__insert_span_start] = ACTIONS(2787), + [sym__delete_span_start] = ACTIONS(2787), + [sym__edit_comment_span_start] = ACTIONS(2787), + [sym__single_quote_span_open] = ACTIONS(2787), + [sym__double_quote_span_open] = ACTIONS(2787), + [sym__shortcode_open_escaped] = ACTIONS(2787), + [sym__shortcode_open] = ACTIONS(2787), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2787), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2787), + [sym__cite_author_in_text] = ACTIONS(2787), + [sym__cite_suppress_author] = ACTIONS(2787), + [sym__strikeout_open] = ACTIONS(2787), + [sym__subscript_open] = ACTIONS(2787), + [sym__superscript_open] = ACTIONS(2787), + [sym__inline_note_start_token] = ACTIONS(2787), + [sym__strong_emphasis_open_star] = ACTIONS(2787), + [sym__strong_emphasis_open_underscore] = ACTIONS(2787), + [sym__emphasis_open_star] = ACTIONS(2787), + [sym__emphasis_open_underscore] = ACTIONS(2787), + [sym_inline_note_reference] = ACTIONS(2787), + [sym_html_element] = ACTIONS(2787), + [sym__pandoc_lt_str] = ACTIONS(2787), + [sym__pandoc_line_break] = ACTIONS(2787), + [sym_grid_table] = ACTIONS(2787), + [sym__caption_start] = ACTIONS(2787), }, [STATE(312)] = { - [sym__inlines] = STATE(3471), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1283), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(658), - [sym__inline_whitespace] = STATE(658), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2729), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2725), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2731), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym_entity_reference] = ACTIONS(2783), + [sym_numeric_character_reference] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_BANG_LBRACK] = ACTIONS(2783), + [anon_sym_DOLLAR] = ACTIONS(2785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2783), + [aux_sym_pandoc_str_token1] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2783), + [sym__whitespace] = ACTIONS(2791), + [sym__line_ending] = ACTIONS(2783), + [sym__soft_line_ending] = ACTIONS(2783), + [sym__block_close] = ACTIONS(2783), + [sym__block_quote_start] = ACTIONS(2783), + [sym_atx_h1_marker] = ACTIONS(2783), + [sym_atx_h2_marker] = ACTIONS(2783), + [sym_atx_h3_marker] = ACTIONS(2783), + [sym_atx_h4_marker] = ACTIONS(2783), + [sym_atx_h5_marker] = ACTIONS(2783), + [sym_atx_h6_marker] = ACTIONS(2783), + [sym__thematic_break] = ACTIONS(2783), + [sym__list_marker_minus] = ACTIONS(2783), + [sym__list_marker_plus] = ACTIONS(2783), + [sym__list_marker_star] = ACTIONS(2783), + [sym__list_marker_parenthesis] = ACTIONS(2783), + [sym__list_marker_dot] = ACTIONS(2783), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_example] = ACTIONS(2783), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2783), + [sym__fenced_code_block_start_backtick] = ACTIONS(2783), + [sym__minus_metadata_start] = ACTIONS(2783), + [sym__pipe_table_start] = ACTIONS(2783), + [sym__fenced_div_start] = ACTIONS(2783), + [sym__fenced_div_end] = ACTIONS(2783), + [sym_ref_id_specifier] = ACTIONS(2783), + [sym__code_span_start] = ACTIONS(2783), + [sym__html_comment] = ACTIONS(2783), + [sym__autolink] = ACTIONS(2783), + [sym__highlight_span_start] = ACTIONS(2783), + [sym__insert_span_start] = ACTIONS(2783), + [sym__delete_span_start] = ACTIONS(2783), + [sym__edit_comment_span_start] = ACTIONS(2783), + [sym__single_quote_span_open] = ACTIONS(2783), + [sym__double_quote_span_open] = ACTIONS(2783), + [sym__shortcode_open_escaped] = ACTIONS(2783), + [sym__shortcode_open] = ACTIONS(2783), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2783), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2783), + [sym__cite_author_in_text] = ACTIONS(2783), + [sym__cite_suppress_author] = ACTIONS(2783), + [sym__strikeout_open] = ACTIONS(2783), + [sym__subscript_open] = ACTIONS(2783), + [sym__superscript_open] = ACTIONS(2783), + [sym__inline_note_start_token] = ACTIONS(2783), + [sym__strong_emphasis_open_star] = ACTIONS(2783), + [sym__strong_emphasis_open_underscore] = ACTIONS(2783), + [sym__emphasis_open_star] = ACTIONS(2783), + [sym__emphasis_open_underscore] = ACTIONS(2783), + [sym_inline_note_reference] = ACTIONS(2783), + [sym_html_element] = ACTIONS(2783), + [sym__pandoc_lt_str] = ACTIONS(2783), + [sym__pandoc_line_break] = ACTIONS(2783), + [sym_grid_table] = ACTIONS(2783), + [sym__caption_start] = ACTIONS(2783), }, [STATE(313)] = { - [sym__inlines] = STATE(3373), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1316), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(660), - [sym__inline_whitespace] = STATE(660), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2733), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2735), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2737), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), - }, - [STATE(314)] = { - [sym__inlines] = STATE(3378), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1317), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(661), - [sym__inline_whitespace] = STATE(661), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2739), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2735), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2741), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym__inlines] = STATE(3511), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1288), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(628), + [sym__inline_whitespace] = STATE(628), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2793), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2795), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2797), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), + }, + [STATE(314)] = { + [sym__inlines] = STATE(3514), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1291), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(629), + [sym__inline_whitespace] = STATE(629), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2799), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2795), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2801), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(315)] = { - [sym__inlines] = STATE(3485), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1348), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(622), - [sym__inline_whitespace] = STATE(622), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2743), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2745), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2747), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym__inlines] = STATE(3331), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1083), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(643), + [sym__inline_whitespace] = STATE(643), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2803), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2779), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2805), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(316)] = { - [sym__inlines] = STATE(3492), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1349), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(623), - [sym__inline_whitespace] = STATE(623), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2749), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2745), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2751), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym__inlines] = STATE(3419), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1276), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(630), + [sym__inline_whitespace] = STATE(630), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2807), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2811), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(317)] = { - [sym__inlines] = STATE(3334), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1377), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(625), - [sym__inline_whitespace] = STATE(625), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2753), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2755), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2757), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym__inlines] = STATE(3421), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1285), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(631), + [sym__inline_whitespace] = STATE(631), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2813), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2815), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(318)] = { - [sym__inlines] = STATE(3335), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1378), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(626), - [sym__inline_whitespace] = STATE(626), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2759), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2755), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2761), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym_entity_reference] = ACTIONS(2391), + [sym_numeric_character_reference] = ACTIONS(2391), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_BANG_LBRACK] = ACTIONS(2391), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [aux_sym_pandoc_str_token1] = ACTIONS(2393), + [anon_sym_PIPE] = ACTIONS(2391), + [sym__whitespace] = ACTIONS(2391), + [sym__line_ending] = ACTIONS(2391), + [sym__soft_line_ending] = ACTIONS(2391), + [sym__block_close] = ACTIONS(2391), + [sym_block_continuation] = ACTIONS(2817), + [sym__block_quote_start] = ACTIONS(2391), + [sym_atx_h1_marker] = ACTIONS(2391), + [sym_atx_h2_marker] = ACTIONS(2391), + [sym_atx_h3_marker] = ACTIONS(2391), + [sym_atx_h4_marker] = ACTIONS(2391), + [sym_atx_h5_marker] = ACTIONS(2391), + [sym_atx_h6_marker] = ACTIONS(2391), + [sym__thematic_break] = ACTIONS(2391), + [sym__list_marker_minus] = ACTIONS(2391), + [sym__list_marker_plus] = ACTIONS(2391), + [sym__list_marker_star] = ACTIONS(2391), + [sym__list_marker_parenthesis] = ACTIONS(2391), + [sym__list_marker_dot] = ACTIONS(2391), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2391), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2391), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2391), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2391), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2391), + [sym__list_marker_example] = ACTIONS(2391), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2391), + [sym__fenced_code_block_start_backtick] = ACTIONS(2391), + [sym__minus_metadata_start] = ACTIONS(2391), + [sym__pipe_table_start] = ACTIONS(2391), + [sym__fenced_div_start] = ACTIONS(2391), + [sym_ref_id_specifier] = ACTIONS(2391), + [sym__code_span_start] = ACTIONS(2391), + [sym__html_comment] = ACTIONS(2391), + [sym__autolink] = ACTIONS(2391), + [sym__highlight_span_start] = ACTIONS(2391), + [sym__insert_span_start] = ACTIONS(2391), + [sym__delete_span_start] = ACTIONS(2391), + [sym__edit_comment_span_start] = ACTIONS(2391), + [sym__single_quote_span_open] = ACTIONS(2391), + [sym__double_quote_span_open] = ACTIONS(2391), + [sym__shortcode_open_escaped] = ACTIONS(2391), + [sym__shortcode_open] = ACTIONS(2391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2391), + [sym__cite_author_in_text] = ACTIONS(2391), + [sym__cite_suppress_author] = ACTIONS(2391), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2391), + [sym__superscript_open] = ACTIONS(2391), + [sym__inline_note_start_token] = ACTIONS(2391), + [sym__strong_emphasis_open_star] = ACTIONS(2391), + [sym__strong_emphasis_open_underscore] = ACTIONS(2391), + [sym__emphasis_open_star] = ACTIONS(2391), + [sym__emphasis_open_underscore] = ACTIONS(2391), + [sym_inline_note_reference] = ACTIONS(2391), + [sym_html_element] = ACTIONS(2391), + [sym__pandoc_lt_str] = ACTIONS(2391), + [sym__pandoc_line_break] = ACTIONS(2391), + [sym_grid_table] = ACTIONS(2391), + [sym__caption_start] = ACTIONS(2391), }, [STATE(319)] = { - [sym__inlines] = STATE(3394), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1413), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(629), - [sym__inline_whitespace] = STATE(629), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2763), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2767), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym_entity_reference] = ACTIONS(2403), + [sym_numeric_character_reference] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_BANG_LBRACK] = ACTIONS(2403), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [aux_sym_pandoc_str_token1] = ACTIONS(2405), + [anon_sym_PIPE] = ACTIONS(2403), + [sym__whitespace] = ACTIONS(2819), + [sym__line_ending] = ACTIONS(2403), + [sym__soft_line_ending] = ACTIONS(2403), + [sym__block_close] = ACTIONS(2403), + [sym_block_continuation] = ACTIONS(2821), + [sym__block_quote_start] = ACTIONS(2403), + [sym_atx_h1_marker] = ACTIONS(2403), + [sym_atx_h2_marker] = ACTIONS(2403), + [sym_atx_h3_marker] = ACTIONS(2403), + [sym_atx_h4_marker] = ACTIONS(2403), + [sym_atx_h5_marker] = ACTIONS(2403), + [sym_atx_h6_marker] = ACTIONS(2403), + [sym__thematic_break] = ACTIONS(2403), + [sym__list_marker_minus] = ACTIONS(2403), + [sym__list_marker_plus] = ACTIONS(2403), + [sym__list_marker_star] = ACTIONS(2403), + [sym__list_marker_parenthesis] = ACTIONS(2403), + [sym__list_marker_dot] = ACTIONS(2403), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2403), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2403), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2403), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2403), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2403), + [sym__list_marker_example] = ACTIONS(2403), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2403), + [sym__fenced_code_block_start_backtick] = ACTIONS(2403), + [sym__minus_metadata_start] = ACTIONS(2403), + [sym__pipe_table_start] = ACTIONS(2403), + [sym__fenced_div_start] = ACTIONS(2403), + [sym_ref_id_specifier] = ACTIONS(2403), + [sym__code_span_start] = ACTIONS(2403), + [sym__html_comment] = ACTIONS(2403), + [sym__autolink] = ACTIONS(2403), + [sym__highlight_span_start] = ACTIONS(2403), + [sym__insert_span_start] = ACTIONS(2403), + [sym__delete_span_start] = ACTIONS(2403), + [sym__edit_comment_span_start] = ACTIONS(2403), + [sym__single_quote_span_open] = ACTIONS(2403), + [sym__double_quote_span_open] = ACTIONS(2403), + [sym__shortcode_open_escaped] = ACTIONS(2403), + [sym__shortcode_open] = ACTIONS(2403), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2403), + [sym__cite_author_in_text] = ACTIONS(2403), + [sym__cite_suppress_author] = ACTIONS(2403), + [sym__strikeout_open] = ACTIONS(2403), + [sym__subscript_open] = ACTIONS(2403), + [sym__superscript_open] = ACTIONS(2403), + [sym__inline_note_start_token] = ACTIONS(2403), + [sym__strong_emphasis_open_star] = ACTIONS(2403), + [sym__strong_emphasis_open_underscore] = ACTIONS(2403), + [sym__emphasis_open_star] = ACTIONS(2403), + [sym__emphasis_open_underscore] = ACTIONS(2403), + [sym_inline_note_reference] = ACTIONS(2403), + [sym_html_element] = ACTIONS(2403), + [sym__pandoc_lt_str] = ACTIONS(2403), + [sym__pandoc_line_break] = ACTIONS(2403), + [sym_grid_table] = ACTIONS(2403), + [sym__caption_start] = ACTIONS(2403), }, [STATE(320)] = { - [sym__inlines] = STATE(3402), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1414), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(630), - [sym__inline_whitespace] = STATE(630), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2769), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2771), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [ts_builtin_sym_end] = 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), + [sym__whitespace] = ACTIONS(2283), + [sym__line_ending] = ACTIONS(2283), + [sym__soft_line_ending] = ACTIONS(2283), + [sym_block_continuation] = ACTIONS(2823), + [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(2283), + [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(2283), + [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_start] = 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__pandoc_lt_str] = ACTIONS(2283), + [sym__pandoc_line_break] = ACTIONS(2283), + [sym_grid_table] = ACTIONS(2283), + [sym__caption_start] = ACTIONS(2283), }, [STATE(321)] = { - [sym__inlines] = STATE(3448), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1302), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(633), - [sym__inline_whitespace] = STATE(633), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2773), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2775), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2777), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym__inlines] = STATE(3424), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1122), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(635), + [sym__inline_whitespace] = STATE(635), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2825), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2827), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2829), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(322)] = { - [sym__inlines] = STATE(3454), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1425), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(634), - [sym__inline_whitespace] = STATE(634), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2779), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2775), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2781), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), - }, - [STATE(323)] = { - [sym__inlines] = STATE(3507), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1126), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), + [sym__inlines] = STATE(3463), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1177), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), [sym__soft_line_break] = STATE(636), [sym__inline_whitespace] = STATE(636), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2783), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2787), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2831), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2827), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2833), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, - [STATE(324)] = { - [sym__inlines] = STATE(3508), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1141), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), + [STATE(323)] = { + [sym__inlines] = STATE(3425), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1186), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), [sym__soft_line_break] = STATE(637), [sym__inline_whitespace] = STATE(637), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2789), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2791), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2835), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2837), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2839), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, - [STATE(325)] = { - [sym__inlines] = STATE(3295), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1248), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), + [STATE(324)] = { + [sym__inlines] = STATE(3444), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1187), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), [sym__soft_line_break] = STATE(638), [sym__inline_whitespace] = STATE(638), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2793), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2795), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2797), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2841), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2837), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2843), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, - [STATE(326)] = { - [sym__inlines] = STATE(3300), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1249), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), + [STATE(325)] = { + [sym__inlines] = STATE(3504), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1218), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), [sym__soft_line_break] = STATE(639), [sym__inline_whitespace] = STATE(639), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2799), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2795), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2801), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2845), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2847), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2849), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, - [STATE(327)] = { - [sym__inlines] = STATE(3345), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1423), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), + [STATE(326)] = { + [sym__inlines] = STATE(3512), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1219), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), [sym__soft_line_break] = STATE(640), [sym__inline_whitespace] = STATE(640), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2803), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2805), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2807), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2851), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2847), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2853), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), + }, + [STATE(327)] = { + [sym__inlines] = STATE(3360), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1254), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(624), + [sym__inline_whitespace] = STATE(624), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2855), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2859), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(328)] = { - [sym__inlines] = STATE(3347), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1424), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(662), - [sym__inline_whitespace] = STATE(662), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2809), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2805), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2811), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym__inlines] = STATE(3362), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1255), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(665), + [sym__inline_whitespace] = STATE(665), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2861), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2863), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(329)] = { - [sym__inlines] = STATE(3380), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1460), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(641), - [sym__inline_whitespace] = STATE(641), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2813), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2815), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2817), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym__inlines] = STATE(3398), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1294), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(645), + [sym__inline_whitespace] = STATE(645), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2865), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2867), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2869), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(330)] = { - [sym__inlines] = STATE(3382), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1461), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(642), - [sym__inline_whitespace] = STATE(642), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2819), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2815), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2821), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym__inlines] = STATE(3401), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1295), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(646), + [sym__inline_whitespace] = STATE(646), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2871), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2867), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2873), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(331)] = { - [sym__inlines] = STATE(3409), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1090), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(645), - [sym__inline_whitespace] = STATE(645), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2823), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2825), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2827), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym__inlines] = STATE(3435), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1330), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(648), + [sym__inline_whitespace] = STATE(648), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2875), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2877), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2879), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(332)] = { - [sym__inlines] = STATE(3410), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1091), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(621), - [sym__inline_whitespace] = STATE(621), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2829), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2825), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2831), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym__inlines] = STATE(3441), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1331), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(649), + [sym__inline_whitespace] = STATE(649), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2881), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2877), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2883), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(333)] = { - [sym__inlines] = STATE(3442), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(2125), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), + [sym__inlines] = STATE(3481), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1373), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), [sym__soft_line_break] = STATE(651), [sym__inline_whitespace] = STATE(651), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2833), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2835), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2837), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2885), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2887), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2889), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(334)] = { - [sym__inlines] = STATE(3443), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(2126), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), + [sym__inlines] = STATE(3484), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1374), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), [sym__soft_line_break] = STATE(652), [sym__inline_whitespace] = STATE(652), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2839), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2835), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2841), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2891), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2887), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2893), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(335)] = { - [sym__inlines] = STATE(3476), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(965), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(655), - [sym__inline_whitespace] = STATE(655), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2843), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2845), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2847), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym__inlines] = STATE(3503), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1412), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(653), + [sym__inline_whitespace] = STATE(653), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2895), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2897), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2899), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(336)] = { - [sym__inlines] = STATE(3478), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(970), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(656), - [sym__inline_whitespace] = STATE(656), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2849), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2845), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2851), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [sym__inlines] = STATE(3518), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1413), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(654), + [sym__inline_whitespace] = STATE(654), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2901), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2897), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2903), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(337)] = { - [sym_entity_reference] = ACTIONS(2341), - [sym_numeric_character_reference] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_BANG_LBRACK] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2341), - [aux_sym_pandoc_str_token1] = ACTIONS(2343), - [anon_sym_PIPE] = ACTIONS(2341), - [sym__whitespace] = ACTIONS(2341), - [sym__line_ending] = ACTIONS(2341), - [sym__soft_line_ending] = ACTIONS(2341), - [sym__block_close] = ACTIONS(2341), - [sym_block_continuation] = ACTIONS(2853), - [sym__block_quote_start] = ACTIONS(2341), - [sym_atx_h1_marker] = ACTIONS(2341), - [sym_atx_h2_marker] = ACTIONS(2341), - [sym_atx_h3_marker] = ACTIONS(2341), - [sym_atx_h4_marker] = ACTIONS(2341), - [sym_atx_h5_marker] = ACTIONS(2341), - [sym_atx_h6_marker] = ACTIONS(2341), - [sym__thematic_break] = ACTIONS(2341), - [sym__list_marker_minus] = ACTIONS(2341), - [sym__list_marker_plus] = ACTIONS(2341), - [sym__list_marker_star] = ACTIONS(2341), - [sym__list_marker_parenthesis] = ACTIONS(2341), - [sym__list_marker_dot] = ACTIONS(2341), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2341), - [sym__list_marker_example] = ACTIONS(2341), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2341), - [sym__fenced_code_block_start_backtick] = ACTIONS(2341), - [sym_minus_metadata] = ACTIONS(2341), - [sym__pipe_table_start] = ACTIONS(2341), - [sym__fenced_div_start] = ACTIONS(2341), - [sym_ref_id_specifier] = ACTIONS(2341), - [sym__code_span_start] = ACTIONS(2341), - [sym__html_comment] = ACTIONS(2341), - [sym__autolink] = ACTIONS(2341), - [sym__highlight_span_start] = ACTIONS(2341), - [sym__insert_span_start] = ACTIONS(2341), - [sym__delete_span_start] = ACTIONS(2341), - [sym__edit_comment_span_start] = ACTIONS(2341), - [sym__single_quote_span_open] = ACTIONS(2341), - [sym__double_quote_span_open] = ACTIONS(2341), - [sym__shortcode_open_escaped] = ACTIONS(2341), - [sym__shortcode_open] = ACTIONS(2341), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2341), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2341), - [sym__cite_author_in_text] = ACTIONS(2341), - [sym__cite_suppress_author] = ACTIONS(2341), - [sym__strikeout_open] = ACTIONS(2341), - [sym__subscript_open] = ACTIONS(2341), - [sym__superscript_open] = ACTIONS(2341), - [sym__inline_note_start_token] = ACTIONS(2341), - [sym__strong_emphasis_open_star] = ACTIONS(2341), - [sym__strong_emphasis_open_underscore] = ACTIONS(2341), - [sym__emphasis_open_star] = ACTIONS(2341), - [sym__emphasis_open_underscore] = ACTIONS(2341), - [sym_inline_note_reference] = ACTIONS(2341), - [sym_html_element] = ACTIONS(2341), - [sym__pandoc_lt_str] = ACTIONS(2341), - [sym__pandoc_line_break] = ACTIONS(2341), - [sym_grid_table] = ACTIONS(2341), - [sym__caption_start] = ACTIONS(2341), + [ts_builtin_sym_end] = ACTIONS(2391), + [sym_entity_reference] = ACTIONS(2391), + [sym_numeric_character_reference] = ACTIONS(2391), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_BANG_LBRACK] = ACTIONS(2391), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [aux_sym_pandoc_str_token1] = ACTIONS(2393), + [anon_sym_PIPE] = ACTIONS(2391), + [sym__whitespace] = ACTIONS(2391), + [sym__line_ending] = ACTIONS(2391), + [sym__soft_line_ending] = ACTIONS(2391), + [sym_block_continuation] = ACTIONS(2905), + [sym__block_quote_start] = ACTIONS(2391), + [sym_atx_h1_marker] = ACTIONS(2391), + [sym_atx_h2_marker] = ACTIONS(2391), + [sym_atx_h3_marker] = ACTIONS(2391), + [sym_atx_h4_marker] = ACTIONS(2391), + [sym_atx_h5_marker] = ACTIONS(2391), + [sym_atx_h6_marker] = ACTIONS(2391), + [sym__thematic_break] = ACTIONS(2391), + [sym__list_marker_minus] = ACTIONS(2391), + [sym__list_marker_plus] = ACTIONS(2391), + [sym__list_marker_star] = ACTIONS(2391), + [sym__list_marker_parenthesis] = ACTIONS(2391), + [sym__list_marker_dot] = ACTIONS(2391), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2391), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2391), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2391), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2391), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2391), + [sym__list_marker_example] = ACTIONS(2391), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2391), + [sym__fenced_code_block_start_backtick] = ACTIONS(2391), + [sym__minus_metadata_start] = ACTIONS(2391), + [sym__pipe_table_start] = ACTIONS(2391), + [sym__fenced_div_start] = ACTIONS(2391), + [sym_ref_id_specifier] = ACTIONS(2391), + [sym__code_span_start] = ACTIONS(2391), + [sym__html_comment] = ACTIONS(2391), + [sym__autolink] = ACTIONS(2391), + [sym__highlight_span_start] = ACTIONS(2391), + [sym__insert_span_start] = ACTIONS(2391), + [sym__delete_span_start] = ACTIONS(2391), + [sym__edit_comment_span_start] = ACTIONS(2391), + [sym__single_quote_span_open] = ACTIONS(2391), + [sym__double_quote_span_open] = ACTIONS(2391), + [sym__shortcode_open_escaped] = ACTIONS(2391), + [sym__shortcode_open] = ACTIONS(2391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2391), + [sym__cite_author_in_text] = ACTIONS(2391), + [sym__cite_suppress_author] = ACTIONS(2391), + [sym__strikeout_open] = ACTIONS(2391), + [sym__subscript_open] = ACTIONS(2391), + [sym__superscript_open] = ACTIONS(2391), + [sym__inline_note_start_token] = ACTIONS(2391), + [sym__strong_emphasis_open_star] = ACTIONS(2391), + [sym__strong_emphasis_open_underscore] = ACTIONS(2391), + [sym__emphasis_open_star] = ACTIONS(2391), + [sym__emphasis_open_underscore] = ACTIONS(2391), + [sym_inline_note_reference] = ACTIONS(2391), + [sym_html_element] = ACTIONS(2391), + [sym__pandoc_lt_str] = ACTIONS(2391), + [sym__pandoc_line_break] = ACTIONS(2391), + [sym_grid_table] = ACTIONS(2391), + [sym__caption_start] = ACTIONS(2391), }, [STATE(338)] = { - [sym_entity_reference] = ACTIONS(2219), - [sym_numeric_character_reference] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_BANG_LBRACK] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [aux_sym_pandoc_str_token1] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [sym__whitespace] = ACTIONS(2219), - [sym__line_ending] = ACTIONS(2219), - [sym__soft_line_ending] = ACTIONS(2219), - [sym__block_close] = ACTIONS(2219), - [sym_block_continuation] = ACTIONS(2855), - [sym__block_quote_start] = ACTIONS(2219), - [sym_atx_h1_marker] = ACTIONS(2219), - [sym_atx_h2_marker] = ACTIONS(2219), - [sym_atx_h3_marker] = ACTIONS(2219), - [sym_atx_h4_marker] = ACTIONS(2219), - [sym_atx_h5_marker] = ACTIONS(2219), - [sym_atx_h6_marker] = ACTIONS(2219), - [sym__thematic_break] = ACTIONS(2219), - [sym__list_marker_minus] = ACTIONS(2219), - [sym__list_marker_plus] = ACTIONS(2219), - [sym__list_marker_star] = ACTIONS(2219), - [sym__list_marker_parenthesis] = ACTIONS(2219), - [sym__list_marker_dot] = ACTIONS(2219), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2219), - [sym__list_marker_example] = ACTIONS(2219), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2219), - [sym__fenced_code_block_start_backtick] = ACTIONS(2219), - [sym_minus_metadata] = ACTIONS(2219), - [sym__pipe_table_start] = ACTIONS(2219), - [sym__fenced_div_start] = ACTIONS(2219), - [sym_ref_id_specifier] = ACTIONS(2219), - [sym__code_span_start] = ACTIONS(2219), - [sym__html_comment] = ACTIONS(2219), - [sym__autolink] = ACTIONS(2219), - [sym__highlight_span_start] = ACTIONS(2219), - [sym__insert_span_start] = ACTIONS(2219), - [sym__delete_span_start] = ACTIONS(2219), - [sym__edit_comment_span_start] = ACTIONS(2219), - [sym__single_quote_span_open] = ACTIONS(2219), - [sym__double_quote_span_open] = ACTIONS(2219), - [sym__shortcode_open_escaped] = ACTIONS(2219), - [sym__shortcode_open] = ACTIONS(2219), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2219), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2219), - [sym__cite_author_in_text] = ACTIONS(2219), - [sym__cite_suppress_author] = ACTIONS(2219), - [sym__strikeout_open] = ACTIONS(2219), - [sym__subscript_open] = ACTIONS(2219), - [sym__superscript_open] = ACTIONS(2219), - [sym__inline_note_start_token] = ACTIONS(2219), - [sym__strong_emphasis_open_star] = ACTIONS(2219), - [sym__strong_emphasis_open_underscore] = ACTIONS(2219), - [sym__emphasis_open_star] = ACTIONS(2219), - [sym__emphasis_open_underscore] = ACTIONS(2219), - [sym_inline_note_reference] = ACTIONS(2219), - [sym_html_element] = ACTIONS(2219), - [sym__pandoc_lt_str] = ACTIONS(2219), - [sym__pandoc_line_break] = ACTIONS(2219), - [sym_grid_table] = ACTIONS(2219), - [sym__caption_start] = ACTIONS(2219), + [sym__inlines] = STATE(3517), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1449), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(656), + [sym__inline_whitespace] = STATE(656), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2907), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2425), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2909), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(339)] = { - [sym_entity_reference] = ACTIONS(2243), - [sym_numeric_character_reference] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_BANG_LBRACK] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [aux_sym_pandoc_str_token1] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2243), - [sym__whitespace] = ACTIONS(2243), - [sym__line_ending] = ACTIONS(2243), - [sym__soft_line_ending] = ACTIONS(2243), - [sym__block_close] = ACTIONS(2243), - [sym_block_continuation] = ACTIONS(2857), - [sym__block_quote_start] = ACTIONS(2243), - [sym_atx_h1_marker] = ACTIONS(2243), - [sym_atx_h2_marker] = ACTIONS(2243), - [sym_atx_h3_marker] = ACTIONS(2243), - [sym_atx_h4_marker] = ACTIONS(2243), - [sym_atx_h5_marker] = ACTIONS(2243), - [sym_atx_h6_marker] = ACTIONS(2243), - [sym__thematic_break] = ACTIONS(2243), - [sym__list_marker_minus] = ACTIONS(2243), - [sym__list_marker_plus] = ACTIONS(2243), - [sym__list_marker_star] = ACTIONS(2243), - [sym__list_marker_parenthesis] = ACTIONS(2243), - [sym__list_marker_dot] = ACTIONS(2243), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_example] = ACTIONS(2243), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2243), - [sym__fenced_code_block_start_backtick] = ACTIONS(2243), - [sym_minus_metadata] = ACTIONS(2243), - [sym__pipe_table_start] = ACTIONS(2243), - [sym__fenced_div_start] = ACTIONS(2243), - [sym_ref_id_specifier] = ACTIONS(2243), - [sym__code_span_start] = ACTIONS(2243), - [sym__html_comment] = ACTIONS(2243), - [sym__autolink] = ACTIONS(2243), - [sym__highlight_span_start] = ACTIONS(2243), - [sym__insert_span_start] = ACTIONS(2243), - [sym__delete_span_start] = ACTIONS(2243), - [sym__edit_comment_span_start] = ACTIONS(2243), - [sym__single_quote_span_open] = ACTIONS(2243), - [sym__double_quote_span_open] = ACTIONS(2243), - [sym__shortcode_open_escaped] = ACTIONS(2243), - [sym__shortcode_open] = ACTIONS(2243), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2243), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2243), - [sym__cite_author_in_text] = ACTIONS(2243), - [sym__cite_suppress_author] = ACTIONS(2243), - [sym__strikeout_open] = ACTIONS(2243), - [sym__subscript_open] = ACTIONS(2243), - [sym__superscript_open] = ACTIONS(2243), - [sym__inline_note_start_token] = ACTIONS(2243), - [sym__strong_emphasis_open_star] = ACTIONS(2243), - [sym__strong_emphasis_open_underscore] = ACTIONS(2243), - [sym__emphasis_open_star] = ACTIONS(2243), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2243), - [sym_html_element] = ACTIONS(2243), - [sym__pandoc_lt_str] = ACTIONS(2243), - [sym__pandoc_line_break] = ACTIONS(2243), - [sym_grid_table] = ACTIONS(2243), - [sym__caption_start] = ACTIONS(2243), + [sym__inlines] = STATE(3403), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1476), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(657), + [sym__inline_whitespace] = STATE(657), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2911), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2915), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(340)] = { - [sym_entity_reference] = ACTIONS(2859), - [sym_numeric_character_reference] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_BANG_LBRACK] = ACTIONS(2859), - [anon_sym_DOLLAR] = ACTIONS(2861), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2859), - [aux_sym_pandoc_str_token1] = ACTIONS(2861), - [anon_sym_PIPE] = ACTIONS(2859), - [sym__whitespace] = ACTIONS(2859), - [sym__line_ending] = ACTIONS(2859), - [sym__soft_line_ending] = ACTIONS(2859), - [sym__block_close] = ACTIONS(2859), - [sym__block_quote_start] = ACTIONS(2859), - [sym_atx_h1_marker] = ACTIONS(2859), - [sym_atx_h2_marker] = ACTIONS(2859), - [sym_atx_h3_marker] = ACTIONS(2859), - [sym_atx_h4_marker] = ACTIONS(2859), - [sym_atx_h5_marker] = ACTIONS(2859), - [sym_atx_h6_marker] = ACTIONS(2859), - [sym__thematic_break] = ACTIONS(2859), - [sym__list_marker_minus] = ACTIONS(2859), - [sym__list_marker_plus] = ACTIONS(2859), - [sym__list_marker_star] = ACTIONS(2859), - [sym__list_marker_parenthesis] = ACTIONS(2859), - [sym__list_marker_dot] = ACTIONS(2859), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_example] = ACTIONS(2859), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2859), - [sym__fenced_code_block_start_backtick] = ACTIONS(2859), - [sym_minus_metadata] = ACTIONS(2859), - [sym__pipe_table_start] = ACTIONS(2859), - [sym__fenced_div_start] = ACTIONS(2859), - [sym__fenced_div_end] = ACTIONS(2859), - [sym_ref_id_specifier] = ACTIONS(2859), - [sym__code_span_start] = ACTIONS(2859), - [sym__html_comment] = ACTIONS(2859), - [sym__autolink] = ACTIONS(2859), - [sym__highlight_span_start] = ACTIONS(2859), - [sym__insert_span_start] = ACTIONS(2859), - [sym__delete_span_start] = ACTIONS(2859), - [sym__edit_comment_span_start] = ACTIONS(2859), - [sym__single_quote_span_open] = ACTIONS(2859), - [sym__double_quote_span_open] = ACTIONS(2859), - [sym__shortcode_open_escaped] = ACTIONS(2859), - [sym__shortcode_open] = ACTIONS(2859), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2859), - [sym__cite_author_in_text] = ACTIONS(2859), - [sym__cite_suppress_author] = ACTIONS(2859), - [sym__strikeout_open] = ACTIONS(2859), - [sym__subscript_open] = ACTIONS(2859), - [sym__superscript_open] = ACTIONS(2859), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2859), - [sym__strong_emphasis_open_underscore] = ACTIONS(2859), - [sym__emphasis_open_star] = ACTIONS(2859), - [sym__emphasis_open_underscore] = ACTIONS(2859), - [sym_inline_note_reference] = ACTIONS(2859), - [sym_html_element] = ACTIONS(2859), - [sym__pandoc_lt_str] = ACTIONS(2859), - [sym__pandoc_line_break] = ACTIONS(2859), - [sym_grid_table] = ACTIONS(2859), - [sym__caption_start] = ACTIONS(2859), + [sym__inlines] = STATE(3404), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1477), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(658), + [sym__inline_whitespace] = STATE(658), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2917), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2919), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(341)] = { - [sym_entity_reference] = ACTIONS(2863), - [sym_numeric_character_reference] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_BANG_LBRACK] = ACTIONS(2863), - [anon_sym_DOLLAR] = ACTIONS(2865), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2863), - [aux_sym_pandoc_str_token1] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(2863), - [sym__whitespace] = ACTIONS(2863), - [sym__line_ending] = ACTIONS(2863), - [sym__soft_line_ending] = ACTIONS(2863), - [sym__block_close] = ACTIONS(2863), - [sym__block_quote_start] = ACTIONS(2863), - [sym_atx_h1_marker] = ACTIONS(2863), - [sym_atx_h2_marker] = ACTIONS(2863), - [sym_atx_h3_marker] = ACTIONS(2863), - [sym_atx_h4_marker] = ACTIONS(2863), - [sym_atx_h5_marker] = ACTIONS(2863), - [sym_atx_h6_marker] = ACTIONS(2863), - [sym__thematic_break] = ACTIONS(2863), - [sym__list_marker_minus] = ACTIONS(2863), - [sym__list_marker_plus] = ACTIONS(2863), - [sym__list_marker_star] = ACTIONS(2863), - [sym__list_marker_parenthesis] = ACTIONS(2863), - [sym__list_marker_dot] = ACTIONS(2863), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_example] = ACTIONS(2863), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2863), - [sym__fenced_code_block_start_backtick] = ACTIONS(2863), - [sym_minus_metadata] = ACTIONS(2863), - [sym__pipe_table_start] = ACTIONS(2863), - [sym__fenced_div_start] = ACTIONS(2863), - [sym__fenced_div_end] = ACTIONS(2863), - [sym_ref_id_specifier] = ACTIONS(2863), - [sym__code_span_start] = ACTIONS(2863), - [sym__html_comment] = ACTIONS(2863), - [sym__autolink] = ACTIONS(2863), - [sym__highlight_span_start] = ACTIONS(2863), - [sym__insert_span_start] = ACTIONS(2863), - [sym__delete_span_start] = ACTIONS(2863), - [sym__edit_comment_span_start] = ACTIONS(2863), - [sym__single_quote_span_open] = ACTIONS(2863), - [sym__double_quote_span_open] = ACTIONS(2863), - [sym__shortcode_open_escaped] = ACTIONS(2863), - [sym__shortcode_open] = ACTIONS(2863), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2863), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2863), - [sym__cite_author_in_text] = ACTIONS(2863), - [sym__cite_suppress_author] = ACTIONS(2863), - [sym__strikeout_open] = ACTIONS(2863), - [sym__subscript_open] = ACTIONS(2863), - [sym__superscript_open] = ACTIONS(2863), - [sym__inline_note_start_token] = ACTIONS(2863), - [sym__strong_emphasis_open_star] = ACTIONS(2863), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2863), - [sym__emphasis_open_underscore] = ACTIONS(2863), - [sym_inline_note_reference] = ACTIONS(2863), - [sym_html_element] = ACTIONS(2863), - [sym__pandoc_lt_str] = ACTIONS(2863), - [sym__pandoc_line_break] = ACTIONS(2863), - [sym_grid_table] = ACTIONS(2863), - [sym__caption_start] = ACTIONS(2863), + [sym__inlines] = STATE(3473), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1093), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(659), + [sym__inline_whitespace] = STATE(659), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2921), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2923), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2925), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(342)] = { - [sym_entity_reference] = ACTIONS(2867), - [sym_numeric_character_reference] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_BANG_LBRACK] = ACTIONS(2867), - [anon_sym_DOLLAR] = ACTIONS(2869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [aux_sym_pandoc_str_token1] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2867), - [sym__whitespace] = ACTIONS(2867), - [sym__line_ending] = ACTIONS(2867), - [sym__soft_line_ending] = ACTIONS(2867), - [sym__block_close] = ACTIONS(2867), - [sym__block_quote_start] = ACTIONS(2867), - [sym_atx_h1_marker] = ACTIONS(2867), - [sym_atx_h2_marker] = ACTIONS(2867), - [sym_atx_h3_marker] = ACTIONS(2867), - [sym_atx_h4_marker] = ACTIONS(2867), - [sym_atx_h5_marker] = ACTIONS(2867), - [sym_atx_h6_marker] = ACTIONS(2867), - [sym__thematic_break] = ACTIONS(2867), - [sym__list_marker_minus] = ACTIONS(2867), - [sym__list_marker_plus] = ACTIONS(2867), - [sym__list_marker_star] = ACTIONS(2867), - [sym__list_marker_parenthesis] = ACTIONS(2867), - [sym__list_marker_dot] = ACTIONS(2867), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_example] = ACTIONS(2867), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2867), - [sym__fenced_code_block_start_backtick] = ACTIONS(2867), - [sym_minus_metadata] = ACTIONS(2867), - [sym__pipe_table_start] = ACTIONS(2867), - [sym__fenced_div_start] = ACTIONS(2867), - [sym__fenced_div_end] = ACTIONS(2867), - [sym_ref_id_specifier] = ACTIONS(2867), - [sym__code_span_start] = ACTIONS(2867), - [sym__html_comment] = ACTIONS(2867), - [sym__autolink] = ACTIONS(2867), - [sym__highlight_span_start] = ACTIONS(2867), - [sym__insert_span_start] = ACTIONS(2867), - [sym__delete_span_start] = ACTIONS(2867), - [sym__edit_comment_span_start] = ACTIONS(2867), - [sym__single_quote_span_open] = ACTIONS(2867), - [sym__double_quote_span_open] = ACTIONS(2867), - [sym__shortcode_open_escaped] = ACTIONS(2867), - [sym__shortcode_open] = ACTIONS(2867), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2867), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2867), - [sym__cite_author_in_text] = ACTIONS(2867), - [sym__cite_suppress_author] = ACTIONS(2867), - [sym__strikeout_open] = ACTIONS(2867), - [sym__subscript_open] = ACTIONS(2867), - [sym__superscript_open] = ACTIONS(2867), - [sym__inline_note_start_token] = ACTIONS(2867), - [sym__strong_emphasis_open_star] = ACTIONS(2867), - [sym__strong_emphasis_open_underscore] = ACTIONS(2867), - [sym__emphasis_open_star] = ACTIONS(2867), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2867), - [sym_html_element] = ACTIONS(2867), - [sym__pandoc_lt_str] = ACTIONS(2867), - [sym__pandoc_line_break] = ACTIONS(2867), - [sym_grid_table] = ACTIONS(2867), - [sym__caption_start] = ACTIONS(2867), + [sym__inlines] = STATE(3483), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(1094), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(660), + [sym__inline_whitespace] = STATE(660), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2927), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2923), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2929), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(343)] = { - [sym_entity_reference] = ACTIONS(2871), - [sym_numeric_character_reference] = ACTIONS(2871), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_BANG_LBRACK] = ACTIONS(2871), - [anon_sym_DOLLAR] = ACTIONS(2873), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2871), - [aux_sym_pandoc_str_token1] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2871), - [sym__whitespace] = ACTIONS(2871), - [sym__line_ending] = ACTIONS(2871), - [sym__soft_line_ending] = ACTIONS(2871), - [sym__block_close] = ACTIONS(2871), - [sym__block_quote_start] = ACTIONS(2871), - [sym_atx_h1_marker] = ACTIONS(2871), - [sym_atx_h2_marker] = ACTIONS(2871), - [sym_atx_h3_marker] = ACTIONS(2871), - [sym_atx_h4_marker] = ACTIONS(2871), - [sym_atx_h5_marker] = ACTIONS(2871), - [sym_atx_h6_marker] = ACTIONS(2871), - [sym__thematic_break] = ACTIONS(2871), - [sym__list_marker_minus] = ACTIONS(2871), - [sym__list_marker_plus] = ACTIONS(2871), - [sym__list_marker_star] = ACTIONS(2871), - [sym__list_marker_parenthesis] = ACTIONS(2871), - [sym__list_marker_dot] = ACTIONS(2871), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_example] = ACTIONS(2871), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2871), - [sym__fenced_code_block_start_backtick] = ACTIONS(2871), - [sym_minus_metadata] = ACTIONS(2871), - [sym__pipe_table_start] = ACTIONS(2871), - [sym__fenced_div_start] = ACTIONS(2871), - [sym__fenced_div_end] = ACTIONS(2871), - [sym_ref_id_specifier] = ACTIONS(2871), - [sym__code_span_start] = ACTIONS(2871), - [sym__html_comment] = ACTIONS(2871), - [sym__autolink] = ACTIONS(2871), - [sym__highlight_span_start] = ACTIONS(2871), - [sym__insert_span_start] = ACTIONS(2871), - [sym__delete_span_start] = ACTIONS(2871), - [sym__edit_comment_span_start] = ACTIONS(2871), - [sym__single_quote_span_open] = ACTIONS(2871), - [sym__double_quote_span_open] = ACTIONS(2871), - [sym__shortcode_open_escaped] = ACTIONS(2871), - [sym__shortcode_open] = ACTIONS(2871), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2871), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2871), - [sym__cite_author_in_text] = ACTIONS(2871), - [sym__cite_suppress_author] = ACTIONS(2871), - [sym__strikeout_open] = ACTIONS(2871), - [sym__subscript_open] = ACTIONS(2871), - [sym__superscript_open] = ACTIONS(2871), - [sym__inline_note_start_token] = ACTIONS(2871), - [sym__strong_emphasis_open_star] = ACTIONS(2871), - [sym__strong_emphasis_open_underscore] = ACTIONS(2871), - [sym__emphasis_open_star] = ACTIONS(2871), - [sym__emphasis_open_underscore] = ACTIONS(2871), - [sym_inline_note_reference] = ACTIONS(2871), - [sym_html_element] = ACTIONS(2871), - [sym__pandoc_lt_str] = ACTIONS(2871), - [sym__pandoc_line_break] = ACTIONS(2871), - [sym_grid_table] = ACTIONS(2871), - [sym__caption_start] = ACTIONS(2871), + [sym__inlines] = STATE(3506), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(2132), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(661), + [sym__inline_whitespace] = STATE(661), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2931), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2933), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2935), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(344)] = { - [sym_entity_reference] = ACTIONS(2875), - [sym_numeric_character_reference] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_BANG_LBRACK] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2877), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2875), - [aux_sym_pandoc_str_token1] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(2875), - [sym__whitespace] = ACTIONS(2875), - [sym__line_ending] = ACTIONS(2875), - [sym__soft_line_ending] = ACTIONS(2875), - [sym__block_close] = ACTIONS(2875), - [sym__block_quote_start] = ACTIONS(2875), - [sym_atx_h1_marker] = ACTIONS(2875), - [sym_atx_h2_marker] = ACTIONS(2875), - [sym_atx_h3_marker] = ACTIONS(2875), - [sym_atx_h4_marker] = ACTIONS(2875), - [sym_atx_h5_marker] = ACTIONS(2875), - [sym_atx_h6_marker] = ACTIONS(2875), - [sym__thematic_break] = ACTIONS(2875), - [sym__list_marker_minus] = ACTIONS(2875), - [sym__list_marker_plus] = ACTIONS(2875), - [sym__list_marker_star] = ACTIONS(2875), - [sym__list_marker_parenthesis] = ACTIONS(2875), - [sym__list_marker_dot] = ACTIONS(2875), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_example] = ACTIONS(2875), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2875), - [sym__fenced_code_block_start_backtick] = ACTIONS(2875), - [sym_minus_metadata] = ACTIONS(2875), - [sym__pipe_table_start] = ACTIONS(2875), - [sym__fenced_div_start] = ACTIONS(2875), - [sym__fenced_div_end] = ACTIONS(2875), - [sym_ref_id_specifier] = ACTIONS(2875), - [sym__code_span_start] = ACTIONS(2875), - [sym__html_comment] = ACTIONS(2875), - [sym__autolink] = ACTIONS(2875), - [sym__highlight_span_start] = ACTIONS(2875), - [sym__insert_span_start] = ACTIONS(2875), - [sym__delete_span_start] = ACTIONS(2875), - [sym__edit_comment_span_start] = ACTIONS(2875), - [sym__single_quote_span_open] = ACTIONS(2875), - [sym__double_quote_span_open] = ACTIONS(2875), - [sym__shortcode_open_escaped] = ACTIONS(2875), - [sym__shortcode_open] = ACTIONS(2875), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2875), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2875), - [sym__cite_author_in_text] = ACTIONS(2875), - [sym__cite_suppress_author] = ACTIONS(2875), - [sym__strikeout_open] = ACTIONS(2875), - [sym__subscript_open] = ACTIONS(2875), - [sym__superscript_open] = ACTIONS(2875), - [sym__inline_note_start_token] = ACTIONS(2875), - [sym__strong_emphasis_open_star] = ACTIONS(2875), - [sym__strong_emphasis_open_underscore] = ACTIONS(2875), - [sym__emphasis_open_star] = ACTIONS(2875), - [sym__emphasis_open_underscore] = ACTIONS(2875), - [sym_inline_note_reference] = ACTIONS(2875), - [sym_html_element] = ACTIONS(2875), - [sym__pandoc_lt_str] = ACTIONS(2875), - [sym__pandoc_line_break] = ACTIONS(2875), - [sym_grid_table] = ACTIONS(2875), - [sym__caption_start] = ACTIONS(2875), + [sym__inlines] = STATE(3508), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(2133), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(662), + [sym__inline_whitespace] = STATE(662), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2937), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2933), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2939), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(345)] = { - [sym_entity_reference] = ACTIONS(2879), - [sym_numeric_character_reference] = ACTIONS(2879), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_BANG_LBRACK] = ACTIONS(2879), - [anon_sym_DOLLAR] = ACTIONS(2881), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2879), - [aux_sym_pandoc_str_token1] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2879), - [sym__whitespace] = ACTIONS(2879), - [sym__line_ending] = ACTIONS(2879), - [sym__soft_line_ending] = ACTIONS(2879), - [sym__block_close] = ACTIONS(2879), - [sym__block_quote_start] = ACTIONS(2879), - [sym_atx_h1_marker] = ACTIONS(2879), - [sym_atx_h2_marker] = ACTIONS(2879), - [sym_atx_h3_marker] = ACTIONS(2879), - [sym_atx_h4_marker] = ACTIONS(2879), - [sym_atx_h5_marker] = ACTIONS(2879), - [sym_atx_h6_marker] = ACTIONS(2879), - [sym__thematic_break] = ACTIONS(2879), - [sym__list_marker_minus] = ACTIONS(2879), - [sym__list_marker_plus] = ACTIONS(2879), - [sym__list_marker_star] = ACTIONS(2879), - [sym__list_marker_parenthesis] = ACTIONS(2879), - [sym__list_marker_dot] = ACTIONS(2879), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_example] = ACTIONS(2879), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2879), - [sym__fenced_code_block_start_backtick] = ACTIONS(2879), - [sym_minus_metadata] = ACTIONS(2879), - [sym__pipe_table_start] = ACTIONS(2879), - [sym__fenced_div_start] = ACTIONS(2879), - [sym__fenced_div_end] = ACTIONS(2879), - [sym_ref_id_specifier] = ACTIONS(2879), - [sym__code_span_start] = ACTIONS(2879), - [sym__html_comment] = ACTIONS(2879), - [sym__autolink] = ACTIONS(2879), - [sym__highlight_span_start] = ACTIONS(2879), - [sym__insert_span_start] = ACTIONS(2879), - [sym__delete_span_start] = ACTIONS(2879), - [sym__edit_comment_span_start] = ACTIONS(2879), - [sym__single_quote_span_open] = ACTIONS(2879), - [sym__double_quote_span_open] = ACTIONS(2879), - [sym__shortcode_open_escaped] = ACTIONS(2879), - [sym__shortcode_open] = ACTIONS(2879), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2879), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2879), - [sym__cite_author_in_text] = ACTIONS(2879), - [sym__cite_suppress_author] = ACTIONS(2879), - [sym__strikeout_open] = ACTIONS(2879), - [sym__subscript_open] = ACTIONS(2879), - [sym__superscript_open] = ACTIONS(2879), - [sym__inline_note_start_token] = ACTIONS(2879), - [sym__strong_emphasis_open_star] = ACTIONS(2879), - [sym__strong_emphasis_open_underscore] = ACTIONS(2879), - [sym__emphasis_open_star] = ACTIONS(2879), - [sym__emphasis_open_underscore] = ACTIONS(2879), - [sym_inline_note_reference] = ACTIONS(2879), - [sym_html_element] = ACTIONS(2879), - [sym__pandoc_lt_str] = ACTIONS(2879), - [sym__pandoc_line_break] = ACTIONS(2879), - [sym_grid_table] = ACTIONS(2879), - [sym__caption_start] = ACTIONS(2879), + [sym__inlines] = STATE(3273), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(982), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(663), + [sym__inline_whitespace] = STATE(663), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2941), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2943), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2945), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(346)] = { - [sym_entity_reference] = ACTIONS(2213), - [sym_numeric_character_reference] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_BANG_LBRACK] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2215), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [aux_sym_pandoc_str_token1] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2213), - [sym__whitespace] = ACTIONS(2213), - [sym__line_ending] = ACTIONS(2213), - [sym__soft_line_ending] = ACTIONS(2213), - [sym__block_close] = ACTIONS(2213), - [sym_block_continuation] = ACTIONS(2883), - [sym__block_quote_start] = ACTIONS(2213), - [sym_atx_h1_marker] = ACTIONS(2213), - [sym_atx_h2_marker] = ACTIONS(2213), - [sym_atx_h3_marker] = ACTIONS(2213), - [sym_atx_h4_marker] = ACTIONS(2213), - [sym_atx_h5_marker] = ACTIONS(2213), - [sym_atx_h6_marker] = ACTIONS(2213), - [sym__thematic_break] = ACTIONS(2213), - [sym__list_marker_minus] = ACTIONS(2213), - [sym__list_marker_plus] = ACTIONS(2213), - [sym__list_marker_star] = ACTIONS(2213), - [sym__list_marker_parenthesis] = ACTIONS(2213), - [sym__list_marker_dot] = ACTIONS(2213), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_example] = ACTIONS(2213), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2213), - [sym__fenced_code_block_start_backtick] = ACTIONS(2213), - [sym_minus_metadata] = ACTIONS(2213), - [sym__pipe_table_start] = ACTIONS(2213), - [sym__fenced_div_start] = ACTIONS(2213), - [sym_ref_id_specifier] = ACTIONS(2213), - [sym__code_span_start] = ACTIONS(2213), - [sym__html_comment] = ACTIONS(2213), - [sym__autolink] = ACTIONS(2213), - [sym__highlight_span_start] = ACTIONS(2213), - [sym__insert_span_start] = ACTIONS(2213), - [sym__delete_span_start] = ACTIONS(2213), - [sym__edit_comment_span_start] = ACTIONS(2213), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2213), - [sym__shortcode_open_escaped] = ACTIONS(2213), - [sym__shortcode_open] = ACTIONS(2213), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2213), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2213), - [sym__cite_author_in_text] = ACTIONS(2213), - [sym__cite_suppress_author] = ACTIONS(2213), - [sym__strikeout_open] = ACTIONS(2213), - [sym__subscript_open] = ACTIONS(2213), - [sym__superscript_open] = ACTIONS(2213), - [sym__inline_note_start_token] = ACTIONS(2213), - [sym__strong_emphasis_open_star] = ACTIONS(2213), - [sym__strong_emphasis_open_underscore] = ACTIONS(2213), - [sym__emphasis_open_star] = ACTIONS(2213), - [sym__emphasis_open_underscore] = ACTIONS(2213), - [sym_inline_note_reference] = ACTIONS(2213), - [sym_html_element] = ACTIONS(2213), - [sym__pandoc_lt_str] = ACTIONS(2213), - [sym__pandoc_line_break] = ACTIONS(2213), - [sym_grid_table] = ACTIONS(2213), - [sym__caption_start] = ACTIONS(2213), + [sym__inlines] = STATE(3275), + [sym_pandoc_span] = STATE(644), + [sym_pandoc_image] = STATE(644), + [sym_target] = STATE(962), + [sym_pandoc_math] = STATE(644), + [sym_pandoc_display_math] = STATE(644), + [sym_pandoc_code_span] = STATE(644), + [sym_pandoc_single_quote] = STATE(644), + [sym_pandoc_double_quote] = STATE(644), + [sym_insert] = STATE(644), + [sym_delete] = STATE(644), + [sym_edit_comment] = STATE(644), + [sym_highlight] = STATE(644), + [sym__pandoc_attr_specifier] = STATE(644), + [sym__line] = STATE(2939), + [sym__inline_element] = STATE(644), + [sym_shortcode_escaped] = STATE(644), + [sym_shortcode] = STATE(644), + [sym_citation] = STATE(644), + [sym_inline_note] = STATE(644), + [sym_pandoc_superscript] = STATE(644), + [sym_pandoc_subscript] = STATE(644), + [sym_pandoc_strikeout] = STATE(644), + [sym_pandoc_emph] = STATE(644), + [sym_pandoc_strong] = STATE(644), + [sym_pandoc_str] = STATE(644), + [sym__soft_line_break] = STATE(664), + [sym__inline_whitespace] = STATE(664), + [sym_entity_reference] = ACTIONS(2417), + [sym_numeric_character_reference] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [aux_sym_pandoc_span_token1] = ACTIONS(2947), + [anon_sym_BANG_LBRACK] = ACTIONS(2423), + [aux_sym_target_token1] = ACTIONS(2943), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2431), + [aux_sym_pandoc_str_token1] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2435), + [sym__whitespace] = ACTIONS(2949), + [sym__soft_line_ending] = ACTIONS(2439), + [sym__code_span_start] = ACTIONS(2441), + [sym__html_comment] = ACTIONS(2417), + [sym__autolink] = ACTIONS(2417), + [sym__highlight_span_start] = ACTIONS(2443), + [sym__insert_span_start] = ACTIONS(2445), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2449), + [sym__single_quote_span_open] = ACTIONS(2451), + [sym__double_quote_span_open] = ACTIONS(2453), + [sym__shortcode_open_escaped] = ACTIONS(2455), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2459), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2465), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2469), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2473), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2477), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2481), + [sym_inline_note_reference] = ACTIONS(2417), + [sym_html_element] = ACTIONS(2417), + [sym__pandoc_lt_str] = ACTIONS(2435), + [sym__pandoc_line_break] = ACTIONS(2417), }, [STATE(347)] = { - [ts_builtin_sym_end] = ACTIONS(2213), - [sym_entity_reference] = ACTIONS(2213), - [sym_numeric_character_reference] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_BANG_LBRACK] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2215), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [aux_sym_pandoc_str_token1] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2213), - [sym__whitespace] = ACTIONS(2213), - [sym__line_ending] = ACTIONS(2213), - [sym__soft_line_ending] = ACTIONS(2213), - [sym_block_continuation] = ACTIONS(2885), - [sym__block_quote_start] = ACTIONS(2213), - [sym_atx_h1_marker] = ACTIONS(2213), - [sym_atx_h2_marker] = ACTIONS(2213), - [sym_atx_h3_marker] = ACTIONS(2213), - [sym_atx_h4_marker] = ACTIONS(2213), - [sym_atx_h5_marker] = ACTIONS(2213), - [sym_atx_h6_marker] = ACTIONS(2213), - [sym__thematic_break] = ACTIONS(2213), - [sym__list_marker_minus] = ACTIONS(2213), - [sym__list_marker_plus] = ACTIONS(2213), - [sym__list_marker_star] = ACTIONS(2213), - [sym__list_marker_parenthesis] = ACTIONS(2213), - [sym__list_marker_dot] = ACTIONS(2213), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_example] = ACTIONS(2213), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2213), - [sym__fenced_code_block_start_backtick] = ACTIONS(2213), - [sym_minus_metadata] = ACTIONS(2213), - [sym__pipe_table_start] = ACTIONS(2213), - [sym__fenced_div_start] = ACTIONS(2213), - [sym_ref_id_specifier] = ACTIONS(2213), - [sym__code_span_start] = ACTIONS(2213), - [sym__html_comment] = ACTIONS(2213), - [sym__autolink] = ACTIONS(2213), - [sym__highlight_span_start] = ACTIONS(2213), - [sym__insert_span_start] = ACTIONS(2213), - [sym__delete_span_start] = ACTIONS(2213), - [sym__edit_comment_span_start] = ACTIONS(2213), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2213), - [sym__shortcode_open_escaped] = ACTIONS(2213), - [sym__shortcode_open] = ACTIONS(2213), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2213), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2213), - [sym__cite_author_in_text] = ACTIONS(2213), - [sym__cite_suppress_author] = ACTIONS(2213), - [sym__strikeout_open] = ACTIONS(2213), - [sym__subscript_open] = ACTIONS(2213), - [sym__superscript_open] = ACTIONS(2213), - [sym__inline_note_start_token] = ACTIONS(2213), - [sym__strong_emphasis_open_star] = ACTIONS(2213), - [sym__strong_emphasis_open_underscore] = ACTIONS(2213), - [sym__emphasis_open_star] = ACTIONS(2213), - [sym__emphasis_open_underscore] = ACTIONS(2213), - [sym_inline_note_reference] = ACTIONS(2213), - [sym_html_element] = ACTIONS(2213), - [sym__pandoc_lt_str] = ACTIONS(2213), - [sym__pandoc_line_break] = ACTIONS(2213), - [sym_grid_table] = ACTIONS(2213), - [sym__caption_start] = ACTIONS(2213), + [ts_builtin_sym_end] = 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), + [sym__whitespace] = ACTIONS(2289), + [sym__line_ending] = ACTIONS(2289), + [sym__soft_line_ending] = ACTIONS(2289), + [sym_block_continuation] = ACTIONS(2951), + [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(2289), + [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(2289), + [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_start] = 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_lt_str] = ACTIONS(2289), + [sym__pandoc_line_break] = ACTIONS(2289), + [sym_grid_table] = ACTIONS(2289), + [sym__caption_start] = ACTIONS(2289), }, [STATE(348)] = { - [ts_builtin_sym_end] = ACTIONS(2315), - [sym_entity_reference] = ACTIONS(2315), - [sym_numeric_character_reference] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_BANG_LBRACK] = ACTIONS(2315), - [anon_sym_DOLLAR] = ACTIONS(2317), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [aux_sym_pandoc_str_token1] = ACTIONS(2317), - [anon_sym_PIPE] = ACTIONS(2315), - [sym__whitespace] = ACTIONS(2315), - [sym__line_ending] = ACTIONS(2315), - [sym__soft_line_ending] = ACTIONS(2315), - [sym_block_continuation] = ACTIONS(2887), - [sym__block_quote_start] = ACTIONS(2315), - [sym_atx_h1_marker] = ACTIONS(2315), - [sym_atx_h2_marker] = ACTIONS(2315), - [sym_atx_h3_marker] = ACTIONS(2315), - [sym_atx_h4_marker] = ACTIONS(2315), - [sym_atx_h5_marker] = ACTIONS(2315), - [sym_atx_h6_marker] = ACTIONS(2315), - [sym__thematic_break] = ACTIONS(2315), - [sym__list_marker_minus] = ACTIONS(2315), - [sym__list_marker_plus] = ACTIONS(2315), - [sym__list_marker_star] = ACTIONS(2315), - [sym__list_marker_parenthesis] = ACTIONS(2315), - [sym__list_marker_dot] = ACTIONS(2315), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2315), - [sym__list_marker_example] = ACTIONS(2315), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2315), - [sym__fenced_code_block_start_backtick] = ACTIONS(2315), - [sym_minus_metadata] = ACTIONS(2315), - [sym__pipe_table_start] = ACTIONS(2315), - [sym__fenced_div_start] = ACTIONS(2315), - [sym_ref_id_specifier] = ACTIONS(2315), - [sym__code_span_start] = ACTIONS(2315), - [sym__html_comment] = ACTIONS(2315), - [sym__autolink] = ACTIONS(2315), - [sym__highlight_span_start] = ACTIONS(2315), - [sym__insert_span_start] = ACTIONS(2315), - [sym__delete_span_start] = ACTIONS(2315), - [sym__edit_comment_span_start] = ACTIONS(2315), - [sym__single_quote_span_open] = ACTIONS(2315), - [sym__double_quote_span_open] = ACTIONS(2315), - [sym__shortcode_open_escaped] = ACTIONS(2315), - [sym__shortcode_open] = ACTIONS(2315), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2315), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2315), - [sym__cite_author_in_text] = ACTIONS(2315), - [sym__cite_suppress_author] = ACTIONS(2315), - [sym__strikeout_open] = ACTIONS(2315), - [sym__subscript_open] = ACTIONS(2315), - [sym__superscript_open] = ACTIONS(2315), - [sym__inline_note_start_token] = ACTIONS(2315), - [sym__strong_emphasis_open_star] = ACTIONS(2315), - [sym__strong_emphasis_open_underscore] = ACTIONS(2315), - [sym__emphasis_open_star] = ACTIONS(2315), - [sym__emphasis_open_underscore] = ACTIONS(2315), - [sym_inline_note_reference] = ACTIONS(2315), - [sym_html_element] = ACTIONS(2315), - [sym__pandoc_lt_str] = ACTIONS(2315), - [sym__pandoc_line_break] = ACTIONS(2315), - [sym_grid_table] = ACTIONS(2315), - [sym__caption_start] = ACTIONS(2315), + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_entity_reference] = ACTIONS(2295), + [sym_numeric_character_reference] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_BANG_LBRACK] = ACTIONS(2295), + [anon_sym_DOLLAR] = ACTIONS(2297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [aux_sym_pandoc_str_token1] = ACTIONS(2297), + [anon_sym_PIPE] = ACTIONS(2295), + [sym__whitespace] = ACTIONS(2295), + [sym__line_ending] = ACTIONS(2295), + [sym__soft_line_ending] = ACTIONS(2295), + [sym_block_continuation] = ACTIONS(2953), + [sym__block_quote_start] = ACTIONS(2295), + [sym_atx_h1_marker] = ACTIONS(2295), + [sym_atx_h2_marker] = ACTIONS(2295), + [sym_atx_h3_marker] = ACTIONS(2295), + [sym_atx_h4_marker] = ACTIONS(2295), + [sym_atx_h5_marker] = ACTIONS(2295), + [sym_atx_h6_marker] = ACTIONS(2295), + [sym__thematic_break] = ACTIONS(2295), + [sym__list_marker_minus] = ACTIONS(2295), + [sym__list_marker_plus] = ACTIONS(2295), + [sym__list_marker_star] = ACTIONS(2295), + [sym__list_marker_parenthesis] = ACTIONS(2295), + [sym__list_marker_dot] = ACTIONS(2295), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2295), + [sym__list_marker_example] = ACTIONS(2295), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2295), + [sym__fenced_code_block_start_backtick] = ACTIONS(2295), + [sym__minus_metadata_start] = ACTIONS(2295), + [sym__pipe_table_start] = ACTIONS(2295), + [sym__fenced_div_start] = ACTIONS(2295), + [sym_ref_id_specifier] = ACTIONS(2295), + [sym__code_span_start] = ACTIONS(2295), + [sym__html_comment] = ACTIONS(2295), + [sym__autolink] = ACTIONS(2295), + [sym__highlight_span_start] = ACTIONS(2295), + [sym__insert_span_start] = ACTIONS(2295), + [sym__delete_span_start] = ACTIONS(2295), + [sym__edit_comment_span_start] = ACTIONS(2295), + [sym__single_quote_span_open] = ACTIONS(2295), + [sym__double_quote_span_open] = ACTIONS(2295), + [sym__shortcode_open_escaped] = ACTIONS(2295), + [sym__shortcode_open] = ACTIONS(2295), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2295), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2295), + [sym__cite_author_in_text] = ACTIONS(2295), + [sym__cite_suppress_author] = ACTIONS(2295), + [sym__strikeout_open] = ACTIONS(2295), + [sym__subscript_open] = ACTIONS(2295), + [sym__superscript_open] = ACTIONS(2295), + [sym__inline_note_start_token] = ACTIONS(2295), + [sym__strong_emphasis_open_star] = ACTIONS(2295), + [sym__strong_emphasis_open_underscore] = ACTIONS(2295), + [sym__emphasis_open_star] = ACTIONS(2295), + [sym__emphasis_open_underscore] = ACTIONS(2295), + [sym_inline_note_reference] = ACTIONS(2295), + [sym_html_element] = ACTIONS(2295), + [sym__pandoc_lt_str] = ACTIONS(2295), + [sym__pandoc_line_break] = ACTIONS(2295), + [sym_grid_table] = ACTIONS(2295), + [sym__caption_start] = ACTIONS(2295), }, [STATE(349)] = { - [sym__inlines] = STATE(3451), - [sym_pandoc_span] = STATE(646), - [sym_pandoc_image] = STATE(646), - [sym_target] = STATE(1072), - [sym_pandoc_math] = STATE(646), - [sym_pandoc_display_math] = STATE(646), - [sym_pandoc_code_span] = STATE(646), - [sym_pandoc_single_quote] = STATE(646), - [sym_pandoc_double_quote] = STATE(646), - [sym_insert] = STATE(646), - [sym_delete] = STATE(646), - [sym_edit_comment] = STATE(646), - [sym_highlight] = STATE(646), - [sym__pandoc_attr_specifier] = STATE(646), - [sym__line] = STATE(3081), - [sym__inline_element] = STATE(646), - [sym_shortcode_escaped] = STATE(646), - [sym_shortcode] = STATE(646), - [sym_citation] = STATE(646), - [sym_inline_note] = STATE(646), - [sym_pandoc_superscript] = STATE(646), - [sym_pandoc_subscript] = STATE(646), - [sym_pandoc_strikeout] = STATE(646), - [sym_pandoc_emph] = STATE(646), - [sym_pandoc_strong] = STATE(646), - [sym_pandoc_str] = STATE(646), - [sym__soft_line_break] = STATE(635), - [sym__inline_whitespace] = STATE(635), - [sym_entity_reference] = ACTIONS(2553), - [sym_numeric_character_reference] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [aux_sym_pandoc_span_token1] = ACTIONS(2889), - [anon_sym_BANG_LBRACK] = ACTIONS(2559), - [aux_sym_target_token1] = ACTIONS(2695), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2567), - [aux_sym_pandoc_str_token1] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2571), - [sym__whitespace] = ACTIONS(2891), - [sym__soft_line_ending] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(2577), - [sym__html_comment] = ACTIONS(2553), - [sym__autolink] = ACTIONS(2553), - [sym__highlight_span_start] = ACTIONS(2579), - [sym__insert_span_start] = ACTIONS(2581), - [sym__delete_span_start] = ACTIONS(2583), - [sym__edit_comment_span_start] = ACTIONS(2585), - [sym__single_quote_span_open] = ACTIONS(2587), - [sym__double_quote_span_open] = ACTIONS(2589), - [sym__shortcode_open_escaped] = ACTIONS(2591), - [sym__shortcode_open] = ACTIONS(2593), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2597), - [sym__cite_author_in_text] = ACTIONS(2599), - [sym__cite_suppress_author] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(2603), - [sym__subscript_open] = ACTIONS(2605), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2609), - [sym__strong_emphasis_open_star] = ACTIONS(2611), - [sym__strong_emphasis_open_underscore] = ACTIONS(2613), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2617), - [sym_inline_note_reference] = ACTIONS(2553), - [sym_html_element] = ACTIONS(2553), - [sym__pandoc_lt_str] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2553), + [ts_builtin_sym_end] = ACTIONS(2301), + [sym_entity_reference] = ACTIONS(2301), + [sym_numeric_character_reference] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_BANG_LBRACK] = ACTIONS(2301), + [anon_sym_DOLLAR] = ACTIONS(2303), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2301), + [aux_sym_pandoc_str_token1] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2301), + [sym__whitespace] = ACTIONS(2301), + [sym__line_ending] = ACTIONS(2301), + [sym__soft_line_ending] = ACTIONS(2301), + [sym_block_continuation] = ACTIONS(2955), + [sym__block_quote_start] = ACTIONS(2301), + [sym_atx_h1_marker] = ACTIONS(2301), + [sym_atx_h2_marker] = ACTIONS(2301), + [sym_atx_h3_marker] = ACTIONS(2301), + [sym_atx_h4_marker] = ACTIONS(2301), + [sym_atx_h5_marker] = ACTIONS(2301), + [sym_atx_h6_marker] = ACTIONS(2301), + [sym__thematic_break] = ACTIONS(2301), + [sym__list_marker_minus] = ACTIONS(2301), + [sym__list_marker_plus] = ACTIONS(2301), + [sym__list_marker_star] = ACTIONS(2301), + [sym__list_marker_parenthesis] = ACTIONS(2301), + [sym__list_marker_dot] = ACTIONS(2301), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2301), + [sym__list_marker_example] = ACTIONS(2301), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2301), + [sym__fenced_code_block_start_backtick] = ACTIONS(2301), + [sym__minus_metadata_start] = ACTIONS(2301), + [sym__pipe_table_start] = ACTIONS(2301), + [sym__fenced_div_start] = ACTIONS(2301), + [sym_ref_id_specifier] = ACTIONS(2301), + [sym__code_span_start] = ACTIONS(2301), + [sym__html_comment] = ACTIONS(2301), + [sym__autolink] = ACTIONS(2301), + [sym__highlight_span_start] = ACTIONS(2301), + [sym__insert_span_start] = ACTIONS(2301), + [sym__delete_span_start] = ACTIONS(2301), + [sym__edit_comment_span_start] = ACTIONS(2301), + [sym__single_quote_span_open] = ACTIONS(2301), + [sym__double_quote_span_open] = ACTIONS(2301), + [sym__shortcode_open_escaped] = ACTIONS(2301), + [sym__shortcode_open] = ACTIONS(2301), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2301), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2301), + [sym__cite_author_in_text] = ACTIONS(2301), + [sym__cite_suppress_author] = ACTIONS(2301), + [sym__strikeout_open] = ACTIONS(2301), + [sym__subscript_open] = ACTIONS(2301), + [sym__superscript_open] = ACTIONS(2301), + [sym__inline_note_start_token] = ACTIONS(2301), + [sym__strong_emphasis_open_star] = ACTIONS(2301), + [sym__strong_emphasis_open_underscore] = ACTIONS(2301), + [sym__emphasis_open_star] = ACTIONS(2301), + [sym__emphasis_open_underscore] = ACTIONS(2301), + [sym_inline_note_reference] = ACTIONS(2301), + [sym_html_element] = ACTIONS(2301), + [sym__pandoc_lt_str] = ACTIONS(2301), + [sym__pandoc_line_break] = ACTIONS(2301), + [sym_grid_table] = ACTIONS(2301), + [sym__caption_start] = ACTIONS(2301), }, [STATE(350)] = { - [ts_builtin_sym_end] = ACTIONS(2329), - [sym_entity_reference] = ACTIONS(2329), - [sym_numeric_character_reference] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_BANG_LBRACK] = ACTIONS(2329), - [anon_sym_DOLLAR] = ACTIONS(2331), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2329), - [aux_sym_pandoc_str_token1] = ACTIONS(2331), - [anon_sym_PIPE] = ACTIONS(2329), - [sym__whitespace] = ACTIONS(2329), - [sym__line_ending] = ACTIONS(2329), - [sym__soft_line_ending] = ACTIONS(2329), - [sym_block_continuation] = ACTIONS(2893), - [sym__block_quote_start] = ACTIONS(2329), - [sym_atx_h1_marker] = ACTIONS(2329), - [sym_atx_h2_marker] = ACTIONS(2329), - [sym_atx_h3_marker] = ACTIONS(2329), - [sym_atx_h4_marker] = ACTIONS(2329), - [sym_atx_h5_marker] = ACTIONS(2329), - [sym_atx_h6_marker] = ACTIONS(2329), - [sym__thematic_break] = ACTIONS(2329), - [sym__list_marker_minus] = ACTIONS(2329), - [sym__list_marker_plus] = ACTIONS(2329), - [sym__list_marker_star] = ACTIONS(2329), - [sym__list_marker_parenthesis] = ACTIONS(2329), - [sym__list_marker_dot] = ACTIONS(2329), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2329), - [sym__list_marker_example] = ACTIONS(2329), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2329), - [sym__fenced_code_block_start_backtick] = ACTIONS(2329), - [sym_minus_metadata] = ACTIONS(2329), - [sym__pipe_table_start] = ACTIONS(2329), - [sym__fenced_div_start] = ACTIONS(2329), - [sym_ref_id_specifier] = ACTIONS(2329), - [sym__code_span_start] = ACTIONS(2329), - [sym__html_comment] = ACTIONS(2329), - [sym__autolink] = ACTIONS(2329), - [sym__highlight_span_start] = ACTIONS(2329), - [sym__insert_span_start] = ACTIONS(2329), - [sym__delete_span_start] = ACTIONS(2329), - [sym__edit_comment_span_start] = ACTIONS(2329), - [sym__single_quote_span_open] = ACTIONS(2329), - [sym__double_quote_span_open] = ACTIONS(2329), - [sym__shortcode_open_escaped] = ACTIONS(2329), - [sym__shortcode_open] = ACTIONS(2329), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2329), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2329), - [sym__cite_author_in_text] = ACTIONS(2329), - [sym__cite_suppress_author] = ACTIONS(2329), - [sym__strikeout_open] = ACTIONS(2329), - [sym__subscript_open] = ACTIONS(2329), - [sym__superscript_open] = ACTIONS(2329), - [sym__inline_note_start_token] = ACTIONS(2329), - [sym__strong_emphasis_open_star] = ACTIONS(2329), - [sym__strong_emphasis_open_underscore] = ACTIONS(2329), - [sym__emphasis_open_star] = ACTIONS(2329), - [sym__emphasis_open_underscore] = ACTIONS(2329), - [sym_inline_note_reference] = ACTIONS(2329), - [sym_html_element] = ACTIONS(2329), - [sym__pandoc_lt_str] = ACTIONS(2329), - [sym__pandoc_line_break] = ACTIONS(2329), - [sym_grid_table] = ACTIONS(2329), - [sym__caption_start] = ACTIONS(2329), + [ts_builtin_sym_end] = 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), + [sym__whitespace] = ACTIONS(2307), + [sym__line_ending] = ACTIONS(2307), + [sym__soft_line_ending] = ACTIONS(2307), + [sym_block_continuation] = ACTIONS(2957), + [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(2307), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2307), + [sym__fenced_code_block_start_backtick] = ACTIONS(2307), + [sym__minus_metadata_start] = 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_lt_str] = ACTIONS(2307), + [sym__pandoc_line_break] = ACTIONS(2307), + [sym_grid_table] = ACTIONS(2307), + [sym__caption_start] = ACTIONS(2307), }, [STATE(351)] = { - [ts_builtin_sym_end] = ACTIONS(2383), - [sym_entity_reference] = ACTIONS(2383), - [sym_numeric_character_reference] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_BANG_LBRACK] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [aux_sym_pandoc_str_token1] = ACTIONS(2385), - [anon_sym_PIPE] = ACTIONS(2383), - [sym__whitespace] = ACTIONS(2383), - [sym__line_ending] = ACTIONS(2383), - [sym__soft_line_ending] = ACTIONS(2383), - [sym__block_quote_start] = ACTIONS(2383), - [sym_atx_h1_marker] = ACTIONS(2383), - [sym_atx_h2_marker] = ACTIONS(2383), - [sym_atx_h3_marker] = ACTIONS(2383), - [sym_atx_h4_marker] = ACTIONS(2383), - [sym_atx_h5_marker] = ACTIONS(2383), - [sym_atx_h6_marker] = ACTIONS(2383), - [sym__thematic_break] = ACTIONS(2383), - [sym__list_marker_minus] = ACTIONS(2383), - [sym__list_marker_plus] = ACTIONS(2383), - [sym__list_marker_star] = ACTIONS(2383), - [sym__list_marker_parenthesis] = ACTIONS(2383), - [sym__list_marker_dot] = ACTIONS(2383), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_example] = ACTIONS(2383), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2383), - [sym__fenced_code_block_start_backtick] = ACTIONS(2383), - [sym_minus_metadata] = ACTIONS(2383), - [sym__pipe_table_start] = ACTIONS(2383), - [sym__fenced_div_start] = ACTIONS(2383), - [sym_ref_id_specifier] = ACTIONS(2383), - [sym__code_span_start] = ACTIONS(2383), - [sym__html_comment] = ACTIONS(2383), - [sym__autolink] = ACTIONS(2383), - [sym__highlight_span_start] = ACTIONS(2383), - [sym__insert_span_start] = ACTIONS(2383), - [sym__delete_span_start] = ACTIONS(2383), - [sym__edit_comment_span_start] = ACTIONS(2383), - [sym__single_quote_span_open] = ACTIONS(2383), - [sym__double_quote_span_open] = ACTIONS(2383), - [sym__shortcode_open_escaped] = ACTIONS(2383), - [sym__shortcode_open] = ACTIONS(2383), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2383), - [sym__cite_author_in_text] = ACTIONS(2383), - [sym__cite_suppress_author] = ACTIONS(2383), - [sym__strikeout_open] = ACTIONS(2383), - [sym__subscript_open] = ACTIONS(2383), - [sym__superscript_open] = ACTIONS(2383), - [sym__inline_note_start_token] = ACTIONS(2383), - [sym__strong_emphasis_open_star] = ACTIONS(2383), - [sym__strong_emphasis_open_underscore] = ACTIONS(2383), - [sym__emphasis_open_star] = ACTIONS(2383), - [sym__emphasis_open_underscore] = ACTIONS(2383), - [sym_inline_note_reference] = ACTIONS(2383), - [sym_html_element] = ACTIONS(2383), - [sym__pandoc_lt_str] = ACTIONS(2383), - [sym__pandoc_line_break] = ACTIONS(2383), - [sym_grid_table] = ACTIONS(2383), - [sym__caption_start] = ACTIONS(2383), - }, - [STATE(352)] = { - [sym_entity_reference] = ACTIONS(2525), - [sym_numeric_character_reference] = ACTIONS(2525), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_BANG_LBRACK] = ACTIONS(2525), - [anon_sym_DOLLAR] = ACTIONS(2527), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2525), - [aux_sym_pandoc_str_token1] = ACTIONS(2527), - [anon_sym_PIPE] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(2525), - [sym__line_ending] = ACTIONS(2525), - [sym__soft_line_ending] = ACTIONS(2525), - [sym__block_close] = ACTIONS(2525), - [sym__block_quote_start] = ACTIONS(2525), - [sym_atx_h1_marker] = ACTIONS(2525), - [sym_atx_h2_marker] = ACTIONS(2525), - [sym_atx_h3_marker] = ACTIONS(2525), - [sym_atx_h4_marker] = ACTIONS(2525), - [sym_atx_h5_marker] = ACTIONS(2525), - [sym_atx_h6_marker] = ACTIONS(2525), - [sym__thematic_break] = ACTIONS(2525), - [sym__list_marker_minus] = ACTIONS(2525), - [sym__list_marker_plus] = ACTIONS(2525), - [sym__list_marker_star] = ACTIONS(2525), - [sym__list_marker_parenthesis] = ACTIONS(2525), - [sym__list_marker_dot] = ACTIONS(2525), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_example] = ACTIONS(2525), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2525), - [sym__fenced_code_block_start_backtick] = ACTIONS(2525), - [sym_minus_metadata] = ACTIONS(2525), - [sym__pipe_table_start] = ACTIONS(2525), - [sym__fenced_div_start] = ACTIONS(2525), - [sym_ref_id_specifier] = ACTIONS(2525), - [sym__code_span_start] = ACTIONS(2525), - [sym__html_comment] = ACTIONS(2525), - [sym__autolink] = ACTIONS(2525), - [sym__highlight_span_start] = ACTIONS(2525), - [sym__insert_span_start] = ACTIONS(2525), - [sym__delete_span_start] = ACTIONS(2525), - [sym__edit_comment_span_start] = ACTIONS(2525), - [sym__single_quote_span_open] = ACTIONS(2525), - [sym__double_quote_span_open] = ACTIONS(2525), - [sym__shortcode_open_escaped] = ACTIONS(2525), - [sym__shortcode_open] = ACTIONS(2525), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2525), - [sym__cite_author_in_text] = ACTIONS(2525), - [sym__cite_suppress_author] = ACTIONS(2525), - [sym__strikeout_open] = ACTIONS(2525), - [sym__subscript_open] = ACTIONS(2525), - [sym__superscript_open] = ACTIONS(2525), - [sym__inline_note_start_token] = ACTIONS(2525), - [sym__strong_emphasis_open_star] = ACTIONS(2525), - [sym__strong_emphasis_open_underscore] = ACTIONS(2525), - [sym__emphasis_open_star] = ACTIONS(2525), - [sym__emphasis_open_underscore] = ACTIONS(2525), - [sym_inline_note_reference] = ACTIONS(2525), - [sym_html_element] = ACTIONS(2525), - [sym__pandoc_lt_str] = ACTIONS(2525), - [sym__pandoc_line_break] = ACTIONS(2525), - [sym_grid_table] = ACTIONS(2525), - [sym__caption_start] = ACTIONS(2525), - }, - [STATE(353)] = { - [ts_builtin_sym_end] = ACTIONS(2395), - [sym_entity_reference] = ACTIONS(2395), - [sym_numeric_character_reference] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_BANG_LBRACK] = ACTIONS(2395), - [anon_sym_DOLLAR] = ACTIONS(2397), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [aux_sym_pandoc_str_token1] = ACTIONS(2397), - [anon_sym_PIPE] = ACTIONS(2395), - [sym__whitespace] = ACTIONS(2395), - [sym__line_ending] = ACTIONS(2395), - [sym__soft_line_ending] = ACTIONS(2395), - [sym__block_quote_start] = ACTIONS(2395), - [sym_atx_h1_marker] = ACTIONS(2395), - [sym_atx_h2_marker] = ACTIONS(2395), - [sym_atx_h3_marker] = ACTIONS(2395), - [sym_atx_h4_marker] = ACTIONS(2395), - [sym_atx_h5_marker] = ACTIONS(2395), - [sym_atx_h6_marker] = ACTIONS(2395), - [sym__thematic_break] = ACTIONS(2395), - [sym__list_marker_minus] = ACTIONS(2395), - [sym__list_marker_plus] = ACTIONS(2395), - [sym__list_marker_star] = ACTIONS(2395), - [sym__list_marker_parenthesis] = ACTIONS(2395), - [sym__list_marker_dot] = ACTIONS(2395), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_example] = ACTIONS(2395), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2395), - [sym__fenced_code_block_start_backtick] = ACTIONS(2395), - [sym_minus_metadata] = ACTIONS(2395), - [sym__pipe_table_start] = ACTIONS(2395), - [sym__fenced_div_start] = ACTIONS(2395), - [sym_ref_id_specifier] = ACTIONS(2395), - [sym__code_span_start] = ACTIONS(2395), - [sym__html_comment] = ACTIONS(2395), - [sym__autolink] = ACTIONS(2395), - [sym__highlight_span_start] = ACTIONS(2395), - [sym__insert_span_start] = ACTIONS(2395), - [sym__delete_span_start] = ACTIONS(2395), - [sym__edit_comment_span_start] = ACTIONS(2395), - [sym__single_quote_span_open] = ACTIONS(2395), - [sym__double_quote_span_open] = ACTIONS(2395), - [sym__shortcode_open_escaped] = ACTIONS(2395), - [sym__shortcode_open] = ACTIONS(2395), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2395), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2395), - [sym__cite_author_in_text] = ACTIONS(2395), - [sym__cite_suppress_author] = ACTIONS(2395), - [sym__strikeout_open] = ACTIONS(2395), - [sym__subscript_open] = ACTIONS(2395), - [sym__superscript_open] = ACTIONS(2395), - [sym__inline_note_start_token] = ACTIONS(2395), - [sym__strong_emphasis_open_star] = ACTIONS(2395), - [sym__strong_emphasis_open_underscore] = ACTIONS(2395), - [sym__emphasis_open_star] = ACTIONS(2395), - [sym__emphasis_open_underscore] = ACTIONS(2395), - [sym_inline_note_reference] = ACTIONS(2395), - [sym_html_element] = ACTIONS(2395), - [sym__pandoc_lt_str] = ACTIONS(2395), - [sym__pandoc_line_break] = ACTIONS(2395), - [sym_grid_table] = ACTIONS(2395), - [sym__caption_start] = ACTIONS(2395), - }, - [STATE(354)] = { - [ts_builtin_sym_end] = ACTIONS(2399), - [sym_entity_reference] = ACTIONS(2399), - [sym_numeric_character_reference] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_BANG_LBRACK] = ACTIONS(2399), - [anon_sym_DOLLAR] = ACTIONS(2401), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2399), - [aux_sym_pandoc_str_token1] = ACTIONS(2401), - [anon_sym_PIPE] = ACTIONS(2399), - [sym__whitespace] = ACTIONS(2399), - [sym__line_ending] = ACTIONS(2399), - [sym__soft_line_ending] = ACTIONS(2399), - [sym__block_quote_start] = ACTIONS(2399), - [sym_atx_h1_marker] = ACTIONS(2399), - [sym_atx_h2_marker] = ACTIONS(2399), - [sym_atx_h3_marker] = ACTIONS(2399), - [sym_atx_h4_marker] = ACTIONS(2399), - [sym_atx_h5_marker] = ACTIONS(2399), - [sym_atx_h6_marker] = ACTIONS(2399), - [sym__thematic_break] = ACTIONS(2399), - [sym__list_marker_minus] = ACTIONS(2399), - [sym__list_marker_plus] = ACTIONS(2399), - [sym__list_marker_star] = ACTIONS(2399), - [sym__list_marker_parenthesis] = ACTIONS(2399), - [sym__list_marker_dot] = ACTIONS(2399), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_example] = ACTIONS(2399), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2399), - [sym__fenced_code_block_start_backtick] = ACTIONS(2399), - [sym_minus_metadata] = ACTIONS(2399), - [sym__pipe_table_start] = ACTIONS(2399), - [sym__fenced_div_start] = ACTIONS(2399), - [sym_ref_id_specifier] = ACTIONS(2399), - [sym__code_span_start] = ACTIONS(2399), - [sym__html_comment] = ACTIONS(2399), - [sym__autolink] = ACTIONS(2399), - [sym__highlight_span_start] = ACTIONS(2399), - [sym__insert_span_start] = ACTIONS(2399), - [sym__delete_span_start] = ACTIONS(2399), - [sym__edit_comment_span_start] = ACTIONS(2399), - [sym__single_quote_span_open] = ACTIONS(2399), - [sym__double_quote_span_open] = ACTIONS(2399), - [sym__shortcode_open_escaped] = ACTIONS(2399), - [sym__shortcode_open] = ACTIONS(2399), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2399), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2399), - [sym__cite_author_in_text] = ACTIONS(2399), - [sym__cite_suppress_author] = ACTIONS(2399), - [sym__strikeout_open] = ACTIONS(2399), - [sym__subscript_open] = ACTIONS(2399), - [sym__superscript_open] = ACTIONS(2399), - [sym__inline_note_start_token] = ACTIONS(2399), - [sym__strong_emphasis_open_star] = ACTIONS(2399), - [sym__strong_emphasis_open_underscore] = ACTIONS(2399), - [sym__emphasis_open_star] = ACTIONS(2399), - [sym__emphasis_open_underscore] = ACTIONS(2399), - [sym_inline_note_reference] = ACTIONS(2399), - [sym_html_element] = ACTIONS(2399), - [sym__pandoc_lt_str] = ACTIONS(2399), - [sym__pandoc_line_break] = ACTIONS(2399), - [sym_grid_table] = ACTIONS(2399), - [sym__caption_start] = ACTIONS(2399), - }, - [STATE(355)] = { - [ts_builtin_sym_end] = ACTIONS(2629), - [sym_entity_reference] = ACTIONS(2629), - [sym_numeric_character_reference] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_BANG_LBRACK] = ACTIONS(2629), - [anon_sym_DOLLAR] = ACTIONS(2631), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2629), - [aux_sym_pandoc_str_token1] = ACTIONS(2631), - [anon_sym_PIPE] = ACTIONS(2629), - [sym__whitespace] = ACTIONS(2629), - [sym__line_ending] = ACTIONS(2629), - [sym__soft_line_ending] = ACTIONS(2629), - [sym__block_quote_start] = ACTIONS(2629), - [sym_atx_h1_marker] = ACTIONS(2629), - [sym_atx_h2_marker] = ACTIONS(2629), - [sym_atx_h3_marker] = ACTIONS(2629), - [sym_atx_h4_marker] = ACTIONS(2629), - [sym_atx_h5_marker] = ACTIONS(2629), - [sym_atx_h6_marker] = ACTIONS(2629), - [sym__thematic_break] = ACTIONS(2629), - [sym__list_marker_minus] = ACTIONS(2629), - [sym__list_marker_plus] = ACTIONS(2629), - [sym__list_marker_star] = ACTIONS(2629), - [sym__list_marker_parenthesis] = ACTIONS(2629), - [sym__list_marker_dot] = ACTIONS(2629), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_example] = ACTIONS(2629), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2629), - [sym__fenced_code_block_start_backtick] = ACTIONS(2629), - [sym_minus_metadata] = ACTIONS(2629), - [sym__pipe_table_start] = ACTIONS(2629), - [sym__fenced_div_start] = ACTIONS(2629), - [sym_ref_id_specifier] = ACTIONS(2629), - [sym__code_span_start] = ACTIONS(2629), - [sym__html_comment] = ACTIONS(2629), - [sym__autolink] = ACTIONS(2629), - [sym__highlight_span_start] = ACTIONS(2629), - [sym__insert_span_start] = ACTIONS(2629), - [sym__delete_span_start] = ACTIONS(2629), - [sym__edit_comment_span_start] = ACTIONS(2629), - [sym__single_quote_span_open] = ACTIONS(2629), - [sym__double_quote_span_open] = ACTIONS(2629), - [sym__shortcode_open_escaped] = ACTIONS(2629), - [sym__shortcode_open] = ACTIONS(2629), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2629), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2629), - [sym__cite_author_in_text] = ACTIONS(2629), - [sym__cite_suppress_author] = ACTIONS(2629), - [sym__strikeout_open] = ACTIONS(2629), - [sym__subscript_open] = ACTIONS(2629), - [sym__superscript_open] = ACTIONS(2629), - [sym__inline_note_start_token] = ACTIONS(2629), - [sym__strong_emphasis_open_star] = ACTIONS(2629), - [sym__strong_emphasis_open_underscore] = ACTIONS(2629), - [sym__emphasis_open_star] = ACTIONS(2629), - [sym__emphasis_open_underscore] = ACTIONS(2629), - [sym_inline_note_reference] = ACTIONS(2629), - [sym_html_element] = ACTIONS(2629), - [sym__pandoc_lt_str] = ACTIONS(2629), - [sym__pandoc_line_break] = ACTIONS(2629), - [sym_grid_table] = ACTIONS(2629), - [sym__caption_start] = ACTIONS(2629), - }, - [STATE(356)] = { - [ts_builtin_sym_end] = ACTIONS(2635), - [sym_entity_reference] = ACTIONS(2635), - [sym_numeric_character_reference] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_BANG_LBRACK] = ACTIONS(2635), - [anon_sym_DOLLAR] = ACTIONS(2637), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2635), - [aux_sym_pandoc_str_token1] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2635), - [sym__whitespace] = ACTIONS(2635), - [sym__line_ending] = ACTIONS(2635), - [sym__soft_line_ending] = ACTIONS(2635), - [sym__block_quote_start] = ACTIONS(2635), - [sym_atx_h1_marker] = ACTIONS(2635), - [sym_atx_h2_marker] = ACTIONS(2635), - [sym_atx_h3_marker] = ACTIONS(2635), - [sym_atx_h4_marker] = ACTIONS(2635), - [sym_atx_h5_marker] = ACTIONS(2635), - [sym_atx_h6_marker] = ACTIONS(2635), - [sym__thematic_break] = ACTIONS(2635), - [sym__list_marker_minus] = ACTIONS(2635), - [sym__list_marker_plus] = ACTIONS(2635), - [sym__list_marker_star] = ACTIONS(2635), - [sym__list_marker_parenthesis] = ACTIONS(2635), - [sym__list_marker_dot] = ACTIONS(2635), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2635), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2635), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2635), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2635), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2635), - [sym__list_marker_example] = ACTIONS(2635), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2635), - [sym__fenced_code_block_start_backtick] = ACTIONS(2635), - [sym_minus_metadata] = ACTIONS(2635), - [sym__pipe_table_start] = ACTIONS(2635), - [sym__fenced_div_start] = ACTIONS(2635), - [sym_ref_id_specifier] = ACTIONS(2635), - [sym__code_span_start] = ACTIONS(2635), - [sym__html_comment] = ACTIONS(2635), - [sym__autolink] = ACTIONS(2635), - [sym__highlight_span_start] = ACTIONS(2635), - [sym__insert_span_start] = ACTIONS(2635), - [sym__delete_span_start] = ACTIONS(2635), - [sym__edit_comment_span_start] = ACTIONS(2635), - [sym__single_quote_span_open] = ACTIONS(2635), - [sym__double_quote_span_open] = ACTIONS(2635), - [sym__shortcode_open_escaped] = ACTIONS(2635), - [sym__shortcode_open] = ACTIONS(2635), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2635), - [sym__cite_author_in_text] = ACTIONS(2635), - [sym__cite_suppress_author] = ACTIONS(2635), - [sym__strikeout_open] = ACTIONS(2635), - [sym__subscript_open] = ACTIONS(2635), - [sym__superscript_open] = ACTIONS(2635), - [sym__inline_note_start_token] = ACTIONS(2635), - [sym__strong_emphasis_open_star] = ACTIONS(2635), - [sym__strong_emphasis_open_underscore] = ACTIONS(2635), - [sym__emphasis_open_star] = ACTIONS(2635), - [sym__emphasis_open_underscore] = ACTIONS(2635), - [sym_inline_note_reference] = ACTIONS(2635), - [sym_html_element] = ACTIONS(2635), - [sym__pandoc_lt_str] = ACTIONS(2635), - [sym__pandoc_line_break] = ACTIONS(2635), - [sym_grid_table] = ACTIONS(2635), - [sym__caption_start] = ACTIONS(2635), - }, - [STATE(357)] = { [ts_builtin_sym_end] = ACTIONS(2403), [sym_entity_reference] = ACTIONS(2403), [sym_numeric_character_reference] = ACTIONS(2403), @@ -58713,9 +58507,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2403), [aux_sym_pandoc_str_token1] = ACTIONS(2405), [anon_sym_PIPE] = ACTIONS(2403), - [sym__whitespace] = ACTIONS(2403), + [sym__whitespace] = ACTIONS(2959), [sym__line_ending] = ACTIONS(2403), [sym__soft_line_ending] = ACTIONS(2403), + [sym_block_continuation] = ACTIONS(2961), [sym__block_quote_start] = ACTIONS(2403), [sym_atx_h1_marker] = ACTIONS(2403), [sym_atx_h2_marker] = ACTIONS(2403), @@ -58737,7 +58532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2403), [sym__list_marker_example_dont_interrupt] = ACTIONS(2403), [sym__fenced_code_block_start_backtick] = ACTIONS(2403), - [sym_minus_metadata] = ACTIONS(2403), + [sym__minus_metadata_start] = ACTIONS(2403), [sym__pipe_table_start] = ACTIONS(2403), [sym__fenced_div_start] = ACTIONS(2403), [sym_ref_id_specifier] = ACTIONS(2403), @@ -58771,2491 +58566,5320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2403), [sym__caption_start] = ACTIONS(2403), }, + [STATE(352)] = { + [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), + [sym__whitespace] = ACTIONS(2705), + [sym__line_ending] = ACTIONS(2705), + [sym__soft_line_ending] = ACTIONS(2705), + [sym__block_close] = ACTIONS(2705), + [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_start] = 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_lt_str] = ACTIONS(2705), + [sym__pandoc_line_break] = ACTIONS(2705), + [sym_grid_table] = ACTIONS(2705), + [sym__caption_start] = ACTIONS(2705), + }, + [STATE(353)] = { + [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), + [sym__whitespace] = ACTIONS(2615), + [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_start] = 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_lt_str] = ACTIONS(2615), + [sym__pandoc_line_break] = ACTIONS(2615), + [sym_grid_table] = ACTIONS(2615), + [sym__caption_start] = ACTIONS(2615), + }, + [STATE(354)] = { + [sym_entity_reference] = ACTIONS(2619), + [sym_numeric_character_reference] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_BANG_LBRACK] = ACTIONS(2619), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2619), + [aux_sym_pandoc_str_token1] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2619), + [sym__whitespace] = ACTIONS(2619), + [sym__line_ending] = ACTIONS(2619), + [sym__soft_line_ending] = ACTIONS(2619), + [sym__block_close] = ACTIONS(2619), + [sym__block_quote_start] = ACTIONS(2619), + [sym_atx_h1_marker] = ACTIONS(2619), + [sym_atx_h2_marker] = ACTIONS(2619), + [sym_atx_h3_marker] = ACTIONS(2619), + [sym_atx_h4_marker] = ACTIONS(2619), + [sym_atx_h5_marker] = ACTIONS(2619), + [sym_atx_h6_marker] = ACTIONS(2619), + [sym__thematic_break] = ACTIONS(2619), + [sym__list_marker_minus] = ACTIONS(2619), + [sym__list_marker_plus] = ACTIONS(2619), + [sym__list_marker_star] = ACTIONS(2619), + [sym__list_marker_parenthesis] = ACTIONS(2619), + [sym__list_marker_dot] = ACTIONS(2619), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_example] = ACTIONS(2619), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2619), + [sym__fenced_code_block_start_backtick] = ACTIONS(2619), + [sym__minus_metadata_start] = ACTIONS(2619), + [sym__pipe_table_start] = ACTIONS(2619), + [sym__fenced_div_start] = ACTIONS(2619), + [sym_ref_id_specifier] = ACTIONS(2619), + [sym__code_span_start] = ACTIONS(2619), + [sym__html_comment] = ACTIONS(2619), + [sym__autolink] = ACTIONS(2619), + [sym__highlight_span_start] = ACTIONS(2619), + [sym__insert_span_start] = ACTIONS(2619), + [sym__delete_span_start] = ACTIONS(2619), + [sym__edit_comment_span_start] = ACTIONS(2619), + [sym__single_quote_span_open] = ACTIONS(2619), + [sym__double_quote_span_open] = ACTIONS(2619), + [sym__shortcode_open_escaped] = ACTIONS(2619), + [sym__shortcode_open] = ACTIONS(2619), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2619), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2619), + [sym__cite_author_in_text] = ACTIONS(2619), + [sym__cite_suppress_author] = ACTIONS(2619), + [sym__strikeout_open] = ACTIONS(2619), + [sym__subscript_open] = ACTIONS(2619), + [sym__superscript_open] = ACTIONS(2619), + [sym__inline_note_start_token] = ACTIONS(2619), + [sym__strong_emphasis_open_star] = ACTIONS(2619), + [sym__strong_emphasis_open_underscore] = ACTIONS(2619), + [sym__emphasis_open_star] = ACTIONS(2619), + [sym__emphasis_open_underscore] = ACTIONS(2619), + [sym_inline_note_reference] = ACTIONS(2619), + [sym_html_element] = ACTIONS(2619), + [sym__pandoc_lt_str] = ACTIONS(2619), + [sym__pandoc_line_break] = ACTIONS(2619), + [sym_grid_table] = ACTIONS(2619), + [sym__caption_start] = ACTIONS(2619), + }, + [STATE(355)] = { + [sym_entity_reference] = ACTIONS(2623), + [sym_numeric_character_reference] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_BANG_LBRACK] = ACTIONS(2623), + [anon_sym_DOLLAR] = ACTIONS(2625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2623), + [aux_sym_pandoc_str_token1] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2623), + [sym__whitespace] = ACTIONS(2623), + [sym__line_ending] = ACTIONS(2623), + [sym__soft_line_ending] = ACTIONS(2623), + [sym__block_close] = ACTIONS(2623), + [sym__block_quote_start] = ACTIONS(2623), + [sym_atx_h1_marker] = ACTIONS(2623), + [sym_atx_h2_marker] = ACTIONS(2623), + [sym_atx_h3_marker] = ACTIONS(2623), + [sym_atx_h4_marker] = ACTIONS(2623), + [sym_atx_h5_marker] = ACTIONS(2623), + [sym_atx_h6_marker] = ACTIONS(2623), + [sym__thematic_break] = ACTIONS(2623), + [sym__list_marker_minus] = ACTIONS(2623), + [sym__list_marker_plus] = ACTIONS(2623), + [sym__list_marker_star] = ACTIONS(2623), + [sym__list_marker_parenthesis] = ACTIONS(2623), + [sym__list_marker_dot] = ACTIONS(2623), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_example] = ACTIONS(2623), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2623), + [sym__fenced_code_block_start_backtick] = ACTIONS(2623), + [sym__minus_metadata_start] = ACTIONS(2623), + [sym__pipe_table_start] = ACTIONS(2623), + [sym__fenced_div_start] = ACTIONS(2623), + [sym_ref_id_specifier] = ACTIONS(2623), + [sym__code_span_start] = ACTIONS(2623), + [sym__html_comment] = ACTIONS(2623), + [sym__autolink] = ACTIONS(2623), + [sym__highlight_span_start] = ACTIONS(2623), + [sym__insert_span_start] = ACTIONS(2623), + [sym__delete_span_start] = ACTIONS(2623), + [sym__edit_comment_span_start] = ACTIONS(2623), + [sym__single_quote_span_open] = ACTIONS(2623), + [sym__double_quote_span_open] = ACTIONS(2623), + [sym__shortcode_open_escaped] = ACTIONS(2623), + [sym__shortcode_open] = ACTIONS(2623), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2623), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2623), + [sym__cite_author_in_text] = ACTIONS(2623), + [sym__cite_suppress_author] = ACTIONS(2623), + [sym__strikeout_open] = ACTIONS(2623), + [sym__subscript_open] = ACTIONS(2623), + [sym__superscript_open] = ACTIONS(2623), + [sym__inline_note_start_token] = ACTIONS(2623), + [sym__strong_emphasis_open_star] = ACTIONS(2623), + [sym__strong_emphasis_open_underscore] = ACTIONS(2623), + [sym__emphasis_open_star] = ACTIONS(2623), + [sym__emphasis_open_underscore] = ACTIONS(2623), + [sym_inline_note_reference] = ACTIONS(2623), + [sym_html_element] = ACTIONS(2623), + [sym__pandoc_lt_str] = ACTIONS(2623), + [sym__pandoc_line_break] = ACTIONS(2623), + [sym_grid_table] = ACTIONS(2623), + [sym__caption_start] = ACTIONS(2623), + }, + [STATE(356)] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_entity_reference] = ACTIONS(2397), + [sym_numeric_character_reference] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2397), + [anon_sym_BANG_LBRACK] = ACTIONS(2397), + [anon_sym_DOLLAR] = ACTIONS(2399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [aux_sym_pandoc_str_token1] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2397), + [sym__whitespace] = ACTIONS(2397), + [sym__line_ending] = ACTIONS(2397), + [sym__soft_line_ending] = ACTIONS(2397), + [sym__block_quote_start] = ACTIONS(2397), + [sym_atx_h1_marker] = ACTIONS(2397), + [sym_atx_h2_marker] = ACTIONS(2397), + [sym_atx_h3_marker] = ACTIONS(2397), + [sym_atx_h4_marker] = ACTIONS(2397), + [sym_atx_h5_marker] = ACTIONS(2397), + [sym_atx_h6_marker] = ACTIONS(2397), + [sym__thematic_break] = ACTIONS(2397), + [sym__list_marker_minus] = ACTIONS(2397), + [sym__list_marker_plus] = ACTIONS(2397), + [sym__list_marker_star] = ACTIONS(2397), + [sym__list_marker_parenthesis] = ACTIONS(2397), + [sym__list_marker_dot] = ACTIONS(2397), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_example] = ACTIONS(2397), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2397), + [sym__fenced_code_block_start_backtick] = ACTIONS(2397), + [sym__minus_metadata_start] = ACTIONS(2397), + [sym__pipe_table_start] = ACTIONS(2397), + [sym__fenced_div_start] = ACTIONS(2397), + [sym_ref_id_specifier] = ACTIONS(2397), + [sym__code_span_start] = ACTIONS(2397), + [sym__html_comment] = ACTIONS(2397), + [sym__autolink] = ACTIONS(2397), + [sym__highlight_span_start] = ACTIONS(2397), + [sym__insert_span_start] = ACTIONS(2397), + [sym__delete_span_start] = ACTIONS(2397), + [sym__edit_comment_span_start] = ACTIONS(2397), + [sym__single_quote_span_open] = ACTIONS(2397), + [sym__double_quote_span_open] = ACTIONS(2397), + [sym__shortcode_open_escaped] = ACTIONS(2397), + [sym__shortcode_open] = ACTIONS(2397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2397), + [sym__cite_author_in_text] = ACTIONS(2397), + [sym__cite_suppress_author] = ACTIONS(2397), + [sym__strikeout_open] = ACTIONS(2397), + [sym__subscript_open] = ACTIONS(2397), + [sym__superscript_open] = ACTIONS(2397), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2397), + [sym__strong_emphasis_open_underscore] = ACTIONS(2397), + [sym__emphasis_open_star] = ACTIONS(2397), + [sym__emphasis_open_underscore] = ACTIONS(2397), + [sym_inline_note_reference] = ACTIONS(2397), + [sym_html_element] = ACTIONS(2397), + [sym__pandoc_lt_str] = ACTIONS(2397), + [sym__pandoc_line_break] = ACTIONS(2397), + [sym_grid_table] = ACTIONS(2397), + [sym__caption_start] = ACTIONS(2397), + }, + [STATE(357)] = { + [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), + [sym__whitespace] = ACTIONS(2627), + [sym__line_ending] = ACTIONS(2627), + [sym__soft_line_ending] = ACTIONS(2627), + [sym__block_close] = ACTIONS(2627), + [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_start] = 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_lt_str] = ACTIONS(2627), + [sym__pandoc_line_break] = ACTIONS(2627), + [sym_grid_table] = ACTIONS(2627), + [sym__caption_start] = ACTIONS(2627), + }, [STATE(358)] = { - [ts_builtin_sym_end] = ACTIONS(2261), - [sym_entity_reference] = ACTIONS(2261), - [sym_numeric_character_reference] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2261), - [anon_sym_BANG_LBRACK] = ACTIONS(2261), - [anon_sym_DOLLAR] = ACTIONS(2263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2261), - [aux_sym_pandoc_str_token1] = ACTIONS(2263), - [anon_sym_PIPE] = ACTIONS(2261), - [sym__whitespace] = ACTIONS(2261), - [sym__line_ending] = ACTIONS(2261), - [sym__soft_line_ending] = ACTIONS(2261), - [sym__block_quote_start] = ACTIONS(2261), - [sym_atx_h1_marker] = ACTIONS(2261), - [sym_atx_h2_marker] = ACTIONS(2261), - [sym_atx_h3_marker] = ACTIONS(2261), - [sym_atx_h4_marker] = ACTIONS(2261), - [sym_atx_h5_marker] = ACTIONS(2261), - [sym_atx_h6_marker] = ACTIONS(2261), - [sym__thematic_break] = ACTIONS(2261), - [sym__list_marker_minus] = ACTIONS(2261), - [sym__list_marker_plus] = ACTIONS(2261), - [sym__list_marker_star] = ACTIONS(2261), - [sym__list_marker_parenthesis] = ACTIONS(2261), - [sym__list_marker_dot] = ACTIONS(2261), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_example] = ACTIONS(2261), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2261), - [sym__fenced_code_block_start_backtick] = ACTIONS(2261), - [sym_minus_metadata] = ACTIONS(2261), - [sym__pipe_table_start] = ACTIONS(2261), - [sym__fenced_div_start] = ACTIONS(2261), - [sym_ref_id_specifier] = ACTIONS(2261), - [sym__code_span_start] = ACTIONS(2261), - [sym__html_comment] = ACTIONS(2261), - [sym__autolink] = ACTIONS(2261), - [sym__highlight_span_start] = ACTIONS(2261), - [sym__insert_span_start] = ACTIONS(2261), - [sym__delete_span_start] = ACTIONS(2261), - [sym__edit_comment_span_start] = ACTIONS(2261), - [sym__single_quote_span_open] = ACTIONS(2261), - [sym__double_quote_span_open] = ACTIONS(2261), - [sym__shortcode_open_escaped] = ACTIONS(2261), - [sym__shortcode_open] = ACTIONS(2261), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2261), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2261), - [sym__cite_author_in_text] = ACTIONS(2261), - [sym__cite_suppress_author] = ACTIONS(2261), - [sym__strikeout_open] = ACTIONS(2261), - [sym__subscript_open] = ACTIONS(2261), - [sym__superscript_open] = ACTIONS(2261), - [sym__inline_note_start_token] = ACTIONS(2261), - [sym__strong_emphasis_open_star] = ACTIONS(2261), - [sym__strong_emphasis_open_underscore] = ACTIONS(2261), - [sym__emphasis_open_star] = ACTIONS(2261), - [sym__emphasis_open_underscore] = ACTIONS(2261), - [sym_inline_note_reference] = ACTIONS(2261), - [sym_html_element] = ACTIONS(2261), - [sym__pandoc_lt_str] = ACTIONS(2261), - [sym__pandoc_line_break] = ACTIONS(2261), - [sym_grid_table] = ACTIONS(2261), - [sym__caption_start] = ACTIONS(2261), + [sym_entity_reference] = ACTIONS(2631), + [sym_numeric_character_reference] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_BANG_LBRACK] = ACTIONS(2631), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [aux_sym_pandoc_str_token1] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2631), + [sym__whitespace] = ACTIONS(2631), + [sym__line_ending] = ACTIONS(2631), + [sym__soft_line_ending] = ACTIONS(2631), + [sym__block_close] = ACTIONS(2631), + [sym__block_quote_start] = ACTIONS(2631), + [sym_atx_h1_marker] = ACTIONS(2631), + [sym_atx_h2_marker] = ACTIONS(2631), + [sym_atx_h3_marker] = ACTIONS(2631), + [sym_atx_h4_marker] = ACTIONS(2631), + [sym_atx_h5_marker] = ACTIONS(2631), + [sym_atx_h6_marker] = ACTIONS(2631), + [sym__thematic_break] = ACTIONS(2631), + [sym__list_marker_minus] = ACTIONS(2631), + [sym__list_marker_plus] = ACTIONS(2631), + [sym__list_marker_star] = ACTIONS(2631), + [sym__list_marker_parenthesis] = ACTIONS(2631), + [sym__list_marker_dot] = ACTIONS(2631), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_example] = ACTIONS(2631), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2631), + [sym__fenced_code_block_start_backtick] = ACTIONS(2631), + [sym__minus_metadata_start] = ACTIONS(2631), + [sym__pipe_table_start] = ACTIONS(2631), + [sym__fenced_div_start] = ACTIONS(2631), + [sym_ref_id_specifier] = ACTIONS(2631), + [sym__code_span_start] = ACTIONS(2631), + [sym__html_comment] = ACTIONS(2631), + [sym__autolink] = ACTIONS(2631), + [sym__highlight_span_start] = ACTIONS(2631), + [sym__insert_span_start] = ACTIONS(2631), + [sym__delete_span_start] = ACTIONS(2631), + [sym__edit_comment_span_start] = ACTIONS(2631), + [sym__single_quote_span_open] = ACTIONS(2631), + [sym__double_quote_span_open] = ACTIONS(2631), + [sym__shortcode_open_escaped] = ACTIONS(2631), + [sym__shortcode_open] = ACTIONS(2631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2631), + [sym__cite_author_in_text] = ACTIONS(2631), + [sym__cite_suppress_author] = ACTIONS(2631), + [sym__strikeout_open] = ACTIONS(2631), + [sym__subscript_open] = ACTIONS(2631), + [sym__superscript_open] = ACTIONS(2631), + [sym__inline_note_start_token] = ACTIONS(2631), + [sym__strong_emphasis_open_star] = ACTIONS(2631), + [sym__strong_emphasis_open_underscore] = ACTIONS(2631), + [sym__emphasis_open_star] = ACTIONS(2631), + [sym__emphasis_open_underscore] = ACTIONS(2631), + [sym_inline_note_reference] = ACTIONS(2631), + [sym_html_element] = ACTIONS(2631), + [sym__pandoc_lt_str] = ACTIONS(2631), + [sym__pandoc_line_break] = ACTIONS(2631), + [sym_grid_table] = ACTIONS(2631), + [sym__caption_start] = ACTIONS(2631), }, [STATE(359)] = { - [ts_builtin_sym_end] = ACTIONS(2659), - [sym_entity_reference] = ACTIONS(2659), - [sym_numeric_character_reference] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_BANG_LBRACK] = ACTIONS(2659), - [anon_sym_DOLLAR] = ACTIONS(2661), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2659), - [aux_sym_pandoc_str_token1] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2659), - [sym__whitespace] = ACTIONS(2659), - [sym__line_ending] = ACTIONS(2659), - [sym__soft_line_ending] = ACTIONS(2659), - [sym__block_quote_start] = ACTIONS(2659), - [sym_atx_h1_marker] = ACTIONS(2659), - [sym_atx_h2_marker] = ACTIONS(2659), - [sym_atx_h3_marker] = ACTIONS(2659), - [sym_atx_h4_marker] = ACTIONS(2659), - [sym_atx_h5_marker] = ACTIONS(2659), - [sym_atx_h6_marker] = ACTIONS(2659), - [sym__thematic_break] = ACTIONS(2659), - [sym__list_marker_minus] = ACTIONS(2659), - [sym__list_marker_plus] = ACTIONS(2659), - [sym__list_marker_star] = ACTIONS(2659), - [sym__list_marker_parenthesis] = ACTIONS(2659), - [sym__list_marker_dot] = ACTIONS(2659), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_example] = ACTIONS(2659), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2659), - [sym__fenced_code_block_start_backtick] = ACTIONS(2659), - [sym_minus_metadata] = ACTIONS(2659), - [sym__pipe_table_start] = ACTIONS(2659), - [sym__fenced_div_start] = ACTIONS(2659), - [sym_ref_id_specifier] = ACTIONS(2659), - [sym__code_span_start] = ACTIONS(2659), - [sym__html_comment] = ACTIONS(2659), - [sym__autolink] = ACTIONS(2659), - [sym__highlight_span_start] = ACTIONS(2659), - [sym__insert_span_start] = ACTIONS(2659), - [sym__delete_span_start] = ACTIONS(2659), - [sym__edit_comment_span_start] = ACTIONS(2659), - [sym__single_quote_span_open] = ACTIONS(2659), - [sym__double_quote_span_open] = ACTIONS(2659), - [sym__shortcode_open_escaped] = ACTIONS(2659), - [sym__shortcode_open] = ACTIONS(2659), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2659), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2659), - [sym__cite_author_in_text] = ACTIONS(2659), - [sym__cite_suppress_author] = ACTIONS(2659), - [sym__strikeout_open] = ACTIONS(2659), - [sym__subscript_open] = ACTIONS(2659), - [sym__superscript_open] = ACTIONS(2659), - [sym__inline_note_start_token] = ACTIONS(2659), - [sym__strong_emphasis_open_star] = ACTIONS(2659), - [sym__strong_emphasis_open_underscore] = ACTIONS(2659), - [sym__emphasis_open_star] = ACTIONS(2659), - [sym__emphasis_open_underscore] = ACTIONS(2659), - [sym_inline_note_reference] = ACTIONS(2659), - [sym_html_element] = ACTIONS(2659), - [sym__pandoc_lt_str] = ACTIONS(2659), - [sym__pandoc_line_break] = ACTIONS(2659), - [sym_grid_table] = ACTIONS(2659), - [sym__caption_start] = ACTIONS(2659), - }, - [STATE(360)] = { - [ts_builtin_sym_end] = ACTIONS(2273), - [sym_entity_reference] = ACTIONS(2273), - [sym_numeric_character_reference] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2273), - [anon_sym_BANG_LBRACK] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [aux_sym_pandoc_str_token1] = ACTIONS(2275), - [anon_sym_PIPE] = ACTIONS(2273), - [sym__whitespace] = ACTIONS(2273), - [sym__line_ending] = ACTIONS(2273), - [sym__soft_line_ending] = ACTIONS(2273), - [sym__block_quote_start] = ACTIONS(2273), - [sym_atx_h1_marker] = ACTIONS(2273), - [sym_atx_h2_marker] = ACTIONS(2273), - [sym_atx_h3_marker] = ACTIONS(2273), - [sym_atx_h4_marker] = ACTIONS(2273), - [sym_atx_h5_marker] = ACTIONS(2273), - [sym_atx_h6_marker] = ACTIONS(2273), - [sym__thematic_break] = ACTIONS(2273), - [sym__list_marker_minus] = ACTIONS(2273), - [sym__list_marker_plus] = ACTIONS(2273), - [sym__list_marker_star] = ACTIONS(2273), - [sym__list_marker_parenthesis] = ACTIONS(2273), - [sym__list_marker_dot] = ACTIONS(2273), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_example] = ACTIONS(2273), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2273), - [sym__fenced_code_block_start_backtick] = ACTIONS(2273), - [sym_minus_metadata] = ACTIONS(2273), - [sym__pipe_table_start] = ACTIONS(2273), - [sym__fenced_div_start] = ACTIONS(2273), - [sym_ref_id_specifier] = ACTIONS(2273), - [sym__code_span_start] = ACTIONS(2273), - [sym__html_comment] = ACTIONS(2273), - [sym__autolink] = ACTIONS(2273), - [sym__highlight_span_start] = ACTIONS(2273), - [sym__insert_span_start] = ACTIONS(2273), - [sym__delete_span_start] = ACTIONS(2273), - [sym__edit_comment_span_start] = ACTIONS(2273), - [sym__single_quote_span_open] = ACTIONS(2273), - [sym__double_quote_span_open] = ACTIONS(2273), - [sym__shortcode_open_escaped] = ACTIONS(2273), - [sym__shortcode_open] = ACTIONS(2273), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2273), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2273), - [sym__cite_author_in_text] = ACTIONS(2273), - [sym__cite_suppress_author] = ACTIONS(2273), - [sym__strikeout_open] = ACTIONS(2273), - [sym__subscript_open] = ACTIONS(2273), - [sym__superscript_open] = ACTIONS(2273), - [sym__inline_note_start_token] = ACTIONS(2273), - [sym__strong_emphasis_open_star] = ACTIONS(2273), - [sym__strong_emphasis_open_underscore] = ACTIONS(2273), - [sym__emphasis_open_star] = ACTIONS(2273), - [sym__emphasis_open_underscore] = ACTIONS(2273), - [sym_inline_note_reference] = ACTIONS(2273), - [sym_html_element] = ACTIONS(2273), - [sym__pandoc_lt_str] = ACTIONS(2273), - [sym__pandoc_line_break] = ACTIONS(2273), - [sym_grid_table] = ACTIONS(2273), - [sym__caption_start] = ACTIONS(2273), + [ts_builtin_sym_end] = ACTIONS(2411), + [sym_entity_reference] = ACTIONS(2411), + [sym_numeric_character_reference] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_BANG_LBRACK] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [aux_sym_pandoc_str_token1] = ACTIONS(2413), + [anon_sym_PIPE] = ACTIONS(2411), + [sym__whitespace] = ACTIONS(2411), + [sym__line_ending] = ACTIONS(2411), + [sym__soft_line_ending] = ACTIONS(2411), + [sym__block_quote_start] = ACTIONS(2411), + [sym_atx_h1_marker] = ACTIONS(2411), + [sym_atx_h2_marker] = ACTIONS(2411), + [sym_atx_h3_marker] = ACTIONS(2411), + [sym_atx_h4_marker] = ACTIONS(2411), + [sym_atx_h5_marker] = ACTIONS(2411), + [sym_atx_h6_marker] = ACTIONS(2411), + [sym__thematic_break] = ACTIONS(2411), + [sym__list_marker_minus] = ACTIONS(2411), + [sym__list_marker_plus] = ACTIONS(2411), + [sym__list_marker_star] = ACTIONS(2411), + [sym__list_marker_parenthesis] = ACTIONS(2411), + [sym__list_marker_dot] = ACTIONS(2411), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_example] = ACTIONS(2411), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2411), + [sym__fenced_code_block_start_backtick] = ACTIONS(2411), + [sym__minus_metadata_start] = ACTIONS(2411), + [sym__pipe_table_start] = ACTIONS(2411), + [sym__fenced_div_start] = ACTIONS(2411), + [sym_ref_id_specifier] = ACTIONS(2411), + [sym__code_span_start] = ACTIONS(2411), + [sym__html_comment] = ACTIONS(2411), + [sym__autolink] = ACTIONS(2411), + [sym__highlight_span_start] = ACTIONS(2411), + [sym__insert_span_start] = ACTIONS(2411), + [sym__delete_span_start] = ACTIONS(2411), + [sym__edit_comment_span_start] = ACTIONS(2411), + [sym__single_quote_span_open] = ACTIONS(2411), + [sym__double_quote_span_open] = ACTIONS(2411), + [sym__shortcode_open_escaped] = ACTIONS(2411), + [sym__shortcode_open] = ACTIONS(2411), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2411), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2411), + [sym__cite_author_in_text] = ACTIONS(2411), + [sym__cite_suppress_author] = ACTIONS(2411), + [sym__strikeout_open] = ACTIONS(2411), + [sym__subscript_open] = ACTIONS(2411), + [sym__superscript_open] = ACTIONS(2411), + [sym__inline_note_start_token] = ACTIONS(2411), + [sym__strong_emphasis_open_star] = ACTIONS(2411), + [sym__strong_emphasis_open_underscore] = ACTIONS(2411), + [sym__emphasis_open_star] = ACTIONS(2411), + [sym__emphasis_open_underscore] = ACTIONS(2411), + [sym_inline_note_reference] = ACTIONS(2411), + [sym_html_element] = ACTIONS(2411), + [sym__pandoc_lt_str] = ACTIONS(2411), + [sym__pandoc_line_break] = ACTIONS(2411), + [sym_grid_table] = ACTIONS(2411), + [sym__caption_start] = ACTIONS(2411), + }, + [STATE(360)] = { + [sym_entity_reference] = ACTIONS(2635), + [sym_numeric_character_reference] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_BANG_LBRACK] = ACTIONS(2635), + [anon_sym_DOLLAR] = ACTIONS(2637), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [aux_sym_pandoc_str_token1] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2635), + [sym__whitespace] = ACTIONS(2635), + [sym__line_ending] = ACTIONS(2635), + [sym__soft_line_ending] = ACTIONS(2635), + [sym__block_close] = ACTIONS(2635), + [sym__block_quote_start] = ACTIONS(2635), + [sym_atx_h1_marker] = ACTIONS(2635), + [sym_atx_h2_marker] = ACTIONS(2635), + [sym_atx_h3_marker] = ACTIONS(2635), + [sym_atx_h4_marker] = ACTIONS(2635), + [sym_atx_h5_marker] = ACTIONS(2635), + [sym_atx_h6_marker] = ACTIONS(2635), + [sym__thematic_break] = ACTIONS(2635), + [sym__list_marker_minus] = ACTIONS(2635), + [sym__list_marker_plus] = ACTIONS(2635), + [sym__list_marker_star] = ACTIONS(2635), + [sym__list_marker_parenthesis] = ACTIONS(2635), + [sym__list_marker_dot] = ACTIONS(2635), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_example] = ACTIONS(2635), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2635), + [sym__fenced_code_block_start_backtick] = ACTIONS(2635), + [sym__minus_metadata_start] = ACTIONS(2635), + [sym__pipe_table_start] = ACTIONS(2635), + [sym__fenced_div_start] = ACTIONS(2635), + [sym_ref_id_specifier] = ACTIONS(2635), + [sym__code_span_start] = ACTIONS(2635), + [sym__html_comment] = ACTIONS(2635), + [sym__autolink] = ACTIONS(2635), + [sym__highlight_span_start] = ACTIONS(2635), + [sym__insert_span_start] = ACTIONS(2635), + [sym__delete_span_start] = ACTIONS(2635), + [sym__edit_comment_span_start] = ACTIONS(2635), + [sym__single_quote_span_open] = ACTIONS(2635), + [sym__double_quote_span_open] = ACTIONS(2635), + [sym__shortcode_open_escaped] = ACTIONS(2635), + [sym__shortcode_open] = ACTIONS(2635), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2635), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2635), + [sym__cite_author_in_text] = ACTIONS(2635), + [sym__cite_suppress_author] = ACTIONS(2635), + [sym__strikeout_open] = ACTIONS(2635), + [sym__subscript_open] = ACTIONS(2635), + [sym__superscript_open] = ACTIONS(2635), + [sym__inline_note_start_token] = ACTIONS(2635), + [sym__strong_emphasis_open_star] = ACTIONS(2635), + [sym__strong_emphasis_open_underscore] = ACTIONS(2635), + [sym__emphasis_open_star] = ACTIONS(2635), + [sym__emphasis_open_underscore] = ACTIONS(2635), + [sym_inline_note_reference] = ACTIONS(2635), + [sym_html_element] = ACTIONS(2635), + [sym__pandoc_lt_str] = ACTIONS(2635), + [sym__pandoc_line_break] = ACTIONS(2635), + [sym_grid_table] = ACTIONS(2635), + [sym__caption_start] = ACTIONS(2635), }, [STATE(361)] = { - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_entity_reference] = ACTIONS(2279), - [sym_numeric_character_reference] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_BANG_LBRACK] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [aux_sym_pandoc_str_token1] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [sym__whitespace] = ACTIONS(2279), - [sym__line_ending] = ACTIONS(2279), - [sym__soft_line_ending] = ACTIONS(2279), - [sym__block_quote_start] = ACTIONS(2279), - [sym_atx_h1_marker] = ACTIONS(2279), - [sym_atx_h2_marker] = ACTIONS(2279), - [sym_atx_h3_marker] = ACTIONS(2279), - [sym_atx_h4_marker] = ACTIONS(2279), - [sym_atx_h5_marker] = ACTIONS(2279), - [sym_atx_h6_marker] = ACTIONS(2279), - [sym__thematic_break] = ACTIONS(2279), - [sym__list_marker_minus] = ACTIONS(2279), - [sym__list_marker_plus] = ACTIONS(2279), - [sym__list_marker_star] = ACTIONS(2279), - [sym__list_marker_parenthesis] = ACTIONS(2279), - [sym__list_marker_dot] = ACTIONS(2279), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_example] = ACTIONS(2279), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2279), - [sym__fenced_code_block_start_backtick] = ACTIONS(2279), - [sym_minus_metadata] = ACTIONS(2279), - [sym__pipe_table_start] = ACTIONS(2279), - [sym__fenced_div_start] = ACTIONS(2279), - [sym_ref_id_specifier] = ACTIONS(2279), - [sym__code_span_start] = ACTIONS(2279), - [sym__html_comment] = ACTIONS(2279), - [sym__autolink] = ACTIONS(2279), - [sym__highlight_span_start] = ACTIONS(2279), - [sym__insert_span_start] = ACTIONS(2279), - [sym__delete_span_start] = ACTIONS(2279), - [sym__edit_comment_span_start] = ACTIONS(2279), - [sym__single_quote_span_open] = ACTIONS(2279), - [sym__double_quote_span_open] = ACTIONS(2279), - [sym__shortcode_open_escaped] = ACTIONS(2279), - [sym__shortcode_open] = ACTIONS(2279), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2279), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2279), - [sym__cite_author_in_text] = ACTIONS(2279), - [sym__cite_suppress_author] = ACTIONS(2279), - [sym__strikeout_open] = ACTIONS(2279), - [sym__subscript_open] = ACTIONS(2279), - [sym__superscript_open] = ACTIONS(2279), - [sym__inline_note_start_token] = ACTIONS(2279), - [sym__strong_emphasis_open_star] = ACTIONS(2279), - [sym__strong_emphasis_open_underscore] = ACTIONS(2279), - [sym__emphasis_open_star] = ACTIONS(2279), - [sym__emphasis_open_underscore] = ACTIONS(2279), - [sym_inline_note_reference] = ACTIONS(2279), - [sym_html_element] = ACTIONS(2279), - [sym__pandoc_lt_str] = ACTIONS(2279), - [sym__pandoc_line_break] = ACTIONS(2279), - [sym_grid_table] = ACTIONS(2279), - [sym__caption_start] = ACTIONS(2279), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_entity_reference] = ACTIONS(2313), + [sym_numeric_character_reference] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_BANG_LBRACK] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2313), + [aux_sym_pandoc_str_token1] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2313), + [sym__whitespace] = ACTIONS(2313), + [sym__line_ending] = ACTIONS(2313), + [sym__soft_line_ending] = ACTIONS(2313), + [sym__block_quote_start] = ACTIONS(2313), + [sym_atx_h1_marker] = ACTIONS(2313), + [sym_atx_h2_marker] = ACTIONS(2313), + [sym_atx_h3_marker] = ACTIONS(2313), + [sym_atx_h4_marker] = ACTIONS(2313), + [sym_atx_h5_marker] = ACTIONS(2313), + [sym_atx_h6_marker] = ACTIONS(2313), + [sym__thematic_break] = ACTIONS(2313), + [sym__list_marker_minus] = ACTIONS(2313), + [sym__list_marker_plus] = ACTIONS(2313), + [sym__list_marker_star] = ACTIONS(2313), + [sym__list_marker_parenthesis] = ACTIONS(2313), + [sym__list_marker_dot] = ACTIONS(2313), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_example] = ACTIONS(2313), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2313), + [sym__fenced_code_block_start_backtick] = ACTIONS(2313), + [sym__minus_metadata_start] = ACTIONS(2313), + [sym__pipe_table_start] = ACTIONS(2313), + [sym__fenced_div_start] = ACTIONS(2313), + [sym_ref_id_specifier] = ACTIONS(2313), + [sym__code_span_start] = ACTIONS(2313), + [sym__html_comment] = ACTIONS(2313), + [sym__autolink] = ACTIONS(2313), + [sym__highlight_span_start] = ACTIONS(2313), + [sym__insert_span_start] = ACTIONS(2313), + [sym__delete_span_start] = ACTIONS(2313), + [sym__edit_comment_span_start] = ACTIONS(2313), + [sym__single_quote_span_open] = ACTIONS(2313), + [sym__double_quote_span_open] = ACTIONS(2313), + [sym__shortcode_open_escaped] = ACTIONS(2313), + [sym__shortcode_open] = ACTIONS(2313), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2313), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2313), + [sym__cite_author_in_text] = ACTIONS(2313), + [sym__cite_suppress_author] = ACTIONS(2313), + [sym__strikeout_open] = ACTIONS(2313), + [sym__subscript_open] = ACTIONS(2313), + [sym__superscript_open] = ACTIONS(2313), + [sym__inline_note_start_token] = ACTIONS(2313), + [sym__strong_emphasis_open_star] = ACTIONS(2313), + [sym__strong_emphasis_open_underscore] = ACTIONS(2313), + [sym__emphasis_open_star] = ACTIONS(2313), + [sym__emphasis_open_underscore] = ACTIONS(2313), + [sym_inline_note_reference] = ACTIONS(2313), + [sym_html_element] = ACTIONS(2313), + [sym__pandoc_lt_str] = ACTIONS(2313), + [sym__pandoc_line_break] = ACTIONS(2313), + [sym_grid_table] = ACTIONS(2313), + [sym__caption_start] = ACTIONS(2313), }, [STATE(362)] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [sym_entity_reference] = ACTIONS(2667), - [sym_numeric_character_reference] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_BANG_LBRACK] = ACTIONS(2667), - [anon_sym_DOLLAR] = ACTIONS(2669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2667), - [aux_sym_pandoc_str_token1] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2667), - [sym__whitespace] = ACTIONS(2667), - [sym__line_ending] = ACTIONS(2667), - [sym__soft_line_ending] = ACTIONS(2667), - [sym__block_quote_start] = ACTIONS(2667), - [sym_atx_h1_marker] = ACTIONS(2667), - [sym_atx_h2_marker] = ACTIONS(2667), - [sym_atx_h3_marker] = ACTIONS(2667), - [sym_atx_h4_marker] = ACTIONS(2667), - [sym_atx_h5_marker] = ACTIONS(2667), - [sym_atx_h6_marker] = ACTIONS(2667), - [sym__thematic_break] = ACTIONS(2667), - [sym__list_marker_minus] = ACTIONS(2667), - [sym__list_marker_plus] = ACTIONS(2667), - [sym__list_marker_star] = ACTIONS(2667), - [sym__list_marker_parenthesis] = ACTIONS(2667), - [sym__list_marker_dot] = ACTIONS(2667), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_example] = ACTIONS(2667), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2667), - [sym__fenced_code_block_start_backtick] = ACTIONS(2667), - [sym_minus_metadata] = ACTIONS(2667), - [sym__pipe_table_start] = ACTIONS(2667), - [sym__fenced_div_start] = ACTIONS(2667), - [sym_ref_id_specifier] = ACTIONS(2667), - [sym__code_span_start] = ACTIONS(2667), - [sym__html_comment] = ACTIONS(2667), - [sym__autolink] = ACTIONS(2667), - [sym__highlight_span_start] = ACTIONS(2667), - [sym__insert_span_start] = ACTIONS(2667), - [sym__delete_span_start] = ACTIONS(2667), - [sym__edit_comment_span_start] = ACTIONS(2667), - [sym__single_quote_span_open] = ACTIONS(2667), - [sym__double_quote_span_open] = ACTIONS(2667), - [sym__shortcode_open_escaped] = ACTIONS(2667), - [sym__shortcode_open] = ACTIONS(2667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2667), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2667), - [sym__cite_author_in_text] = ACTIONS(2667), - [sym__cite_suppress_author] = ACTIONS(2667), - [sym__strikeout_open] = ACTIONS(2667), - [sym__subscript_open] = ACTIONS(2667), - [sym__superscript_open] = ACTIONS(2667), - [sym__inline_note_start_token] = ACTIONS(2667), - [sym__strong_emphasis_open_star] = ACTIONS(2667), - [sym__strong_emphasis_open_underscore] = ACTIONS(2667), - [sym__emphasis_open_star] = ACTIONS(2667), - [sym__emphasis_open_underscore] = ACTIONS(2667), - [sym_inline_note_reference] = ACTIONS(2667), - [sym_html_element] = ACTIONS(2667), - [sym__pandoc_lt_str] = ACTIONS(2667), - [sym__pandoc_line_break] = ACTIONS(2667), - [sym_grid_table] = ACTIONS(2667), - [sym__caption_start] = ACTIONS(2667), + [sym_pipe_table_cell] = STATE(3022), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2963), + [sym__line_ending] = ACTIONS(2965), + [sym__eof] = ACTIONS(2965), + [sym__pipe_table_line_ending] = ACTIONS(2965), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pipe_table_delimiter] = ACTIONS(2967), + [sym__pandoc_line_break] = ACTIONS(2140), }, [STATE(363)] = { - [ts_builtin_sym_end] = ACTIONS(2285), - [sym_entity_reference] = ACTIONS(2285), - [sym_numeric_character_reference] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_BANG_LBRACK] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [aux_sym_pandoc_str_token1] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2285), - [sym__whitespace] = ACTIONS(2285), - [sym__line_ending] = ACTIONS(2285), - [sym__soft_line_ending] = ACTIONS(2285), - [sym__block_quote_start] = ACTIONS(2285), - [sym_atx_h1_marker] = ACTIONS(2285), - [sym_atx_h2_marker] = ACTIONS(2285), - [sym_atx_h3_marker] = ACTIONS(2285), - [sym_atx_h4_marker] = ACTIONS(2285), - [sym_atx_h5_marker] = ACTIONS(2285), - [sym_atx_h6_marker] = ACTIONS(2285), - [sym__thematic_break] = ACTIONS(2285), - [sym__list_marker_minus] = ACTIONS(2285), - [sym__list_marker_plus] = ACTIONS(2285), - [sym__list_marker_star] = ACTIONS(2285), - [sym__list_marker_parenthesis] = ACTIONS(2285), - [sym__list_marker_dot] = ACTIONS(2285), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_example] = ACTIONS(2285), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2285), - [sym__fenced_code_block_start_backtick] = ACTIONS(2285), - [sym_minus_metadata] = ACTIONS(2285), - [sym__pipe_table_start] = ACTIONS(2285), - [sym__fenced_div_start] = ACTIONS(2285), - [sym_ref_id_specifier] = ACTIONS(2285), - [sym__code_span_start] = ACTIONS(2285), - [sym__html_comment] = ACTIONS(2285), - [sym__autolink] = ACTIONS(2285), - [sym__highlight_span_start] = ACTIONS(2285), - [sym__insert_span_start] = ACTIONS(2285), - [sym__delete_span_start] = ACTIONS(2285), - [sym__edit_comment_span_start] = ACTIONS(2285), - [sym__single_quote_span_open] = ACTIONS(2285), - [sym__double_quote_span_open] = ACTIONS(2285), - [sym__shortcode_open_escaped] = ACTIONS(2285), - [sym__shortcode_open] = ACTIONS(2285), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2285), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2285), - [sym__cite_author_in_text] = ACTIONS(2285), - [sym__cite_suppress_author] = ACTIONS(2285), - [sym__strikeout_open] = ACTIONS(2285), - [sym__subscript_open] = ACTIONS(2285), - [sym__superscript_open] = ACTIONS(2285), - [sym__inline_note_start_token] = ACTIONS(2285), - [sym__strong_emphasis_open_star] = ACTIONS(2285), - [sym__strong_emphasis_open_underscore] = ACTIONS(2285), - [sym__emphasis_open_star] = ACTIONS(2285), - [sym__emphasis_open_underscore] = ACTIONS(2285), - [sym_inline_note_reference] = ACTIONS(2285), - [sym_html_element] = ACTIONS(2285), - [sym__pandoc_lt_str] = ACTIONS(2285), - [sym__pandoc_line_break] = ACTIONS(2285), - [sym_grid_table] = ACTIONS(2285), - [sym__caption_start] = ACTIONS(2285), + [ts_builtin_sym_end] = ACTIONS(2653), + [sym_entity_reference] = ACTIONS(2653), + [sym_numeric_character_reference] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_BANG_LBRACK] = ACTIONS(2653), + [anon_sym_DOLLAR] = ACTIONS(2655), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [aux_sym_pandoc_str_token1] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2653), + [sym__whitespace] = ACTIONS(2653), + [sym__line_ending] = ACTIONS(2653), + [sym__soft_line_ending] = ACTIONS(2653), + [sym__block_quote_start] = ACTIONS(2653), + [sym_atx_h1_marker] = ACTIONS(2653), + [sym_atx_h2_marker] = ACTIONS(2653), + [sym_atx_h3_marker] = ACTIONS(2653), + [sym_atx_h4_marker] = ACTIONS(2653), + [sym_atx_h5_marker] = ACTIONS(2653), + [sym_atx_h6_marker] = ACTIONS(2653), + [sym__thematic_break] = ACTIONS(2653), + [sym__list_marker_minus] = ACTIONS(2653), + [sym__list_marker_plus] = ACTIONS(2653), + [sym__list_marker_star] = ACTIONS(2653), + [sym__list_marker_parenthesis] = ACTIONS(2653), + [sym__list_marker_dot] = ACTIONS(2653), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_example] = ACTIONS(2653), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2653), + [sym__fenced_code_block_start_backtick] = ACTIONS(2653), + [sym__minus_metadata_start] = ACTIONS(2653), + [sym__pipe_table_start] = ACTIONS(2653), + [sym__fenced_div_start] = ACTIONS(2653), + [sym_ref_id_specifier] = ACTIONS(2653), + [sym__code_span_start] = ACTIONS(2653), + [sym__html_comment] = ACTIONS(2653), + [sym__autolink] = ACTIONS(2653), + [sym__highlight_span_start] = ACTIONS(2653), + [sym__insert_span_start] = ACTIONS(2653), + [sym__delete_span_start] = ACTIONS(2653), + [sym__edit_comment_span_start] = ACTIONS(2653), + [sym__single_quote_span_open] = ACTIONS(2653), + [sym__double_quote_span_open] = ACTIONS(2653), + [sym__shortcode_open_escaped] = ACTIONS(2653), + [sym__shortcode_open] = ACTIONS(2653), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2653), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2653), + [sym__cite_author_in_text] = ACTIONS(2653), + [sym__cite_suppress_author] = ACTIONS(2653), + [sym__strikeout_open] = ACTIONS(2653), + [sym__subscript_open] = ACTIONS(2653), + [sym__superscript_open] = ACTIONS(2653), + [sym__inline_note_start_token] = ACTIONS(2653), + [sym__strong_emphasis_open_star] = ACTIONS(2653), + [sym__strong_emphasis_open_underscore] = ACTIONS(2653), + [sym__emphasis_open_star] = ACTIONS(2653), + [sym__emphasis_open_underscore] = ACTIONS(2653), + [sym_inline_note_reference] = ACTIONS(2653), + [sym_html_element] = ACTIONS(2653), + [sym__pandoc_lt_str] = ACTIONS(2653), + [sym__pandoc_line_break] = ACTIONS(2653), + [sym_grid_table] = ACTIONS(2653), + [sym__caption_start] = ACTIONS(2653), }, [STATE(364)] = { - [ts_builtin_sym_end] = ACTIONS(2297), - [sym_entity_reference] = ACTIONS(2297), - [sym_numeric_character_reference] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_BANG_LBRACK] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [aux_sym_pandoc_str_token1] = ACTIONS(2299), - [anon_sym_PIPE] = ACTIONS(2297), - [sym__whitespace] = ACTIONS(2297), - [sym__line_ending] = ACTIONS(2297), - [sym__soft_line_ending] = ACTIONS(2297), - [sym__block_quote_start] = ACTIONS(2297), - [sym_atx_h1_marker] = ACTIONS(2297), - [sym_atx_h2_marker] = ACTIONS(2297), - [sym_atx_h3_marker] = ACTIONS(2297), - [sym_atx_h4_marker] = ACTIONS(2297), - [sym_atx_h5_marker] = ACTIONS(2297), - [sym_atx_h6_marker] = ACTIONS(2297), - [sym__thematic_break] = ACTIONS(2297), - [sym__list_marker_minus] = ACTIONS(2297), - [sym__list_marker_plus] = ACTIONS(2297), - [sym__list_marker_star] = ACTIONS(2297), - [sym__list_marker_parenthesis] = ACTIONS(2297), - [sym__list_marker_dot] = ACTIONS(2297), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_example] = ACTIONS(2297), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2297), - [sym__fenced_code_block_start_backtick] = ACTIONS(2297), - [sym_minus_metadata] = ACTIONS(2297), - [sym__pipe_table_start] = ACTIONS(2297), - [sym__fenced_div_start] = ACTIONS(2297), - [sym_ref_id_specifier] = ACTIONS(2297), - [sym__code_span_start] = ACTIONS(2297), - [sym__html_comment] = ACTIONS(2297), - [sym__autolink] = ACTIONS(2297), - [sym__highlight_span_start] = ACTIONS(2297), - [sym__insert_span_start] = ACTIONS(2297), - [sym__delete_span_start] = ACTIONS(2297), - [sym__edit_comment_span_start] = ACTIONS(2297), - [sym__single_quote_span_open] = ACTIONS(2297), - [sym__double_quote_span_open] = ACTIONS(2297), - [sym__shortcode_open_escaped] = ACTIONS(2297), - [sym__shortcode_open] = ACTIONS(2297), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2297), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2297), - [sym__cite_author_in_text] = ACTIONS(2297), - [sym__cite_suppress_author] = ACTIONS(2297), - [sym__strikeout_open] = ACTIONS(2297), - [sym__subscript_open] = ACTIONS(2297), - [sym__superscript_open] = ACTIONS(2297), - [sym__inline_note_start_token] = ACTIONS(2297), - [sym__strong_emphasis_open_star] = ACTIONS(2297), - [sym__strong_emphasis_open_underscore] = ACTIONS(2297), - [sym__emphasis_open_star] = ACTIONS(2297), - [sym__emphasis_open_underscore] = ACTIONS(2297), - [sym_inline_note_reference] = ACTIONS(2297), - [sym_html_element] = ACTIONS(2297), - [sym__pandoc_lt_str] = ACTIONS(2297), - [sym__pandoc_line_break] = ACTIONS(2297), - [sym_grid_table] = ACTIONS(2297), - [sym__caption_start] = ACTIONS(2297), + [ts_builtin_sym_end] = ACTIONS(2319), + [sym_entity_reference] = ACTIONS(2319), + [sym_numeric_character_reference] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_BANG_LBRACK] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [aux_sym_pandoc_str_token1] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(2319), + [sym__whitespace] = ACTIONS(2319), + [sym__line_ending] = ACTIONS(2319), + [sym__soft_line_ending] = ACTIONS(2319), + [sym__block_quote_start] = ACTIONS(2319), + [sym_atx_h1_marker] = ACTIONS(2319), + [sym_atx_h2_marker] = ACTIONS(2319), + [sym_atx_h3_marker] = ACTIONS(2319), + [sym_atx_h4_marker] = ACTIONS(2319), + [sym_atx_h5_marker] = ACTIONS(2319), + [sym_atx_h6_marker] = ACTIONS(2319), + [sym__thematic_break] = ACTIONS(2319), + [sym__list_marker_minus] = ACTIONS(2319), + [sym__list_marker_plus] = ACTIONS(2319), + [sym__list_marker_star] = ACTIONS(2319), + [sym__list_marker_parenthesis] = ACTIONS(2319), + [sym__list_marker_dot] = ACTIONS(2319), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_example] = ACTIONS(2319), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2319), + [sym__fenced_code_block_start_backtick] = ACTIONS(2319), + [sym__minus_metadata_start] = ACTIONS(2319), + [sym__pipe_table_start] = ACTIONS(2319), + [sym__fenced_div_start] = ACTIONS(2319), + [sym_ref_id_specifier] = ACTIONS(2319), + [sym__code_span_start] = ACTIONS(2319), + [sym__html_comment] = ACTIONS(2319), + [sym__autolink] = ACTIONS(2319), + [sym__highlight_span_start] = ACTIONS(2319), + [sym__insert_span_start] = ACTIONS(2319), + [sym__delete_span_start] = ACTIONS(2319), + [sym__edit_comment_span_start] = ACTIONS(2319), + [sym__single_quote_span_open] = ACTIONS(2319), + [sym__double_quote_span_open] = ACTIONS(2319), + [sym__shortcode_open_escaped] = ACTIONS(2319), + [sym__shortcode_open] = ACTIONS(2319), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2319), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2319), + [sym__cite_author_in_text] = ACTIONS(2319), + [sym__cite_suppress_author] = ACTIONS(2319), + [sym__strikeout_open] = ACTIONS(2319), + [sym__subscript_open] = ACTIONS(2319), + [sym__superscript_open] = ACTIONS(2319), + [sym__inline_note_start_token] = ACTIONS(2319), + [sym__strong_emphasis_open_star] = ACTIONS(2319), + [sym__strong_emphasis_open_underscore] = ACTIONS(2319), + [sym__emphasis_open_star] = ACTIONS(2319), + [sym__emphasis_open_underscore] = ACTIONS(2319), + [sym_inline_note_reference] = ACTIONS(2319), + [sym_html_element] = ACTIONS(2319), + [sym__pandoc_lt_str] = ACTIONS(2319), + [sym__pandoc_line_break] = ACTIONS(2319), + [sym_grid_table] = ACTIONS(2319), + [sym__caption_start] = ACTIONS(2319), }, [STATE(365)] = { - [ts_builtin_sym_end] = ACTIONS(2429), - [sym_entity_reference] = ACTIONS(2429), - [sym_numeric_character_reference] = ACTIONS(2429), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_BANG_LBRACK] = ACTIONS(2429), - [anon_sym_DOLLAR] = ACTIONS(2431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2429), - [aux_sym_pandoc_str_token1] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2429), - [sym__whitespace] = ACTIONS(2429), - [sym__line_ending] = ACTIONS(2429), - [sym__soft_line_ending] = ACTIONS(2429), - [sym__block_quote_start] = ACTIONS(2429), - [sym_atx_h1_marker] = ACTIONS(2429), - [sym_atx_h2_marker] = ACTIONS(2429), - [sym_atx_h3_marker] = ACTIONS(2429), - [sym_atx_h4_marker] = ACTIONS(2429), - [sym_atx_h5_marker] = ACTIONS(2429), - [sym_atx_h6_marker] = ACTIONS(2429), - [sym__thematic_break] = ACTIONS(2429), - [sym__list_marker_minus] = ACTIONS(2429), - [sym__list_marker_plus] = ACTIONS(2429), - [sym__list_marker_star] = ACTIONS(2429), - [sym__list_marker_parenthesis] = ACTIONS(2429), - [sym__list_marker_dot] = ACTIONS(2429), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_example] = ACTIONS(2429), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2429), - [sym__fenced_code_block_start_backtick] = ACTIONS(2429), - [sym_minus_metadata] = ACTIONS(2429), - [sym__pipe_table_start] = ACTIONS(2429), - [sym__fenced_div_start] = ACTIONS(2429), - [sym_ref_id_specifier] = ACTIONS(2429), - [sym__code_span_start] = ACTIONS(2429), - [sym__html_comment] = ACTIONS(2429), - [sym__autolink] = ACTIONS(2429), - [sym__highlight_span_start] = ACTIONS(2429), - [sym__insert_span_start] = ACTIONS(2429), - [sym__delete_span_start] = ACTIONS(2429), - [sym__edit_comment_span_start] = ACTIONS(2429), - [sym__single_quote_span_open] = ACTIONS(2429), - [sym__double_quote_span_open] = ACTIONS(2429), - [sym__shortcode_open_escaped] = ACTIONS(2429), - [sym__shortcode_open] = ACTIONS(2429), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2429), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2429), - [sym__cite_author_in_text] = ACTIONS(2429), - [sym__cite_suppress_author] = ACTIONS(2429), - [sym__strikeout_open] = ACTIONS(2429), - [sym__subscript_open] = ACTIONS(2429), - [sym__superscript_open] = ACTIONS(2429), - [sym__inline_note_start_token] = ACTIONS(2429), - [sym__strong_emphasis_open_star] = ACTIONS(2429), - [sym__strong_emphasis_open_underscore] = ACTIONS(2429), - [sym__emphasis_open_star] = ACTIONS(2429), - [sym__emphasis_open_underscore] = ACTIONS(2429), - [sym_inline_note_reference] = ACTIONS(2429), - [sym_html_element] = ACTIONS(2429), - [sym__pandoc_lt_str] = ACTIONS(2429), - [sym__pandoc_line_break] = ACTIONS(2429), - [sym_grid_table] = ACTIONS(2429), - [sym__caption_start] = ACTIONS(2429), + [sym_pipe_table_cell] = STATE(3036), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym_pipe_table_row_repeat1] = STATE(373), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2969), + [sym__line_ending] = ACTIONS(2971), + [sym__eof] = ACTIONS(2971), + [sym__pipe_table_line_ending] = ACTIONS(2971), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pandoc_line_break] = ACTIONS(2140), }, [STATE(366)] = { - [ts_builtin_sym_end] = ACTIONS(2433), - [sym_entity_reference] = ACTIONS(2433), - [sym_numeric_character_reference] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_BANG_LBRACK] = ACTIONS(2433), - [anon_sym_DOLLAR] = ACTIONS(2435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [aux_sym_pandoc_str_token1] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2433), - [sym__whitespace] = ACTIONS(2433), - [sym__line_ending] = ACTIONS(2433), - [sym__soft_line_ending] = ACTIONS(2433), - [sym__block_quote_start] = ACTIONS(2433), - [sym_atx_h1_marker] = ACTIONS(2433), - [sym_atx_h2_marker] = ACTIONS(2433), - [sym_atx_h3_marker] = ACTIONS(2433), - [sym_atx_h4_marker] = ACTIONS(2433), - [sym_atx_h5_marker] = ACTIONS(2433), - [sym_atx_h6_marker] = ACTIONS(2433), - [sym__thematic_break] = ACTIONS(2433), - [sym__list_marker_minus] = ACTIONS(2433), - [sym__list_marker_plus] = ACTIONS(2433), - [sym__list_marker_star] = ACTIONS(2433), - [sym__list_marker_parenthesis] = ACTIONS(2433), - [sym__list_marker_dot] = ACTIONS(2433), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_example] = ACTIONS(2433), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2433), - [sym__fenced_code_block_start_backtick] = ACTIONS(2433), - [sym_minus_metadata] = ACTIONS(2433), - [sym__pipe_table_start] = ACTIONS(2433), - [sym__fenced_div_start] = ACTIONS(2433), - [sym_ref_id_specifier] = ACTIONS(2433), - [sym__code_span_start] = ACTIONS(2433), - [sym__html_comment] = ACTIONS(2433), - [sym__autolink] = ACTIONS(2433), - [sym__highlight_span_start] = ACTIONS(2433), - [sym__insert_span_start] = ACTIONS(2433), - [sym__delete_span_start] = ACTIONS(2433), - [sym__edit_comment_span_start] = ACTIONS(2433), - [sym__single_quote_span_open] = ACTIONS(2433), - [sym__double_quote_span_open] = ACTIONS(2433), - [sym__shortcode_open_escaped] = ACTIONS(2433), - [sym__shortcode_open] = ACTIONS(2433), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2433), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2433), - [sym__cite_author_in_text] = ACTIONS(2433), - [sym__cite_suppress_author] = ACTIONS(2433), - [sym__strikeout_open] = ACTIONS(2433), - [sym__subscript_open] = ACTIONS(2433), - [sym__superscript_open] = ACTIONS(2433), - [sym__inline_note_start_token] = ACTIONS(2433), - [sym__strong_emphasis_open_star] = ACTIONS(2433), - [sym__strong_emphasis_open_underscore] = ACTIONS(2433), - [sym__emphasis_open_star] = ACTIONS(2433), - [sym__emphasis_open_underscore] = ACTIONS(2433), - [sym_inline_note_reference] = ACTIONS(2433), - [sym_html_element] = ACTIONS(2433), - [sym__pandoc_lt_str] = ACTIONS(2433), - [sym__pandoc_line_break] = ACTIONS(2433), - [sym_grid_table] = ACTIONS(2433), - [sym__caption_start] = ACTIONS(2433), + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_entity_reference] = ACTIONS(2657), + [sym_numeric_character_reference] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_BANG_LBRACK] = ACTIONS(2657), + [anon_sym_DOLLAR] = ACTIONS(2659), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [aux_sym_pandoc_str_token1] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2657), + [sym__whitespace] = ACTIONS(2657), + [sym__line_ending] = ACTIONS(2657), + [sym__soft_line_ending] = ACTIONS(2657), + [sym__block_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_start] = 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_lt_str] = ACTIONS(2657), + [sym__pandoc_line_break] = ACTIONS(2657), + [sym_grid_table] = ACTIONS(2657), + [sym__caption_start] = ACTIONS(2657), }, [STATE(367)] = { - [ts_builtin_sym_end] = ACTIONS(2437), - [sym_entity_reference] = ACTIONS(2437), - [sym_numeric_character_reference] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_BANG_LBRACK] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [aux_sym_pandoc_str_token1] = ACTIONS(2439), - [anon_sym_PIPE] = ACTIONS(2437), - [sym__whitespace] = ACTIONS(2437), - [sym__line_ending] = ACTIONS(2437), - [sym__soft_line_ending] = ACTIONS(2437), - [sym__block_quote_start] = ACTIONS(2437), - [sym_atx_h1_marker] = ACTIONS(2437), - [sym_atx_h2_marker] = ACTIONS(2437), - [sym_atx_h3_marker] = ACTIONS(2437), - [sym_atx_h4_marker] = ACTIONS(2437), - [sym_atx_h5_marker] = ACTIONS(2437), - [sym_atx_h6_marker] = ACTIONS(2437), - [sym__thematic_break] = ACTIONS(2437), - [sym__list_marker_minus] = ACTIONS(2437), - [sym__list_marker_plus] = ACTIONS(2437), - [sym__list_marker_star] = ACTIONS(2437), - [sym__list_marker_parenthesis] = ACTIONS(2437), - [sym__list_marker_dot] = ACTIONS(2437), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_example] = ACTIONS(2437), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2437), - [sym__fenced_code_block_start_backtick] = ACTIONS(2437), - [sym_minus_metadata] = ACTIONS(2437), - [sym__pipe_table_start] = ACTIONS(2437), - [sym__fenced_div_start] = ACTIONS(2437), - [sym_ref_id_specifier] = ACTIONS(2437), - [sym__code_span_start] = ACTIONS(2437), - [sym__html_comment] = ACTIONS(2437), - [sym__autolink] = ACTIONS(2437), - [sym__highlight_span_start] = ACTIONS(2437), - [sym__insert_span_start] = ACTIONS(2437), - [sym__delete_span_start] = ACTIONS(2437), - [sym__edit_comment_span_start] = ACTIONS(2437), - [sym__single_quote_span_open] = ACTIONS(2437), - [sym__double_quote_span_open] = ACTIONS(2437), - [sym__shortcode_open_escaped] = ACTIONS(2437), - [sym__shortcode_open] = ACTIONS(2437), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2437), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2437), - [sym__cite_author_in_text] = ACTIONS(2437), - [sym__cite_suppress_author] = ACTIONS(2437), - [sym__strikeout_open] = ACTIONS(2437), - [sym__subscript_open] = ACTIONS(2437), - [sym__superscript_open] = ACTIONS(2437), - [sym__inline_note_start_token] = ACTIONS(2437), - [sym__strong_emphasis_open_star] = ACTIONS(2437), - [sym__strong_emphasis_open_underscore] = ACTIONS(2437), - [sym__emphasis_open_star] = ACTIONS(2437), - [sym__emphasis_open_underscore] = ACTIONS(2437), - [sym_inline_note_reference] = ACTIONS(2437), - [sym_html_element] = ACTIONS(2437), - [sym__pandoc_lt_str] = ACTIONS(2437), - [sym__pandoc_line_break] = ACTIONS(2437), - [sym_grid_table] = ACTIONS(2437), - [sym__caption_start] = ACTIONS(2437), + [ts_builtin_sym_end] = ACTIONS(2661), + [sym_entity_reference] = ACTIONS(2661), + [sym_numeric_character_reference] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_BANG_LBRACK] = ACTIONS(2661), + [anon_sym_DOLLAR] = ACTIONS(2663), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2661), + [aux_sym_pandoc_str_token1] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2661), + [sym__whitespace] = ACTIONS(2661), + [sym__line_ending] = ACTIONS(2661), + [sym__soft_line_ending] = ACTIONS(2661), + [sym__block_quote_start] = ACTIONS(2661), + [sym_atx_h1_marker] = ACTIONS(2661), + [sym_atx_h2_marker] = ACTIONS(2661), + [sym_atx_h3_marker] = ACTIONS(2661), + [sym_atx_h4_marker] = ACTIONS(2661), + [sym_atx_h5_marker] = ACTIONS(2661), + [sym_atx_h6_marker] = ACTIONS(2661), + [sym__thematic_break] = ACTIONS(2661), + [sym__list_marker_minus] = ACTIONS(2661), + [sym__list_marker_plus] = ACTIONS(2661), + [sym__list_marker_star] = ACTIONS(2661), + [sym__list_marker_parenthesis] = ACTIONS(2661), + [sym__list_marker_dot] = ACTIONS(2661), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_example] = ACTIONS(2661), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2661), + [sym__fenced_code_block_start_backtick] = ACTIONS(2661), + [sym__minus_metadata_start] = ACTIONS(2661), + [sym__pipe_table_start] = ACTIONS(2661), + [sym__fenced_div_start] = ACTIONS(2661), + [sym_ref_id_specifier] = ACTIONS(2661), + [sym__code_span_start] = ACTIONS(2661), + [sym__html_comment] = ACTIONS(2661), + [sym__autolink] = ACTIONS(2661), + [sym__highlight_span_start] = ACTIONS(2661), + [sym__insert_span_start] = ACTIONS(2661), + [sym__delete_span_start] = ACTIONS(2661), + [sym__edit_comment_span_start] = ACTIONS(2661), + [sym__single_quote_span_open] = ACTIONS(2661), + [sym__double_quote_span_open] = ACTIONS(2661), + [sym__shortcode_open_escaped] = ACTIONS(2661), + [sym__shortcode_open] = ACTIONS(2661), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2661), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2661), + [sym__cite_author_in_text] = ACTIONS(2661), + [sym__cite_suppress_author] = ACTIONS(2661), + [sym__strikeout_open] = ACTIONS(2661), + [sym__subscript_open] = ACTIONS(2661), + [sym__superscript_open] = ACTIONS(2661), + [sym__inline_note_start_token] = ACTIONS(2661), + [sym__strong_emphasis_open_star] = ACTIONS(2661), + [sym__strong_emphasis_open_underscore] = ACTIONS(2661), + [sym__emphasis_open_star] = ACTIONS(2661), + [sym__emphasis_open_underscore] = ACTIONS(2661), + [sym_inline_note_reference] = ACTIONS(2661), + [sym_html_element] = ACTIONS(2661), + [sym__pandoc_lt_str] = ACTIONS(2661), + [sym__pandoc_line_break] = ACTIONS(2661), + [sym_grid_table] = ACTIONS(2661), + [sym__caption_start] = ACTIONS(2661), }, [STATE(368)] = { - [ts_builtin_sym_end] = ACTIONS(2441), - [sym_entity_reference] = ACTIONS(2441), - [sym_numeric_character_reference] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(2441), - [anon_sym_BANG_LBRACK] = ACTIONS(2441), - [anon_sym_DOLLAR] = ACTIONS(2443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2441), - [anon_sym_LBRACE] = ACTIONS(2441), - [aux_sym_pandoc_str_token1] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2441), - [sym__whitespace] = ACTIONS(2441), - [sym__line_ending] = ACTIONS(2441), - [sym__soft_line_ending] = ACTIONS(2441), - [sym__block_quote_start] = ACTIONS(2441), - [sym_atx_h1_marker] = ACTIONS(2441), - [sym_atx_h2_marker] = ACTIONS(2441), - [sym_atx_h3_marker] = ACTIONS(2441), - [sym_atx_h4_marker] = ACTIONS(2441), - [sym_atx_h5_marker] = ACTIONS(2441), - [sym_atx_h6_marker] = ACTIONS(2441), - [sym__thematic_break] = ACTIONS(2441), - [sym__list_marker_minus] = ACTIONS(2441), - [sym__list_marker_plus] = ACTIONS(2441), - [sym__list_marker_star] = ACTIONS(2441), - [sym__list_marker_parenthesis] = ACTIONS(2441), - [sym__list_marker_dot] = ACTIONS(2441), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_example] = ACTIONS(2441), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2441), - [sym__fenced_code_block_start_backtick] = ACTIONS(2441), - [sym_minus_metadata] = ACTIONS(2441), - [sym__pipe_table_start] = ACTIONS(2441), - [sym__fenced_div_start] = ACTIONS(2441), - [sym_ref_id_specifier] = ACTIONS(2441), - [sym__code_span_start] = ACTIONS(2441), - [sym__html_comment] = ACTIONS(2441), - [sym__autolink] = ACTIONS(2441), - [sym__highlight_span_start] = ACTIONS(2441), - [sym__insert_span_start] = ACTIONS(2441), - [sym__delete_span_start] = ACTIONS(2441), - [sym__edit_comment_span_start] = ACTIONS(2441), - [sym__single_quote_span_open] = ACTIONS(2441), - [sym__double_quote_span_open] = ACTIONS(2441), - [sym__shortcode_open_escaped] = ACTIONS(2441), - [sym__shortcode_open] = ACTIONS(2441), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2441), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2441), - [sym__cite_author_in_text] = ACTIONS(2441), - [sym__cite_suppress_author] = ACTIONS(2441), - [sym__strikeout_open] = ACTIONS(2441), - [sym__subscript_open] = ACTIONS(2441), - [sym__superscript_open] = ACTIONS(2441), - [sym__inline_note_start_token] = ACTIONS(2441), - [sym__strong_emphasis_open_star] = ACTIONS(2441), - [sym__strong_emphasis_open_underscore] = ACTIONS(2441), - [sym__emphasis_open_star] = ACTIONS(2441), - [sym__emphasis_open_underscore] = ACTIONS(2441), - [sym_inline_note_reference] = ACTIONS(2441), - [sym_html_element] = ACTIONS(2441), - [sym__pandoc_lt_str] = ACTIONS(2441), - [sym__pandoc_line_break] = ACTIONS(2441), - [sym_grid_table] = ACTIONS(2441), - [sym__caption_start] = ACTIONS(2441), + [ts_builtin_sym_end] = ACTIONS(2577), + [sym_entity_reference] = ACTIONS(2577), + [sym_numeric_character_reference] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_BANG_LBRACK] = ACTIONS(2577), + [anon_sym_DOLLAR] = ACTIONS(2579), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2577), + [aux_sym_pandoc_str_token1] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2577), + [sym__whitespace] = ACTIONS(2577), + [sym__line_ending] = ACTIONS(2577), + [sym__soft_line_ending] = ACTIONS(2577), + [sym__block_quote_start] = ACTIONS(2577), + [sym_atx_h1_marker] = ACTIONS(2577), + [sym_atx_h2_marker] = ACTIONS(2577), + [sym_atx_h3_marker] = ACTIONS(2577), + [sym_atx_h4_marker] = ACTIONS(2577), + [sym_atx_h5_marker] = ACTIONS(2577), + [sym_atx_h6_marker] = ACTIONS(2577), + [sym__thematic_break] = ACTIONS(2577), + [sym__list_marker_minus] = ACTIONS(2577), + [sym__list_marker_plus] = ACTIONS(2577), + [sym__list_marker_star] = ACTIONS(2577), + [sym__list_marker_parenthesis] = ACTIONS(2577), + [sym__list_marker_dot] = ACTIONS(2577), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_example] = ACTIONS(2577), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2577), + [sym__fenced_code_block_start_backtick] = ACTIONS(2577), + [sym__minus_metadata_start] = ACTIONS(2577), + [sym__pipe_table_start] = ACTIONS(2577), + [sym__fenced_div_start] = ACTIONS(2577), + [sym_ref_id_specifier] = ACTIONS(2577), + [sym__code_span_start] = ACTIONS(2577), + [sym__html_comment] = ACTIONS(2577), + [sym__autolink] = ACTIONS(2577), + [sym__highlight_span_start] = ACTIONS(2577), + [sym__insert_span_start] = ACTIONS(2577), + [sym__delete_span_start] = ACTIONS(2577), + [sym__edit_comment_span_start] = ACTIONS(2577), + [sym__single_quote_span_open] = ACTIONS(2577), + [sym__double_quote_span_open] = ACTIONS(2577), + [sym__shortcode_open_escaped] = ACTIONS(2577), + [sym__shortcode_open] = ACTIONS(2577), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2577), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2577), + [sym__cite_author_in_text] = ACTIONS(2577), + [sym__cite_suppress_author] = ACTIONS(2577), + [sym__strikeout_open] = ACTIONS(2577), + [sym__subscript_open] = ACTIONS(2577), + [sym__superscript_open] = ACTIONS(2577), + [sym__inline_note_start_token] = ACTIONS(2577), + [sym__strong_emphasis_open_star] = ACTIONS(2577), + [sym__strong_emphasis_open_underscore] = ACTIONS(2577), + [sym__emphasis_open_star] = ACTIONS(2577), + [sym__emphasis_open_underscore] = ACTIONS(2577), + [sym_inline_note_reference] = ACTIONS(2577), + [sym_html_element] = ACTIONS(2577), + [sym__pandoc_lt_str] = ACTIONS(2577), + [sym__pandoc_line_break] = ACTIONS(2577), + [sym_grid_table] = ACTIONS(2577), + [sym__caption_start] = ACTIONS(2577), }, [STATE(369)] = { - [ts_builtin_sym_end] = 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), - [sym__whitespace] = ACTIONS(2445), - [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(2445), - [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(2445), - [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__pandoc_lt_str] = ACTIONS(2445), - [sym__pandoc_line_break] = ACTIONS(2445), - [sym_grid_table] = ACTIONS(2445), - [sym__caption_start] = ACTIONS(2445), + [ts_builtin_sym_end] = ACTIONS(2583), + [sym_entity_reference] = ACTIONS(2583), + [sym_numeric_character_reference] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_BANG_LBRACK] = ACTIONS(2583), + [anon_sym_DOLLAR] = ACTIONS(2585), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [aux_sym_pandoc_str_token1] = ACTIONS(2585), + [anon_sym_PIPE] = ACTIONS(2583), + [sym__whitespace] = ACTIONS(2583), + [sym__line_ending] = ACTIONS(2583), + [sym__soft_line_ending] = ACTIONS(2583), + [sym__block_quote_start] = ACTIONS(2583), + [sym_atx_h1_marker] = ACTIONS(2583), + [sym_atx_h2_marker] = ACTIONS(2583), + [sym_atx_h3_marker] = ACTIONS(2583), + [sym_atx_h4_marker] = ACTIONS(2583), + [sym_atx_h5_marker] = ACTIONS(2583), + [sym_atx_h6_marker] = ACTIONS(2583), + [sym__thematic_break] = ACTIONS(2583), + [sym__list_marker_minus] = ACTIONS(2583), + [sym__list_marker_plus] = ACTIONS(2583), + [sym__list_marker_star] = ACTIONS(2583), + [sym__list_marker_parenthesis] = ACTIONS(2583), + [sym__list_marker_dot] = ACTIONS(2583), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_example] = ACTIONS(2583), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2583), + [sym__fenced_code_block_start_backtick] = ACTIONS(2583), + [sym__minus_metadata_start] = ACTIONS(2583), + [sym__pipe_table_start] = ACTIONS(2583), + [sym__fenced_div_start] = ACTIONS(2583), + [sym_ref_id_specifier] = ACTIONS(2583), + [sym__code_span_start] = ACTIONS(2583), + [sym__html_comment] = ACTIONS(2583), + [sym__autolink] = ACTIONS(2583), + [sym__highlight_span_start] = ACTIONS(2583), + [sym__insert_span_start] = ACTIONS(2583), + [sym__delete_span_start] = ACTIONS(2583), + [sym__edit_comment_span_start] = ACTIONS(2583), + [sym__single_quote_span_open] = ACTIONS(2583), + [sym__double_quote_span_open] = ACTIONS(2583), + [sym__shortcode_open_escaped] = ACTIONS(2583), + [sym__shortcode_open] = ACTIONS(2583), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2583), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2583), + [sym__cite_author_in_text] = ACTIONS(2583), + [sym__cite_suppress_author] = ACTIONS(2583), + [sym__strikeout_open] = ACTIONS(2583), + [sym__subscript_open] = ACTIONS(2583), + [sym__superscript_open] = ACTIONS(2583), + [sym__inline_note_start_token] = ACTIONS(2583), + [sym__strong_emphasis_open_star] = ACTIONS(2583), + [sym__strong_emphasis_open_underscore] = ACTIONS(2583), + [sym__emphasis_open_star] = ACTIONS(2583), + [sym__emphasis_open_underscore] = ACTIONS(2583), + [sym_inline_note_reference] = ACTIONS(2583), + [sym_html_element] = ACTIONS(2583), + [sym__pandoc_lt_str] = ACTIONS(2583), + [sym__pandoc_line_break] = ACTIONS(2583), + [sym_grid_table] = ACTIONS(2583), + [sym__caption_start] = ACTIONS(2583), }, [STATE(370)] = { - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_entity_reference] = ACTIONS(2449), - [sym_numeric_character_reference] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_BANG_LBRACK] = ACTIONS(2449), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2449), - [aux_sym_pandoc_str_token1] = ACTIONS(2451), - [anon_sym_PIPE] = ACTIONS(2449), - [sym__whitespace] = ACTIONS(2449), - [sym__line_ending] = ACTIONS(2449), - [sym__soft_line_ending] = ACTIONS(2449), - [sym__block_quote_start] = ACTIONS(2449), - [sym_atx_h1_marker] = ACTIONS(2449), - [sym_atx_h2_marker] = ACTIONS(2449), - [sym_atx_h3_marker] = ACTIONS(2449), - [sym_atx_h4_marker] = ACTIONS(2449), - [sym_atx_h5_marker] = ACTIONS(2449), - [sym_atx_h6_marker] = ACTIONS(2449), - [sym__thematic_break] = ACTIONS(2449), - [sym__list_marker_minus] = ACTIONS(2449), - [sym__list_marker_plus] = ACTIONS(2449), - [sym__list_marker_star] = ACTIONS(2449), - [sym__list_marker_parenthesis] = ACTIONS(2449), - [sym__list_marker_dot] = ACTIONS(2449), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_example] = ACTIONS(2449), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2449), - [sym__fenced_code_block_start_backtick] = ACTIONS(2449), - [sym_minus_metadata] = ACTIONS(2449), - [sym__pipe_table_start] = ACTIONS(2449), - [sym__fenced_div_start] = ACTIONS(2449), - [sym_ref_id_specifier] = ACTIONS(2449), - [sym__code_span_start] = ACTIONS(2449), - [sym__html_comment] = ACTIONS(2449), - [sym__autolink] = ACTIONS(2449), - [sym__highlight_span_start] = ACTIONS(2449), - [sym__insert_span_start] = ACTIONS(2449), - [sym__delete_span_start] = ACTIONS(2449), - [sym__edit_comment_span_start] = ACTIONS(2449), - [sym__single_quote_span_open] = ACTIONS(2449), - [sym__double_quote_span_open] = ACTIONS(2449), - [sym__shortcode_open_escaped] = ACTIONS(2449), - [sym__shortcode_open] = ACTIONS(2449), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2449), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2449), - [sym__cite_author_in_text] = ACTIONS(2449), - [sym__cite_suppress_author] = ACTIONS(2449), - [sym__strikeout_open] = ACTIONS(2449), - [sym__subscript_open] = ACTIONS(2449), - [sym__superscript_open] = ACTIONS(2449), - [sym__inline_note_start_token] = ACTIONS(2449), - [sym__strong_emphasis_open_star] = ACTIONS(2449), - [sym__strong_emphasis_open_underscore] = ACTIONS(2449), - [sym__emphasis_open_star] = ACTIONS(2449), - [sym__emphasis_open_underscore] = ACTIONS(2449), - [sym_inline_note_reference] = ACTIONS(2449), - [sym_html_element] = ACTIONS(2449), - [sym__pandoc_lt_str] = ACTIONS(2449), - [sym__pandoc_line_break] = ACTIONS(2449), - [sym_grid_table] = ACTIONS(2449), - [sym__caption_start] = ACTIONS(2449), + [ts_builtin_sym_end] = ACTIONS(2665), + [sym_entity_reference] = ACTIONS(2665), + [sym_numeric_character_reference] = ACTIONS(2665), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_BANG_LBRACK] = ACTIONS(2665), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2665), + [aux_sym_pandoc_str_token1] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2665), + [sym__whitespace] = ACTIONS(2665), + [sym__line_ending] = ACTIONS(2665), + [sym__soft_line_ending] = ACTIONS(2665), + [sym__block_quote_start] = ACTIONS(2665), + [sym_atx_h1_marker] = ACTIONS(2665), + [sym_atx_h2_marker] = ACTIONS(2665), + [sym_atx_h3_marker] = ACTIONS(2665), + [sym_atx_h4_marker] = ACTIONS(2665), + [sym_atx_h5_marker] = ACTIONS(2665), + [sym_atx_h6_marker] = ACTIONS(2665), + [sym__thematic_break] = ACTIONS(2665), + [sym__list_marker_minus] = ACTIONS(2665), + [sym__list_marker_plus] = ACTIONS(2665), + [sym__list_marker_star] = ACTIONS(2665), + [sym__list_marker_parenthesis] = ACTIONS(2665), + [sym__list_marker_dot] = ACTIONS(2665), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_example] = ACTIONS(2665), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2665), + [sym__fenced_code_block_start_backtick] = ACTIONS(2665), + [sym__minus_metadata_start] = ACTIONS(2665), + [sym__pipe_table_start] = ACTIONS(2665), + [sym__fenced_div_start] = ACTIONS(2665), + [sym_ref_id_specifier] = ACTIONS(2665), + [sym__code_span_start] = ACTIONS(2665), + [sym__html_comment] = ACTIONS(2665), + [sym__autolink] = ACTIONS(2665), + [sym__highlight_span_start] = ACTIONS(2665), + [sym__insert_span_start] = ACTIONS(2665), + [sym__delete_span_start] = ACTIONS(2665), + [sym__edit_comment_span_start] = ACTIONS(2665), + [sym__single_quote_span_open] = ACTIONS(2665), + [sym__double_quote_span_open] = ACTIONS(2665), + [sym__shortcode_open_escaped] = ACTIONS(2665), + [sym__shortcode_open] = ACTIONS(2665), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2665), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2665), + [sym__cite_author_in_text] = ACTIONS(2665), + [sym__cite_suppress_author] = ACTIONS(2665), + [sym__strikeout_open] = ACTIONS(2665), + [sym__subscript_open] = ACTIONS(2665), + [sym__superscript_open] = ACTIONS(2665), + [sym__inline_note_start_token] = ACTIONS(2665), + [sym__strong_emphasis_open_star] = ACTIONS(2665), + [sym__strong_emphasis_open_underscore] = ACTIONS(2665), + [sym__emphasis_open_star] = ACTIONS(2665), + [sym__emphasis_open_underscore] = ACTIONS(2665), + [sym_inline_note_reference] = ACTIONS(2665), + [sym_html_element] = ACTIONS(2665), + [sym__pandoc_lt_str] = ACTIONS(2665), + [sym__pandoc_line_break] = ACTIONS(2665), + [sym_grid_table] = ACTIONS(2665), + [sym__caption_start] = ACTIONS(2665), }, [STATE(371)] = { - [ts_builtin_sym_end] = ACTIONS(2453), - [sym_entity_reference] = ACTIONS(2453), - [sym_numeric_character_reference] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2453), - [anon_sym_BANG_LBRACK] = ACTIONS(2453), - [anon_sym_DOLLAR] = ACTIONS(2455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2453), - [aux_sym_pandoc_str_token1] = ACTIONS(2455), - [anon_sym_PIPE] = ACTIONS(2453), - [sym__whitespace] = ACTIONS(2453), - [sym__line_ending] = ACTIONS(2453), - [sym__soft_line_ending] = ACTIONS(2453), - [sym__block_quote_start] = ACTIONS(2453), - [sym_atx_h1_marker] = ACTIONS(2453), - [sym_atx_h2_marker] = ACTIONS(2453), - [sym_atx_h3_marker] = ACTIONS(2453), - [sym_atx_h4_marker] = ACTIONS(2453), - [sym_atx_h5_marker] = ACTIONS(2453), - [sym_atx_h6_marker] = ACTIONS(2453), - [sym__thematic_break] = ACTIONS(2453), - [sym__list_marker_minus] = ACTIONS(2453), - [sym__list_marker_plus] = ACTIONS(2453), - [sym__list_marker_star] = ACTIONS(2453), - [sym__list_marker_parenthesis] = ACTIONS(2453), - [sym__list_marker_dot] = ACTIONS(2453), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_example] = ACTIONS(2453), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2453), - [sym__fenced_code_block_start_backtick] = ACTIONS(2453), - [sym_minus_metadata] = ACTIONS(2453), - [sym__pipe_table_start] = ACTIONS(2453), - [sym__fenced_div_start] = ACTIONS(2453), - [sym_ref_id_specifier] = ACTIONS(2453), - [sym__code_span_start] = ACTIONS(2453), - [sym__html_comment] = ACTIONS(2453), - [sym__autolink] = ACTIONS(2453), - [sym__highlight_span_start] = ACTIONS(2453), - [sym__insert_span_start] = ACTIONS(2453), - [sym__delete_span_start] = ACTIONS(2453), - [sym__edit_comment_span_start] = ACTIONS(2453), - [sym__single_quote_span_open] = ACTIONS(2453), - [sym__double_quote_span_open] = ACTIONS(2453), - [sym__shortcode_open_escaped] = ACTIONS(2453), - [sym__shortcode_open] = ACTIONS(2453), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2453), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2453), - [sym__cite_author_in_text] = ACTIONS(2453), - [sym__cite_suppress_author] = ACTIONS(2453), - [sym__strikeout_open] = ACTIONS(2453), - [sym__subscript_open] = ACTIONS(2453), - [sym__superscript_open] = ACTIONS(2453), - [sym__inline_note_start_token] = ACTIONS(2453), - [sym__strong_emphasis_open_star] = ACTIONS(2453), - [sym__strong_emphasis_open_underscore] = ACTIONS(2453), - [sym__emphasis_open_star] = ACTIONS(2453), - [sym__emphasis_open_underscore] = ACTIONS(2453), - [sym_inline_note_reference] = ACTIONS(2453), - [sym_html_element] = ACTIONS(2453), - [sym__pandoc_lt_str] = ACTIONS(2453), - [sym__pandoc_line_break] = ACTIONS(2453), - [sym_grid_table] = ACTIONS(2453), - [sym__caption_start] = ACTIONS(2453), + [sym_pipe_table_cell] = STATE(3036), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym_pipe_table_row_repeat1] = STATE(406), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2973), + [sym__line_ending] = ACTIONS(2975), + [sym__eof] = ACTIONS(2975), + [sym__pipe_table_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pandoc_line_break] = ACTIONS(2140), }, [STATE(372)] = { - [ts_builtin_sym_end] = ACTIONS(2457), - [sym_entity_reference] = ACTIONS(2457), - [sym_numeric_character_reference] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_BANG_LBRACK] = ACTIONS(2457), - [anon_sym_DOLLAR] = ACTIONS(2459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2457), - [anon_sym_LBRACE] = ACTIONS(2457), - [aux_sym_pandoc_str_token1] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(2457), - [sym__whitespace] = ACTIONS(2457), - [sym__line_ending] = ACTIONS(2457), - [sym__soft_line_ending] = ACTIONS(2457), - [sym__block_quote_start] = ACTIONS(2457), - [sym_atx_h1_marker] = ACTIONS(2457), - [sym_atx_h2_marker] = ACTIONS(2457), - [sym_atx_h3_marker] = ACTIONS(2457), - [sym_atx_h4_marker] = ACTIONS(2457), - [sym_atx_h5_marker] = ACTIONS(2457), - [sym_atx_h6_marker] = ACTIONS(2457), - [sym__thematic_break] = ACTIONS(2457), - [sym__list_marker_minus] = ACTIONS(2457), - [sym__list_marker_plus] = ACTIONS(2457), - [sym__list_marker_star] = ACTIONS(2457), - [sym__list_marker_parenthesis] = ACTIONS(2457), - [sym__list_marker_dot] = ACTIONS(2457), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_example] = ACTIONS(2457), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2457), - [sym__fenced_code_block_start_backtick] = ACTIONS(2457), - [sym_minus_metadata] = ACTIONS(2457), - [sym__pipe_table_start] = ACTIONS(2457), - [sym__fenced_div_start] = ACTIONS(2457), - [sym_ref_id_specifier] = ACTIONS(2457), - [sym__code_span_start] = ACTIONS(2457), - [sym__html_comment] = ACTIONS(2457), - [sym__autolink] = ACTIONS(2457), - [sym__highlight_span_start] = ACTIONS(2457), - [sym__insert_span_start] = ACTIONS(2457), - [sym__delete_span_start] = ACTIONS(2457), - [sym__edit_comment_span_start] = ACTIONS(2457), - [sym__single_quote_span_open] = ACTIONS(2457), - [sym__double_quote_span_open] = ACTIONS(2457), - [sym__shortcode_open_escaped] = ACTIONS(2457), - [sym__shortcode_open] = ACTIONS(2457), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2457), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2457), - [sym__cite_author_in_text] = ACTIONS(2457), - [sym__cite_suppress_author] = ACTIONS(2457), - [sym__strikeout_open] = ACTIONS(2457), - [sym__subscript_open] = ACTIONS(2457), - [sym__superscript_open] = ACTIONS(2457), - [sym__inline_note_start_token] = ACTIONS(2457), - [sym__strong_emphasis_open_star] = ACTIONS(2457), - [sym__strong_emphasis_open_underscore] = ACTIONS(2457), - [sym__emphasis_open_star] = ACTIONS(2457), - [sym__emphasis_open_underscore] = ACTIONS(2457), - [sym_inline_note_reference] = ACTIONS(2457), - [sym_html_element] = ACTIONS(2457), - [sym__pandoc_lt_str] = ACTIONS(2457), - [sym__pandoc_line_break] = ACTIONS(2457), - [sym_grid_table] = ACTIONS(2457), - [sym__caption_start] = ACTIONS(2457), + [sym_pipe_table_cell] = STATE(3022), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2963), + [sym__line_ending] = ACTIONS(2971), + [sym__eof] = ACTIONS(2971), + [sym__pipe_table_line_ending] = ACTIONS(2971), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pipe_table_delimiter] = ACTIONS(2967), + [sym__pandoc_line_break] = ACTIONS(2140), }, [STATE(373)] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_entity_reference] = ACTIONS(2461), - [sym_numeric_character_reference] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_BANG_LBRACK] = ACTIONS(2461), - [anon_sym_DOLLAR] = ACTIONS(2463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2461), - [anon_sym_LBRACE] = ACTIONS(2461), - [aux_sym_pandoc_str_token1] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2461), - [sym__line_ending] = ACTIONS(2461), - [sym__soft_line_ending] = ACTIONS(2461), - [sym__block_quote_start] = ACTIONS(2461), - [sym_atx_h1_marker] = ACTIONS(2461), - [sym_atx_h2_marker] = ACTIONS(2461), - [sym_atx_h3_marker] = ACTIONS(2461), - [sym_atx_h4_marker] = ACTIONS(2461), - [sym_atx_h5_marker] = ACTIONS(2461), - [sym_atx_h6_marker] = ACTIONS(2461), - [sym__thematic_break] = ACTIONS(2461), - [sym__list_marker_minus] = ACTIONS(2461), - [sym__list_marker_plus] = ACTIONS(2461), - [sym__list_marker_star] = ACTIONS(2461), - [sym__list_marker_parenthesis] = ACTIONS(2461), - [sym__list_marker_dot] = ACTIONS(2461), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_example] = ACTIONS(2461), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2461), - [sym__fenced_code_block_start_backtick] = ACTIONS(2461), - [sym_minus_metadata] = ACTIONS(2461), - [sym__pipe_table_start] = ACTIONS(2461), - [sym__fenced_div_start] = ACTIONS(2461), - [sym_ref_id_specifier] = ACTIONS(2461), - [sym__code_span_start] = ACTIONS(2461), - [sym__html_comment] = ACTIONS(2461), - [sym__autolink] = ACTIONS(2461), - [sym__highlight_span_start] = ACTIONS(2461), - [sym__insert_span_start] = ACTIONS(2461), - [sym__delete_span_start] = ACTIONS(2461), - [sym__edit_comment_span_start] = ACTIONS(2461), - [sym__single_quote_span_open] = ACTIONS(2461), - [sym__double_quote_span_open] = ACTIONS(2461), - [sym__shortcode_open_escaped] = ACTIONS(2461), - [sym__shortcode_open] = ACTIONS(2461), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2461), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), - [sym__cite_author_in_text] = ACTIONS(2461), - [sym__cite_suppress_author] = ACTIONS(2461), - [sym__strikeout_open] = ACTIONS(2461), - [sym__subscript_open] = ACTIONS(2461), - [sym__superscript_open] = ACTIONS(2461), - [sym__inline_note_start_token] = ACTIONS(2461), - [sym__strong_emphasis_open_star] = ACTIONS(2461), - [sym__strong_emphasis_open_underscore] = ACTIONS(2461), - [sym__emphasis_open_star] = ACTIONS(2461), - [sym__emphasis_open_underscore] = ACTIONS(2461), - [sym_inline_note_reference] = ACTIONS(2461), - [sym_html_element] = ACTIONS(2461), - [sym__pandoc_lt_str] = ACTIONS(2461), - [sym__pandoc_line_break] = ACTIONS(2461), - [sym_grid_table] = ACTIONS(2461), - [sym__caption_start] = ACTIONS(2461), + [sym_pipe_table_cell] = STATE(3543), + [sym_pandoc_span] = STATE(725), + [sym_pandoc_image] = STATE(725), + [sym_pandoc_math] = STATE(725), + [sym_pandoc_display_math] = STATE(725), + [sym_pandoc_code_span] = STATE(725), + [sym_pandoc_single_quote] = STATE(725), + [sym_pandoc_double_quote] = STATE(725), + [sym_insert] = STATE(725), + [sym_delete] = STATE(725), + [sym_edit_comment] = STATE(725), + [sym_highlight] = STATE(725), + [sym__pandoc_attr_specifier] = STATE(725), + [sym__line_with_maybe_spaces] = STATE(3563), + [sym__inline_element] = STATE(725), + [sym_shortcode_escaped] = STATE(725), + [sym_shortcode] = STATE(725), + [sym_citation] = STATE(725), + [sym_inline_note] = STATE(725), + [sym_pandoc_superscript] = STATE(725), + [sym_pandoc_subscript] = STATE(725), + [sym_pandoc_strikeout] = STATE(725), + [sym_pandoc_emph] = STATE(725), + [sym_pandoc_strong] = STATE(725), + [sym_pandoc_str] = STATE(725), + [aux_sym_pipe_table_row_repeat1] = STATE(373), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(725), + [sym_entity_reference] = ACTIONS(2977), + [sym_numeric_character_reference] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_BANG_LBRACK] = ACTIONS(2983), + [anon_sym_DOLLAR] = ACTIONS(2986), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2992), + [aux_sym_pandoc_str_token1] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2998), + [sym__whitespace] = ACTIONS(3001), + [sym__line_ending] = ACTIONS(3004), + [sym__eof] = ACTIONS(3004), + [sym__pipe_table_line_ending] = ACTIONS(3004), + [sym__code_span_start] = ACTIONS(3006), + [sym__html_comment] = ACTIONS(2977), + [sym__autolink] = ACTIONS(2977), + [sym__highlight_span_start] = ACTIONS(3009), + [sym__insert_span_start] = ACTIONS(3012), + [sym__delete_span_start] = ACTIONS(3015), + [sym__edit_comment_span_start] = ACTIONS(3018), + [sym__single_quote_span_open] = ACTIONS(3021), + [sym__double_quote_span_open] = ACTIONS(3024), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3030), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3033), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3036), + [sym__cite_author_in_text] = ACTIONS(3039), + [sym__cite_suppress_author] = ACTIONS(3042), + [sym__strikeout_open] = ACTIONS(3045), + [sym__subscript_open] = ACTIONS(3048), + [sym__superscript_open] = ACTIONS(3051), + [sym__inline_note_start_token] = ACTIONS(3054), + [sym__strong_emphasis_open_star] = ACTIONS(3057), + [sym__strong_emphasis_open_underscore] = ACTIONS(3060), + [sym__emphasis_open_star] = ACTIONS(3063), + [sym__emphasis_open_underscore] = ACTIONS(3066), + [sym_inline_note_reference] = ACTIONS(2977), + [sym_html_element] = ACTIONS(2977), + [sym__pandoc_lt_str] = ACTIONS(2998), + [sym__pandoc_line_break] = ACTIONS(2977), }, [STATE(374)] = { - [ts_builtin_sym_end] = 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), - [sym__whitespace] = ACTIONS(2465), - [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(2465), - [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(2465), - [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__pandoc_lt_str] = ACTIONS(2465), - [sym__pandoc_line_break] = ACTIONS(2465), - [sym_grid_table] = ACTIONS(2465), - [sym__caption_start] = ACTIONS(2465), + [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), + [sym__whitespace] = ACTIONS(2639), + [sym__line_ending] = ACTIONS(2639), + [sym__soft_line_ending] = ACTIONS(2639), + [sym__block_close] = ACTIONS(2639), + [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_start] = 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_lt_str] = ACTIONS(2639), + [sym__pandoc_line_break] = ACTIONS(2639), + [sym_grid_table] = ACTIONS(2639), + [sym__caption_start] = ACTIONS(2639), }, [STATE(375)] = { - [ts_builtin_sym_end] = 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), - [sym__whitespace] = ACTIONS(2469), - [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(2469), - [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(2469), - [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__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__pandoc_lt_str] = ACTIONS(2469), - [sym__pandoc_line_break] = ACTIONS(2469), - [sym_grid_table] = ACTIONS(2469), - [sym__caption_start] = ACTIONS(2469), + [ts_builtin_sym_end] = ACTIONS(2557), + [sym_entity_reference] = ACTIONS(2557), + [sym_numeric_character_reference] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_BANG_LBRACK] = ACTIONS(2557), + [anon_sym_DOLLAR] = ACTIONS(2559), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [aux_sym_pandoc_str_token1] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2557), + [sym__whitespace] = ACTIONS(2557), + [sym__line_ending] = ACTIONS(2557), + [sym__soft_line_ending] = ACTIONS(2557), + [sym__block_quote_start] = ACTIONS(2557), + [sym_atx_h1_marker] = ACTIONS(2557), + [sym_atx_h2_marker] = ACTIONS(2557), + [sym_atx_h3_marker] = ACTIONS(2557), + [sym_atx_h4_marker] = ACTIONS(2557), + [sym_atx_h5_marker] = ACTIONS(2557), + [sym_atx_h6_marker] = ACTIONS(2557), + [sym__thematic_break] = ACTIONS(2557), + [sym__list_marker_minus] = ACTIONS(2557), + [sym__list_marker_plus] = ACTIONS(2557), + [sym__list_marker_star] = ACTIONS(2557), + [sym__list_marker_parenthesis] = ACTIONS(2557), + [sym__list_marker_dot] = ACTIONS(2557), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_example] = ACTIONS(2557), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2557), + [sym__fenced_code_block_start_backtick] = ACTIONS(2557), + [sym__minus_metadata_start] = ACTIONS(2557), + [sym__pipe_table_start] = ACTIONS(2557), + [sym__fenced_div_start] = ACTIONS(2557), + [sym_ref_id_specifier] = ACTIONS(2557), + [sym__code_span_start] = ACTIONS(2557), + [sym__html_comment] = ACTIONS(2557), + [sym__autolink] = ACTIONS(2557), + [sym__highlight_span_start] = ACTIONS(2557), + [sym__insert_span_start] = ACTIONS(2557), + [sym__delete_span_start] = ACTIONS(2557), + [sym__edit_comment_span_start] = ACTIONS(2557), + [sym__single_quote_span_open] = ACTIONS(2557), + [sym__double_quote_span_open] = ACTIONS(2557), + [sym__shortcode_open_escaped] = ACTIONS(2557), + [sym__shortcode_open] = ACTIONS(2557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2557), + [sym__cite_author_in_text] = ACTIONS(2557), + [sym__cite_suppress_author] = ACTIONS(2557), + [sym__strikeout_open] = ACTIONS(2557), + [sym__subscript_open] = ACTIONS(2557), + [sym__superscript_open] = ACTIONS(2557), + [sym__inline_note_start_token] = ACTIONS(2557), + [sym__strong_emphasis_open_star] = ACTIONS(2557), + [sym__strong_emphasis_open_underscore] = ACTIONS(2557), + [sym__emphasis_open_star] = ACTIONS(2557), + [sym__emphasis_open_underscore] = ACTIONS(2557), + [sym_inline_note_reference] = ACTIONS(2557), + [sym_html_element] = ACTIONS(2557), + [sym__pandoc_lt_str] = ACTIONS(2557), + [sym__pandoc_line_break] = ACTIONS(2557), + [sym_grid_table] = ACTIONS(2557), + [sym__caption_start] = ACTIONS(2557), }, [STATE(376)] = { - [ts_builtin_sym_end] = ACTIONS(2353), - [sym_entity_reference] = ACTIONS(2353), - [sym_numeric_character_reference] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_BANG_LBRACK] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [aux_sym_pandoc_str_token1] = ACTIONS(2355), - [anon_sym_PIPE] = ACTIONS(2353), - [sym__whitespace] = ACTIONS(2353), - [sym__line_ending] = ACTIONS(2353), - [sym__soft_line_ending] = ACTIONS(2353), - [sym__block_quote_start] = ACTIONS(2353), - [sym_atx_h1_marker] = ACTIONS(2353), - [sym_atx_h2_marker] = ACTIONS(2353), - [sym_atx_h3_marker] = ACTIONS(2353), - [sym_atx_h4_marker] = ACTIONS(2353), - [sym_atx_h5_marker] = ACTIONS(2353), - [sym_atx_h6_marker] = ACTIONS(2353), - [sym__thematic_break] = ACTIONS(2353), - [sym__list_marker_minus] = ACTIONS(2353), - [sym__list_marker_plus] = ACTIONS(2353), - [sym__list_marker_star] = ACTIONS(2353), - [sym__list_marker_parenthesis] = ACTIONS(2353), - [sym__list_marker_dot] = ACTIONS(2353), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_example] = ACTIONS(2353), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2353), - [sym__fenced_code_block_start_backtick] = ACTIONS(2353), - [sym_minus_metadata] = ACTIONS(2353), - [sym__pipe_table_start] = ACTIONS(2353), - [sym__fenced_div_start] = ACTIONS(2353), - [sym_ref_id_specifier] = ACTIONS(2353), - [sym__code_span_start] = ACTIONS(2353), - [sym__html_comment] = ACTIONS(2353), - [sym__autolink] = ACTIONS(2353), - [sym__highlight_span_start] = ACTIONS(2353), - [sym__insert_span_start] = ACTIONS(2353), - [sym__delete_span_start] = ACTIONS(2353), - [sym__edit_comment_span_start] = ACTIONS(2353), - [sym__single_quote_span_open] = ACTIONS(2353), - [sym__double_quote_span_open] = ACTIONS(2353), - [sym__shortcode_open_escaped] = ACTIONS(2353), - [sym__shortcode_open] = ACTIONS(2353), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2353), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2353), - [sym__cite_author_in_text] = ACTIONS(2353), - [sym__cite_suppress_author] = ACTIONS(2353), - [sym__strikeout_open] = ACTIONS(2353), - [sym__subscript_open] = ACTIONS(2353), - [sym__superscript_open] = ACTIONS(2353), - [sym__inline_note_start_token] = ACTIONS(2353), - [sym__strong_emphasis_open_star] = ACTIONS(2353), - [sym__strong_emphasis_open_underscore] = ACTIONS(2353), - [sym__emphasis_open_star] = ACTIONS(2353), - [sym__emphasis_open_underscore] = ACTIONS(2353), - [sym_inline_note_reference] = ACTIONS(2353), - [sym_html_element] = ACTIONS(2353), - [sym__pandoc_lt_str] = ACTIONS(2353), - [sym__pandoc_line_break] = ACTIONS(2353), - [sym_grid_table] = ACTIONS(2353), - [sym__caption_start] = ACTIONS(2353), + [ts_builtin_sym_end] = ACTIONS(2611), + [sym_entity_reference] = ACTIONS(2611), + [sym_numeric_character_reference] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_BANG_LBRACK] = ACTIONS(2611), + [anon_sym_DOLLAR] = ACTIONS(2613), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [aux_sym_pandoc_str_token1] = ACTIONS(2613), + [anon_sym_PIPE] = ACTIONS(2611), + [sym__whitespace] = ACTIONS(2611), + [sym__line_ending] = ACTIONS(2611), + [sym__soft_line_ending] = ACTIONS(2611), + [sym__block_quote_start] = ACTIONS(2611), + [sym_atx_h1_marker] = ACTIONS(2611), + [sym_atx_h2_marker] = ACTIONS(2611), + [sym_atx_h3_marker] = ACTIONS(2611), + [sym_atx_h4_marker] = ACTIONS(2611), + [sym_atx_h5_marker] = ACTIONS(2611), + [sym_atx_h6_marker] = ACTIONS(2611), + [sym__thematic_break] = ACTIONS(2611), + [sym__list_marker_minus] = ACTIONS(2611), + [sym__list_marker_plus] = ACTIONS(2611), + [sym__list_marker_star] = ACTIONS(2611), + [sym__list_marker_parenthesis] = ACTIONS(2611), + [sym__list_marker_dot] = ACTIONS(2611), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_example] = ACTIONS(2611), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2611), + [sym__fenced_code_block_start_backtick] = ACTIONS(2611), + [sym__minus_metadata_start] = ACTIONS(2611), + [sym__pipe_table_start] = ACTIONS(2611), + [sym__fenced_div_start] = ACTIONS(2611), + [sym_ref_id_specifier] = ACTIONS(2611), + [sym__code_span_start] = ACTIONS(2611), + [sym__html_comment] = ACTIONS(2611), + [sym__autolink] = ACTIONS(2611), + [sym__highlight_span_start] = ACTIONS(2611), + [sym__insert_span_start] = ACTIONS(2611), + [sym__delete_span_start] = ACTIONS(2611), + [sym__edit_comment_span_start] = ACTIONS(2611), + [sym__single_quote_span_open] = ACTIONS(2611), + [sym__double_quote_span_open] = ACTIONS(2611), + [sym__shortcode_open_escaped] = ACTIONS(2611), + [sym__shortcode_open] = ACTIONS(2611), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2611), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2611), + [sym__cite_author_in_text] = ACTIONS(2611), + [sym__cite_suppress_author] = ACTIONS(2611), + [sym__strikeout_open] = ACTIONS(2611), + [sym__subscript_open] = ACTIONS(2611), + [sym__superscript_open] = ACTIONS(2611), + [sym__inline_note_start_token] = ACTIONS(2611), + [sym__strong_emphasis_open_star] = ACTIONS(2611), + [sym__strong_emphasis_open_underscore] = ACTIONS(2611), + [sym__emphasis_open_star] = ACTIONS(2611), + [sym__emphasis_open_underscore] = ACTIONS(2611), + [sym_inline_note_reference] = ACTIONS(2611), + [sym_html_element] = ACTIONS(2611), + [sym__pandoc_lt_str] = ACTIONS(2611), + [sym__pandoc_line_break] = ACTIONS(2611), + [sym_grid_table] = ACTIONS(2611), + [sym__caption_start] = ACTIONS(2611), }, [STATE(377)] = { - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_entity_reference] = ACTIONS(2477), - [sym_numeric_character_reference] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2477), - [anon_sym_BANG_LBRACK] = ACTIONS(2477), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), - [aux_sym_pandoc_str_token1] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(2477), - [sym__whitespace] = ACTIONS(2477), - [sym__line_ending] = ACTIONS(2477), - [sym__soft_line_ending] = ACTIONS(2477), - [sym__block_quote_start] = ACTIONS(2477), - [sym_atx_h1_marker] = ACTIONS(2477), - [sym_atx_h2_marker] = ACTIONS(2477), - [sym_atx_h3_marker] = ACTIONS(2477), - [sym_atx_h4_marker] = ACTIONS(2477), - [sym_atx_h5_marker] = ACTIONS(2477), - [sym_atx_h6_marker] = ACTIONS(2477), - [sym__thematic_break] = ACTIONS(2477), - [sym__list_marker_minus] = ACTIONS(2477), - [sym__list_marker_plus] = ACTIONS(2477), - [sym__list_marker_star] = ACTIONS(2477), - [sym__list_marker_parenthesis] = ACTIONS(2477), - [sym__list_marker_dot] = ACTIONS(2477), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_example] = ACTIONS(2477), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2477), - [sym__fenced_code_block_start_backtick] = ACTIONS(2477), - [sym_minus_metadata] = ACTIONS(2477), - [sym__pipe_table_start] = ACTIONS(2477), - [sym__fenced_div_start] = ACTIONS(2477), - [sym_ref_id_specifier] = ACTIONS(2477), - [sym__code_span_start] = ACTIONS(2477), - [sym__html_comment] = ACTIONS(2477), - [sym__autolink] = ACTIONS(2477), - [sym__highlight_span_start] = ACTIONS(2477), - [sym__insert_span_start] = ACTIONS(2477), - [sym__delete_span_start] = ACTIONS(2477), - [sym__edit_comment_span_start] = ACTIONS(2477), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2477), - [sym__shortcode_open_escaped] = ACTIONS(2477), - [sym__shortcode_open] = ACTIONS(2477), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2477), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2477), - [sym__cite_author_in_text] = ACTIONS(2477), - [sym__cite_suppress_author] = ACTIONS(2477), - [sym__strikeout_open] = ACTIONS(2477), - [sym__subscript_open] = ACTIONS(2477), - [sym__superscript_open] = ACTIONS(2477), - [sym__inline_note_start_token] = ACTIONS(2477), - [sym__strong_emphasis_open_star] = ACTIONS(2477), - [sym__strong_emphasis_open_underscore] = ACTIONS(2477), - [sym__emphasis_open_star] = ACTIONS(2477), - [sym__emphasis_open_underscore] = ACTIONS(2477), - [sym_inline_note_reference] = ACTIONS(2477), - [sym_html_element] = ACTIONS(2477), - [sym__pandoc_lt_str] = ACTIONS(2477), - [sym__pandoc_line_break] = ACTIONS(2477), - [sym_grid_table] = ACTIONS(2477), - [sym__caption_start] = ACTIONS(2477), + [ts_builtin_sym_end] = 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), + [sym__whitespace] = ACTIONS(2615), + [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_start] = 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_lt_str] = ACTIONS(2615), + [sym__pandoc_line_break] = ACTIONS(2615), + [sym_grid_table] = ACTIONS(2615), + [sym__caption_start] = ACTIONS(2615), }, [STATE(378)] = { - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2481), - [anon_sym_BANG_LBRACK] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2481), - [aux_sym_pandoc_str_token1] = ACTIONS(2483), - [anon_sym_PIPE] = ACTIONS(2481), - [sym__whitespace] = ACTIONS(2481), - [sym__line_ending] = ACTIONS(2481), - [sym__soft_line_ending] = ACTIONS(2481), - [sym__block_quote_start] = ACTIONS(2481), - [sym_atx_h1_marker] = ACTIONS(2481), - [sym_atx_h2_marker] = ACTIONS(2481), - [sym_atx_h3_marker] = ACTIONS(2481), - [sym_atx_h4_marker] = ACTIONS(2481), - [sym_atx_h5_marker] = ACTIONS(2481), - [sym_atx_h6_marker] = ACTIONS(2481), - [sym__thematic_break] = ACTIONS(2481), - [sym__list_marker_minus] = ACTIONS(2481), - [sym__list_marker_plus] = ACTIONS(2481), - [sym__list_marker_star] = ACTIONS(2481), - [sym__list_marker_parenthesis] = ACTIONS(2481), - [sym__list_marker_dot] = ACTIONS(2481), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_example] = ACTIONS(2481), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2481), - [sym__fenced_code_block_start_backtick] = ACTIONS(2481), - [sym_minus_metadata] = ACTIONS(2481), - [sym__pipe_table_start] = ACTIONS(2481), - [sym__fenced_div_start] = ACTIONS(2481), - [sym_ref_id_specifier] = ACTIONS(2481), - [sym__code_span_start] = ACTIONS(2481), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2481), - [sym__insert_span_start] = ACTIONS(2481), - [sym__delete_span_start] = ACTIONS(2481), - [sym__edit_comment_span_start] = ACTIONS(2481), - [sym__single_quote_span_open] = ACTIONS(2481), - [sym__double_quote_span_open] = ACTIONS(2481), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2481), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2481), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2481), - [sym__cite_author_in_text] = ACTIONS(2481), - [sym__cite_suppress_author] = ACTIONS(2481), - [sym__strikeout_open] = ACTIONS(2481), - [sym__subscript_open] = ACTIONS(2481), - [sym__superscript_open] = ACTIONS(2481), - [sym__inline_note_start_token] = ACTIONS(2481), - [sym__strong_emphasis_open_star] = ACTIONS(2481), - [sym__strong_emphasis_open_underscore] = ACTIONS(2481), - [sym__emphasis_open_star] = ACTIONS(2481), - [sym__emphasis_open_underscore] = ACTIONS(2481), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - [sym__pandoc_lt_str] = ACTIONS(2481), - [sym__pandoc_line_break] = ACTIONS(2481), - [sym_grid_table] = ACTIONS(2481), - [sym__caption_start] = ACTIONS(2481), + [ts_builtin_sym_end] = ACTIONS(2619), + [sym_entity_reference] = ACTIONS(2619), + [sym_numeric_character_reference] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_BANG_LBRACK] = ACTIONS(2619), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2619), + [aux_sym_pandoc_str_token1] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2619), + [sym__whitespace] = ACTIONS(2619), + [sym__line_ending] = ACTIONS(2619), + [sym__soft_line_ending] = ACTIONS(2619), + [sym__block_quote_start] = ACTIONS(2619), + [sym_atx_h1_marker] = ACTIONS(2619), + [sym_atx_h2_marker] = ACTIONS(2619), + [sym_atx_h3_marker] = ACTIONS(2619), + [sym_atx_h4_marker] = ACTIONS(2619), + [sym_atx_h5_marker] = ACTIONS(2619), + [sym_atx_h6_marker] = ACTIONS(2619), + [sym__thematic_break] = ACTIONS(2619), + [sym__list_marker_minus] = ACTIONS(2619), + [sym__list_marker_plus] = ACTIONS(2619), + [sym__list_marker_star] = ACTIONS(2619), + [sym__list_marker_parenthesis] = ACTIONS(2619), + [sym__list_marker_dot] = ACTIONS(2619), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2619), + [sym__list_marker_example] = ACTIONS(2619), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2619), + [sym__fenced_code_block_start_backtick] = ACTIONS(2619), + [sym__minus_metadata_start] = ACTIONS(2619), + [sym__pipe_table_start] = ACTIONS(2619), + [sym__fenced_div_start] = ACTIONS(2619), + [sym_ref_id_specifier] = ACTIONS(2619), + [sym__code_span_start] = ACTIONS(2619), + [sym__html_comment] = ACTIONS(2619), + [sym__autolink] = ACTIONS(2619), + [sym__highlight_span_start] = ACTIONS(2619), + [sym__insert_span_start] = ACTIONS(2619), + [sym__delete_span_start] = ACTIONS(2619), + [sym__edit_comment_span_start] = ACTIONS(2619), + [sym__single_quote_span_open] = ACTIONS(2619), + [sym__double_quote_span_open] = ACTIONS(2619), + [sym__shortcode_open_escaped] = ACTIONS(2619), + [sym__shortcode_open] = ACTIONS(2619), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2619), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2619), + [sym__cite_author_in_text] = ACTIONS(2619), + [sym__cite_suppress_author] = ACTIONS(2619), + [sym__strikeout_open] = ACTIONS(2619), + [sym__subscript_open] = ACTIONS(2619), + [sym__superscript_open] = ACTIONS(2619), + [sym__inline_note_start_token] = ACTIONS(2619), + [sym__strong_emphasis_open_star] = ACTIONS(2619), + [sym__strong_emphasis_open_underscore] = ACTIONS(2619), + [sym__emphasis_open_star] = ACTIONS(2619), + [sym__emphasis_open_underscore] = ACTIONS(2619), + [sym_inline_note_reference] = ACTIONS(2619), + [sym_html_element] = ACTIONS(2619), + [sym__pandoc_lt_str] = ACTIONS(2619), + [sym__pandoc_line_break] = ACTIONS(2619), + [sym_grid_table] = ACTIONS(2619), + [sym__caption_start] = ACTIONS(2619), }, [STATE(379)] = { - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_entity_reference] = ACTIONS(2485), - [sym_numeric_character_reference] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2485), - [aux_sym_pandoc_str_token1] = ACTIONS(2487), - [anon_sym_PIPE] = ACTIONS(2485), - [sym__whitespace] = ACTIONS(2485), - [sym__line_ending] = ACTIONS(2485), - [sym__soft_line_ending] = ACTIONS(2485), - [sym__block_quote_start] = ACTIONS(2485), - [sym_atx_h1_marker] = ACTIONS(2485), - [sym_atx_h2_marker] = ACTIONS(2485), - [sym_atx_h3_marker] = ACTIONS(2485), - [sym_atx_h4_marker] = ACTIONS(2485), - [sym_atx_h5_marker] = ACTIONS(2485), - [sym_atx_h6_marker] = ACTIONS(2485), - [sym__thematic_break] = ACTIONS(2485), - [sym__list_marker_minus] = ACTIONS(2485), - [sym__list_marker_plus] = ACTIONS(2485), - [sym__list_marker_star] = ACTIONS(2485), - [sym__list_marker_parenthesis] = ACTIONS(2485), - [sym__list_marker_dot] = ACTIONS(2485), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_example] = ACTIONS(2485), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2485), - [sym__fenced_code_block_start_backtick] = ACTIONS(2485), - [sym_minus_metadata] = ACTIONS(2485), - [sym__pipe_table_start] = ACTIONS(2485), - [sym__fenced_div_start] = ACTIONS(2485), - [sym_ref_id_specifier] = ACTIONS(2485), - [sym__code_span_start] = ACTIONS(2485), - [sym__html_comment] = ACTIONS(2485), - [sym__autolink] = ACTIONS(2485), - [sym__highlight_span_start] = ACTIONS(2485), - [sym__insert_span_start] = ACTIONS(2485), - [sym__delete_span_start] = ACTIONS(2485), - [sym__edit_comment_span_start] = ACTIONS(2485), - [sym__single_quote_span_open] = ACTIONS(2485), - [sym__double_quote_span_open] = ACTIONS(2485), - [sym__shortcode_open_escaped] = ACTIONS(2485), - [sym__shortcode_open] = ACTIONS(2485), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2485), - [sym__cite_author_in_text] = ACTIONS(2485), - [sym__cite_suppress_author] = ACTIONS(2485), - [sym__strikeout_open] = ACTIONS(2485), - [sym__subscript_open] = ACTIONS(2485), - [sym__superscript_open] = ACTIONS(2485), - [sym__inline_note_start_token] = ACTIONS(2485), - [sym__strong_emphasis_open_star] = ACTIONS(2485), - [sym__strong_emphasis_open_underscore] = ACTIONS(2485), - [sym__emphasis_open_star] = ACTIONS(2485), - [sym__emphasis_open_underscore] = ACTIONS(2485), - [sym_inline_note_reference] = ACTIONS(2485), - [sym_html_element] = ACTIONS(2485), - [sym__pandoc_lt_str] = ACTIONS(2485), - [sym__pandoc_line_break] = ACTIONS(2485), - [sym_grid_table] = ACTIONS(2485), - [sym__caption_start] = ACTIONS(2485), + [ts_builtin_sym_end] = ACTIONS(2623), + [sym_entity_reference] = ACTIONS(2623), + [sym_numeric_character_reference] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_BANG_LBRACK] = ACTIONS(2623), + [anon_sym_DOLLAR] = ACTIONS(2625), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2623), + [aux_sym_pandoc_str_token1] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2623), + [sym__whitespace] = ACTIONS(2623), + [sym__line_ending] = ACTIONS(2623), + [sym__soft_line_ending] = ACTIONS(2623), + [sym__block_quote_start] = ACTIONS(2623), + [sym_atx_h1_marker] = ACTIONS(2623), + [sym_atx_h2_marker] = ACTIONS(2623), + [sym_atx_h3_marker] = ACTIONS(2623), + [sym_atx_h4_marker] = ACTIONS(2623), + [sym_atx_h5_marker] = ACTIONS(2623), + [sym_atx_h6_marker] = ACTIONS(2623), + [sym__thematic_break] = ACTIONS(2623), + [sym__list_marker_minus] = ACTIONS(2623), + [sym__list_marker_plus] = ACTIONS(2623), + [sym__list_marker_star] = ACTIONS(2623), + [sym__list_marker_parenthesis] = ACTIONS(2623), + [sym__list_marker_dot] = ACTIONS(2623), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2623), + [sym__list_marker_example] = ACTIONS(2623), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2623), + [sym__fenced_code_block_start_backtick] = ACTIONS(2623), + [sym__minus_metadata_start] = ACTIONS(2623), + [sym__pipe_table_start] = ACTIONS(2623), + [sym__fenced_div_start] = ACTIONS(2623), + [sym_ref_id_specifier] = ACTIONS(2623), + [sym__code_span_start] = ACTIONS(2623), + [sym__html_comment] = ACTIONS(2623), + [sym__autolink] = ACTIONS(2623), + [sym__highlight_span_start] = ACTIONS(2623), + [sym__insert_span_start] = ACTIONS(2623), + [sym__delete_span_start] = ACTIONS(2623), + [sym__edit_comment_span_start] = ACTIONS(2623), + [sym__single_quote_span_open] = ACTIONS(2623), + [sym__double_quote_span_open] = ACTIONS(2623), + [sym__shortcode_open_escaped] = ACTIONS(2623), + [sym__shortcode_open] = ACTIONS(2623), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2623), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2623), + [sym__cite_author_in_text] = ACTIONS(2623), + [sym__cite_suppress_author] = ACTIONS(2623), + [sym__strikeout_open] = ACTIONS(2623), + [sym__subscript_open] = ACTIONS(2623), + [sym__superscript_open] = ACTIONS(2623), + [sym__inline_note_start_token] = ACTIONS(2623), + [sym__strong_emphasis_open_star] = ACTIONS(2623), + [sym__strong_emphasis_open_underscore] = ACTIONS(2623), + [sym__emphasis_open_star] = ACTIONS(2623), + [sym__emphasis_open_underscore] = ACTIONS(2623), + [sym_inline_note_reference] = ACTIONS(2623), + [sym_html_element] = ACTIONS(2623), + [sym__pandoc_lt_str] = ACTIONS(2623), + [sym__pandoc_line_break] = ACTIONS(2623), + [sym_grid_table] = ACTIONS(2623), + [sym__caption_start] = ACTIONS(2623), }, [STATE(380)] = { - [ts_builtin_sym_end] = ACTIONS(2489), - [sym_entity_reference] = ACTIONS(2489), - [sym_numeric_character_reference] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_BANG_LBRACK] = ACTIONS(2489), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(2489), - [aux_sym_pandoc_str_token1] = ACTIONS(2491), - [anon_sym_PIPE] = ACTIONS(2489), - [sym__whitespace] = ACTIONS(2489), - [sym__line_ending] = ACTIONS(2489), - [sym__soft_line_ending] = ACTIONS(2489), - [sym__block_quote_start] = ACTIONS(2489), - [sym_atx_h1_marker] = ACTIONS(2489), - [sym_atx_h2_marker] = ACTIONS(2489), - [sym_atx_h3_marker] = ACTIONS(2489), - [sym_atx_h4_marker] = ACTIONS(2489), - [sym_atx_h5_marker] = ACTIONS(2489), - [sym_atx_h6_marker] = ACTIONS(2489), - [sym__thematic_break] = ACTIONS(2489), - [sym__list_marker_minus] = ACTIONS(2489), - [sym__list_marker_plus] = ACTIONS(2489), - [sym__list_marker_star] = ACTIONS(2489), - [sym__list_marker_parenthesis] = ACTIONS(2489), - [sym__list_marker_dot] = ACTIONS(2489), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_example] = ACTIONS(2489), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2489), - [sym__fenced_code_block_start_backtick] = ACTIONS(2489), - [sym_minus_metadata] = ACTIONS(2489), - [sym__pipe_table_start] = ACTIONS(2489), - [sym__fenced_div_start] = ACTIONS(2489), - [sym_ref_id_specifier] = ACTIONS(2489), - [sym__code_span_start] = ACTIONS(2489), - [sym__html_comment] = ACTIONS(2489), - [sym__autolink] = ACTIONS(2489), - [sym__highlight_span_start] = ACTIONS(2489), - [sym__insert_span_start] = ACTIONS(2489), - [sym__delete_span_start] = ACTIONS(2489), - [sym__edit_comment_span_start] = ACTIONS(2489), - [sym__single_quote_span_open] = ACTIONS(2489), - [sym__double_quote_span_open] = ACTIONS(2489), - [sym__shortcode_open_escaped] = ACTIONS(2489), - [sym__shortcode_open] = ACTIONS(2489), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2489), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2489), - [sym__strikeout_open] = ACTIONS(2489), - [sym__subscript_open] = ACTIONS(2489), - [sym__superscript_open] = ACTIONS(2489), - [sym__inline_note_start_token] = ACTIONS(2489), - [sym__strong_emphasis_open_star] = ACTIONS(2489), - [sym__strong_emphasis_open_underscore] = ACTIONS(2489), - [sym__emphasis_open_star] = ACTIONS(2489), - [sym__emphasis_open_underscore] = ACTIONS(2489), - [sym_inline_note_reference] = ACTIONS(2489), - [sym_html_element] = ACTIONS(2489), - [sym__pandoc_lt_str] = ACTIONS(2489), - [sym__pandoc_line_break] = ACTIONS(2489), - [sym_grid_table] = ACTIONS(2489), - [sym__caption_start] = ACTIONS(2489), + [sym_entity_reference] = ACTIONS(2343), + [sym_numeric_character_reference] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_BANG_LBRACK] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [aux_sym_pandoc_str_token1] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2343), + [sym__whitespace] = ACTIONS(2343), + [sym__line_ending] = ACTIONS(2343), + [sym__soft_line_ending] = ACTIONS(2343), + [sym__block_close] = ACTIONS(2343), + [sym__block_quote_start] = ACTIONS(2343), + [sym_atx_h1_marker] = ACTIONS(2343), + [sym_atx_h2_marker] = ACTIONS(2343), + [sym_atx_h3_marker] = ACTIONS(2343), + [sym_atx_h4_marker] = ACTIONS(2343), + [sym_atx_h5_marker] = ACTIONS(2343), + [sym_atx_h6_marker] = ACTIONS(2343), + [sym__thematic_break] = ACTIONS(2343), + [sym__list_marker_minus] = ACTIONS(2343), + [sym__list_marker_plus] = ACTIONS(2343), + [sym__list_marker_star] = ACTIONS(2343), + [sym__list_marker_parenthesis] = ACTIONS(2343), + [sym__list_marker_dot] = ACTIONS(2343), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_example] = ACTIONS(2343), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2343), + [sym__fenced_code_block_start_backtick] = ACTIONS(2343), + [sym__minus_metadata_start] = ACTIONS(2343), + [sym__pipe_table_start] = ACTIONS(2343), + [sym__fenced_div_start] = ACTIONS(2343), + [sym_ref_id_specifier] = ACTIONS(2343), + [sym__code_span_start] = ACTIONS(2343), + [sym__html_comment] = ACTIONS(2343), + [sym__autolink] = ACTIONS(2343), + [sym__highlight_span_start] = ACTIONS(2343), + [sym__insert_span_start] = ACTIONS(2343), + [sym__delete_span_start] = ACTIONS(2343), + [sym__edit_comment_span_start] = ACTIONS(2343), + [sym__single_quote_span_open] = ACTIONS(2343), + [sym__double_quote_span_open] = ACTIONS(2343), + [sym__shortcode_open_escaped] = ACTIONS(2343), + [sym__shortcode_open] = ACTIONS(2343), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2343), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2343), + [sym__cite_author_in_text] = ACTIONS(2343), + [sym__cite_suppress_author] = ACTIONS(2343), + [sym__strikeout_open] = ACTIONS(2343), + [sym__subscript_open] = ACTIONS(2343), + [sym__superscript_open] = ACTIONS(2343), + [sym__inline_note_start_token] = ACTIONS(2343), + [sym__strong_emphasis_open_star] = ACTIONS(2343), + [sym__strong_emphasis_open_underscore] = ACTIONS(2343), + [sym__emphasis_open_star] = ACTIONS(2343), + [sym__emphasis_open_underscore] = ACTIONS(2343), + [sym_inline_note_reference] = ACTIONS(2343), + [sym_html_element] = ACTIONS(2343), + [sym__pandoc_lt_str] = ACTIONS(2343), + [sym__pandoc_line_break] = ACTIONS(2343), + [sym_grid_table] = ACTIONS(2343), + [sym__caption_start] = ACTIONS(2343), }, [STATE(381)] = { - [ts_builtin_sym_end] = ACTIONS(2493), - [sym_entity_reference] = ACTIONS(2493), - [sym_numeric_character_reference] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_BANG_LBRACK] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2493), - [sym__whitespace] = ACTIONS(2493), - [sym__line_ending] = ACTIONS(2493), - [sym__soft_line_ending] = ACTIONS(2493), - [sym__block_quote_start] = ACTIONS(2493), - [sym_atx_h1_marker] = ACTIONS(2493), - [sym_atx_h2_marker] = ACTIONS(2493), - [sym_atx_h3_marker] = ACTIONS(2493), - [sym_atx_h4_marker] = ACTIONS(2493), - [sym_atx_h5_marker] = ACTIONS(2493), - [sym_atx_h6_marker] = ACTIONS(2493), - [sym__thematic_break] = ACTIONS(2493), - [sym__list_marker_minus] = ACTIONS(2493), - [sym__list_marker_plus] = ACTIONS(2493), - [sym__list_marker_star] = ACTIONS(2493), - [sym__list_marker_parenthesis] = ACTIONS(2493), - [sym__list_marker_dot] = ACTIONS(2493), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_example] = ACTIONS(2493), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2493), - [sym__fenced_code_block_start_backtick] = ACTIONS(2493), - [sym_minus_metadata] = ACTIONS(2493), - [sym__pipe_table_start] = ACTIONS(2493), - [sym__fenced_div_start] = ACTIONS(2493), - [sym_ref_id_specifier] = ACTIONS(2493), - [sym__code_span_start] = ACTIONS(2493), - [sym__html_comment] = ACTIONS(2493), - [sym__autolink] = ACTIONS(2493), - [sym__highlight_span_start] = ACTIONS(2493), - [sym__insert_span_start] = ACTIONS(2493), - [sym__delete_span_start] = ACTIONS(2493), - [sym__edit_comment_span_start] = ACTIONS(2493), - [sym__single_quote_span_open] = ACTIONS(2493), - [sym__double_quote_span_open] = ACTIONS(2493), - [sym__shortcode_open_escaped] = ACTIONS(2493), - [sym__shortcode_open] = ACTIONS(2493), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2493), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2493), - [sym__cite_author_in_text] = ACTIONS(2493), - [sym__cite_suppress_author] = ACTIONS(2493), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2493), - [sym__superscript_open] = ACTIONS(2493), - [sym__inline_note_start_token] = ACTIONS(2493), - [sym__strong_emphasis_open_star] = ACTIONS(2493), - [sym__strong_emphasis_open_underscore] = ACTIONS(2493), - [sym__emphasis_open_star] = ACTIONS(2493), - [sym__emphasis_open_underscore] = ACTIONS(2493), - [sym_inline_note_reference] = ACTIONS(2493), - [sym_html_element] = ACTIONS(2493), - [sym__pandoc_lt_str] = ACTIONS(2493), - [sym__pandoc_line_break] = ACTIONS(2493), - [sym_grid_table] = ACTIONS(2493), - [sym__caption_start] = ACTIONS(2493), + [ts_builtin_sym_end] = ACTIONS(2325), + [sym_entity_reference] = ACTIONS(2325), + [sym_numeric_character_reference] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_BANG_LBRACK] = ACTIONS(2325), + [anon_sym_DOLLAR] = ACTIONS(2327), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2325), + [aux_sym_pandoc_str_token1] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2325), + [sym__whitespace] = ACTIONS(2325), + [sym__line_ending] = ACTIONS(2325), + [sym__soft_line_ending] = ACTIONS(2325), + [sym__block_quote_start] = ACTIONS(2325), + [sym_atx_h1_marker] = ACTIONS(2325), + [sym_atx_h2_marker] = ACTIONS(2325), + [sym_atx_h3_marker] = ACTIONS(2325), + [sym_atx_h4_marker] = ACTIONS(2325), + [sym_atx_h5_marker] = ACTIONS(2325), + [sym_atx_h6_marker] = ACTIONS(2325), + [sym__thematic_break] = ACTIONS(2325), + [sym__list_marker_minus] = ACTIONS(2325), + [sym__list_marker_plus] = ACTIONS(2325), + [sym__list_marker_star] = ACTIONS(2325), + [sym__list_marker_parenthesis] = ACTIONS(2325), + [sym__list_marker_dot] = ACTIONS(2325), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_example] = ACTIONS(2325), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2325), + [sym__fenced_code_block_start_backtick] = ACTIONS(2325), + [sym__minus_metadata_start] = ACTIONS(2325), + [sym__pipe_table_start] = ACTIONS(2325), + [sym__fenced_div_start] = ACTIONS(2325), + [sym_ref_id_specifier] = ACTIONS(2325), + [sym__code_span_start] = ACTIONS(2325), + [sym__html_comment] = ACTIONS(2325), + [sym__autolink] = ACTIONS(2325), + [sym__highlight_span_start] = ACTIONS(2325), + [sym__insert_span_start] = ACTIONS(2325), + [sym__delete_span_start] = ACTIONS(2325), + [sym__edit_comment_span_start] = ACTIONS(2325), + [sym__single_quote_span_open] = ACTIONS(2325), + [sym__double_quote_span_open] = ACTIONS(2325), + [sym__shortcode_open_escaped] = ACTIONS(2325), + [sym__shortcode_open] = ACTIONS(2325), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2325), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2325), + [sym__cite_author_in_text] = ACTIONS(2325), + [sym__cite_suppress_author] = ACTIONS(2325), + [sym__strikeout_open] = ACTIONS(2325), + [sym__subscript_open] = ACTIONS(2325), + [sym__superscript_open] = ACTIONS(2325), + [sym__inline_note_start_token] = ACTIONS(2325), + [sym__strong_emphasis_open_star] = ACTIONS(2325), + [sym__strong_emphasis_open_underscore] = ACTIONS(2325), + [sym__emphasis_open_star] = ACTIONS(2325), + [sym__emphasis_open_underscore] = ACTIONS(2325), + [sym_inline_note_reference] = ACTIONS(2325), + [sym_html_element] = ACTIONS(2325), + [sym__pandoc_lt_str] = ACTIONS(2325), + [sym__pandoc_line_break] = ACTIONS(2325), + [sym_grid_table] = ACTIONS(2325), + [sym__caption_start] = ACTIONS(2325), }, [STATE(382)] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_entity_reference] = ACTIONS(2531), - [sym_numeric_character_reference] = ACTIONS(2531), - [anon_sym_LBRACK] = ACTIONS(2531), - [anon_sym_BANG_LBRACK] = ACTIONS(2531), - [anon_sym_DOLLAR] = ACTIONS(2533), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [aux_sym_pandoc_str_token1] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2531), - [sym__whitespace] = ACTIONS(2531), - [sym__line_ending] = ACTIONS(2531), - [sym__soft_line_ending] = ACTIONS(2531), - [sym__block_quote_start] = ACTIONS(2531), - [sym_atx_h1_marker] = ACTIONS(2531), - [sym_atx_h2_marker] = ACTIONS(2531), - [sym_atx_h3_marker] = ACTIONS(2531), - [sym_atx_h4_marker] = ACTIONS(2531), - [sym_atx_h5_marker] = ACTIONS(2531), - [sym_atx_h6_marker] = ACTIONS(2531), - [sym__thematic_break] = ACTIONS(2531), - [sym__list_marker_minus] = ACTIONS(2531), - [sym__list_marker_plus] = ACTIONS(2531), - [sym__list_marker_star] = ACTIONS(2531), - [sym__list_marker_parenthesis] = ACTIONS(2531), - [sym__list_marker_dot] = ACTIONS(2531), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2531), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2531), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2531), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2531), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2531), - [sym__list_marker_example] = ACTIONS(2531), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2531), - [sym__fenced_code_block_start_backtick] = ACTIONS(2531), - [sym_minus_metadata] = ACTIONS(2531), - [sym__pipe_table_start] = ACTIONS(2531), - [sym__fenced_div_start] = ACTIONS(2531), - [sym_ref_id_specifier] = ACTIONS(2531), - [sym__code_span_start] = ACTIONS(2531), - [sym__html_comment] = ACTIONS(2531), - [sym__autolink] = ACTIONS(2531), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2531), - [sym__delete_span_start] = ACTIONS(2531), - [sym__edit_comment_span_start] = ACTIONS(2531), - [sym__single_quote_span_open] = ACTIONS(2531), - [sym__double_quote_span_open] = ACTIONS(2531), - [sym__shortcode_open_escaped] = ACTIONS(2531), - [sym__shortcode_open] = ACTIONS(2531), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2531), - [sym__cite_author_in_text] = ACTIONS(2531), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2531), - [sym__subscript_open] = ACTIONS(2531), - [sym__superscript_open] = ACTIONS(2531), - [sym__inline_note_start_token] = ACTIONS(2531), - [sym__strong_emphasis_open_star] = ACTIONS(2531), - [sym__strong_emphasis_open_underscore] = ACTIONS(2531), - [sym__emphasis_open_star] = ACTIONS(2531), - [sym__emphasis_open_underscore] = ACTIONS(2531), - [sym_inline_note_reference] = ACTIONS(2531), - [sym_html_element] = ACTIONS(2531), - [sym__pandoc_lt_str] = ACTIONS(2531), - [sym__pandoc_line_break] = ACTIONS(2531), - [sym_grid_table] = ACTIONS(2531), - [sym__caption_start] = ACTIONS(2531), + [sym_entity_reference] = ACTIONS(2577), + [sym_numeric_character_reference] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_BANG_LBRACK] = ACTIONS(2577), + [anon_sym_DOLLAR] = ACTIONS(2579), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2577), + [aux_sym_pandoc_str_token1] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2577), + [sym__whitespace] = ACTIONS(2577), + [sym__line_ending] = ACTIONS(2577), + [sym__soft_line_ending] = ACTIONS(2577), + [sym__block_close] = ACTIONS(2577), + [sym__block_quote_start] = ACTIONS(2577), + [sym_atx_h1_marker] = ACTIONS(2577), + [sym_atx_h2_marker] = ACTIONS(2577), + [sym_atx_h3_marker] = ACTIONS(2577), + [sym_atx_h4_marker] = ACTIONS(2577), + [sym_atx_h5_marker] = ACTIONS(2577), + [sym_atx_h6_marker] = ACTIONS(2577), + [sym__thematic_break] = ACTIONS(2577), + [sym__list_marker_minus] = ACTIONS(2577), + [sym__list_marker_plus] = ACTIONS(2577), + [sym__list_marker_star] = ACTIONS(2577), + [sym__list_marker_parenthesis] = ACTIONS(2577), + [sym__list_marker_dot] = ACTIONS(2577), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2577), + [sym__list_marker_example] = ACTIONS(2577), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2577), + [sym__fenced_code_block_start_backtick] = ACTIONS(2577), + [sym__minus_metadata_start] = ACTIONS(2577), + [sym__pipe_table_start] = ACTIONS(2577), + [sym__fenced_div_start] = ACTIONS(2577), + [sym_ref_id_specifier] = ACTIONS(2577), + [sym__code_span_start] = ACTIONS(2577), + [sym__html_comment] = ACTIONS(2577), + [sym__autolink] = ACTIONS(2577), + [sym__highlight_span_start] = ACTIONS(2577), + [sym__insert_span_start] = ACTIONS(2577), + [sym__delete_span_start] = ACTIONS(2577), + [sym__edit_comment_span_start] = ACTIONS(2577), + [sym__single_quote_span_open] = ACTIONS(2577), + [sym__double_quote_span_open] = ACTIONS(2577), + [sym__shortcode_open_escaped] = ACTIONS(2577), + [sym__shortcode_open] = ACTIONS(2577), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2577), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2577), + [sym__cite_author_in_text] = ACTIONS(2577), + [sym__cite_suppress_author] = ACTIONS(2577), + [sym__strikeout_open] = ACTIONS(2577), + [sym__subscript_open] = ACTIONS(2577), + [sym__superscript_open] = ACTIONS(2577), + [sym__inline_note_start_token] = ACTIONS(2577), + [sym__strong_emphasis_open_star] = ACTIONS(2577), + [sym__strong_emphasis_open_underscore] = ACTIONS(2577), + [sym__emphasis_open_star] = ACTIONS(2577), + [sym__emphasis_open_underscore] = ACTIONS(2577), + [sym_inline_note_reference] = ACTIONS(2577), + [sym_html_element] = ACTIONS(2577), + [sym__pandoc_lt_str] = ACTIONS(2577), + [sym__pandoc_line_break] = ACTIONS(2577), + [sym_grid_table] = ACTIONS(2577), + [sym__caption_start] = ACTIONS(2577), }, [STATE(383)] = { - [ts_builtin_sym_end] = ACTIONS(2497), - [sym_entity_reference] = ACTIONS(2497), - [sym_numeric_character_reference] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_BANG_LBRACK] = ACTIONS(2497), - [anon_sym_DOLLAR] = ACTIONS(2499), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2497), - [aux_sym_pandoc_str_token1] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2497), - [sym__whitespace] = ACTIONS(2497), - [sym__line_ending] = ACTIONS(2497), - [sym__soft_line_ending] = ACTIONS(2497), - [sym__block_quote_start] = ACTIONS(2497), - [sym_atx_h1_marker] = ACTIONS(2497), - [sym_atx_h2_marker] = ACTIONS(2497), - [sym_atx_h3_marker] = ACTIONS(2497), - [sym_atx_h4_marker] = ACTIONS(2497), - [sym_atx_h5_marker] = ACTIONS(2497), - [sym_atx_h6_marker] = ACTIONS(2497), - [sym__thematic_break] = ACTIONS(2497), - [sym__list_marker_minus] = ACTIONS(2497), - [sym__list_marker_plus] = ACTIONS(2497), - [sym__list_marker_star] = ACTIONS(2497), - [sym__list_marker_parenthesis] = ACTIONS(2497), - [sym__list_marker_dot] = ACTIONS(2497), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_example] = ACTIONS(2497), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2497), - [sym__fenced_code_block_start_backtick] = ACTIONS(2497), - [sym_minus_metadata] = ACTIONS(2497), - [sym__pipe_table_start] = ACTIONS(2497), - [sym__fenced_div_start] = ACTIONS(2497), - [sym_ref_id_specifier] = ACTIONS(2497), - [sym__code_span_start] = ACTIONS(2497), - [sym__html_comment] = ACTIONS(2497), - [sym__autolink] = ACTIONS(2497), - [sym__highlight_span_start] = ACTIONS(2497), - [sym__insert_span_start] = ACTIONS(2497), - [sym__delete_span_start] = ACTIONS(2497), - [sym__edit_comment_span_start] = ACTIONS(2497), - [sym__single_quote_span_open] = ACTIONS(2497), - [sym__double_quote_span_open] = ACTIONS(2497), - [sym__shortcode_open_escaped] = ACTIONS(2497), - [sym__shortcode_open] = ACTIONS(2497), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2497), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2497), - [sym__cite_author_in_text] = ACTIONS(2497), - [sym__cite_suppress_author] = ACTIONS(2497), - [sym__strikeout_open] = ACTIONS(2497), - [sym__subscript_open] = ACTIONS(2497), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2497), - [sym__strong_emphasis_open_star] = ACTIONS(2497), - [sym__strong_emphasis_open_underscore] = ACTIONS(2497), - [sym__emphasis_open_star] = ACTIONS(2497), - [sym__emphasis_open_underscore] = ACTIONS(2497), - [sym_inline_note_reference] = ACTIONS(2497), - [sym_html_element] = ACTIONS(2497), - [sym__pandoc_lt_str] = ACTIONS(2497), - [sym__pandoc_line_break] = ACTIONS(2497), - [sym_grid_table] = ACTIONS(2497), - [sym__caption_start] = ACTIONS(2497), + [ts_builtin_sym_end] = ACTIONS(2337), + [sym_entity_reference] = ACTIONS(2337), + [sym_numeric_character_reference] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_BANG_LBRACK] = ACTIONS(2337), + [anon_sym_DOLLAR] = ACTIONS(2339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [aux_sym_pandoc_str_token1] = ACTIONS(2339), + [anon_sym_PIPE] = ACTIONS(2337), + [sym__whitespace] = ACTIONS(2337), + [sym__line_ending] = ACTIONS(2337), + [sym__soft_line_ending] = ACTIONS(2337), + [sym__block_quote_start] = ACTIONS(2337), + [sym_atx_h1_marker] = ACTIONS(2337), + [sym_atx_h2_marker] = ACTIONS(2337), + [sym_atx_h3_marker] = ACTIONS(2337), + [sym_atx_h4_marker] = ACTIONS(2337), + [sym_atx_h5_marker] = ACTIONS(2337), + [sym_atx_h6_marker] = ACTIONS(2337), + [sym__thematic_break] = ACTIONS(2337), + [sym__list_marker_minus] = ACTIONS(2337), + [sym__list_marker_plus] = ACTIONS(2337), + [sym__list_marker_star] = ACTIONS(2337), + [sym__list_marker_parenthesis] = ACTIONS(2337), + [sym__list_marker_dot] = ACTIONS(2337), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_example] = ACTIONS(2337), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2337), + [sym__fenced_code_block_start_backtick] = ACTIONS(2337), + [sym__minus_metadata_start] = ACTIONS(2337), + [sym__pipe_table_start] = ACTIONS(2337), + [sym__fenced_div_start] = ACTIONS(2337), + [sym_ref_id_specifier] = ACTIONS(2337), + [sym__code_span_start] = ACTIONS(2337), + [sym__html_comment] = ACTIONS(2337), + [sym__autolink] = ACTIONS(2337), + [sym__highlight_span_start] = ACTIONS(2337), + [sym__insert_span_start] = ACTIONS(2337), + [sym__delete_span_start] = ACTIONS(2337), + [sym__edit_comment_span_start] = ACTIONS(2337), + [sym__single_quote_span_open] = ACTIONS(2337), + [sym__double_quote_span_open] = ACTIONS(2337), + [sym__shortcode_open_escaped] = ACTIONS(2337), + [sym__shortcode_open] = ACTIONS(2337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2337), + [sym__cite_author_in_text] = ACTIONS(2337), + [sym__cite_suppress_author] = ACTIONS(2337), + [sym__strikeout_open] = ACTIONS(2337), + [sym__subscript_open] = ACTIONS(2337), + [sym__superscript_open] = ACTIONS(2337), + [sym__inline_note_start_token] = ACTIONS(2337), + [sym__strong_emphasis_open_star] = ACTIONS(2337), + [sym__strong_emphasis_open_underscore] = ACTIONS(2337), + [sym__emphasis_open_star] = ACTIONS(2337), + [sym__emphasis_open_underscore] = ACTIONS(2337), + [sym_inline_note_reference] = ACTIONS(2337), + [sym_html_element] = ACTIONS(2337), + [sym__pandoc_lt_str] = ACTIONS(2337), + [sym__pandoc_line_break] = ACTIONS(2337), + [sym_grid_table] = ACTIONS(2337), + [sym__caption_start] = ACTIONS(2337), }, [STATE(384)] = { - [ts_builtin_sym_end] = ACTIONS(2501), - [sym_entity_reference] = ACTIONS(2501), - [sym_numeric_character_reference] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_BANG_LBRACK] = ACTIONS(2501), - [anon_sym_DOLLAR] = ACTIONS(2503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [aux_sym_pandoc_str_token1] = ACTIONS(2503), - [anon_sym_PIPE] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2501), - [sym__line_ending] = ACTIONS(2501), - [sym__soft_line_ending] = ACTIONS(2501), - [sym__block_quote_start] = ACTIONS(2501), - [sym_atx_h1_marker] = ACTIONS(2501), - [sym_atx_h2_marker] = ACTIONS(2501), - [sym_atx_h3_marker] = ACTIONS(2501), - [sym_atx_h4_marker] = ACTIONS(2501), - [sym_atx_h5_marker] = ACTIONS(2501), - [sym_atx_h6_marker] = ACTIONS(2501), - [sym__thematic_break] = ACTIONS(2501), - [sym__list_marker_minus] = ACTIONS(2501), - [sym__list_marker_plus] = ACTIONS(2501), - [sym__list_marker_star] = ACTIONS(2501), - [sym__list_marker_parenthesis] = ACTIONS(2501), - [sym__list_marker_dot] = ACTIONS(2501), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_example] = ACTIONS(2501), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2501), - [sym__fenced_code_block_start_backtick] = ACTIONS(2501), - [sym_minus_metadata] = ACTIONS(2501), - [sym__pipe_table_start] = ACTIONS(2501), - [sym__fenced_div_start] = ACTIONS(2501), - [sym_ref_id_specifier] = ACTIONS(2501), - [sym__code_span_start] = ACTIONS(2501), - [sym__html_comment] = ACTIONS(2501), - [sym__autolink] = ACTIONS(2501), - [sym__highlight_span_start] = ACTIONS(2501), - [sym__insert_span_start] = ACTIONS(2501), - [sym__delete_span_start] = ACTIONS(2501), - [sym__edit_comment_span_start] = ACTIONS(2501), - [sym__single_quote_span_open] = ACTIONS(2501), - [sym__double_quote_span_open] = ACTIONS(2501), - [sym__shortcode_open_escaped] = ACTIONS(2501), - [sym__shortcode_open] = ACTIONS(2501), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2501), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2501), - [sym__cite_author_in_text] = ACTIONS(2501), - [sym__cite_suppress_author] = ACTIONS(2501), - [sym__strikeout_open] = ACTIONS(2501), - [sym__subscript_open] = ACTIONS(2501), - [sym__superscript_open] = ACTIONS(2501), - [sym__inline_note_start_token] = ACTIONS(2501), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2501), - [sym__emphasis_open_star] = ACTIONS(2501), - [sym__emphasis_open_underscore] = ACTIONS(2501), - [sym_inline_note_reference] = ACTIONS(2501), - [sym_html_element] = ACTIONS(2501), - [sym__pandoc_lt_str] = ACTIONS(2501), - [sym__pandoc_line_break] = ACTIONS(2501), - [sym_grid_table] = ACTIONS(2501), - [sym__caption_start] = ACTIONS(2501), + [sym_entity_reference] = ACTIONS(2349), + [sym_numeric_character_reference] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_BANG_LBRACK] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [aux_sym_pandoc_str_token1] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(2349), + [sym__whitespace] = ACTIONS(2349), + [sym__line_ending] = ACTIONS(2349), + [sym__soft_line_ending] = ACTIONS(2349), + [sym__block_close] = ACTIONS(2349), + [sym__block_quote_start] = ACTIONS(2349), + [sym_atx_h1_marker] = ACTIONS(2349), + [sym_atx_h2_marker] = ACTIONS(2349), + [sym_atx_h3_marker] = ACTIONS(2349), + [sym_atx_h4_marker] = ACTIONS(2349), + [sym_atx_h5_marker] = ACTIONS(2349), + [sym_atx_h6_marker] = ACTIONS(2349), + [sym__thematic_break] = ACTIONS(2349), + [sym__list_marker_minus] = ACTIONS(2349), + [sym__list_marker_plus] = ACTIONS(2349), + [sym__list_marker_star] = ACTIONS(2349), + [sym__list_marker_parenthesis] = ACTIONS(2349), + [sym__list_marker_dot] = ACTIONS(2349), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_example] = ACTIONS(2349), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2349), + [sym__fenced_code_block_start_backtick] = ACTIONS(2349), + [sym__minus_metadata_start] = ACTIONS(2349), + [sym__pipe_table_start] = ACTIONS(2349), + [sym__fenced_div_start] = ACTIONS(2349), + [sym_ref_id_specifier] = ACTIONS(2349), + [sym__code_span_start] = ACTIONS(2349), + [sym__html_comment] = ACTIONS(2349), + [sym__autolink] = ACTIONS(2349), + [sym__highlight_span_start] = ACTIONS(2349), + [sym__insert_span_start] = ACTIONS(2349), + [sym__delete_span_start] = ACTIONS(2349), + [sym__edit_comment_span_start] = ACTIONS(2349), + [sym__single_quote_span_open] = ACTIONS(2349), + [sym__double_quote_span_open] = ACTIONS(2349), + [sym__shortcode_open_escaped] = ACTIONS(2349), + [sym__shortcode_open] = ACTIONS(2349), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2349), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2349), + [sym__cite_author_in_text] = ACTIONS(2349), + [sym__cite_suppress_author] = ACTIONS(2349), + [sym__strikeout_open] = ACTIONS(2349), + [sym__subscript_open] = ACTIONS(2349), + [sym__superscript_open] = ACTIONS(2349), + [sym__inline_note_start_token] = ACTIONS(2349), + [sym__strong_emphasis_open_star] = ACTIONS(2349), + [sym__strong_emphasis_open_underscore] = ACTIONS(2349), + [sym__emphasis_open_star] = ACTIONS(2349), + [sym__emphasis_open_underscore] = ACTIONS(2349), + [sym_inline_note_reference] = ACTIONS(2349), + [sym_html_element] = ACTIONS(2349), + [sym__pandoc_lt_str] = ACTIONS(2349), + [sym__pandoc_line_break] = ACTIONS(2349), + [sym_grid_table] = ACTIONS(2349), + [sym__caption_start] = ACTIONS(2349), }, [STATE(385)] = { - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_entity_reference] = ACTIONS(2505), - [sym_numeric_character_reference] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_BANG_LBRACK] = ACTIONS(2505), - [anon_sym_DOLLAR] = ACTIONS(2507), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [aux_sym_pandoc_str_token1] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2505), - [sym__whitespace] = ACTIONS(2505), - [sym__line_ending] = ACTIONS(2505), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__block_quote_start] = ACTIONS(2505), - [sym_atx_h1_marker] = ACTIONS(2505), - [sym_atx_h2_marker] = ACTIONS(2505), - [sym_atx_h3_marker] = ACTIONS(2505), - [sym_atx_h4_marker] = ACTIONS(2505), - [sym_atx_h5_marker] = ACTIONS(2505), - [sym_atx_h6_marker] = ACTIONS(2505), - [sym__thematic_break] = ACTIONS(2505), - [sym__list_marker_minus] = ACTIONS(2505), - [sym__list_marker_plus] = ACTIONS(2505), - [sym__list_marker_star] = ACTIONS(2505), - [sym__list_marker_parenthesis] = ACTIONS(2505), - [sym__list_marker_dot] = ACTIONS(2505), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_example] = ACTIONS(2505), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2505), - [sym__fenced_code_block_start_backtick] = ACTIONS(2505), - [sym_minus_metadata] = ACTIONS(2505), - [sym__pipe_table_start] = ACTIONS(2505), - [sym__fenced_div_start] = ACTIONS(2505), - [sym_ref_id_specifier] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2505), - [sym__html_comment] = ACTIONS(2505), - [sym__autolink] = ACTIONS(2505), - [sym__highlight_span_start] = ACTIONS(2505), - [sym__insert_span_start] = ACTIONS(2505), - [sym__delete_span_start] = ACTIONS(2505), - [sym__edit_comment_span_start] = ACTIONS(2505), - [sym__single_quote_span_open] = ACTIONS(2505), - [sym__double_quote_span_open] = ACTIONS(2505), - [sym__shortcode_open_escaped] = ACTIONS(2505), - [sym__shortcode_open] = ACTIONS(2505), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2505), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2505), - [sym__cite_author_in_text] = ACTIONS(2505), - [sym__cite_suppress_author] = ACTIONS(2505), - [sym__strikeout_open] = ACTIONS(2505), - [sym__subscript_open] = ACTIONS(2505), - [sym__superscript_open] = ACTIONS(2505), - [sym__inline_note_start_token] = ACTIONS(2505), - [sym__strong_emphasis_open_star] = ACTIONS(2505), - [sym__strong_emphasis_open_underscore] = ACTIONS(2505), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2505), - [sym_inline_note_reference] = ACTIONS(2505), - [sym_html_element] = ACTIONS(2505), - [sym__pandoc_lt_str] = ACTIONS(2505), - [sym__pandoc_line_break] = ACTIONS(2505), - [sym_grid_table] = ACTIONS(2505), - [sym__caption_start] = ACTIONS(2505), + [sym_entity_reference] = ACTIONS(2549), + [sym_numeric_character_reference] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_BANG_LBRACK] = ACTIONS(2549), + [anon_sym_DOLLAR] = ACTIONS(2551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2549), + [aux_sym_pandoc_str_token1] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2549), + [sym__whitespace] = ACTIONS(2549), + [sym__line_ending] = ACTIONS(2549), + [sym__soft_line_ending] = ACTIONS(2549), + [sym__block_close] = ACTIONS(2549), + [sym__block_quote_start] = ACTIONS(2549), + [sym_atx_h1_marker] = ACTIONS(2549), + [sym_atx_h2_marker] = ACTIONS(2549), + [sym_atx_h3_marker] = ACTIONS(2549), + [sym_atx_h4_marker] = ACTIONS(2549), + [sym_atx_h5_marker] = ACTIONS(2549), + [sym_atx_h6_marker] = ACTIONS(2549), + [sym__thematic_break] = ACTIONS(2549), + [sym__list_marker_minus] = ACTIONS(2549), + [sym__list_marker_plus] = ACTIONS(2549), + [sym__list_marker_star] = ACTIONS(2549), + [sym__list_marker_parenthesis] = ACTIONS(2549), + [sym__list_marker_dot] = ACTIONS(2549), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_example] = ACTIONS(2549), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2549), + [sym__fenced_code_block_start_backtick] = ACTIONS(2549), + [sym__minus_metadata_start] = ACTIONS(2549), + [sym__pipe_table_start] = ACTIONS(2549), + [sym__fenced_div_start] = ACTIONS(2549), + [sym_ref_id_specifier] = ACTIONS(2549), + [sym__code_span_start] = ACTIONS(2549), + [sym__html_comment] = ACTIONS(2549), + [sym__autolink] = ACTIONS(2549), + [sym__highlight_span_start] = ACTIONS(2549), + [sym__insert_span_start] = ACTIONS(2549), + [sym__delete_span_start] = ACTIONS(2549), + [sym__edit_comment_span_start] = ACTIONS(2549), + [sym__single_quote_span_open] = ACTIONS(2549), + [sym__double_quote_span_open] = ACTIONS(2549), + [sym__shortcode_open_escaped] = ACTIONS(2549), + [sym__shortcode_open] = ACTIONS(2549), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2549), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), + [sym__cite_author_in_text] = ACTIONS(2549), + [sym__cite_suppress_author] = ACTIONS(2549), + [sym__strikeout_open] = ACTIONS(2549), + [sym__subscript_open] = ACTIONS(2549), + [sym__superscript_open] = ACTIONS(2549), + [sym__inline_note_start_token] = ACTIONS(2549), + [sym__strong_emphasis_open_star] = ACTIONS(2549), + [sym__strong_emphasis_open_underscore] = ACTIONS(2549), + [sym__emphasis_open_star] = ACTIONS(2549), + [sym__emphasis_open_underscore] = ACTIONS(2549), + [sym_inline_note_reference] = ACTIONS(2549), + [sym_html_element] = ACTIONS(2549), + [sym__pandoc_lt_str] = ACTIONS(2549), + [sym__pandoc_line_break] = ACTIONS(2549), + [sym_grid_table] = ACTIONS(2549), + [sym__caption_start] = ACTIONS(2549), }, [STATE(386)] = { - [ts_builtin_sym_end] = ACTIONS(2509), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2509), - [anon_sym_BANG_LBRACK] = ACTIONS(2509), - [anon_sym_DOLLAR] = ACTIONS(2511), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [aux_sym_pandoc_str_token1] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2509), - [sym__whitespace] = ACTIONS(2509), - [sym__line_ending] = ACTIONS(2509), - [sym__soft_line_ending] = ACTIONS(2509), - [sym__block_quote_start] = ACTIONS(2509), - [sym_atx_h1_marker] = ACTIONS(2509), - [sym_atx_h2_marker] = ACTIONS(2509), - [sym_atx_h3_marker] = ACTIONS(2509), - [sym_atx_h4_marker] = ACTIONS(2509), - [sym_atx_h5_marker] = ACTIONS(2509), - [sym_atx_h6_marker] = ACTIONS(2509), - [sym__thematic_break] = ACTIONS(2509), - [sym__list_marker_minus] = ACTIONS(2509), - [sym__list_marker_plus] = ACTIONS(2509), - [sym__list_marker_star] = ACTIONS(2509), - [sym__list_marker_parenthesis] = ACTIONS(2509), - [sym__list_marker_dot] = ACTIONS(2509), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_example] = ACTIONS(2509), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2509), - [sym__fenced_code_block_start_backtick] = ACTIONS(2509), - [sym_minus_metadata] = ACTIONS(2509), - [sym__pipe_table_start] = ACTIONS(2509), - [sym__fenced_div_start] = ACTIONS(2509), - [sym_ref_id_specifier] = ACTIONS(2509), - [sym__code_span_start] = ACTIONS(2509), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2509), - [sym__delete_span_start] = ACTIONS(2509), - [sym__edit_comment_span_start] = ACTIONS(2509), - [sym__single_quote_span_open] = ACTIONS(2509), - [sym__double_quote_span_open] = ACTIONS(2509), - [sym__shortcode_open_escaped] = ACTIONS(2509), - [sym__shortcode_open] = ACTIONS(2509), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2509), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2509), - [sym__cite_author_in_text] = ACTIONS(2509), - [sym__cite_suppress_author] = ACTIONS(2509), - [sym__strikeout_open] = ACTIONS(2509), - [sym__subscript_open] = ACTIONS(2509), - [sym__superscript_open] = ACTIONS(2509), - [sym__inline_note_start_token] = ACTIONS(2509), - [sym__strong_emphasis_open_star] = ACTIONS(2509), - [sym__strong_emphasis_open_underscore] = ACTIONS(2509), - [sym__emphasis_open_star] = ACTIONS(2509), - [sym__emphasis_open_underscore] = ACTIONS(2509), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pandoc_lt_str] = ACTIONS(2509), - [sym__pandoc_line_break] = ACTIONS(2509), - [sym_grid_table] = ACTIONS(2509), - [sym__caption_start] = ACTIONS(2509), + [ts_builtin_sym_end] = ACTIONS(2367), + [sym_entity_reference] = ACTIONS(2367), + [sym_numeric_character_reference] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2367), + [anon_sym_BANG_LBRACK] = ACTIONS(2367), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [aux_sym_pandoc_str_token1] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2367), + [sym__whitespace] = ACTIONS(2367), + [sym__line_ending] = ACTIONS(2367), + [sym__soft_line_ending] = ACTIONS(2367), + [sym__block_quote_start] = ACTIONS(2367), + [sym_atx_h1_marker] = ACTIONS(2367), + [sym_atx_h2_marker] = ACTIONS(2367), + [sym_atx_h3_marker] = ACTIONS(2367), + [sym_atx_h4_marker] = ACTIONS(2367), + [sym_atx_h5_marker] = ACTIONS(2367), + [sym_atx_h6_marker] = ACTIONS(2367), + [sym__thematic_break] = ACTIONS(2367), + [sym__list_marker_minus] = ACTIONS(2367), + [sym__list_marker_plus] = ACTIONS(2367), + [sym__list_marker_star] = ACTIONS(2367), + [sym__list_marker_parenthesis] = ACTIONS(2367), + [sym__list_marker_dot] = ACTIONS(2367), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_example] = ACTIONS(2367), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2367), + [sym__fenced_code_block_start_backtick] = ACTIONS(2367), + [sym__minus_metadata_start] = ACTIONS(2367), + [sym__pipe_table_start] = ACTIONS(2367), + [sym__fenced_div_start] = ACTIONS(2367), + [sym_ref_id_specifier] = ACTIONS(2367), + [sym__code_span_start] = ACTIONS(2367), + [sym__html_comment] = ACTIONS(2367), + [sym__autolink] = ACTIONS(2367), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2367), + [sym__delete_span_start] = ACTIONS(2367), + [sym__edit_comment_span_start] = ACTIONS(2367), + [sym__single_quote_span_open] = ACTIONS(2367), + [sym__double_quote_span_open] = ACTIONS(2367), + [sym__shortcode_open_escaped] = ACTIONS(2367), + [sym__shortcode_open] = ACTIONS(2367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2367), + [sym__cite_author_in_text] = ACTIONS(2367), + [sym__cite_suppress_author] = ACTIONS(2367), + [sym__strikeout_open] = ACTIONS(2367), + [sym__subscript_open] = ACTIONS(2367), + [sym__superscript_open] = ACTIONS(2367), + [sym__inline_note_start_token] = ACTIONS(2367), + [sym__strong_emphasis_open_star] = ACTIONS(2367), + [sym__strong_emphasis_open_underscore] = ACTIONS(2367), + [sym__emphasis_open_star] = ACTIONS(2367), + [sym__emphasis_open_underscore] = ACTIONS(2367), + [sym_inline_note_reference] = ACTIONS(2367), + [sym_html_element] = ACTIONS(2367), + [sym__pandoc_lt_str] = ACTIONS(2367), + [sym__pandoc_line_break] = ACTIONS(2367), + [sym_grid_table] = ACTIONS(2367), + [sym__caption_start] = ACTIONS(2367), }, [STATE(387)] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_entity_reference] = ACTIONS(2513), - [sym_numeric_character_reference] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2513), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [aux_sym_pandoc_str_token1] = ACTIONS(2515), - [anon_sym_PIPE] = ACTIONS(2513), - [sym__whitespace] = ACTIONS(2513), - [sym__line_ending] = ACTIONS(2513), - [sym__soft_line_ending] = ACTIONS(2513), - [sym__block_quote_start] = ACTIONS(2513), - [sym_atx_h1_marker] = ACTIONS(2513), - [sym_atx_h2_marker] = ACTIONS(2513), - [sym_atx_h3_marker] = ACTIONS(2513), - [sym_atx_h4_marker] = ACTIONS(2513), - [sym_atx_h5_marker] = ACTIONS(2513), - [sym_atx_h6_marker] = ACTIONS(2513), - [sym__thematic_break] = ACTIONS(2513), - [sym__list_marker_minus] = ACTIONS(2513), - [sym__list_marker_plus] = ACTIONS(2513), - [sym__list_marker_star] = ACTIONS(2513), - [sym__list_marker_parenthesis] = ACTIONS(2513), - [sym__list_marker_dot] = ACTIONS(2513), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_example] = ACTIONS(2513), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2513), - [sym__fenced_code_block_start_backtick] = ACTIONS(2513), - [sym_minus_metadata] = ACTIONS(2513), - [sym__pipe_table_start] = ACTIONS(2513), - [sym__fenced_div_start] = ACTIONS(2513), - [sym_ref_id_specifier] = ACTIONS(2513), - [sym__code_span_start] = ACTIONS(2513), - [sym__html_comment] = ACTIONS(2513), - [sym__autolink] = ACTIONS(2513), - [sym__highlight_span_start] = ACTIONS(2513), - [sym__insert_span_start] = ACTIONS(2513), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2513), - [sym__single_quote_span_open] = ACTIONS(2513), - [sym__double_quote_span_open] = ACTIONS(2513), - [sym__shortcode_open_escaped] = ACTIONS(2513), - [sym__shortcode_open] = ACTIONS(2513), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2513), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2513), - [sym__cite_author_in_text] = ACTIONS(2513), - [sym__cite_suppress_author] = ACTIONS(2513), - [sym__strikeout_open] = ACTIONS(2513), - [sym__subscript_open] = ACTIONS(2513), - [sym__superscript_open] = ACTIONS(2513), - [sym__inline_note_start_token] = ACTIONS(2513), - [sym__strong_emphasis_open_star] = ACTIONS(2513), - [sym__strong_emphasis_open_underscore] = ACTIONS(2513), - [sym__emphasis_open_star] = ACTIONS(2513), - [sym__emphasis_open_underscore] = ACTIONS(2513), - [sym_inline_note_reference] = ACTIONS(2513), - [sym_html_element] = ACTIONS(2513), - [sym__pandoc_lt_str] = ACTIONS(2513), - [sym__pandoc_line_break] = ACTIONS(2513), - [sym_grid_table] = ACTIONS(2513), - [sym__caption_start] = ACTIONS(2513), + [sym_entity_reference] = ACTIONS(2361), + [sym_numeric_character_reference] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_BANG_LBRACK] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2361), + [aux_sym_pandoc_str_token1] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2361), + [sym__whitespace] = ACTIONS(2361), + [sym__line_ending] = ACTIONS(2361), + [sym__soft_line_ending] = ACTIONS(2361), + [sym__block_close] = ACTIONS(2361), + [sym__block_quote_start] = ACTIONS(2361), + [sym_atx_h1_marker] = ACTIONS(2361), + [sym_atx_h2_marker] = ACTIONS(2361), + [sym_atx_h3_marker] = ACTIONS(2361), + [sym_atx_h4_marker] = ACTIONS(2361), + [sym_atx_h5_marker] = ACTIONS(2361), + [sym_atx_h6_marker] = ACTIONS(2361), + [sym__thematic_break] = ACTIONS(2361), + [sym__list_marker_minus] = ACTIONS(2361), + [sym__list_marker_plus] = ACTIONS(2361), + [sym__list_marker_star] = ACTIONS(2361), + [sym__list_marker_parenthesis] = ACTIONS(2361), + [sym__list_marker_dot] = ACTIONS(2361), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_example] = ACTIONS(2361), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2361), + [sym__fenced_code_block_start_backtick] = ACTIONS(2361), + [sym__minus_metadata_start] = ACTIONS(2361), + [sym__pipe_table_start] = ACTIONS(2361), + [sym__fenced_div_start] = ACTIONS(2361), + [sym_ref_id_specifier] = ACTIONS(2361), + [sym__code_span_start] = ACTIONS(2361), + [sym__html_comment] = ACTIONS(2361), + [sym__autolink] = ACTIONS(2361), + [sym__highlight_span_start] = ACTIONS(2361), + [sym__insert_span_start] = ACTIONS(2361), + [sym__delete_span_start] = ACTIONS(2361), + [sym__edit_comment_span_start] = ACTIONS(2361), + [sym__single_quote_span_open] = ACTIONS(2361), + [sym__double_quote_span_open] = ACTIONS(2361), + [sym__shortcode_open_escaped] = ACTIONS(2361), + [sym__shortcode_open] = ACTIONS(2361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2361), + [sym__cite_author_in_text] = ACTIONS(2361), + [sym__cite_suppress_author] = ACTIONS(2361), + [sym__strikeout_open] = ACTIONS(2361), + [sym__subscript_open] = ACTIONS(2361), + [sym__superscript_open] = ACTIONS(2361), + [sym__inline_note_start_token] = ACTIONS(2361), + [sym__strong_emphasis_open_star] = ACTIONS(2361), + [sym__strong_emphasis_open_underscore] = ACTIONS(2361), + [sym__emphasis_open_star] = ACTIONS(2361), + [sym__emphasis_open_underscore] = ACTIONS(2361), + [sym_inline_note_reference] = ACTIONS(2361), + [sym_html_element] = ACTIONS(2361), + [sym__pandoc_lt_str] = ACTIONS(2361), + [sym__pandoc_line_break] = ACTIONS(2361), + [sym_grid_table] = ACTIONS(2361), + [sym__caption_start] = ACTIONS(2361), }, [STATE(388)] = { - [ts_builtin_sym_end] = ACTIONS(2517), - [sym_entity_reference] = ACTIONS(2517), - [sym_numeric_character_reference] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_BANG_LBRACK] = ACTIONS(2517), - [anon_sym_DOLLAR] = ACTIONS(2519), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2517), - [aux_sym_pandoc_str_token1] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2517), - [sym__whitespace] = ACTIONS(2517), - [sym__line_ending] = ACTIONS(2517), - [sym__soft_line_ending] = ACTIONS(2517), - [sym__block_quote_start] = ACTIONS(2517), - [sym_atx_h1_marker] = ACTIONS(2517), - [sym_atx_h2_marker] = ACTIONS(2517), - [sym_atx_h3_marker] = ACTIONS(2517), - [sym_atx_h4_marker] = ACTIONS(2517), - [sym_atx_h5_marker] = ACTIONS(2517), - [sym_atx_h6_marker] = ACTIONS(2517), - [sym__thematic_break] = ACTIONS(2517), - [sym__list_marker_minus] = ACTIONS(2517), - [sym__list_marker_plus] = ACTIONS(2517), - [sym__list_marker_star] = ACTIONS(2517), - [sym__list_marker_parenthesis] = ACTIONS(2517), - [sym__list_marker_dot] = ACTIONS(2517), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_example] = ACTIONS(2517), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2517), - [sym__fenced_code_block_start_backtick] = ACTIONS(2517), - [sym_minus_metadata] = ACTIONS(2517), - [sym__pipe_table_start] = ACTIONS(2517), - [sym__fenced_div_start] = ACTIONS(2517), - [sym_ref_id_specifier] = ACTIONS(2517), - [sym__code_span_start] = ACTIONS(2517), - [sym__html_comment] = ACTIONS(2517), - [sym__autolink] = ACTIONS(2517), - [sym__highlight_span_start] = ACTIONS(2517), - [sym__insert_span_start] = ACTIONS(2517), - [sym__delete_span_start] = ACTIONS(2517), - [sym__edit_comment_span_start] = ACTIONS(2517), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2517), - [sym__shortcode_open_escaped] = ACTIONS(2517), - [sym__shortcode_open] = ACTIONS(2517), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2517), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2517), - [sym__cite_author_in_text] = ACTIONS(2517), - [sym__cite_suppress_author] = ACTIONS(2517), - [sym__strikeout_open] = ACTIONS(2517), - [sym__subscript_open] = ACTIONS(2517), - [sym__superscript_open] = ACTIONS(2517), - [sym__inline_note_start_token] = ACTIONS(2517), - [sym__strong_emphasis_open_star] = ACTIONS(2517), - [sym__strong_emphasis_open_underscore] = ACTIONS(2517), - [sym__emphasis_open_star] = ACTIONS(2517), - [sym__emphasis_open_underscore] = ACTIONS(2517), - [sym_inline_note_reference] = ACTIONS(2517), - [sym_html_element] = ACTIONS(2517), - [sym__pandoc_lt_str] = ACTIONS(2517), - [sym__pandoc_line_break] = ACTIONS(2517), - [sym_grid_table] = ACTIONS(2517), - [sym__caption_start] = ACTIONS(2517), + [sym_entity_reference] = ACTIONS(2583), + [sym_numeric_character_reference] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_BANG_LBRACK] = ACTIONS(2583), + [anon_sym_DOLLAR] = ACTIONS(2585), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [aux_sym_pandoc_str_token1] = ACTIONS(2585), + [anon_sym_PIPE] = ACTIONS(2583), + [sym__whitespace] = ACTIONS(2583), + [sym__line_ending] = ACTIONS(2583), + [sym__soft_line_ending] = ACTIONS(2583), + [sym__block_close] = ACTIONS(2583), + [sym__block_quote_start] = ACTIONS(2583), + [sym_atx_h1_marker] = ACTIONS(2583), + [sym_atx_h2_marker] = ACTIONS(2583), + [sym_atx_h3_marker] = ACTIONS(2583), + [sym_atx_h4_marker] = ACTIONS(2583), + [sym_atx_h5_marker] = ACTIONS(2583), + [sym_atx_h6_marker] = ACTIONS(2583), + [sym__thematic_break] = ACTIONS(2583), + [sym__list_marker_minus] = ACTIONS(2583), + [sym__list_marker_plus] = ACTIONS(2583), + [sym__list_marker_star] = ACTIONS(2583), + [sym__list_marker_parenthesis] = ACTIONS(2583), + [sym__list_marker_dot] = ACTIONS(2583), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2583), + [sym__list_marker_example] = ACTIONS(2583), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2583), + [sym__fenced_code_block_start_backtick] = ACTIONS(2583), + [sym__minus_metadata_start] = ACTIONS(2583), + [sym__pipe_table_start] = ACTIONS(2583), + [sym__fenced_div_start] = ACTIONS(2583), + [sym_ref_id_specifier] = ACTIONS(2583), + [sym__code_span_start] = ACTIONS(2583), + [sym__html_comment] = ACTIONS(2583), + [sym__autolink] = ACTIONS(2583), + [sym__highlight_span_start] = ACTIONS(2583), + [sym__insert_span_start] = ACTIONS(2583), + [sym__delete_span_start] = ACTIONS(2583), + [sym__edit_comment_span_start] = ACTIONS(2583), + [sym__single_quote_span_open] = ACTIONS(2583), + [sym__double_quote_span_open] = ACTIONS(2583), + [sym__shortcode_open_escaped] = ACTIONS(2583), + [sym__shortcode_open] = ACTIONS(2583), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2583), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2583), + [sym__cite_author_in_text] = ACTIONS(2583), + [sym__cite_suppress_author] = ACTIONS(2583), + [sym__strikeout_open] = ACTIONS(2583), + [sym__subscript_open] = ACTIONS(2583), + [sym__superscript_open] = ACTIONS(2583), + [sym__inline_note_start_token] = ACTIONS(2583), + [sym__strong_emphasis_open_star] = ACTIONS(2583), + [sym__strong_emphasis_open_underscore] = ACTIONS(2583), + [sym__emphasis_open_star] = ACTIONS(2583), + [sym__emphasis_open_underscore] = ACTIONS(2583), + [sym_inline_note_reference] = ACTIONS(2583), + [sym_html_element] = ACTIONS(2583), + [sym__pandoc_lt_str] = ACTIONS(2583), + [sym__pandoc_line_break] = ACTIONS(2583), + [sym_grid_table] = ACTIONS(2583), + [sym__caption_start] = ACTIONS(2583), }, [STATE(389)] = { - [ts_builtin_sym_end] = ACTIONS(2521), - [sym_entity_reference] = ACTIONS(2521), - [sym_numeric_character_reference] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2521), - [anon_sym_BANG_LBRACK] = ACTIONS(2521), - [anon_sym_DOLLAR] = ACTIONS(2523), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(2521), - [aux_sym_pandoc_str_token1] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2521), - [sym__whitespace] = ACTIONS(2521), - [sym__line_ending] = ACTIONS(2521), - [sym__soft_line_ending] = ACTIONS(2521), - [sym__block_quote_start] = ACTIONS(2521), - [sym_atx_h1_marker] = ACTIONS(2521), - [sym_atx_h2_marker] = ACTIONS(2521), - [sym_atx_h3_marker] = ACTIONS(2521), - [sym_atx_h4_marker] = ACTIONS(2521), - [sym_atx_h5_marker] = ACTIONS(2521), - [sym_atx_h6_marker] = ACTIONS(2521), - [sym__thematic_break] = ACTIONS(2521), - [sym__list_marker_minus] = ACTIONS(2521), - [sym__list_marker_plus] = ACTIONS(2521), - [sym__list_marker_star] = ACTIONS(2521), - [sym__list_marker_parenthesis] = ACTIONS(2521), - [sym__list_marker_dot] = ACTIONS(2521), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_example] = ACTIONS(2521), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2521), - [sym__fenced_code_block_start_backtick] = ACTIONS(2521), - [sym_minus_metadata] = ACTIONS(2521), - [sym__pipe_table_start] = ACTIONS(2521), - [sym__fenced_div_start] = ACTIONS(2521), - [sym_ref_id_specifier] = ACTIONS(2521), - [sym__code_span_start] = ACTIONS(2521), - [sym__html_comment] = ACTIONS(2521), - [sym__autolink] = ACTIONS(2521), - [sym__highlight_span_start] = ACTIONS(2521), - [sym__insert_span_start] = ACTIONS(2521), - [sym__delete_span_start] = ACTIONS(2521), - [sym__edit_comment_span_start] = ACTIONS(2521), - [sym__single_quote_span_open] = ACTIONS(2521), - [sym__double_quote_span_open] = ACTIONS(2521), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2521), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2521), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2521), - [sym__cite_author_in_text] = ACTIONS(2521), - [sym__cite_suppress_author] = ACTIONS(2521), - [sym__strikeout_open] = ACTIONS(2521), - [sym__subscript_open] = ACTIONS(2521), - [sym__superscript_open] = ACTIONS(2521), - [sym__inline_note_start_token] = ACTIONS(2521), - [sym__strong_emphasis_open_star] = ACTIONS(2521), - [sym__strong_emphasis_open_underscore] = ACTIONS(2521), - [sym__emphasis_open_star] = ACTIONS(2521), - [sym__emphasis_open_underscore] = ACTIONS(2521), - [sym_inline_note_reference] = ACTIONS(2521), - [sym_html_element] = ACTIONS(2521), - [sym__pandoc_lt_str] = ACTIONS(2521), - [sym__pandoc_line_break] = ACTIONS(2521), - [sym_grid_table] = ACTIONS(2521), - [sym__caption_start] = ACTIONS(2521), + [sym_entity_reference] = ACTIONS(2397), + [sym_numeric_character_reference] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2397), + [anon_sym_BANG_LBRACK] = ACTIONS(2397), + [anon_sym_DOLLAR] = ACTIONS(2399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [aux_sym_pandoc_str_token1] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2397), + [sym__whitespace] = ACTIONS(2397), + [sym__line_ending] = ACTIONS(2397), + [sym__soft_line_ending] = ACTIONS(2397), + [sym__block_close] = ACTIONS(2397), + [sym__block_quote_start] = ACTIONS(2397), + [sym_atx_h1_marker] = ACTIONS(2397), + [sym_atx_h2_marker] = ACTIONS(2397), + [sym_atx_h3_marker] = ACTIONS(2397), + [sym_atx_h4_marker] = ACTIONS(2397), + [sym_atx_h5_marker] = ACTIONS(2397), + [sym_atx_h6_marker] = ACTIONS(2397), + [sym__thematic_break] = ACTIONS(2397), + [sym__list_marker_minus] = ACTIONS(2397), + [sym__list_marker_plus] = ACTIONS(2397), + [sym__list_marker_star] = ACTIONS(2397), + [sym__list_marker_parenthesis] = ACTIONS(2397), + [sym__list_marker_dot] = ACTIONS(2397), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2397), + [sym__list_marker_example] = ACTIONS(2397), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2397), + [sym__fenced_code_block_start_backtick] = ACTIONS(2397), + [sym__minus_metadata_start] = ACTIONS(2397), + [sym__pipe_table_start] = ACTIONS(2397), + [sym__fenced_div_start] = ACTIONS(2397), + [sym_ref_id_specifier] = ACTIONS(2397), + [sym__code_span_start] = ACTIONS(2397), + [sym__html_comment] = ACTIONS(2397), + [sym__autolink] = ACTIONS(2397), + [sym__highlight_span_start] = ACTIONS(2397), + [sym__insert_span_start] = ACTIONS(2397), + [sym__delete_span_start] = ACTIONS(2397), + [sym__edit_comment_span_start] = ACTIONS(2397), + [sym__single_quote_span_open] = ACTIONS(2397), + [sym__double_quote_span_open] = ACTIONS(2397), + [sym__shortcode_open_escaped] = ACTIONS(2397), + [sym__shortcode_open] = ACTIONS(2397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2397), + [sym__cite_author_in_text] = ACTIONS(2397), + [sym__cite_suppress_author] = ACTIONS(2397), + [sym__strikeout_open] = ACTIONS(2397), + [sym__subscript_open] = ACTIONS(2397), + [sym__superscript_open] = ACTIONS(2397), + [sym__inline_note_start_token] = ACTIONS(2397), + [sym__strong_emphasis_open_star] = ACTIONS(2397), + [sym__strong_emphasis_open_underscore] = ACTIONS(2397), + [sym__emphasis_open_star] = ACTIONS(2397), + [sym__emphasis_open_underscore] = ACTIONS(2397), + [sym_inline_note_reference] = ACTIONS(2397), + [sym_html_element] = ACTIONS(2397), + [sym__pandoc_lt_str] = ACTIONS(2397), + [sym__pandoc_line_break] = ACTIONS(2397), + [sym_grid_table] = ACTIONS(2397), + [sym__caption_start] = ACTIONS(2397), }, [STATE(390)] = { - [ts_builtin_sym_end] = ACTIONS(2525), - [sym_entity_reference] = ACTIONS(2525), - [sym_numeric_character_reference] = ACTIONS(2525), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_BANG_LBRACK] = ACTIONS(2525), - [anon_sym_DOLLAR] = ACTIONS(2527), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2525), - [aux_sym_pandoc_str_token1] = ACTIONS(2527), - [anon_sym_PIPE] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(2525), - [sym__line_ending] = ACTIONS(2525), - [sym__soft_line_ending] = ACTIONS(2525), - [sym__block_quote_start] = ACTIONS(2525), - [sym_atx_h1_marker] = ACTIONS(2525), - [sym_atx_h2_marker] = ACTIONS(2525), - [sym_atx_h3_marker] = ACTIONS(2525), - [sym_atx_h4_marker] = ACTIONS(2525), - [sym_atx_h5_marker] = ACTIONS(2525), - [sym_atx_h6_marker] = ACTIONS(2525), - [sym__thematic_break] = ACTIONS(2525), - [sym__list_marker_minus] = ACTIONS(2525), - [sym__list_marker_plus] = ACTIONS(2525), - [sym__list_marker_star] = ACTIONS(2525), - [sym__list_marker_parenthesis] = ACTIONS(2525), - [sym__list_marker_dot] = ACTIONS(2525), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2525), - [sym__list_marker_example] = ACTIONS(2525), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2525), - [sym__fenced_code_block_start_backtick] = ACTIONS(2525), - [sym_minus_metadata] = ACTIONS(2525), - [sym__pipe_table_start] = ACTIONS(2525), - [sym__fenced_div_start] = ACTIONS(2525), - [sym_ref_id_specifier] = ACTIONS(2525), - [sym__code_span_start] = ACTIONS(2525), - [sym__html_comment] = ACTIONS(2525), - [sym__autolink] = ACTIONS(2525), - [sym__highlight_span_start] = ACTIONS(2525), - [sym__insert_span_start] = ACTIONS(2525), - [sym__delete_span_start] = ACTIONS(2525), - [sym__edit_comment_span_start] = ACTIONS(2525), - [sym__single_quote_span_open] = ACTIONS(2525), - [sym__double_quote_span_open] = ACTIONS(2525), - [sym__shortcode_open_escaped] = ACTIONS(2525), - [sym__shortcode_open] = ACTIONS(2525), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2525), - [sym__cite_author_in_text] = ACTIONS(2525), - [sym__cite_suppress_author] = ACTIONS(2525), - [sym__strikeout_open] = ACTIONS(2525), - [sym__subscript_open] = ACTIONS(2525), - [sym__superscript_open] = ACTIONS(2525), - [sym__inline_note_start_token] = ACTIONS(2525), - [sym__strong_emphasis_open_star] = ACTIONS(2525), - [sym__strong_emphasis_open_underscore] = ACTIONS(2525), - [sym__emphasis_open_star] = ACTIONS(2525), - [sym__emphasis_open_underscore] = ACTIONS(2525), - [sym_inline_note_reference] = ACTIONS(2525), - [sym_html_element] = ACTIONS(2525), - [sym__pandoc_lt_str] = ACTIONS(2525), - [sym__pandoc_line_break] = ACTIONS(2525), - [sym_grid_table] = ACTIONS(2525), - [sym__caption_start] = ACTIONS(2525), + [ts_builtin_sym_end] = ACTIONS(2373), + [sym_entity_reference] = ACTIONS(2373), + [sym_numeric_character_reference] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_BANG_LBRACK] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [aux_sym_pandoc_str_token1] = ACTIONS(2375), + [anon_sym_PIPE] = ACTIONS(2373), + [sym__whitespace] = ACTIONS(2373), + [sym__line_ending] = ACTIONS(2373), + [sym__soft_line_ending] = ACTIONS(2373), + [sym__block_quote_start] = ACTIONS(2373), + [sym_atx_h1_marker] = ACTIONS(2373), + [sym_atx_h2_marker] = ACTIONS(2373), + [sym_atx_h3_marker] = ACTIONS(2373), + [sym_atx_h4_marker] = ACTIONS(2373), + [sym_atx_h5_marker] = ACTIONS(2373), + [sym_atx_h6_marker] = ACTIONS(2373), + [sym__thematic_break] = ACTIONS(2373), + [sym__list_marker_minus] = ACTIONS(2373), + [sym__list_marker_plus] = ACTIONS(2373), + [sym__list_marker_star] = ACTIONS(2373), + [sym__list_marker_parenthesis] = ACTIONS(2373), + [sym__list_marker_dot] = ACTIONS(2373), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_example] = ACTIONS(2373), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2373), + [sym__fenced_code_block_start_backtick] = ACTIONS(2373), + [sym__minus_metadata_start] = ACTIONS(2373), + [sym__pipe_table_start] = ACTIONS(2373), + [sym__fenced_div_start] = ACTIONS(2373), + [sym_ref_id_specifier] = ACTIONS(2373), + [sym__code_span_start] = ACTIONS(2373), + [sym__html_comment] = ACTIONS(2373), + [sym__autolink] = ACTIONS(2373), + [sym__highlight_span_start] = ACTIONS(2373), + [sym__insert_span_start] = ACTIONS(2373), + [sym__delete_span_start] = ACTIONS(2373), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2373), + [sym__double_quote_span_open] = ACTIONS(2373), + [sym__shortcode_open_escaped] = ACTIONS(2373), + [sym__shortcode_open] = ACTIONS(2373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2373), + [sym__cite_author_in_text] = ACTIONS(2373), + [sym__cite_suppress_author] = ACTIONS(2373), + [sym__strikeout_open] = ACTIONS(2373), + [sym__subscript_open] = ACTIONS(2373), + [sym__superscript_open] = ACTIONS(2373), + [sym__inline_note_start_token] = ACTIONS(2373), + [sym__strong_emphasis_open_star] = ACTIONS(2373), + [sym__strong_emphasis_open_underscore] = ACTIONS(2373), + [sym__emphasis_open_star] = ACTIONS(2373), + [sym__emphasis_open_underscore] = ACTIONS(2373), + [sym_inline_note_reference] = ACTIONS(2373), + [sym_html_element] = ACTIONS(2373), + [sym__pandoc_lt_str] = ACTIONS(2373), + [sym__pandoc_line_break] = ACTIONS(2373), + [sym_grid_table] = ACTIONS(2373), + [sym__caption_start] = ACTIONS(2373), }, [STATE(391)] = { - [ts_builtin_sym_end] = ACTIONS(2537), - [sym_entity_reference] = ACTIONS(2537), - [sym_numeric_character_reference] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_BANG_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2539), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [aux_sym_pandoc_str_token1] = ACTIONS(2539), - [anon_sym_PIPE] = ACTIONS(2537), - [sym__whitespace] = ACTIONS(2895), - [sym__line_ending] = ACTIONS(2537), - [sym__soft_line_ending] = ACTIONS(2537), - [sym__block_quote_start] = ACTIONS(2537), - [sym_atx_h1_marker] = ACTIONS(2537), - [sym_atx_h2_marker] = ACTIONS(2537), - [sym_atx_h3_marker] = ACTIONS(2537), - [sym_atx_h4_marker] = ACTIONS(2537), - [sym_atx_h5_marker] = ACTIONS(2537), - [sym_atx_h6_marker] = ACTIONS(2537), - [sym__thematic_break] = ACTIONS(2537), - [sym__list_marker_minus] = ACTIONS(2537), - [sym__list_marker_plus] = ACTIONS(2537), - [sym__list_marker_star] = ACTIONS(2537), - [sym__list_marker_parenthesis] = ACTIONS(2537), - [sym__list_marker_dot] = ACTIONS(2537), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_example] = ACTIONS(2537), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2537), - [sym__fenced_code_block_start_backtick] = ACTIONS(2537), - [sym_minus_metadata] = ACTIONS(2537), - [sym__pipe_table_start] = ACTIONS(2537), - [sym__fenced_div_start] = ACTIONS(2537), - [sym_ref_id_specifier] = ACTIONS(2537), - [sym__code_span_start] = ACTIONS(2537), - [sym__html_comment] = ACTIONS(2537), - [sym__autolink] = ACTIONS(2537), - [sym__highlight_span_start] = ACTIONS(2537), - [sym__insert_span_start] = ACTIONS(2537), - [sym__delete_span_start] = ACTIONS(2537), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2537), - [sym__double_quote_span_open] = ACTIONS(2537), - [sym__shortcode_open_escaped] = ACTIONS(2537), - [sym__shortcode_open] = ACTIONS(2537), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2537), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2537), - [sym__cite_author_in_text] = ACTIONS(2537), - [sym__cite_suppress_author] = ACTIONS(2537), - [sym__strikeout_open] = ACTIONS(2537), - [sym__subscript_open] = ACTIONS(2537), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2537), - [sym__strong_emphasis_open_star] = ACTIONS(2537), - [sym__strong_emphasis_open_underscore] = ACTIONS(2537), - [sym__emphasis_open_star] = ACTIONS(2537), - [sym__emphasis_open_underscore] = ACTIONS(2537), - [sym_inline_note_reference] = ACTIONS(2537), - [sym_html_element] = ACTIONS(2537), - [sym__pandoc_lt_str] = ACTIONS(2537), - [sym__pandoc_line_break] = ACTIONS(2537), - [sym_grid_table] = ACTIONS(2537), - [sym__caption_start] = ACTIONS(2537), + [ts_builtin_sym_end] = ACTIONS(2773), + [sym_entity_reference] = ACTIONS(2773), + [sym_numeric_character_reference] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_BANG_LBRACK] = ACTIONS(2773), + [anon_sym_DOLLAR] = ACTIONS(2775), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2773), + [aux_sym_pandoc_str_token1] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2773), + [sym__whitespace] = ACTIONS(2773), + [sym__line_ending] = ACTIONS(2773), + [sym__soft_line_ending] = ACTIONS(2773), + [sym__block_quote_start] = ACTIONS(2773), + [sym_atx_h1_marker] = ACTIONS(2773), + [sym_atx_h2_marker] = ACTIONS(2773), + [sym_atx_h3_marker] = ACTIONS(2773), + [sym_atx_h4_marker] = ACTIONS(2773), + [sym_atx_h5_marker] = ACTIONS(2773), + [sym_atx_h6_marker] = ACTIONS(2773), + [sym__thematic_break] = ACTIONS(2773), + [sym__list_marker_minus] = ACTIONS(2773), + [sym__list_marker_plus] = ACTIONS(2773), + [sym__list_marker_star] = ACTIONS(2773), + [sym__list_marker_parenthesis] = ACTIONS(2773), + [sym__list_marker_dot] = ACTIONS(2773), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_example] = ACTIONS(2773), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2773), + [sym__fenced_code_block_start_backtick] = ACTIONS(2773), + [sym__minus_metadata_start] = ACTIONS(2773), + [sym__pipe_table_start] = ACTIONS(2773), + [sym__fenced_div_start] = ACTIONS(2773), + [sym_ref_id_specifier] = ACTIONS(2773), + [sym__code_span_start] = ACTIONS(2773), + [sym__html_comment] = ACTIONS(2773), + [sym__autolink] = ACTIONS(2773), + [sym__highlight_span_start] = ACTIONS(2773), + [sym__insert_span_start] = ACTIONS(2773), + [sym__delete_span_start] = ACTIONS(2773), + [sym__edit_comment_span_start] = ACTIONS(2773), + [sym__single_quote_span_open] = ACTIONS(2773), + [sym__double_quote_span_open] = ACTIONS(2773), + [sym__shortcode_open_escaped] = ACTIONS(2773), + [sym__shortcode_open] = ACTIONS(2773), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2773), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2773), + [sym__cite_author_in_text] = ACTIONS(2773), + [sym__cite_suppress_author] = ACTIONS(2773), + [sym__strikeout_open] = ACTIONS(2773), + [sym__subscript_open] = ACTIONS(2773), + [sym__superscript_open] = ACTIONS(2773), + [sym__inline_note_start_token] = ACTIONS(2773), + [sym__strong_emphasis_open_star] = ACTIONS(2773), + [sym__strong_emphasis_open_underscore] = ACTIONS(2773), + [sym__emphasis_open_star] = ACTIONS(2773), + [sym__emphasis_open_underscore] = ACTIONS(2773), + [sym_inline_note_reference] = ACTIONS(2773), + [sym_html_element] = ACTIONS(2773), + [sym__pandoc_lt_str] = ACTIONS(2773), + [sym__pandoc_line_break] = ACTIONS(2773), + [sym_grid_table] = ACTIONS(2773), + [sym__caption_start] = ACTIONS(2773), }, [STATE(392)] = { - [ts_builtin_sym_end] = ACTIONS(2537), - [sym_entity_reference] = ACTIONS(2537), - [sym_numeric_character_reference] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_BANG_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2539), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [aux_sym_pandoc_str_token1] = ACTIONS(2539), - [anon_sym_PIPE] = ACTIONS(2537), - [sym__whitespace] = ACTIONS(2537), - [sym__line_ending] = ACTIONS(2537), - [sym__soft_line_ending] = ACTIONS(2537), - [sym__block_quote_start] = ACTIONS(2537), - [sym_atx_h1_marker] = ACTIONS(2537), - [sym_atx_h2_marker] = ACTIONS(2537), - [sym_atx_h3_marker] = ACTIONS(2537), - [sym_atx_h4_marker] = ACTIONS(2537), - [sym_atx_h5_marker] = ACTIONS(2537), - [sym_atx_h6_marker] = ACTIONS(2537), - [sym__thematic_break] = ACTIONS(2537), - [sym__list_marker_minus] = ACTIONS(2537), - [sym__list_marker_plus] = ACTIONS(2537), - [sym__list_marker_star] = ACTIONS(2537), - [sym__list_marker_parenthesis] = ACTIONS(2537), - [sym__list_marker_dot] = ACTIONS(2537), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_example] = ACTIONS(2537), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2537), - [sym__fenced_code_block_start_backtick] = ACTIONS(2537), - [sym_minus_metadata] = ACTIONS(2537), - [sym__pipe_table_start] = ACTIONS(2537), - [sym__fenced_div_start] = ACTIONS(2537), - [sym_ref_id_specifier] = ACTIONS(2537), - [sym__code_span_start] = ACTIONS(2537), - [sym__html_comment] = ACTIONS(2537), - [sym__autolink] = ACTIONS(2537), - [sym__highlight_span_start] = ACTIONS(2537), - [sym__insert_span_start] = ACTIONS(2537), - [sym__delete_span_start] = ACTIONS(2537), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2537), - [sym__double_quote_span_open] = ACTIONS(2537), - [sym__shortcode_open_escaped] = ACTIONS(2537), - [sym__shortcode_open] = ACTIONS(2537), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2537), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2537), - [sym__cite_author_in_text] = ACTIONS(2537), - [sym__cite_suppress_author] = ACTIONS(2537), - [sym__strikeout_open] = ACTIONS(2537), - [sym__subscript_open] = ACTIONS(2537), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2537), - [sym__strong_emphasis_open_star] = ACTIONS(2537), - [sym__strong_emphasis_open_underscore] = ACTIONS(2537), - [sym__emphasis_open_star] = ACTIONS(2537), - [sym__emphasis_open_underscore] = ACTIONS(2537), - [sym_inline_note_reference] = ACTIONS(2537), - [sym_html_element] = ACTIONS(2537), - [sym__pandoc_lt_str] = ACTIONS(2537), - [sym__pandoc_line_break] = ACTIONS(2537), - [sym_grid_table] = ACTIONS(2537), - [sym__caption_start] = ACTIONS(2537), + [sym_entity_reference] = ACTIONS(2411), + [sym_numeric_character_reference] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_BANG_LBRACK] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [aux_sym_pandoc_str_token1] = ACTIONS(2413), + [anon_sym_PIPE] = ACTIONS(2411), + [sym__whitespace] = ACTIONS(2411), + [sym__line_ending] = ACTIONS(2411), + [sym__soft_line_ending] = ACTIONS(2411), + [sym__block_close] = ACTIONS(2411), + [sym__block_quote_start] = ACTIONS(2411), + [sym_atx_h1_marker] = ACTIONS(2411), + [sym_atx_h2_marker] = ACTIONS(2411), + [sym_atx_h3_marker] = ACTIONS(2411), + [sym_atx_h4_marker] = ACTIONS(2411), + [sym_atx_h5_marker] = ACTIONS(2411), + [sym_atx_h6_marker] = ACTIONS(2411), + [sym__thematic_break] = ACTIONS(2411), + [sym__list_marker_minus] = ACTIONS(2411), + [sym__list_marker_plus] = ACTIONS(2411), + [sym__list_marker_star] = ACTIONS(2411), + [sym__list_marker_parenthesis] = ACTIONS(2411), + [sym__list_marker_dot] = ACTIONS(2411), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2411), + [sym__list_marker_example] = ACTIONS(2411), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2411), + [sym__fenced_code_block_start_backtick] = ACTIONS(2411), + [sym__minus_metadata_start] = ACTIONS(2411), + [sym__pipe_table_start] = ACTIONS(2411), + [sym__fenced_div_start] = ACTIONS(2411), + [sym_ref_id_specifier] = ACTIONS(2411), + [sym__code_span_start] = ACTIONS(2411), + [sym__html_comment] = ACTIONS(2411), + [sym__autolink] = ACTIONS(2411), + [sym__highlight_span_start] = ACTIONS(2411), + [sym__insert_span_start] = ACTIONS(2411), + [sym__delete_span_start] = ACTIONS(2411), + [sym__edit_comment_span_start] = ACTIONS(2411), + [sym__single_quote_span_open] = ACTIONS(2411), + [sym__double_quote_span_open] = ACTIONS(2411), + [sym__shortcode_open_escaped] = ACTIONS(2411), + [sym__shortcode_open] = ACTIONS(2411), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2411), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2411), + [sym__cite_author_in_text] = ACTIONS(2411), + [sym__cite_suppress_author] = ACTIONS(2411), + [sym__strikeout_open] = ACTIONS(2411), + [sym__subscript_open] = ACTIONS(2411), + [sym__superscript_open] = ACTIONS(2411), + [sym__inline_note_start_token] = ACTIONS(2411), + [sym__strong_emphasis_open_star] = ACTIONS(2411), + [sym__strong_emphasis_open_underscore] = ACTIONS(2411), + [sym__emphasis_open_star] = ACTIONS(2411), + [sym__emphasis_open_underscore] = ACTIONS(2411), + [sym_inline_note_reference] = ACTIONS(2411), + [sym_html_element] = ACTIONS(2411), + [sym__pandoc_lt_str] = ACTIONS(2411), + [sym__pandoc_line_break] = ACTIONS(2411), + [sym_grid_table] = ACTIONS(2411), + [sym__caption_start] = ACTIONS(2411), }, [STATE(393)] = { - [sym_entity_reference] = ACTIONS(2667), - [sym_numeric_character_reference] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_BANG_LBRACK] = ACTIONS(2667), - [anon_sym_DOLLAR] = ACTIONS(2669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2667), - [aux_sym_pandoc_str_token1] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2667), - [sym__whitespace] = ACTIONS(2667), - [sym__line_ending] = ACTIONS(2667), - [sym__soft_line_ending] = ACTIONS(2667), - [sym__block_close] = ACTIONS(2667), - [sym__block_quote_start] = ACTIONS(2667), - [sym_atx_h1_marker] = ACTIONS(2667), - [sym_atx_h2_marker] = ACTIONS(2667), - [sym_atx_h3_marker] = ACTIONS(2667), - [sym_atx_h4_marker] = ACTIONS(2667), - [sym_atx_h5_marker] = ACTIONS(2667), - [sym_atx_h6_marker] = ACTIONS(2667), - [sym__thematic_break] = ACTIONS(2667), - [sym__list_marker_minus] = ACTIONS(2667), - [sym__list_marker_plus] = ACTIONS(2667), - [sym__list_marker_star] = ACTIONS(2667), - [sym__list_marker_parenthesis] = ACTIONS(2667), - [sym__list_marker_dot] = ACTIONS(2667), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2667), - [sym__list_marker_example] = ACTIONS(2667), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2667), - [sym__fenced_code_block_start_backtick] = ACTIONS(2667), - [sym_minus_metadata] = ACTIONS(2667), - [sym__pipe_table_start] = ACTIONS(2667), - [sym__fenced_div_start] = ACTIONS(2667), - [sym_ref_id_specifier] = ACTIONS(2667), - [sym__code_span_start] = ACTIONS(2667), - [sym__html_comment] = ACTIONS(2667), - [sym__autolink] = ACTIONS(2667), - [sym__highlight_span_start] = ACTIONS(2667), - [sym__insert_span_start] = ACTIONS(2667), - [sym__delete_span_start] = ACTIONS(2667), - [sym__edit_comment_span_start] = ACTIONS(2667), - [sym__single_quote_span_open] = ACTIONS(2667), - [sym__double_quote_span_open] = ACTIONS(2667), - [sym__shortcode_open_escaped] = ACTIONS(2667), - [sym__shortcode_open] = ACTIONS(2667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2667), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2667), - [sym__cite_author_in_text] = ACTIONS(2667), - [sym__cite_suppress_author] = ACTIONS(2667), - [sym__strikeout_open] = ACTIONS(2667), - [sym__subscript_open] = ACTIONS(2667), - [sym__superscript_open] = ACTIONS(2667), - [sym__inline_note_start_token] = ACTIONS(2667), - [sym__strong_emphasis_open_star] = ACTIONS(2667), - [sym__strong_emphasis_open_underscore] = ACTIONS(2667), - [sym__emphasis_open_star] = ACTIONS(2667), - [sym__emphasis_open_underscore] = ACTIONS(2667), - [sym_inline_note_reference] = ACTIONS(2667), - [sym_html_element] = ACTIONS(2667), - [sym__pandoc_lt_str] = ACTIONS(2667), - [sym__pandoc_line_break] = ACTIONS(2667), - [sym_grid_table] = ACTIONS(2667), - [sym__caption_start] = ACTIONS(2667), + [sym_entity_reference] = ACTIONS(2587), + [sym_numeric_character_reference] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_BANG_LBRACK] = ACTIONS(2587), + [anon_sym_DOLLAR] = ACTIONS(2589), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [aux_sym_pandoc_str_token1] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2587), + [sym__whitespace] = ACTIONS(2587), + [sym__line_ending] = ACTIONS(2587), + [sym__soft_line_ending] = ACTIONS(2587), + [sym__block_close] = ACTIONS(2587), + [sym__block_quote_start] = ACTIONS(2587), + [sym_atx_h1_marker] = ACTIONS(2587), + [sym_atx_h2_marker] = ACTIONS(2587), + [sym_atx_h3_marker] = ACTIONS(2587), + [sym_atx_h4_marker] = ACTIONS(2587), + [sym_atx_h5_marker] = ACTIONS(2587), + [sym_atx_h6_marker] = ACTIONS(2587), + [sym__thematic_break] = ACTIONS(2587), + [sym__list_marker_minus] = ACTIONS(2587), + [sym__list_marker_plus] = ACTIONS(2587), + [sym__list_marker_star] = ACTIONS(2587), + [sym__list_marker_parenthesis] = ACTIONS(2587), + [sym__list_marker_dot] = ACTIONS(2587), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_example] = ACTIONS(2587), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2587), + [sym__fenced_code_block_start_backtick] = ACTIONS(2587), + [sym__minus_metadata_start] = ACTIONS(2587), + [sym__pipe_table_start] = ACTIONS(2587), + [sym__fenced_div_start] = ACTIONS(2587), + [sym_ref_id_specifier] = ACTIONS(2587), + [sym__code_span_start] = ACTIONS(2587), + [sym__html_comment] = ACTIONS(2587), + [sym__autolink] = ACTIONS(2587), + [sym__highlight_span_start] = ACTIONS(2587), + [sym__insert_span_start] = ACTIONS(2587), + [sym__delete_span_start] = ACTIONS(2587), + [sym__edit_comment_span_start] = ACTIONS(2587), + [sym__single_quote_span_open] = ACTIONS(2587), + [sym__double_quote_span_open] = ACTIONS(2587), + [sym__shortcode_open_escaped] = ACTIONS(2587), + [sym__shortcode_open] = ACTIONS(2587), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2587), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2587), + [sym__cite_author_in_text] = ACTIONS(2587), + [sym__cite_suppress_author] = ACTIONS(2587), + [sym__strikeout_open] = ACTIONS(2587), + [sym__subscript_open] = ACTIONS(2587), + [sym__superscript_open] = ACTIONS(2587), + [sym__inline_note_start_token] = ACTIONS(2587), + [sym__strong_emphasis_open_star] = ACTIONS(2587), + [sym__strong_emphasis_open_underscore] = ACTIONS(2587), + [sym__emphasis_open_star] = ACTIONS(2587), + [sym__emphasis_open_underscore] = ACTIONS(2587), + [sym_inline_note_reference] = ACTIONS(2587), + [sym_html_element] = ACTIONS(2587), + [sym__pandoc_lt_str] = ACTIONS(2587), + [sym__pandoc_line_break] = ACTIONS(2587), + [sym_grid_table] = ACTIONS(2587), + [sym__caption_start] = ACTIONS(2587), }, [STATE(394)] = { + [ts_builtin_sym_end] = ACTIONS(2277), + [sym_entity_reference] = ACTIONS(2277), + [sym_numeric_character_reference] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_BANG_LBRACK] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2277), + [aux_sym_pandoc_str_token1] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2277), + [sym__whitespace] = ACTIONS(2277), + [sym__line_ending] = ACTIONS(2277), + [sym__soft_line_ending] = ACTIONS(2277), + [sym__block_quote_start] = ACTIONS(2277), + [sym_atx_h1_marker] = ACTIONS(2277), + [sym_atx_h2_marker] = ACTIONS(2277), + [sym_atx_h3_marker] = ACTIONS(2277), + [sym_atx_h4_marker] = ACTIONS(2277), + [sym_atx_h5_marker] = ACTIONS(2277), + [sym_atx_h6_marker] = ACTIONS(2277), + [sym__thematic_break] = ACTIONS(2277), + [sym__list_marker_minus] = ACTIONS(2277), + [sym__list_marker_plus] = ACTIONS(2277), + [sym__list_marker_star] = ACTIONS(2277), + [sym__list_marker_parenthesis] = ACTIONS(2277), + [sym__list_marker_dot] = ACTIONS(2277), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_example] = ACTIONS(2277), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2277), + [sym__fenced_code_block_start_backtick] = ACTIONS(2277), + [sym__minus_metadata_start] = ACTIONS(2277), + [sym__pipe_table_start] = ACTIONS(2277), + [sym__fenced_div_start] = ACTIONS(2277), + [sym_ref_id_specifier] = ACTIONS(2277), + [sym__code_span_start] = ACTIONS(2277), + [sym__html_comment] = ACTIONS(2277), + [sym__autolink] = ACTIONS(2277), + [sym__highlight_span_start] = ACTIONS(2277), + [sym__insert_span_start] = ACTIONS(2277), + [sym__delete_span_start] = ACTIONS(2277), + [sym__edit_comment_span_start] = ACTIONS(2277), + [sym__single_quote_span_open] = ACTIONS(2277), + [sym__double_quote_span_open] = ACTIONS(2277), + [sym__shortcode_open_escaped] = ACTIONS(2277), + [sym__shortcode_open] = ACTIONS(2277), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2277), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2277), + [sym__cite_author_in_text] = ACTIONS(2277), + [sym__cite_suppress_author] = ACTIONS(2277), + [sym__strikeout_open] = ACTIONS(2277), + [sym__subscript_open] = ACTIONS(2277), + [sym__superscript_open] = ACTIONS(2277), + [sym__inline_note_start_token] = ACTIONS(2277), + [sym__strong_emphasis_open_star] = ACTIONS(2277), + [sym__strong_emphasis_open_underscore] = ACTIONS(2277), + [sym__emphasis_open_star] = ACTIONS(2277), + [sym__emphasis_open_underscore] = ACTIONS(2277), + [sym_inline_note_reference] = ACTIONS(2277), + [sym_html_element] = ACTIONS(2277), + [sym__pandoc_lt_str] = ACTIONS(2277), + [sym__pandoc_line_break] = ACTIONS(2277), + [sym_grid_table] = ACTIONS(2277), + [sym__caption_start] = ACTIONS(2277), + }, + [STATE(395)] = { + [sym_entity_reference] = ACTIONS(2313), + [sym_numeric_character_reference] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_BANG_LBRACK] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2313), + [aux_sym_pandoc_str_token1] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2313), + [sym__whitespace] = ACTIONS(2313), + [sym__line_ending] = ACTIONS(2313), + [sym__soft_line_ending] = ACTIONS(2313), + [sym__block_close] = ACTIONS(2313), + [sym__block_quote_start] = ACTIONS(2313), + [sym_atx_h1_marker] = ACTIONS(2313), + [sym_atx_h2_marker] = ACTIONS(2313), + [sym_atx_h3_marker] = ACTIONS(2313), + [sym_atx_h4_marker] = ACTIONS(2313), + [sym_atx_h5_marker] = ACTIONS(2313), + [sym_atx_h6_marker] = ACTIONS(2313), + [sym__thematic_break] = ACTIONS(2313), + [sym__list_marker_minus] = ACTIONS(2313), + [sym__list_marker_plus] = ACTIONS(2313), + [sym__list_marker_star] = ACTIONS(2313), + [sym__list_marker_parenthesis] = ACTIONS(2313), + [sym__list_marker_dot] = ACTIONS(2313), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2313), + [sym__list_marker_example] = ACTIONS(2313), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2313), + [sym__fenced_code_block_start_backtick] = ACTIONS(2313), + [sym__minus_metadata_start] = ACTIONS(2313), + [sym__pipe_table_start] = ACTIONS(2313), + [sym__fenced_div_start] = ACTIONS(2313), + [sym_ref_id_specifier] = ACTIONS(2313), + [sym__code_span_start] = ACTIONS(2313), + [sym__html_comment] = ACTIONS(2313), + [sym__autolink] = ACTIONS(2313), + [sym__highlight_span_start] = ACTIONS(2313), + [sym__insert_span_start] = ACTIONS(2313), + [sym__delete_span_start] = ACTIONS(2313), + [sym__edit_comment_span_start] = ACTIONS(2313), + [sym__single_quote_span_open] = ACTIONS(2313), + [sym__double_quote_span_open] = ACTIONS(2313), + [sym__shortcode_open_escaped] = ACTIONS(2313), + [sym__shortcode_open] = ACTIONS(2313), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2313), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2313), + [sym__cite_author_in_text] = ACTIONS(2313), + [sym__cite_suppress_author] = ACTIONS(2313), + [sym__strikeout_open] = ACTIONS(2313), + [sym__subscript_open] = ACTIONS(2313), + [sym__superscript_open] = ACTIONS(2313), + [sym__inline_note_start_token] = ACTIONS(2313), + [sym__strong_emphasis_open_star] = ACTIONS(2313), + [sym__strong_emphasis_open_underscore] = ACTIONS(2313), + [sym__emphasis_open_star] = ACTIONS(2313), + [sym__emphasis_open_underscore] = ACTIONS(2313), + [sym_inline_note_reference] = ACTIONS(2313), + [sym_html_element] = ACTIONS(2313), + [sym__pandoc_lt_str] = ACTIONS(2313), + [sym__pandoc_line_break] = ACTIONS(2313), + [sym_grid_table] = ACTIONS(2313), + [sym__caption_start] = ACTIONS(2313), + }, + [STATE(396)] = { + [ts_builtin_sym_end] = ACTIONS(2783), + [sym_entity_reference] = ACTIONS(2783), + [sym_numeric_character_reference] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_BANG_LBRACK] = ACTIONS(2783), + [anon_sym_DOLLAR] = ACTIONS(2785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2783), + [aux_sym_pandoc_str_token1] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2783), + [sym__whitespace] = ACTIONS(3069), + [sym__line_ending] = ACTIONS(2783), + [sym__soft_line_ending] = ACTIONS(2783), + [sym__block_quote_start] = ACTIONS(2783), + [sym_atx_h1_marker] = ACTIONS(2783), + [sym_atx_h2_marker] = ACTIONS(2783), + [sym_atx_h3_marker] = ACTIONS(2783), + [sym_atx_h4_marker] = ACTIONS(2783), + [sym_atx_h5_marker] = ACTIONS(2783), + [sym_atx_h6_marker] = ACTIONS(2783), + [sym__thematic_break] = ACTIONS(2783), + [sym__list_marker_minus] = ACTIONS(2783), + [sym__list_marker_plus] = ACTIONS(2783), + [sym__list_marker_star] = ACTIONS(2783), + [sym__list_marker_parenthesis] = ACTIONS(2783), + [sym__list_marker_dot] = ACTIONS(2783), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_example] = ACTIONS(2783), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2783), + [sym__fenced_code_block_start_backtick] = ACTIONS(2783), + [sym__minus_metadata_start] = ACTIONS(2783), + [sym__pipe_table_start] = ACTIONS(2783), + [sym__fenced_div_start] = ACTIONS(2783), + [sym_ref_id_specifier] = ACTIONS(2783), + [sym__code_span_start] = ACTIONS(2783), + [sym__html_comment] = ACTIONS(2783), + [sym__autolink] = ACTIONS(2783), + [sym__highlight_span_start] = ACTIONS(2783), + [sym__insert_span_start] = ACTIONS(2783), + [sym__delete_span_start] = ACTIONS(2783), + [sym__edit_comment_span_start] = ACTIONS(2783), + [sym__single_quote_span_open] = ACTIONS(2783), + [sym__double_quote_span_open] = ACTIONS(2783), + [sym__shortcode_open_escaped] = ACTIONS(2783), + [sym__shortcode_open] = ACTIONS(2783), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2783), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2783), + [sym__cite_author_in_text] = ACTIONS(2783), + [sym__cite_suppress_author] = ACTIONS(2783), + [sym__strikeout_open] = ACTIONS(2783), + [sym__subscript_open] = ACTIONS(2783), + [sym__superscript_open] = ACTIONS(2783), + [sym__inline_note_start_token] = ACTIONS(2783), + [sym__strong_emphasis_open_star] = ACTIONS(2783), + [sym__strong_emphasis_open_underscore] = ACTIONS(2783), + [sym__emphasis_open_star] = ACTIONS(2783), + [sym__emphasis_open_underscore] = ACTIONS(2783), + [sym_inline_note_reference] = ACTIONS(2783), + [sym_html_element] = ACTIONS(2783), + [sym__pandoc_lt_str] = ACTIONS(2783), + [sym__pandoc_line_break] = ACTIONS(2783), + [sym_grid_table] = ACTIONS(2783), + [sym__caption_start] = ACTIONS(2783), + }, + [STATE(397)] = { + [sym_entity_reference] = ACTIONS(2653), + [sym_numeric_character_reference] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_BANG_LBRACK] = ACTIONS(2653), + [anon_sym_DOLLAR] = ACTIONS(2655), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [aux_sym_pandoc_str_token1] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2653), + [sym__whitespace] = ACTIONS(2653), + [sym__line_ending] = ACTIONS(2653), + [sym__soft_line_ending] = ACTIONS(2653), + [sym__block_close] = ACTIONS(2653), + [sym__block_quote_start] = ACTIONS(2653), + [sym_atx_h1_marker] = ACTIONS(2653), + [sym_atx_h2_marker] = ACTIONS(2653), + [sym_atx_h3_marker] = ACTIONS(2653), + [sym_atx_h4_marker] = ACTIONS(2653), + [sym_atx_h5_marker] = ACTIONS(2653), + [sym_atx_h6_marker] = ACTIONS(2653), + [sym__thematic_break] = ACTIONS(2653), + [sym__list_marker_minus] = ACTIONS(2653), + [sym__list_marker_plus] = ACTIONS(2653), + [sym__list_marker_star] = ACTIONS(2653), + [sym__list_marker_parenthesis] = ACTIONS(2653), + [sym__list_marker_dot] = ACTIONS(2653), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_example] = ACTIONS(2653), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2653), + [sym__fenced_code_block_start_backtick] = ACTIONS(2653), + [sym__minus_metadata_start] = ACTIONS(2653), + [sym__pipe_table_start] = ACTIONS(2653), + [sym__fenced_div_start] = ACTIONS(2653), + [sym_ref_id_specifier] = ACTIONS(2653), + [sym__code_span_start] = ACTIONS(2653), + [sym__html_comment] = ACTIONS(2653), + [sym__autolink] = ACTIONS(2653), + [sym__highlight_span_start] = ACTIONS(2653), + [sym__insert_span_start] = ACTIONS(2653), + [sym__delete_span_start] = ACTIONS(2653), + [sym__edit_comment_span_start] = ACTIONS(2653), + [sym__single_quote_span_open] = ACTIONS(2653), + [sym__double_quote_span_open] = ACTIONS(2653), + [sym__shortcode_open_escaped] = ACTIONS(2653), + [sym__shortcode_open] = ACTIONS(2653), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2653), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2653), + [sym__cite_author_in_text] = ACTIONS(2653), + [sym__cite_suppress_author] = ACTIONS(2653), + [sym__strikeout_open] = ACTIONS(2653), + [sym__subscript_open] = ACTIONS(2653), + [sym__superscript_open] = ACTIONS(2653), + [sym__inline_note_start_token] = ACTIONS(2653), + [sym__strong_emphasis_open_star] = ACTIONS(2653), + [sym__strong_emphasis_open_underscore] = ACTIONS(2653), + [sym__emphasis_open_star] = ACTIONS(2653), + [sym__emphasis_open_underscore] = ACTIONS(2653), + [sym_inline_note_reference] = ACTIONS(2653), + [sym_html_element] = ACTIONS(2653), + [sym__pandoc_lt_str] = ACTIONS(2653), + [sym__pandoc_line_break] = ACTIONS(2653), + [sym_grid_table] = ACTIONS(2653), + [sym__caption_start] = ACTIONS(2653), + }, + [STATE(398)] = { + [sym_entity_reference] = ACTIONS(2319), + [sym_numeric_character_reference] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_BANG_LBRACK] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [aux_sym_pandoc_str_token1] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(2319), + [sym__whitespace] = ACTIONS(2319), + [sym__line_ending] = ACTIONS(2319), + [sym__soft_line_ending] = ACTIONS(2319), + [sym__block_close] = ACTIONS(2319), + [sym__block_quote_start] = ACTIONS(2319), + [sym_atx_h1_marker] = ACTIONS(2319), + [sym_atx_h2_marker] = ACTIONS(2319), + [sym_atx_h3_marker] = ACTIONS(2319), + [sym_atx_h4_marker] = ACTIONS(2319), + [sym_atx_h5_marker] = ACTIONS(2319), + [sym_atx_h6_marker] = ACTIONS(2319), + [sym__thematic_break] = ACTIONS(2319), + [sym__list_marker_minus] = ACTIONS(2319), + [sym__list_marker_plus] = ACTIONS(2319), + [sym__list_marker_star] = ACTIONS(2319), + [sym__list_marker_parenthesis] = ACTIONS(2319), + [sym__list_marker_dot] = ACTIONS(2319), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2319), + [sym__list_marker_example] = ACTIONS(2319), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2319), + [sym__fenced_code_block_start_backtick] = ACTIONS(2319), + [sym__minus_metadata_start] = ACTIONS(2319), + [sym__pipe_table_start] = ACTIONS(2319), + [sym__fenced_div_start] = ACTIONS(2319), + [sym_ref_id_specifier] = ACTIONS(2319), + [sym__code_span_start] = ACTIONS(2319), + [sym__html_comment] = ACTIONS(2319), + [sym__autolink] = ACTIONS(2319), + [sym__highlight_span_start] = ACTIONS(2319), + [sym__insert_span_start] = ACTIONS(2319), + [sym__delete_span_start] = ACTIONS(2319), + [sym__edit_comment_span_start] = ACTIONS(2319), + [sym__single_quote_span_open] = ACTIONS(2319), + [sym__double_quote_span_open] = ACTIONS(2319), + [sym__shortcode_open_escaped] = ACTIONS(2319), + [sym__shortcode_open] = ACTIONS(2319), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2319), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2319), + [sym__cite_author_in_text] = ACTIONS(2319), + [sym__cite_suppress_author] = ACTIONS(2319), + [sym__strikeout_open] = ACTIONS(2319), + [sym__subscript_open] = ACTIONS(2319), + [sym__superscript_open] = ACTIONS(2319), + [sym__inline_note_start_token] = ACTIONS(2319), + [sym__strong_emphasis_open_star] = ACTIONS(2319), + [sym__strong_emphasis_open_underscore] = ACTIONS(2319), + [sym__emphasis_open_star] = ACTIONS(2319), + [sym__emphasis_open_underscore] = ACTIONS(2319), + [sym_inline_note_reference] = ACTIONS(2319), + [sym_html_element] = ACTIONS(2319), + [sym__pandoc_lt_str] = ACTIONS(2319), + [sym__pandoc_line_break] = ACTIONS(2319), + [sym_grid_table] = ACTIONS(2319), + [sym__caption_start] = ACTIONS(2319), + }, + [STATE(399)] = { + [ts_builtin_sym_end] = 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), + [sym__whitespace] = ACTIONS(2385), + [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(2385), + [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(2385), + [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_start] = 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__pandoc_lt_str] = ACTIONS(2385), + [sym__pandoc_line_break] = ACTIONS(2385), + [sym_grid_table] = ACTIONS(2385), + [sym__caption_start] = ACTIONS(2385), + }, + [STATE(400)] = { + [sym_entity_reference] = ACTIONS(2593), + [sym_numeric_character_reference] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2593), + [anon_sym_BANG_LBRACK] = ACTIONS(2593), + [anon_sym_DOLLAR] = ACTIONS(2595), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(2593), + [aux_sym_pandoc_str_token1] = ACTIONS(2595), + [anon_sym_PIPE] = ACTIONS(2593), + [sym__whitespace] = ACTIONS(2593), + [sym__line_ending] = ACTIONS(2593), + [sym__soft_line_ending] = ACTIONS(2593), + [sym__block_close] = ACTIONS(2593), + [sym__block_quote_start] = ACTIONS(2593), + [sym_atx_h1_marker] = ACTIONS(2593), + [sym_atx_h2_marker] = ACTIONS(2593), + [sym_atx_h3_marker] = ACTIONS(2593), + [sym_atx_h4_marker] = ACTIONS(2593), + [sym_atx_h5_marker] = ACTIONS(2593), + [sym_atx_h6_marker] = ACTIONS(2593), + [sym__thematic_break] = ACTIONS(2593), + [sym__list_marker_minus] = ACTIONS(2593), + [sym__list_marker_plus] = ACTIONS(2593), + [sym__list_marker_star] = ACTIONS(2593), + [sym__list_marker_parenthesis] = ACTIONS(2593), + [sym__list_marker_dot] = ACTIONS(2593), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_example] = ACTIONS(2593), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2593), + [sym__fenced_code_block_start_backtick] = ACTIONS(2593), + [sym__minus_metadata_start] = ACTIONS(2593), + [sym__pipe_table_start] = ACTIONS(2593), + [sym__fenced_div_start] = ACTIONS(2593), + [sym_ref_id_specifier] = ACTIONS(2593), + [sym__code_span_start] = ACTIONS(2593), + [sym__html_comment] = ACTIONS(2593), + [sym__autolink] = ACTIONS(2593), + [sym__highlight_span_start] = ACTIONS(2593), + [sym__insert_span_start] = ACTIONS(2593), + [sym__delete_span_start] = ACTIONS(2593), + [sym__edit_comment_span_start] = ACTIONS(2593), + [sym__single_quote_span_open] = ACTIONS(2593), + [sym__double_quote_span_open] = ACTIONS(2593), + [sym__shortcode_open_escaped] = ACTIONS(2593), + [sym__shortcode_open] = ACTIONS(2593), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2593), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2593), + [sym__cite_author_in_text] = ACTIONS(2593), + [sym__cite_suppress_author] = ACTIONS(2593), + [sym__strikeout_open] = ACTIONS(2593), + [sym__subscript_open] = ACTIONS(2593), + [sym__superscript_open] = ACTIONS(2593), + [sym__inline_note_start_token] = ACTIONS(2593), + [sym__strong_emphasis_open_star] = ACTIONS(2593), + [sym__strong_emphasis_open_underscore] = ACTIONS(2593), + [sym__emphasis_open_star] = ACTIONS(2593), + [sym__emphasis_open_underscore] = ACTIONS(2593), + [sym_inline_note_reference] = ACTIONS(2593), + [sym_html_element] = ACTIONS(2593), + [sym__pandoc_lt_str] = ACTIONS(2593), + [sym__pandoc_line_break] = ACTIONS(2593), + [sym_grid_table] = ACTIONS(2593), + [sym__caption_start] = ACTIONS(2593), + }, + [STATE(401)] = { + [sym_entity_reference] = ACTIONS(2657), + [sym_numeric_character_reference] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_BANG_LBRACK] = ACTIONS(2657), + [anon_sym_DOLLAR] = ACTIONS(2659), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [aux_sym_pandoc_str_token1] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2657), + [sym__whitespace] = ACTIONS(2657), + [sym__line_ending] = ACTIONS(2657), + [sym__soft_line_ending] = ACTIONS(2657), + [sym__block_close] = ACTIONS(2657), + [sym__block_quote_start] = ACTIONS(2657), + [sym_atx_h1_marker] = ACTIONS(2657), + [sym_atx_h2_marker] = ACTIONS(2657), + [sym_atx_h3_marker] = ACTIONS(2657), + [sym_atx_h4_marker] = ACTIONS(2657), + [sym_atx_h5_marker] = ACTIONS(2657), + [sym_atx_h6_marker] = ACTIONS(2657), + [sym__thematic_break] = ACTIONS(2657), + [sym__list_marker_minus] = ACTIONS(2657), + [sym__list_marker_plus] = ACTIONS(2657), + [sym__list_marker_star] = ACTIONS(2657), + [sym__list_marker_parenthesis] = ACTIONS(2657), + [sym__list_marker_dot] = ACTIONS(2657), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_example] = ACTIONS(2657), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2657), + [sym__fenced_code_block_start_backtick] = ACTIONS(2657), + [sym__minus_metadata_start] = 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_lt_str] = ACTIONS(2657), + [sym__pandoc_line_break] = ACTIONS(2657), + [sym_grid_table] = ACTIONS(2657), + [sym__caption_start] = ACTIONS(2657), + }, + [STATE(402)] = { + [sym_pipe_table_cell] = STATE(2989), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2963), + [sym__line_ending] = ACTIONS(3071), + [sym__eof] = ACTIONS(3071), + [sym__pipe_table_line_ending] = ACTIONS(3071), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pipe_table_delimiter] = ACTIONS(2967), + [sym__pandoc_line_break] = ACTIONS(2140), + }, + [STATE(403)] = { + [ts_builtin_sym_end] = ACTIONS(2669), + [sym_entity_reference] = ACTIONS(2669), + [sym_numeric_character_reference] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_BANG_LBRACK] = ACTIONS(2669), + [anon_sym_DOLLAR] = ACTIONS(2671), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [aux_sym_pandoc_str_token1] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2669), + [sym__whitespace] = ACTIONS(2669), + [sym__line_ending] = ACTIONS(2669), + [sym__soft_line_ending] = ACTIONS(2669), + [sym__block_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_start] = 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_lt_str] = ACTIONS(2669), + [sym__pandoc_line_break] = ACTIONS(2669), + [sym_grid_table] = ACTIONS(2669), + [sym__caption_start] = ACTIONS(2669), + }, + [STATE(404)] = { + [sym_pipe_table_cell] = STATE(2989), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2963), + [sym__line_ending] = ACTIONS(2965), + [sym__eof] = ACTIONS(2965), + [sym__pipe_table_line_ending] = ACTIONS(2965), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pipe_table_delimiter] = ACTIONS(2967), + [sym__pandoc_line_break] = ACTIONS(2140), + }, + [STATE(405)] = { + [ts_builtin_sym_end] = ACTIONS(2673), + [sym_entity_reference] = ACTIONS(2673), + [sym_numeric_character_reference] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_BANG_LBRACK] = ACTIONS(2673), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2673), + [aux_sym_pandoc_str_token1] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2673), + [sym__whitespace] = ACTIONS(2673), + [sym__line_ending] = ACTIONS(2673), + [sym__soft_line_ending] = ACTIONS(2673), + [sym__block_quote_start] = ACTIONS(2673), + [sym_atx_h1_marker] = ACTIONS(2673), + [sym_atx_h2_marker] = ACTIONS(2673), + [sym_atx_h3_marker] = ACTIONS(2673), + [sym_atx_h4_marker] = ACTIONS(2673), + [sym_atx_h5_marker] = ACTIONS(2673), + [sym_atx_h6_marker] = ACTIONS(2673), + [sym__thematic_break] = ACTIONS(2673), + [sym__list_marker_minus] = ACTIONS(2673), + [sym__list_marker_plus] = ACTIONS(2673), + [sym__list_marker_star] = ACTIONS(2673), + [sym__list_marker_parenthesis] = ACTIONS(2673), + [sym__list_marker_dot] = ACTIONS(2673), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_example] = ACTIONS(2673), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2673), + [sym__fenced_code_block_start_backtick] = ACTIONS(2673), + [sym__minus_metadata_start] = ACTIONS(2673), + [sym__pipe_table_start] = ACTIONS(2673), + [sym__fenced_div_start] = ACTIONS(2673), + [sym_ref_id_specifier] = ACTIONS(2673), + [sym__code_span_start] = ACTIONS(2673), + [sym__html_comment] = ACTIONS(2673), + [sym__autolink] = ACTIONS(2673), + [sym__highlight_span_start] = ACTIONS(2673), + [sym__insert_span_start] = ACTIONS(2673), + [sym__delete_span_start] = ACTIONS(2673), + [sym__edit_comment_span_start] = ACTIONS(2673), + [sym__single_quote_span_open] = ACTIONS(2673), + [sym__double_quote_span_open] = ACTIONS(2673), + [sym__shortcode_open_escaped] = ACTIONS(2673), + [sym__shortcode_open] = ACTIONS(2673), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2673), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2673), + [sym__cite_author_in_text] = ACTIONS(2673), + [sym__cite_suppress_author] = ACTIONS(2673), + [sym__strikeout_open] = ACTIONS(2673), + [sym__subscript_open] = ACTIONS(2673), + [sym__superscript_open] = ACTIONS(2673), + [sym__inline_note_start_token] = ACTIONS(2673), + [sym__strong_emphasis_open_star] = ACTIONS(2673), + [sym__strong_emphasis_open_underscore] = ACTIONS(2673), + [sym__emphasis_open_star] = ACTIONS(2673), + [sym__emphasis_open_underscore] = ACTIONS(2673), + [sym_inline_note_reference] = ACTIONS(2673), + [sym_html_element] = ACTIONS(2673), + [sym__pandoc_lt_str] = ACTIONS(2673), + [sym__pandoc_line_break] = ACTIONS(2673), + [sym_grid_table] = ACTIONS(2673), + [sym__caption_start] = ACTIONS(2673), + }, + [STATE(406)] = { + [sym_pipe_table_cell] = STATE(3009), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym_pipe_table_row_repeat1] = STATE(373), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(3073), + [sym__line_ending] = ACTIONS(3071), + [sym__eof] = ACTIONS(3071), + [sym__pipe_table_line_ending] = ACTIONS(3071), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pandoc_line_break] = ACTIONS(2140), + }, + [STATE(407)] = { + [ts_builtin_sym_end] = ACTIONS(2677), + [sym_entity_reference] = ACTIONS(2677), + [sym_numeric_character_reference] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_BANG_LBRACK] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2677), + [aux_sym_pandoc_str_token1] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2677), + [sym__whitespace] = ACTIONS(2677), + [sym__line_ending] = ACTIONS(2677), + [sym__soft_line_ending] = ACTIONS(2677), + [sym__block_quote_start] = ACTIONS(2677), + [sym_atx_h1_marker] = ACTIONS(2677), + [sym_atx_h2_marker] = ACTIONS(2677), + [sym_atx_h3_marker] = ACTIONS(2677), + [sym_atx_h4_marker] = ACTIONS(2677), + [sym_atx_h5_marker] = ACTIONS(2677), + [sym_atx_h6_marker] = ACTIONS(2677), + [sym__thematic_break] = ACTIONS(2677), + [sym__list_marker_minus] = ACTIONS(2677), + [sym__list_marker_plus] = ACTIONS(2677), + [sym__list_marker_star] = ACTIONS(2677), + [sym__list_marker_parenthesis] = ACTIONS(2677), + [sym__list_marker_dot] = ACTIONS(2677), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_example] = ACTIONS(2677), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2677), + [sym__fenced_code_block_start_backtick] = ACTIONS(2677), + [sym__minus_metadata_start] = ACTIONS(2677), + [sym__pipe_table_start] = ACTIONS(2677), + [sym__fenced_div_start] = ACTIONS(2677), + [sym_ref_id_specifier] = ACTIONS(2677), + [sym__code_span_start] = ACTIONS(2677), + [sym__html_comment] = ACTIONS(2677), + [sym__autolink] = ACTIONS(2677), + [sym__highlight_span_start] = ACTIONS(2677), + [sym__insert_span_start] = ACTIONS(2677), + [sym__delete_span_start] = ACTIONS(2677), + [sym__edit_comment_span_start] = ACTIONS(2677), + [sym__single_quote_span_open] = ACTIONS(2677), + [sym__double_quote_span_open] = ACTIONS(2677), + [sym__shortcode_open_escaped] = ACTIONS(2677), + [sym__shortcode_open] = ACTIONS(2677), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2677), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2677), + [sym__cite_author_in_text] = ACTIONS(2677), + [sym__cite_suppress_author] = ACTIONS(2677), + [sym__strikeout_open] = ACTIONS(2677), + [sym__subscript_open] = ACTIONS(2677), + [sym__superscript_open] = ACTIONS(2677), + [sym__inline_note_start_token] = ACTIONS(2677), + [sym__strong_emphasis_open_star] = ACTIONS(2677), + [sym__strong_emphasis_open_underscore] = ACTIONS(2677), + [sym__emphasis_open_star] = ACTIONS(2677), + [sym__emphasis_open_underscore] = ACTIONS(2677), + [sym_inline_note_reference] = ACTIONS(2677), + [sym_html_element] = ACTIONS(2677), + [sym__pandoc_lt_str] = ACTIONS(2677), + [sym__pandoc_line_break] = ACTIONS(2677), + [sym_grid_table] = ACTIONS(2677), + [sym__caption_start] = ACTIONS(2677), + }, + [STATE(408)] = { + [sym_entity_reference] = ACTIONS(2661), + [sym_numeric_character_reference] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_BANG_LBRACK] = ACTIONS(2661), + [anon_sym_DOLLAR] = ACTIONS(2663), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2661), + [aux_sym_pandoc_str_token1] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2661), + [sym__whitespace] = ACTIONS(2661), + [sym__line_ending] = ACTIONS(2661), + [sym__soft_line_ending] = ACTIONS(2661), + [sym__block_close] = ACTIONS(2661), + [sym__block_quote_start] = ACTIONS(2661), + [sym_atx_h1_marker] = ACTIONS(2661), + [sym_atx_h2_marker] = ACTIONS(2661), + [sym_atx_h3_marker] = ACTIONS(2661), + [sym_atx_h4_marker] = ACTIONS(2661), + [sym_atx_h5_marker] = ACTIONS(2661), + [sym_atx_h6_marker] = ACTIONS(2661), + [sym__thematic_break] = ACTIONS(2661), + [sym__list_marker_minus] = ACTIONS(2661), + [sym__list_marker_plus] = ACTIONS(2661), + [sym__list_marker_star] = ACTIONS(2661), + [sym__list_marker_parenthesis] = ACTIONS(2661), + [sym__list_marker_dot] = ACTIONS(2661), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_example] = ACTIONS(2661), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2661), + [sym__fenced_code_block_start_backtick] = ACTIONS(2661), + [sym__minus_metadata_start] = ACTIONS(2661), + [sym__pipe_table_start] = ACTIONS(2661), + [sym__fenced_div_start] = ACTIONS(2661), + [sym_ref_id_specifier] = ACTIONS(2661), + [sym__code_span_start] = ACTIONS(2661), + [sym__html_comment] = ACTIONS(2661), + [sym__autolink] = ACTIONS(2661), + [sym__highlight_span_start] = ACTIONS(2661), + [sym__insert_span_start] = ACTIONS(2661), + [sym__delete_span_start] = ACTIONS(2661), + [sym__edit_comment_span_start] = ACTIONS(2661), + [sym__single_quote_span_open] = ACTIONS(2661), + [sym__double_quote_span_open] = ACTIONS(2661), + [sym__shortcode_open_escaped] = ACTIONS(2661), + [sym__shortcode_open] = ACTIONS(2661), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2661), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2661), + [sym__cite_author_in_text] = ACTIONS(2661), + [sym__cite_suppress_author] = ACTIONS(2661), + [sym__strikeout_open] = ACTIONS(2661), + [sym__subscript_open] = ACTIONS(2661), + [sym__superscript_open] = ACTIONS(2661), + [sym__inline_note_start_token] = ACTIONS(2661), + [sym__strong_emphasis_open_star] = ACTIONS(2661), + [sym__strong_emphasis_open_underscore] = ACTIONS(2661), + [sym__emphasis_open_star] = ACTIONS(2661), + [sym__emphasis_open_underscore] = ACTIONS(2661), + [sym_inline_note_reference] = ACTIONS(2661), + [sym_html_element] = ACTIONS(2661), + [sym__pandoc_lt_str] = ACTIONS(2661), + [sym__pandoc_line_break] = ACTIONS(2661), + [sym_grid_table] = ACTIONS(2661), + [sym__caption_start] = ACTIONS(2661), + }, + [STATE(409)] = { + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_entity_reference] = ACTIONS(2681), + [sym_numeric_character_reference] = ACTIONS(2681), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_BANG_LBRACK] = ACTIONS(2681), + [anon_sym_DOLLAR] = ACTIONS(2683), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2681), + [aux_sym_pandoc_str_token1] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2681), + [sym__whitespace] = ACTIONS(2681), + [sym__line_ending] = ACTIONS(2681), + [sym__soft_line_ending] = ACTIONS(2681), + [sym__block_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_start] = 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_lt_str] = ACTIONS(2681), + [sym__pandoc_line_break] = ACTIONS(2681), + [sym_grid_table] = ACTIONS(2681), + [sym__caption_start] = ACTIONS(2681), + }, + [STATE(410)] = { + [sym_entity_reference] = ACTIONS(2665), + [sym_numeric_character_reference] = ACTIONS(2665), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_BANG_LBRACK] = ACTIONS(2665), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2665), + [aux_sym_pandoc_str_token1] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2665), + [sym__whitespace] = ACTIONS(2665), + [sym__line_ending] = ACTIONS(2665), + [sym__soft_line_ending] = ACTIONS(2665), + [sym__block_close] = ACTIONS(2665), + [sym__block_quote_start] = ACTIONS(2665), + [sym_atx_h1_marker] = ACTIONS(2665), + [sym_atx_h2_marker] = ACTIONS(2665), + [sym_atx_h3_marker] = ACTIONS(2665), + [sym_atx_h4_marker] = ACTIONS(2665), + [sym_atx_h5_marker] = ACTIONS(2665), + [sym_atx_h6_marker] = ACTIONS(2665), + [sym__thematic_break] = ACTIONS(2665), + [sym__list_marker_minus] = ACTIONS(2665), + [sym__list_marker_plus] = ACTIONS(2665), + [sym__list_marker_star] = ACTIONS(2665), + [sym__list_marker_parenthesis] = ACTIONS(2665), + [sym__list_marker_dot] = ACTIONS(2665), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_example] = ACTIONS(2665), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2665), + [sym__fenced_code_block_start_backtick] = ACTIONS(2665), + [sym__minus_metadata_start] = ACTIONS(2665), + [sym__pipe_table_start] = ACTIONS(2665), + [sym__fenced_div_start] = ACTIONS(2665), + [sym_ref_id_specifier] = ACTIONS(2665), + [sym__code_span_start] = ACTIONS(2665), + [sym__html_comment] = ACTIONS(2665), + [sym__autolink] = ACTIONS(2665), + [sym__highlight_span_start] = ACTIONS(2665), + [sym__insert_span_start] = ACTIONS(2665), + [sym__delete_span_start] = ACTIONS(2665), + [sym__edit_comment_span_start] = ACTIONS(2665), + [sym__single_quote_span_open] = ACTIONS(2665), + [sym__double_quote_span_open] = ACTIONS(2665), + [sym__shortcode_open_escaped] = ACTIONS(2665), + [sym__shortcode_open] = ACTIONS(2665), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2665), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2665), + [sym__cite_author_in_text] = ACTIONS(2665), + [sym__cite_suppress_author] = ACTIONS(2665), + [sym__strikeout_open] = ACTIONS(2665), + [sym__subscript_open] = ACTIONS(2665), + [sym__superscript_open] = ACTIONS(2665), + [sym__inline_note_start_token] = ACTIONS(2665), + [sym__strong_emphasis_open_star] = ACTIONS(2665), + [sym__strong_emphasis_open_underscore] = ACTIONS(2665), + [sym__emphasis_open_star] = ACTIONS(2665), + [sym__emphasis_open_underscore] = ACTIONS(2665), + [sym_inline_note_reference] = ACTIONS(2665), + [sym_html_element] = ACTIONS(2665), + [sym__pandoc_lt_str] = ACTIONS(2665), + [sym__pandoc_line_break] = ACTIONS(2665), + [sym_grid_table] = ACTIONS(2665), + [sym__caption_start] = ACTIONS(2665), + }, + [STATE(411)] = { + [ts_builtin_sym_end] = ACTIONS(2587), + [sym_entity_reference] = ACTIONS(2587), + [sym_numeric_character_reference] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_BANG_LBRACK] = ACTIONS(2587), + [anon_sym_DOLLAR] = ACTIONS(2589), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [aux_sym_pandoc_str_token1] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2587), + [sym__whitespace] = ACTIONS(2587), + [sym__line_ending] = ACTIONS(2587), + [sym__soft_line_ending] = ACTIONS(2587), + [sym__block_quote_start] = ACTIONS(2587), + [sym_atx_h1_marker] = ACTIONS(2587), + [sym_atx_h2_marker] = ACTIONS(2587), + [sym_atx_h3_marker] = ACTIONS(2587), + [sym_atx_h4_marker] = ACTIONS(2587), + [sym_atx_h5_marker] = ACTIONS(2587), + [sym_atx_h6_marker] = ACTIONS(2587), + [sym__thematic_break] = ACTIONS(2587), + [sym__list_marker_minus] = ACTIONS(2587), + [sym__list_marker_plus] = ACTIONS(2587), + [sym__list_marker_star] = ACTIONS(2587), + [sym__list_marker_parenthesis] = ACTIONS(2587), + [sym__list_marker_dot] = ACTIONS(2587), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2587), + [sym__list_marker_example] = ACTIONS(2587), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2587), + [sym__fenced_code_block_start_backtick] = ACTIONS(2587), + [sym__minus_metadata_start] = ACTIONS(2587), + [sym__pipe_table_start] = ACTIONS(2587), + [sym__fenced_div_start] = ACTIONS(2587), + [sym_ref_id_specifier] = ACTIONS(2587), + [sym__code_span_start] = ACTIONS(2587), + [sym__html_comment] = ACTIONS(2587), + [sym__autolink] = ACTIONS(2587), + [sym__highlight_span_start] = ACTIONS(2587), + [sym__insert_span_start] = ACTIONS(2587), + [sym__delete_span_start] = ACTIONS(2587), + [sym__edit_comment_span_start] = ACTIONS(2587), + [sym__single_quote_span_open] = ACTIONS(2587), + [sym__double_quote_span_open] = ACTIONS(2587), + [sym__shortcode_open_escaped] = ACTIONS(2587), + [sym__shortcode_open] = ACTIONS(2587), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2587), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2587), + [sym__cite_author_in_text] = ACTIONS(2587), + [sym__cite_suppress_author] = ACTIONS(2587), + [sym__strikeout_open] = ACTIONS(2587), + [sym__subscript_open] = ACTIONS(2587), + [sym__superscript_open] = ACTIONS(2587), + [sym__inline_note_start_token] = ACTIONS(2587), + [sym__strong_emphasis_open_star] = ACTIONS(2587), + [sym__strong_emphasis_open_underscore] = ACTIONS(2587), + [sym__emphasis_open_star] = ACTIONS(2587), + [sym__emphasis_open_underscore] = ACTIONS(2587), + [sym_inline_note_reference] = ACTIONS(2587), + [sym_html_element] = ACTIONS(2587), + [sym__pandoc_lt_str] = ACTIONS(2587), + [sym__pandoc_line_break] = ACTIONS(2587), + [sym_grid_table] = ACTIONS(2587), + [sym__caption_start] = ACTIONS(2587), + }, + [STATE(412)] = { + [ts_builtin_sym_end] = ACTIONS(2783), + [sym_entity_reference] = ACTIONS(2783), + [sym_numeric_character_reference] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_BANG_LBRACK] = ACTIONS(2783), + [anon_sym_DOLLAR] = ACTIONS(2785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2783), + [aux_sym_pandoc_str_token1] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2783), + [sym__whitespace] = ACTIONS(2783), + [sym__line_ending] = ACTIONS(2783), + [sym__soft_line_ending] = ACTIONS(2783), + [sym__block_quote_start] = ACTIONS(2783), + [sym_atx_h1_marker] = ACTIONS(2783), + [sym_atx_h2_marker] = ACTIONS(2783), + [sym_atx_h3_marker] = ACTIONS(2783), + [sym_atx_h4_marker] = ACTIONS(2783), + [sym_atx_h5_marker] = ACTIONS(2783), + [sym_atx_h6_marker] = ACTIONS(2783), + [sym__thematic_break] = ACTIONS(2783), + [sym__list_marker_minus] = ACTIONS(2783), + [sym__list_marker_plus] = ACTIONS(2783), + [sym__list_marker_star] = ACTIONS(2783), + [sym__list_marker_parenthesis] = ACTIONS(2783), + [sym__list_marker_dot] = ACTIONS(2783), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_example] = ACTIONS(2783), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2783), + [sym__fenced_code_block_start_backtick] = ACTIONS(2783), + [sym__minus_metadata_start] = ACTIONS(2783), + [sym__pipe_table_start] = ACTIONS(2783), + [sym__fenced_div_start] = ACTIONS(2783), + [sym_ref_id_specifier] = ACTIONS(2783), + [sym__code_span_start] = ACTIONS(2783), + [sym__html_comment] = ACTIONS(2783), + [sym__autolink] = ACTIONS(2783), + [sym__highlight_span_start] = ACTIONS(2783), + [sym__insert_span_start] = ACTIONS(2783), + [sym__delete_span_start] = ACTIONS(2783), + [sym__edit_comment_span_start] = ACTIONS(2783), + [sym__single_quote_span_open] = ACTIONS(2783), + [sym__double_quote_span_open] = ACTIONS(2783), + [sym__shortcode_open_escaped] = ACTIONS(2783), + [sym__shortcode_open] = ACTIONS(2783), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2783), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2783), + [sym__cite_author_in_text] = ACTIONS(2783), + [sym__cite_suppress_author] = ACTIONS(2783), + [sym__strikeout_open] = ACTIONS(2783), + [sym__subscript_open] = ACTIONS(2783), + [sym__superscript_open] = ACTIONS(2783), + [sym__inline_note_start_token] = ACTIONS(2783), + [sym__strong_emphasis_open_star] = ACTIONS(2783), + [sym__strong_emphasis_open_underscore] = ACTIONS(2783), + [sym__emphasis_open_star] = ACTIONS(2783), + [sym__emphasis_open_underscore] = ACTIONS(2783), + [sym_inline_note_reference] = ACTIONS(2783), + [sym_html_element] = ACTIONS(2783), + [sym__pandoc_lt_str] = ACTIONS(2783), + [sym__pandoc_line_break] = ACTIONS(2783), + [sym_grid_table] = ACTIONS(2783), + [sym__caption_start] = ACTIONS(2783), + }, + [STATE(413)] = { + [ts_builtin_sym_end] = ACTIONS(2685), + [sym_entity_reference] = ACTIONS(2685), + [sym_numeric_character_reference] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_BANG_LBRACK] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [aux_sym_pandoc_str_token1] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2685), + [sym__whitespace] = ACTIONS(2685), + [sym__line_ending] = ACTIONS(2685), + [sym__soft_line_ending] = ACTIONS(2685), + [sym__block_quote_start] = ACTIONS(2685), + [sym_atx_h1_marker] = ACTIONS(2685), + [sym_atx_h2_marker] = ACTIONS(2685), + [sym_atx_h3_marker] = ACTIONS(2685), + [sym_atx_h4_marker] = ACTIONS(2685), + [sym_atx_h5_marker] = ACTIONS(2685), + [sym_atx_h6_marker] = ACTIONS(2685), + [sym__thematic_break] = ACTIONS(2685), + [sym__list_marker_minus] = ACTIONS(2685), + [sym__list_marker_plus] = ACTIONS(2685), + [sym__list_marker_star] = ACTIONS(2685), + [sym__list_marker_parenthesis] = ACTIONS(2685), + [sym__list_marker_dot] = ACTIONS(2685), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_example] = ACTIONS(2685), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2685), + [sym__fenced_code_block_start_backtick] = ACTIONS(2685), + [sym__minus_metadata_start] = ACTIONS(2685), + [sym__pipe_table_start] = ACTIONS(2685), + [sym__fenced_div_start] = ACTIONS(2685), + [sym_ref_id_specifier] = ACTIONS(2685), + [sym__code_span_start] = ACTIONS(2685), + [sym__html_comment] = ACTIONS(2685), + [sym__autolink] = ACTIONS(2685), + [sym__highlight_span_start] = ACTIONS(2685), + [sym__insert_span_start] = ACTIONS(2685), + [sym__delete_span_start] = ACTIONS(2685), + [sym__edit_comment_span_start] = ACTIONS(2685), + [sym__single_quote_span_open] = ACTIONS(2685), + [sym__double_quote_span_open] = ACTIONS(2685), + [sym__shortcode_open_escaped] = ACTIONS(2685), + [sym__shortcode_open] = ACTIONS(2685), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2685), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2685), + [sym__cite_author_in_text] = ACTIONS(2685), + [sym__cite_suppress_author] = ACTIONS(2685), + [sym__strikeout_open] = ACTIONS(2685), + [sym__subscript_open] = ACTIONS(2685), + [sym__superscript_open] = ACTIONS(2685), + [sym__inline_note_start_token] = ACTIONS(2685), + [sym__strong_emphasis_open_star] = ACTIONS(2685), + [sym__strong_emphasis_open_underscore] = ACTIONS(2685), + [sym__emphasis_open_star] = ACTIONS(2685), + [sym__emphasis_open_underscore] = ACTIONS(2685), + [sym_inline_note_reference] = ACTIONS(2685), + [sym_html_element] = ACTIONS(2685), + [sym__pandoc_lt_str] = ACTIONS(2685), + [sym__pandoc_line_break] = ACTIONS(2685), + [sym_grid_table] = ACTIONS(2685), + [sym__caption_start] = ACTIONS(2685), + }, + [STATE(414)] = { + [sym_entity_reference] = ACTIONS(2325), + [sym_numeric_character_reference] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_BANG_LBRACK] = ACTIONS(2325), + [anon_sym_DOLLAR] = ACTIONS(2327), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2325), + [aux_sym_pandoc_str_token1] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2325), + [sym__whitespace] = ACTIONS(2325), + [sym__line_ending] = ACTIONS(2325), + [sym__soft_line_ending] = ACTIONS(2325), + [sym__block_close] = ACTIONS(2325), + [sym__block_quote_start] = ACTIONS(2325), + [sym_atx_h1_marker] = ACTIONS(2325), + [sym_atx_h2_marker] = ACTIONS(2325), + [sym_atx_h3_marker] = ACTIONS(2325), + [sym_atx_h4_marker] = ACTIONS(2325), + [sym_atx_h5_marker] = ACTIONS(2325), + [sym_atx_h6_marker] = ACTIONS(2325), + [sym__thematic_break] = ACTIONS(2325), + [sym__list_marker_minus] = ACTIONS(2325), + [sym__list_marker_plus] = ACTIONS(2325), + [sym__list_marker_star] = ACTIONS(2325), + [sym__list_marker_parenthesis] = ACTIONS(2325), + [sym__list_marker_dot] = ACTIONS(2325), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2325), + [sym__list_marker_example] = ACTIONS(2325), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2325), + [sym__fenced_code_block_start_backtick] = ACTIONS(2325), + [sym__minus_metadata_start] = ACTIONS(2325), + [sym__pipe_table_start] = ACTIONS(2325), + [sym__fenced_div_start] = ACTIONS(2325), + [sym_ref_id_specifier] = ACTIONS(2325), + [sym__code_span_start] = ACTIONS(2325), + [sym__html_comment] = ACTIONS(2325), + [sym__autolink] = ACTIONS(2325), + [sym__highlight_span_start] = ACTIONS(2325), + [sym__insert_span_start] = ACTIONS(2325), + [sym__delete_span_start] = ACTIONS(2325), + [sym__edit_comment_span_start] = ACTIONS(2325), + [sym__single_quote_span_open] = ACTIONS(2325), + [sym__double_quote_span_open] = ACTIONS(2325), + [sym__shortcode_open_escaped] = ACTIONS(2325), + [sym__shortcode_open] = ACTIONS(2325), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2325), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2325), + [sym__cite_author_in_text] = ACTIONS(2325), + [sym__cite_suppress_author] = ACTIONS(2325), + [sym__strikeout_open] = ACTIONS(2325), + [sym__subscript_open] = ACTIONS(2325), + [sym__superscript_open] = ACTIONS(2325), + [sym__inline_note_start_token] = ACTIONS(2325), + [sym__strong_emphasis_open_star] = ACTIONS(2325), + [sym__strong_emphasis_open_underscore] = ACTIONS(2325), + [sym__emphasis_open_star] = ACTIONS(2325), + [sym__emphasis_open_underscore] = ACTIONS(2325), + [sym_inline_note_reference] = ACTIONS(2325), + [sym_html_element] = ACTIONS(2325), + [sym__pandoc_lt_str] = ACTIONS(2325), + [sym__pandoc_line_break] = ACTIONS(2325), + [sym_grid_table] = ACTIONS(2325), + [sym__caption_start] = ACTIONS(2325), + }, + [STATE(415)] = { + [sym_entity_reference] = ACTIONS(2553), + [sym_numeric_character_reference] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2553), + [anon_sym_BANG_LBRACK] = ACTIONS(2553), + [anon_sym_DOLLAR] = ACTIONS(2555), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [aux_sym_pandoc_str_token1] = ACTIONS(2555), + [anon_sym_PIPE] = ACTIONS(2553), + [sym__whitespace] = ACTIONS(2553), + [sym__line_ending] = ACTIONS(2553), + [sym__soft_line_ending] = ACTIONS(2553), + [sym__block_close] = ACTIONS(2553), + [sym__block_quote_start] = ACTIONS(2553), + [sym_atx_h1_marker] = ACTIONS(2553), + [sym_atx_h2_marker] = ACTIONS(2553), + [sym_atx_h3_marker] = ACTIONS(2553), + [sym_atx_h4_marker] = ACTIONS(2553), + [sym_atx_h5_marker] = ACTIONS(2553), + [sym_atx_h6_marker] = ACTIONS(2553), + [sym__thematic_break] = ACTIONS(2553), + [sym__list_marker_minus] = ACTIONS(2553), + [sym__list_marker_plus] = ACTIONS(2553), + [sym__list_marker_star] = ACTIONS(2553), + [sym__list_marker_parenthesis] = ACTIONS(2553), + [sym__list_marker_dot] = ACTIONS(2553), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_example] = ACTIONS(2553), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2553), + [sym__fenced_code_block_start_backtick] = ACTIONS(2553), + [sym__minus_metadata_start] = ACTIONS(2553), + [sym__pipe_table_start] = ACTIONS(2553), + [sym__fenced_div_start] = ACTIONS(2553), + [sym_ref_id_specifier] = ACTIONS(2553), + [sym__code_span_start] = ACTIONS(2553), + [sym__html_comment] = ACTIONS(2553), + [sym__autolink] = ACTIONS(2553), + [sym__highlight_span_start] = ACTIONS(2553), + [sym__insert_span_start] = ACTIONS(2553), + [sym__delete_span_start] = ACTIONS(2553), + [sym__edit_comment_span_start] = ACTIONS(2553), + [sym__single_quote_span_open] = ACTIONS(2553), + [sym__double_quote_span_open] = ACTIONS(2553), + [sym__shortcode_open_escaped] = ACTIONS(2553), + [sym__shortcode_open] = ACTIONS(2553), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2553), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2553), + [sym__cite_author_in_text] = ACTIONS(2553), + [sym__cite_suppress_author] = ACTIONS(2553), + [sym__strikeout_open] = ACTIONS(2553), + [sym__subscript_open] = ACTIONS(2553), + [sym__superscript_open] = ACTIONS(2553), + [sym__inline_note_start_token] = ACTIONS(2553), + [sym__strong_emphasis_open_star] = ACTIONS(2553), + [sym__strong_emphasis_open_underscore] = ACTIONS(2553), + [sym__emphasis_open_star] = ACTIONS(2553), + [sym__emphasis_open_underscore] = ACTIONS(2553), + [sym_inline_note_reference] = ACTIONS(2553), + [sym_html_element] = ACTIONS(2553), + [sym__pandoc_lt_str] = ACTIONS(2553), + [sym__pandoc_line_break] = ACTIONS(2553), + [sym_grid_table] = ACTIONS(2553), + [sym__caption_start] = ACTIONS(2553), + }, + [STATE(416)] = { + [sym_entity_reference] = ACTIONS(2337), + [sym_numeric_character_reference] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_BANG_LBRACK] = ACTIONS(2337), + [anon_sym_DOLLAR] = ACTIONS(2339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [aux_sym_pandoc_str_token1] = ACTIONS(2339), + [anon_sym_PIPE] = ACTIONS(2337), + [sym__whitespace] = ACTIONS(2337), + [sym__line_ending] = ACTIONS(2337), + [sym__soft_line_ending] = ACTIONS(2337), + [sym__block_close] = ACTIONS(2337), + [sym__block_quote_start] = ACTIONS(2337), + [sym_atx_h1_marker] = ACTIONS(2337), + [sym_atx_h2_marker] = ACTIONS(2337), + [sym_atx_h3_marker] = ACTIONS(2337), + [sym_atx_h4_marker] = ACTIONS(2337), + [sym_atx_h5_marker] = ACTIONS(2337), + [sym_atx_h6_marker] = ACTIONS(2337), + [sym__thematic_break] = ACTIONS(2337), + [sym__list_marker_minus] = ACTIONS(2337), + [sym__list_marker_plus] = ACTIONS(2337), + [sym__list_marker_star] = ACTIONS(2337), + [sym__list_marker_parenthesis] = ACTIONS(2337), + [sym__list_marker_dot] = ACTIONS(2337), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2337), + [sym__list_marker_example] = ACTIONS(2337), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2337), + [sym__fenced_code_block_start_backtick] = ACTIONS(2337), + [sym__minus_metadata_start] = ACTIONS(2337), + [sym__pipe_table_start] = ACTIONS(2337), + [sym__fenced_div_start] = ACTIONS(2337), + [sym_ref_id_specifier] = ACTIONS(2337), + [sym__code_span_start] = ACTIONS(2337), + [sym__html_comment] = ACTIONS(2337), + [sym__autolink] = ACTIONS(2337), + [sym__highlight_span_start] = ACTIONS(2337), + [sym__insert_span_start] = ACTIONS(2337), + [sym__delete_span_start] = ACTIONS(2337), + [sym__edit_comment_span_start] = ACTIONS(2337), + [sym__single_quote_span_open] = ACTIONS(2337), + [sym__double_quote_span_open] = ACTIONS(2337), + [sym__shortcode_open_escaped] = ACTIONS(2337), + [sym__shortcode_open] = ACTIONS(2337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2337), + [sym__cite_author_in_text] = ACTIONS(2337), + [sym__cite_suppress_author] = ACTIONS(2337), + [sym__strikeout_open] = ACTIONS(2337), + [sym__subscript_open] = ACTIONS(2337), + [sym__superscript_open] = ACTIONS(2337), + [sym__inline_note_start_token] = ACTIONS(2337), + [sym__strong_emphasis_open_star] = ACTIONS(2337), + [sym__strong_emphasis_open_underscore] = ACTIONS(2337), + [sym__emphasis_open_star] = ACTIONS(2337), + [sym__emphasis_open_underscore] = ACTIONS(2337), + [sym_inline_note_reference] = ACTIONS(2337), + [sym_html_element] = ACTIONS(2337), + [sym__pandoc_lt_str] = ACTIONS(2337), + [sym__pandoc_line_break] = ACTIONS(2337), + [sym_grid_table] = ACTIONS(2337), + [sym__caption_start] = ACTIONS(2337), + }, + [STATE(417)] = { + [sym_entity_reference] = ACTIONS(2599), + [sym_numeric_character_reference] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_BANG_LBRACK] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2601), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [aux_sym_pandoc_str_token1] = ACTIONS(2601), + [anon_sym_PIPE] = ACTIONS(2599), + [sym__whitespace] = ACTIONS(2599), + [sym__line_ending] = ACTIONS(2599), + [sym__soft_line_ending] = ACTIONS(2599), + [sym__block_close] = ACTIONS(2599), + [sym__block_quote_start] = ACTIONS(2599), + [sym_atx_h1_marker] = ACTIONS(2599), + [sym_atx_h2_marker] = ACTIONS(2599), + [sym_atx_h3_marker] = ACTIONS(2599), + [sym_atx_h4_marker] = ACTIONS(2599), + [sym_atx_h5_marker] = ACTIONS(2599), + [sym_atx_h6_marker] = ACTIONS(2599), + [sym__thematic_break] = ACTIONS(2599), + [sym__list_marker_minus] = ACTIONS(2599), + [sym__list_marker_plus] = ACTIONS(2599), + [sym__list_marker_star] = ACTIONS(2599), + [sym__list_marker_parenthesis] = ACTIONS(2599), + [sym__list_marker_dot] = ACTIONS(2599), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_example] = ACTIONS(2599), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2599), + [sym__fenced_code_block_start_backtick] = ACTIONS(2599), + [sym__minus_metadata_start] = ACTIONS(2599), + [sym__pipe_table_start] = ACTIONS(2599), + [sym__fenced_div_start] = ACTIONS(2599), + [sym_ref_id_specifier] = ACTIONS(2599), + [sym__code_span_start] = ACTIONS(2599), + [sym__html_comment] = ACTIONS(2599), + [sym__autolink] = ACTIONS(2599), + [sym__highlight_span_start] = ACTIONS(2599), + [sym__insert_span_start] = ACTIONS(2599), + [sym__delete_span_start] = ACTIONS(2599), + [sym__edit_comment_span_start] = ACTIONS(2599), + [sym__single_quote_span_open] = ACTIONS(2599), + [sym__double_quote_span_open] = ACTIONS(2599), + [sym__shortcode_open_escaped] = ACTIONS(2599), + [sym__shortcode_open] = ACTIONS(2599), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2599), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2599), + [sym__cite_author_in_text] = ACTIONS(2599), + [sym__cite_suppress_author] = ACTIONS(2599), + [sym__strikeout_open] = ACTIONS(2599), + [sym__subscript_open] = ACTIONS(2599), + [sym__superscript_open] = ACTIONS(2599), + [sym__inline_note_start_token] = ACTIONS(2599), + [sym__strong_emphasis_open_star] = ACTIONS(2599), + [sym__strong_emphasis_open_underscore] = ACTIONS(2599), + [sym__emphasis_open_star] = ACTIONS(2599), + [sym__emphasis_open_underscore] = ACTIONS(2599), + [sym_inline_note_reference] = ACTIONS(2599), + [sym_html_element] = ACTIONS(2599), + [sym__pandoc_lt_str] = ACTIONS(2599), + [sym__pandoc_line_break] = ACTIONS(2599), + [sym_grid_table] = ACTIONS(2599), + [sym__caption_start] = ACTIONS(2599), + }, + [STATE(418)] = { + [sym_entity_reference] = ACTIONS(2367), + [sym_numeric_character_reference] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2367), + [anon_sym_BANG_LBRACK] = ACTIONS(2367), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [aux_sym_pandoc_str_token1] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2367), + [sym__whitespace] = ACTIONS(2367), + [sym__line_ending] = ACTIONS(2367), + [sym__soft_line_ending] = ACTIONS(2367), + [sym__block_close] = ACTIONS(2367), + [sym__block_quote_start] = ACTIONS(2367), + [sym_atx_h1_marker] = ACTIONS(2367), + [sym_atx_h2_marker] = ACTIONS(2367), + [sym_atx_h3_marker] = ACTIONS(2367), + [sym_atx_h4_marker] = ACTIONS(2367), + [sym_atx_h5_marker] = ACTIONS(2367), + [sym_atx_h6_marker] = ACTIONS(2367), + [sym__thematic_break] = ACTIONS(2367), + [sym__list_marker_minus] = ACTIONS(2367), + [sym__list_marker_plus] = ACTIONS(2367), + [sym__list_marker_star] = ACTIONS(2367), + [sym__list_marker_parenthesis] = ACTIONS(2367), + [sym__list_marker_dot] = ACTIONS(2367), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2367), + [sym__list_marker_example] = ACTIONS(2367), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2367), + [sym__fenced_code_block_start_backtick] = ACTIONS(2367), + [sym__minus_metadata_start] = ACTIONS(2367), + [sym__pipe_table_start] = ACTIONS(2367), + [sym__fenced_div_start] = ACTIONS(2367), + [sym_ref_id_specifier] = ACTIONS(2367), + [sym__code_span_start] = ACTIONS(2367), + [sym__html_comment] = ACTIONS(2367), + [sym__autolink] = ACTIONS(2367), + [sym__highlight_span_start] = ACTIONS(2367), + [sym__insert_span_start] = ACTIONS(2367), + [sym__delete_span_start] = ACTIONS(2367), + [sym__edit_comment_span_start] = ACTIONS(2367), + [sym__single_quote_span_open] = ACTIONS(2367), + [sym__double_quote_span_open] = ACTIONS(2367), + [sym__shortcode_open_escaped] = ACTIONS(2367), + [sym__shortcode_open] = ACTIONS(2367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2367), + [sym__cite_author_in_text] = ACTIONS(2367), + [sym__cite_suppress_author] = ACTIONS(2367), + [sym__strikeout_open] = ACTIONS(2367), + [sym__subscript_open] = ACTIONS(2367), + [sym__superscript_open] = ACTIONS(2367), + [sym__inline_note_start_token] = ACTIONS(2367), + [sym__strong_emphasis_open_star] = ACTIONS(2367), + [sym__strong_emphasis_open_underscore] = ACTIONS(2367), + [sym__emphasis_open_star] = ACTIONS(2367), + [sym__emphasis_open_underscore] = ACTIONS(2367), + [sym_inline_note_reference] = ACTIONS(2367), + [sym_html_element] = ACTIONS(2367), + [sym__pandoc_lt_str] = ACTIONS(2367), + [sym__pandoc_line_break] = ACTIONS(2367), + [sym_grid_table] = ACTIONS(2367), + [sym__caption_start] = ACTIONS(2367), + }, + [STATE(419)] = { + [sym_entity_reference] = ACTIONS(2557), + [sym_numeric_character_reference] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_BANG_LBRACK] = ACTIONS(2557), + [anon_sym_DOLLAR] = ACTIONS(2559), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [aux_sym_pandoc_str_token1] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2557), + [sym__whitespace] = ACTIONS(2557), + [sym__line_ending] = ACTIONS(2557), + [sym__soft_line_ending] = ACTIONS(2557), + [sym__block_close] = ACTIONS(2557), + [sym__block_quote_start] = ACTIONS(2557), + [sym_atx_h1_marker] = ACTIONS(2557), + [sym_atx_h2_marker] = ACTIONS(2557), + [sym_atx_h3_marker] = ACTIONS(2557), + [sym_atx_h4_marker] = ACTIONS(2557), + [sym_atx_h5_marker] = ACTIONS(2557), + [sym_atx_h6_marker] = ACTIONS(2557), + [sym__thematic_break] = ACTIONS(2557), + [sym__list_marker_minus] = ACTIONS(2557), + [sym__list_marker_plus] = ACTIONS(2557), + [sym__list_marker_star] = ACTIONS(2557), + [sym__list_marker_parenthesis] = ACTIONS(2557), + [sym__list_marker_dot] = ACTIONS(2557), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2557), + [sym__list_marker_example] = ACTIONS(2557), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2557), + [sym__fenced_code_block_start_backtick] = ACTIONS(2557), + [sym__minus_metadata_start] = ACTIONS(2557), + [sym__pipe_table_start] = ACTIONS(2557), + [sym__fenced_div_start] = ACTIONS(2557), + [sym_ref_id_specifier] = ACTIONS(2557), + [sym__code_span_start] = ACTIONS(2557), + [sym__html_comment] = ACTIONS(2557), + [sym__autolink] = ACTIONS(2557), + [sym__highlight_span_start] = ACTIONS(2557), + [sym__insert_span_start] = ACTIONS(2557), + [sym__delete_span_start] = ACTIONS(2557), + [sym__edit_comment_span_start] = ACTIONS(2557), + [sym__single_quote_span_open] = ACTIONS(2557), + [sym__double_quote_span_open] = ACTIONS(2557), + [sym__shortcode_open_escaped] = ACTIONS(2557), + [sym__shortcode_open] = ACTIONS(2557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2557), + [sym__cite_author_in_text] = ACTIONS(2557), + [sym__cite_suppress_author] = ACTIONS(2557), + [sym__strikeout_open] = ACTIONS(2557), + [sym__subscript_open] = ACTIONS(2557), + [sym__superscript_open] = ACTIONS(2557), + [sym__inline_note_start_token] = ACTIONS(2557), + [sym__strong_emphasis_open_star] = ACTIONS(2557), + [sym__strong_emphasis_open_underscore] = ACTIONS(2557), + [sym__emphasis_open_star] = ACTIONS(2557), + [sym__emphasis_open_underscore] = ACTIONS(2557), + [sym_inline_note_reference] = ACTIONS(2557), + [sym_html_element] = ACTIONS(2557), + [sym__pandoc_lt_str] = ACTIONS(2557), + [sym__pandoc_line_break] = ACTIONS(2557), + [sym_grid_table] = ACTIONS(2557), + [sym__caption_start] = ACTIONS(2557), + }, + [STATE(420)] = { + [sym_entity_reference] = ACTIONS(2373), + [sym_numeric_character_reference] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_BANG_LBRACK] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [aux_sym_pandoc_str_token1] = ACTIONS(2375), + [anon_sym_PIPE] = ACTIONS(2373), + [sym__whitespace] = ACTIONS(2373), + [sym__line_ending] = ACTIONS(2373), + [sym__soft_line_ending] = ACTIONS(2373), + [sym__block_close] = ACTIONS(2373), + [sym__block_quote_start] = ACTIONS(2373), + [sym_atx_h1_marker] = ACTIONS(2373), + [sym_atx_h2_marker] = ACTIONS(2373), + [sym_atx_h3_marker] = ACTIONS(2373), + [sym_atx_h4_marker] = ACTIONS(2373), + [sym_atx_h5_marker] = ACTIONS(2373), + [sym_atx_h6_marker] = ACTIONS(2373), + [sym__thematic_break] = ACTIONS(2373), + [sym__list_marker_minus] = ACTIONS(2373), + [sym__list_marker_plus] = ACTIONS(2373), + [sym__list_marker_star] = ACTIONS(2373), + [sym__list_marker_parenthesis] = ACTIONS(2373), + [sym__list_marker_dot] = ACTIONS(2373), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2373), + [sym__list_marker_example] = ACTIONS(2373), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2373), + [sym__fenced_code_block_start_backtick] = ACTIONS(2373), + [sym__minus_metadata_start] = ACTIONS(2373), + [sym__pipe_table_start] = ACTIONS(2373), + [sym__fenced_div_start] = ACTIONS(2373), + [sym_ref_id_specifier] = ACTIONS(2373), + [sym__code_span_start] = ACTIONS(2373), + [sym__html_comment] = ACTIONS(2373), + [sym__autolink] = ACTIONS(2373), + [sym__highlight_span_start] = ACTIONS(2373), + [sym__insert_span_start] = ACTIONS(2373), + [sym__delete_span_start] = ACTIONS(2373), + [sym__edit_comment_span_start] = ACTIONS(2373), + [sym__single_quote_span_open] = ACTIONS(2373), + [sym__double_quote_span_open] = ACTIONS(2373), + [sym__shortcode_open_escaped] = ACTIONS(2373), + [sym__shortcode_open] = ACTIONS(2373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2373), + [sym__cite_author_in_text] = ACTIONS(2373), + [sym__cite_suppress_author] = ACTIONS(2373), + [sym__strikeout_open] = ACTIONS(2373), + [sym__subscript_open] = ACTIONS(2373), + [sym__superscript_open] = ACTIONS(2373), + [sym__inline_note_start_token] = ACTIONS(2373), + [sym__strong_emphasis_open_star] = ACTIONS(2373), + [sym__strong_emphasis_open_underscore] = ACTIONS(2373), + [sym__emphasis_open_star] = ACTIONS(2373), + [sym__emphasis_open_underscore] = ACTIONS(2373), + [sym_inline_note_reference] = ACTIONS(2373), + [sym_html_element] = ACTIONS(2373), + [sym__pandoc_lt_str] = ACTIONS(2373), + [sym__pandoc_line_break] = ACTIONS(2373), + [sym_grid_table] = ACTIONS(2373), + [sym__caption_start] = ACTIONS(2373), + }, + [STATE(421)] = { + [sym_entity_reference] = ACTIONS(2561), + [sym_numeric_character_reference] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_BANG_LBRACK] = ACTIONS(2561), + [anon_sym_DOLLAR] = ACTIONS(2563), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2561), + [aux_sym_pandoc_str_token1] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(2561), + [sym__whitespace] = ACTIONS(2561), + [sym__line_ending] = ACTIONS(2561), + [sym__soft_line_ending] = ACTIONS(2561), + [sym__block_close] = ACTIONS(2561), + [sym__block_quote_start] = ACTIONS(2561), + [sym_atx_h1_marker] = ACTIONS(2561), + [sym_atx_h2_marker] = ACTIONS(2561), + [sym_atx_h3_marker] = ACTIONS(2561), + [sym_atx_h4_marker] = ACTIONS(2561), + [sym_atx_h5_marker] = ACTIONS(2561), + [sym_atx_h6_marker] = ACTIONS(2561), + [sym__thematic_break] = ACTIONS(2561), + [sym__list_marker_minus] = ACTIONS(2561), + [sym__list_marker_plus] = ACTIONS(2561), + [sym__list_marker_star] = ACTIONS(2561), + [sym__list_marker_parenthesis] = ACTIONS(2561), + [sym__list_marker_dot] = ACTIONS(2561), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_example] = ACTIONS(2561), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2561), + [sym__fenced_code_block_start_backtick] = ACTIONS(2561), + [sym__minus_metadata_start] = ACTIONS(2561), + [sym__pipe_table_start] = ACTIONS(2561), + [sym__fenced_div_start] = ACTIONS(2561), + [sym_ref_id_specifier] = ACTIONS(2561), + [sym__code_span_start] = ACTIONS(2561), + [sym__html_comment] = ACTIONS(2561), + [sym__autolink] = ACTIONS(2561), + [sym__highlight_span_start] = ACTIONS(2561), + [sym__insert_span_start] = ACTIONS(2561), + [sym__delete_span_start] = ACTIONS(2561), + [sym__edit_comment_span_start] = ACTIONS(2561), + [sym__single_quote_span_open] = ACTIONS(2561), + [sym__double_quote_span_open] = ACTIONS(2561), + [sym__shortcode_open_escaped] = ACTIONS(2561), + [sym__shortcode_open] = ACTIONS(2561), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2561), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2561), + [sym__cite_author_in_text] = ACTIONS(2561), + [sym__cite_suppress_author] = ACTIONS(2561), + [sym__strikeout_open] = ACTIONS(2561), + [sym__subscript_open] = ACTIONS(2561), + [sym__superscript_open] = ACTIONS(2561), + [sym__inline_note_start_token] = ACTIONS(2561), + [sym__strong_emphasis_open_star] = ACTIONS(2561), + [sym__strong_emphasis_open_underscore] = ACTIONS(2561), + [sym__emphasis_open_star] = ACTIONS(2561), + [sym__emphasis_open_underscore] = ACTIONS(2561), + [sym_inline_note_reference] = ACTIONS(2561), + [sym_html_element] = ACTIONS(2561), + [sym__pandoc_lt_str] = ACTIONS(2561), + [sym__pandoc_line_break] = ACTIONS(2561), + [sym_grid_table] = ACTIONS(2561), + [sym__caption_start] = ACTIONS(2561), + }, + [STATE(422)] = { + [sym_entity_reference] = ACTIONS(2277), + [sym_numeric_character_reference] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_BANG_LBRACK] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2277), + [aux_sym_pandoc_str_token1] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2277), + [sym__whitespace] = ACTIONS(2277), + [sym__line_ending] = ACTIONS(2277), + [sym__soft_line_ending] = ACTIONS(2277), + [sym__block_close] = ACTIONS(2277), + [sym__block_quote_start] = ACTIONS(2277), + [sym_atx_h1_marker] = ACTIONS(2277), + [sym_atx_h2_marker] = ACTIONS(2277), + [sym_atx_h3_marker] = ACTIONS(2277), + [sym_atx_h4_marker] = ACTIONS(2277), + [sym_atx_h5_marker] = ACTIONS(2277), + [sym_atx_h6_marker] = ACTIONS(2277), + [sym__thematic_break] = ACTIONS(2277), + [sym__list_marker_minus] = ACTIONS(2277), + [sym__list_marker_plus] = ACTIONS(2277), + [sym__list_marker_star] = ACTIONS(2277), + [sym__list_marker_parenthesis] = ACTIONS(2277), + [sym__list_marker_dot] = ACTIONS(2277), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2277), + [sym__list_marker_example] = ACTIONS(2277), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2277), + [sym__fenced_code_block_start_backtick] = ACTIONS(2277), + [sym__minus_metadata_start] = ACTIONS(2277), + [sym__pipe_table_start] = ACTIONS(2277), + [sym__fenced_div_start] = ACTIONS(2277), + [sym_ref_id_specifier] = ACTIONS(2277), + [sym__code_span_start] = ACTIONS(2277), + [sym__html_comment] = ACTIONS(2277), + [sym__autolink] = ACTIONS(2277), + [sym__highlight_span_start] = ACTIONS(2277), + [sym__insert_span_start] = ACTIONS(2277), + [sym__delete_span_start] = ACTIONS(2277), + [sym__edit_comment_span_start] = ACTIONS(2277), + [sym__single_quote_span_open] = ACTIONS(2277), + [sym__double_quote_span_open] = ACTIONS(2277), + [sym__shortcode_open_escaped] = ACTIONS(2277), + [sym__shortcode_open] = ACTIONS(2277), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2277), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2277), + [sym__cite_author_in_text] = ACTIONS(2277), + [sym__cite_suppress_author] = ACTIONS(2277), + [sym__strikeout_open] = ACTIONS(2277), + [sym__subscript_open] = ACTIONS(2277), + [sym__superscript_open] = ACTIONS(2277), + [sym__inline_note_start_token] = ACTIONS(2277), + [sym__strong_emphasis_open_star] = ACTIONS(2277), + [sym__strong_emphasis_open_underscore] = ACTIONS(2277), + [sym__emphasis_open_star] = ACTIONS(2277), + [sym__emphasis_open_underscore] = ACTIONS(2277), + [sym_inline_note_reference] = ACTIONS(2277), + [sym_html_element] = ACTIONS(2277), + [sym__pandoc_lt_str] = ACTIONS(2277), + [sym__pandoc_line_break] = ACTIONS(2277), + [sym_grid_table] = ACTIONS(2277), + [sym__caption_start] = ACTIONS(2277), + }, + [STATE(423)] = { + [sym_entity_reference] = ACTIONS(2565), + [sym_numeric_character_reference] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2565), + [anon_sym_BANG_LBRACK] = ACTIONS(2565), + [anon_sym_DOLLAR] = ACTIONS(2567), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), + [anon_sym_LBRACE] = ACTIONS(2565), + [aux_sym_pandoc_str_token1] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2565), + [sym__whitespace] = ACTIONS(2565), + [sym__line_ending] = ACTIONS(2565), + [sym__soft_line_ending] = ACTIONS(2565), + [sym__block_close] = ACTIONS(2565), + [sym__block_quote_start] = ACTIONS(2565), + [sym_atx_h1_marker] = ACTIONS(2565), + [sym_atx_h2_marker] = ACTIONS(2565), + [sym_atx_h3_marker] = ACTIONS(2565), + [sym_atx_h4_marker] = ACTIONS(2565), + [sym_atx_h5_marker] = ACTIONS(2565), + [sym_atx_h6_marker] = ACTIONS(2565), + [sym__thematic_break] = ACTIONS(2565), + [sym__list_marker_minus] = ACTIONS(2565), + [sym__list_marker_plus] = ACTIONS(2565), + [sym__list_marker_star] = ACTIONS(2565), + [sym__list_marker_parenthesis] = ACTIONS(2565), + [sym__list_marker_dot] = ACTIONS(2565), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_example] = ACTIONS(2565), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2565), + [sym__fenced_code_block_start_backtick] = ACTIONS(2565), + [sym__minus_metadata_start] = ACTIONS(2565), + [sym__pipe_table_start] = ACTIONS(2565), + [sym__fenced_div_start] = ACTIONS(2565), + [sym_ref_id_specifier] = ACTIONS(2565), + [sym__code_span_start] = ACTIONS(2565), + [sym__html_comment] = ACTIONS(2565), + [sym__autolink] = ACTIONS(2565), + [sym__highlight_span_start] = ACTIONS(2565), + [sym__insert_span_start] = ACTIONS(2565), + [sym__delete_span_start] = ACTIONS(2565), + [sym__edit_comment_span_start] = ACTIONS(2565), + [sym__single_quote_span_open] = ACTIONS(2565), + [sym__double_quote_span_open] = ACTIONS(2565), + [sym__shortcode_open_escaped] = ACTIONS(2565), + [sym__shortcode_open] = ACTIONS(2565), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2565), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2565), + [sym__cite_author_in_text] = ACTIONS(2565), + [sym__cite_suppress_author] = ACTIONS(2565), + [sym__strikeout_open] = ACTIONS(2565), + [sym__subscript_open] = ACTIONS(2565), + [sym__superscript_open] = ACTIONS(2565), + [sym__inline_note_start_token] = ACTIONS(2565), + [sym__strong_emphasis_open_star] = ACTIONS(2565), + [sym__strong_emphasis_open_underscore] = ACTIONS(2565), + [sym__emphasis_open_star] = ACTIONS(2565), + [sym__emphasis_open_underscore] = ACTIONS(2565), + [sym_inline_note_reference] = ACTIONS(2565), + [sym_html_element] = ACTIONS(2565), + [sym__pandoc_lt_str] = ACTIONS(2565), + [sym__pandoc_line_break] = ACTIONS(2565), + [sym_grid_table] = ACTIONS(2565), + [sym__caption_start] = ACTIONS(2565), + }, + [STATE(424)] = { + [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), + [sym__whitespace] = ACTIONS(2385), + [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(2385), + [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(2385), + [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_start] = 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__pandoc_lt_str] = ACTIONS(2385), + [sym__pandoc_line_break] = ACTIONS(2385), + [sym_grid_table] = ACTIONS(2385), + [sym__caption_start] = ACTIONS(2385), + }, + [STATE(425)] = { + [sym_entity_reference] = ACTIONS(2669), + [sym_numeric_character_reference] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_BANG_LBRACK] = ACTIONS(2669), + [anon_sym_DOLLAR] = ACTIONS(2671), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [aux_sym_pandoc_str_token1] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2669), + [sym__whitespace] = ACTIONS(2669), + [sym__line_ending] = ACTIONS(2669), + [sym__soft_line_ending] = ACTIONS(2669), + [sym__block_close] = ACTIONS(2669), + [sym__block_quote_start] = ACTIONS(2669), + [sym_atx_h1_marker] = ACTIONS(2669), + [sym_atx_h2_marker] = ACTIONS(2669), + [sym_atx_h3_marker] = ACTIONS(2669), + [sym_atx_h4_marker] = ACTIONS(2669), + [sym_atx_h5_marker] = ACTIONS(2669), + [sym_atx_h6_marker] = ACTIONS(2669), + [sym__thematic_break] = ACTIONS(2669), + [sym__list_marker_minus] = ACTIONS(2669), + [sym__list_marker_plus] = ACTIONS(2669), + [sym__list_marker_star] = ACTIONS(2669), + [sym__list_marker_parenthesis] = ACTIONS(2669), + [sym__list_marker_dot] = ACTIONS(2669), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_example] = ACTIONS(2669), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2669), + [sym__fenced_code_block_start_backtick] = ACTIONS(2669), + [sym__minus_metadata_start] = 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_lt_str] = ACTIONS(2669), + [sym__pandoc_line_break] = ACTIONS(2669), + [sym_grid_table] = ACTIONS(2669), + [sym__caption_start] = ACTIONS(2669), + }, + [STATE(426)] = { + [sym_entity_reference] = ACTIONS(2673), + [sym_numeric_character_reference] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_BANG_LBRACK] = ACTIONS(2673), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2673), + [aux_sym_pandoc_str_token1] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2673), + [sym__whitespace] = ACTIONS(2673), + [sym__line_ending] = ACTIONS(2673), + [sym__soft_line_ending] = ACTIONS(2673), + [sym__block_close] = ACTIONS(2673), + [sym__block_quote_start] = ACTIONS(2673), + [sym_atx_h1_marker] = ACTIONS(2673), + [sym_atx_h2_marker] = ACTIONS(2673), + [sym_atx_h3_marker] = ACTIONS(2673), + [sym_atx_h4_marker] = ACTIONS(2673), + [sym_atx_h5_marker] = ACTIONS(2673), + [sym_atx_h6_marker] = ACTIONS(2673), + [sym__thematic_break] = ACTIONS(2673), + [sym__list_marker_minus] = ACTIONS(2673), + [sym__list_marker_plus] = ACTIONS(2673), + [sym__list_marker_star] = ACTIONS(2673), + [sym__list_marker_parenthesis] = ACTIONS(2673), + [sym__list_marker_dot] = ACTIONS(2673), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_example] = ACTIONS(2673), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2673), + [sym__fenced_code_block_start_backtick] = ACTIONS(2673), + [sym__minus_metadata_start] = ACTIONS(2673), + [sym__pipe_table_start] = ACTIONS(2673), + [sym__fenced_div_start] = ACTIONS(2673), + [sym_ref_id_specifier] = ACTIONS(2673), + [sym__code_span_start] = ACTIONS(2673), + [sym__html_comment] = ACTIONS(2673), + [sym__autolink] = ACTIONS(2673), + [sym__highlight_span_start] = ACTIONS(2673), + [sym__insert_span_start] = ACTIONS(2673), + [sym__delete_span_start] = ACTIONS(2673), + [sym__edit_comment_span_start] = ACTIONS(2673), + [sym__single_quote_span_open] = ACTIONS(2673), + [sym__double_quote_span_open] = ACTIONS(2673), + [sym__shortcode_open_escaped] = ACTIONS(2673), + [sym__shortcode_open] = ACTIONS(2673), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2673), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2673), + [sym__cite_author_in_text] = ACTIONS(2673), + [sym__cite_suppress_author] = ACTIONS(2673), + [sym__strikeout_open] = ACTIONS(2673), + [sym__subscript_open] = ACTIONS(2673), + [sym__superscript_open] = ACTIONS(2673), + [sym__inline_note_start_token] = ACTIONS(2673), + [sym__strong_emphasis_open_star] = ACTIONS(2673), + [sym__strong_emphasis_open_underscore] = ACTIONS(2673), + [sym__emphasis_open_star] = ACTIONS(2673), + [sym__emphasis_open_underscore] = ACTIONS(2673), + [sym_inline_note_reference] = ACTIONS(2673), + [sym_html_element] = ACTIONS(2673), + [sym__pandoc_lt_str] = ACTIONS(2673), + [sym__pandoc_line_break] = ACTIONS(2673), + [sym_grid_table] = ACTIONS(2673), + [sym__caption_start] = ACTIONS(2673), + }, + [STATE(427)] = { + [sym_entity_reference] = ACTIONS(2677), + [sym_numeric_character_reference] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_BANG_LBRACK] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2677), + [aux_sym_pandoc_str_token1] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2677), + [sym__whitespace] = ACTIONS(2677), + [sym__line_ending] = ACTIONS(2677), + [sym__soft_line_ending] = ACTIONS(2677), + [sym__block_close] = ACTIONS(2677), + [sym__block_quote_start] = ACTIONS(2677), + [sym_atx_h1_marker] = ACTIONS(2677), + [sym_atx_h2_marker] = ACTIONS(2677), + [sym_atx_h3_marker] = ACTIONS(2677), + [sym_atx_h4_marker] = ACTIONS(2677), + [sym_atx_h5_marker] = ACTIONS(2677), + [sym_atx_h6_marker] = ACTIONS(2677), + [sym__thematic_break] = ACTIONS(2677), + [sym__list_marker_minus] = ACTIONS(2677), + [sym__list_marker_plus] = ACTIONS(2677), + [sym__list_marker_star] = ACTIONS(2677), + [sym__list_marker_parenthesis] = ACTIONS(2677), + [sym__list_marker_dot] = ACTIONS(2677), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_example] = ACTIONS(2677), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2677), + [sym__fenced_code_block_start_backtick] = ACTIONS(2677), + [sym__minus_metadata_start] = ACTIONS(2677), + [sym__pipe_table_start] = ACTIONS(2677), + [sym__fenced_div_start] = ACTIONS(2677), + [sym_ref_id_specifier] = ACTIONS(2677), + [sym__code_span_start] = ACTIONS(2677), + [sym__html_comment] = ACTIONS(2677), + [sym__autolink] = ACTIONS(2677), + [sym__highlight_span_start] = ACTIONS(2677), + [sym__insert_span_start] = ACTIONS(2677), + [sym__delete_span_start] = ACTIONS(2677), + [sym__edit_comment_span_start] = ACTIONS(2677), + [sym__single_quote_span_open] = ACTIONS(2677), + [sym__double_quote_span_open] = ACTIONS(2677), + [sym__shortcode_open_escaped] = ACTIONS(2677), + [sym__shortcode_open] = ACTIONS(2677), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2677), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2677), + [sym__cite_author_in_text] = ACTIONS(2677), + [sym__cite_suppress_author] = ACTIONS(2677), + [sym__strikeout_open] = ACTIONS(2677), + [sym__subscript_open] = ACTIONS(2677), + [sym__superscript_open] = ACTIONS(2677), + [sym__inline_note_start_token] = ACTIONS(2677), + [sym__strong_emphasis_open_star] = ACTIONS(2677), + [sym__strong_emphasis_open_underscore] = ACTIONS(2677), + [sym__emphasis_open_star] = ACTIONS(2677), + [sym__emphasis_open_underscore] = ACTIONS(2677), + [sym_inline_note_reference] = ACTIONS(2677), + [sym_html_element] = ACTIONS(2677), + [sym__pandoc_lt_str] = ACTIONS(2677), + [sym__pandoc_line_break] = ACTIONS(2677), + [sym_grid_table] = ACTIONS(2677), + [sym__caption_start] = ACTIONS(2677), + }, + [STATE(428)] = { + [sym_pipe_table_cell] = STATE(2972), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2963), + [sym__line_ending] = ACTIONS(3075), + [sym__eof] = ACTIONS(3075), + [sym__pipe_table_line_ending] = ACTIONS(3075), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pipe_table_delimiter] = ACTIONS(2967), + [sym__pandoc_line_break] = ACTIONS(2140), + }, + [STATE(429)] = { [sym_entity_reference] = ACTIONS(2681), [sym_numeric_character_reference] = ACTIONS(2681), [anon_sym_LBRACK] = ACTIONS(2681), @@ -61290,7 +63914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__minus_metadata_start] = ACTIONS(2681), [sym__pipe_table_start] = ACTIONS(2681), [sym__fenced_div_start] = ACTIONS(2681), [sym_ref_id_specifier] = ACTIONS(2681), @@ -61324,76 +63948,1663 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2681), [sym__caption_start] = ACTIONS(2681), }, - [STATE(395)] = { - [ts_builtin_sym_end] = ACTIONS(2379), - [sym_entity_reference] = ACTIONS(2379), - [sym_numeric_character_reference] = ACTIONS(2379), - [anon_sym_LBRACK] = ACTIONS(2379), - [anon_sym_BANG_LBRACK] = ACTIONS(2379), - [anon_sym_DOLLAR] = ACTIONS(2381), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [aux_sym_pandoc_str_token1] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2379), - [sym__whitespace] = ACTIONS(2379), - [sym__line_ending] = ACTIONS(2379), - [sym__soft_line_ending] = ACTIONS(2379), - [sym__block_quote_start] = ACTIONS(2379), - [sym_atx_h1_marker] = ACTIONS(2379), - [sym_atx_h2_marker] = ACTIONS(2379), - [sym_atx_h3_marker] = ACTIONS(2379), - [sym_atx_h4_marker] = ACTIONS(2379), - [sym_atx_h5_marker] = ACTIONS(2379), - [sym_atx_h6_marker] = ACTIONS(2379), - [sym__thematic_break] = ACTIONS(2379), - [sym__list_marker_minus] = ACTIONS(2379), - [sym__list_marker_plus] = ACTIONS(2379), - [sym__list_marker_star] = ACTIONS(2379), - [sym__list_marker_parenthesis] = ACTIONS(2379), - [sym__list_marker_dot] = ACTIONS(2379), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2379), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2379), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2379), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2379), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2379), - [sym__list_marker_example] = ACTIONS(2379), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2379), - [sym__fenced_code_block_start_backtick] = ACTIONS(2379), - [sym_minus_metadata] = ACTIONS(2379), - [sym__pipe_table_start] = ACTIONS(2379), - [sym__fenced_div_start] = ACTIONS(2379), - [sym_ref_id_specifier] = ACTIONS(2379), - [sym__code_span_start] = ACTIONS(2379), - [sym__html_comment] = ACTIONS(2379), - [sym__autolink] = ACTIONS(2379), - [sym__highlight_span_start] = ACTIONS(2379), - [sym__insert_span_start] = ACTIONS(2379), - [sym__delete_span_start] = ACTIONS(2379), - [sym__edit_comment_span_start] = ACTIONS(2379), - [sym__single_quote_span_open] = ACTIONS(2379), - [sym__double_quote_span_open] = ACTIONS(2379), - [sym__shortcode_open_escaped] = ACTIONS(2379), - [sym__shortcode_open] = ACTIONS(2379), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2379), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2379), - [sym__cite_author_in_text] = ACTIONS(2379), - [sym__cite_suppress_author] = ACTIONS(2379), - [sym__strikeout_open] = ACTIONS(2379), - [sym__subscript_open] = ACTIONS(2379), - [sym__superscript_open] = ACTIONS(2379), - [sym__inline_note_start_token] = ACTIONS(2379), - [sym__strong_emphasis_open_star] = ACTIONS(2379), - [sym__strong_emphasis_open_underscore] = ACTIONS(2379), - [sym__emphasis_open_star] = ACTIONS(2379), - [sym__emphasis_open_underscore] = ACTIONS(2379), - [sym_inline_note_reference] = ACTIONS(2379), - [sym_html_element] = ACTIONS(2379), - [sym__pandoc_lt_str] = ACTIONS(2379), - [sym__pandoc_line_break] = ACTIONS(2379), - [sym_grid_table] = ACTIONS(2379), - [sym__caption_start] = ACTIONS(2379), + [STATE(430)] = { + [sym_entity_reference] = ACTIONS(2685), + [sym_numeric_character_reference] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_BANG_LBRACK] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [aux_sym_pandoc_str_token1] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2685), + [sym__whitespace] = ACTIONS(2685), + [sym__line_ending] = ACTIONS(2685), + [sym__soft_line_ending] = ACTIONS(2685), + [sym__block_close] = ACTIONS(2685), + [sym__block_quote_start] = ACTIONS(2685), + [sym_atx_h1_marker] = ACTIONS(2685), + [sym_atx_h2_marker] = ACTIONS(2685), + [sym_atx_h3_marker] = ACTIONS(2685), + [sym_atx_h4_marker] = ACTIONS(2685), + [sym_atx_h5_marker] = ACTIONS(2685), + [sym_atx_h6_marker] = ACTIONS(2685), + [sym__thematic_break] = ACTIONS(2685), + [sym__list_marker_minus] = ACTIONS(2685), + [sym__list_marker_plus] = ACTIONS(2685), + [sym__list_marker_star] = ACTIONS(2685), + [sym__list_marker_parenthesis] = ACTIONS(2685), + [sym__list_marker_dot] = ACTIONS(2685), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_example] = ACTIONS(2685), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2685), + [sym__fenced_code_block_start_backtick] = ACTIONS(2685), + [sym__minus_metadata_start] = ACTIONS(2685), + [sym__pipe_table_start] = ACTIONS(2685), + [sym__fenced_div_start] = ACTIONS(2685), + [sym_ref_id_specifier] = ACTIONS(2685), + [sym__code_span_start] = ACTIONS(2685), + [sym__html_comment] = ACTIONS(2685), + [sym__autolink] = ACTIONS(2685), + [sym__highlight_span_start] = ACTIONS(2685), + [sym__insert_span_start] = ACTIONS(2685), + [sym__delete_span_start] = ACTIONS(2685), + [sym__edit_comment_span_start] = ACTIONS(2685), + [sym__single_quote_span_open] = ACTIONS(2685), + [sym__double_quote_span_open] = ACTIONS(2685), + [sym__shortcode_open_escaped] = ACTIONS(2685), + [sym__shortcode_open] = ACTIONS(2685), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2685), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2685), + [sym__cite_author_in_text] = ACTIONS(2685), + [sym__cite_suppress_author] = ACTIONS(2685), + [sym__strikeout_open] = ACTIONS(2685), + [sym__subscript_open] = ACTIONS(2685), + [sym__superscript_open] = ACTIONS(2685), + [sym__inline_note_start_token] = ACTIONS(2685), + [sym__strong_emphasis_open_star] = ACTIONS(2685), + [sym__strong_emphasis_open_underscore] = ACTIONS(2685), + [sym__emphasis_open_star] = ACTIONS(2685), + [sym__emphasis_open_underscore] = ACTIONS(2685), + [sym_inline_note_reference] = ACTIONS(2685), + [sym_html_element] = ACTIONS(2685), + [sym__pandoc_lt_str] = ACTIONS(2685), + [sym__pandoc_line_break] = ACTIONS(2685), + [sym_grid_table] = ACTIONS(2685), + [sym__caption_start] = ACTIONS(2685), }, - [STATE(396)] = { + [STATE(431)] = { + [sym_entity_reference] = ACTIONS(2689), + [sym_numeric_character_reference] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_BANG_LBRACK] = ACTIONS(2689), + [anon_sym_DOLLAR] = ACTIONS(2691), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [aux_sym_pandoc_str_token1] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2689), + [sym__whitespace] = ACTIONS(2689), + [sym__line_ending] = ACTIONS(2689), + [sym__soft_line_ending] = ACTIONS(2689), + [sym__block_close] = ACTIONS(2689), + [sym__block_quote_start] = ACTIONS(2689), + [sym_atx_h1_marker] = ACTIONS(2689), + [sym_atx_h2_marker] = ACTIONS(2689), + [sym_atx_h3_marker] = ACTIONS(2689), + [sym_atx_h4_marker] = ACTIONS(2689), + [sym_atx_h5_marker] = ACTIONS(2689), + [sym_atx_h6_marker] = ACTIONS(2689), + [sym__thematic_break] = ACTIONS(2689), + [sym__list_marker_minus] = ACTIONS(2689), + [sym__list_marker_plus] = ACTIONS(2689), + [sym__list_marker_star] = ACTIONS(2689), + [sym__list_marker_parenthesis] = ACTIONS(2689), + [sym__list_marker_dot] = ACTIONS(2689), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_example] = ACTIONS(2689), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2689), + [sym__fenced_code_block_start_backtick] = ACTIONS(2689), + [sym__minus_metadata_start] = ACTIONS(2689), + [sym__pipe_table_start] = ACTIONS(2689), + [sym__fenced_div_start] = ACTIONS(2689), + [sym_ref_id_specifier] = ACTIONS(2689), + [sym__code_span_start] = ACTIONS(2689), + [sym__html_comment] = ACTIONS(2689), + [sym__autolink] = ACTIONS(2689), + [sym__highlight_span_start] = ACTIONS(2689), + [sym__insert_span_start] = ACTIONS(2689), + [sym__delete_span_start] = ACTIONS(2689), + [sym__edit_comment_span_start] = ACTIONS(2689), + [sym__single_quote_span_open] = ACTIONS(2689), + [sym__double_quote_span_open] = ACTIONS(2689), + [sym__shortcode_open_escaped] = ACTIONS(2689), + [sym__shortcode_open] = ACTIONS(2689), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2689), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2689), + [sym__cite_author_in_text] = ACTIONS(2689), + [sym__cite_suppress_author] = ACTIONS(2689), + [sym__strikeout_open] = ACTIONS(2689), + [sym__subscript_open] = ACTIONS(2689), + [sym__superscript_open] = ACTIONS(2689), + [sym__inline_note_start_token] = ACTIONS(2689), + [sym__strong_emphasis_open_star] = ACTIONS(2689), + [sym__strong_emphasis_open_underscore] = ACTIONS(2689), + [sym__emphasis_open_star] = ACTIONS(2689), + [sym__emphasis_open_underscore] = ACTIONS(2689), + [sym_inline_note_reference] = ACTIONS(2689), + [sym_html_element] = ACTIONS(2689), + [sym__pandoc_lt_str] = ACTIONS(2689), + [sym__pandoc_line_break] = ACTIONS(2689), + [sym_grid_table] = ACTIONS(2689), + [sym__caption_start] = ACTIONS(2689), + }, + [STATE(432)] = { + [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), + [sym__whitespace] = ACTIONS(2693), + [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_start] = 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_lt_str] = ACTIONS(2693), + [sym__pandoc_line_break] = ACTIONS(2693), + [sym_grid_table] = ACTIONS(2693), + [sym__caption_start] = ACTIONS(2693), + }, + [STATE(433)] = { + [sym_entity_reference] = ACTIONS(2697), + [sym_numeric_character_reference] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_BANG_LBRACK] = ACTIONS(2697), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2697), + [aux_sym_pandoc_str_token1] = ACTIONS(2699), + [anon_sym_PIPE] = ACTIONS(2697), + [sym__whitespace] = ACTIONS(2697), + [sym__line_ending] = ACTIONS(2697), + [sym__soft_line_ending] = ACTIONS(2697), + [sym__block_close] = ACTIONS(2697), + [sym__block_quote_start] = ACTIONS(2697), + [sym_atx_h1_marker] = ACTIONS(2697), + [sym_atx_h2_marker] = ACTIONS(2697), + [sym_atx_h3_marker] = ACTIONS(2697), + [sym_atx_h4_marker] = ACTIONS(2697), + [sym_atx_h5_marker] = ACTIONS(2697), + [sym_atx_h6_marker] = ACTIONS(2697), + [sym__thematic_break] = ACTIONS(2697), + [sym__list_marker_minus] = ACTIONS(2697), + [sym__list_marker_plus] = ACTIONS(2697), + [sym__list_marker_star] = ACTIONS(2697), + [sym__list_marker_parenthesis] = ACTIONS(2697), + [sym__list_marker_dot] = ACTIONS(2697), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_example] = ACTIONS(2697), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2697), + [sym__fenced_code_block_start_backtick] = ACTIONS(2697), + [sym__minus_metadata_start] = ACTIONS(2697), + [sym__pipe_table_start] = ACTIONS(2697), + [sym__fenced_div_start] = ACTIONS(2697), + [sym_ref_id_specifier] = ACTIONS(2697), + [sym__code_span_start] = ACTIONS(2697), + [sym__html_comment] = ACTIONS(2697), + [sym__autolink] = ACTIONS(2697), + [sym__highlight_span_start] = ACTIONS(2697), + [sym__insert_span_start] = ACTIONS(2697), + [sym__delete_span_start] = ACTIONS(2697), + [sym__edit_comment_span_start] = ACTIONS(2697), + [sym__single_quote_span_open] = ACTIONS(2697), + [sym__double_quote_span_open] = ACTIONS(2697), + [sym__shortcode_open_escaped] = ACTIONS(2697), + [sym__shortcode_open] = ACTIONS(2697), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2697), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2697), + [sym__cite_author_in_text] = ACTIONS(2697), + [sym__cite_suppress_author] = ACTIONS(2697), + [sym__strikeout_open] = ACTIONS(2697), + [sym__subscript_open] = ACTIONS(2697), + [sym__superscript_open] = ACTIONS(2697), + [sym__inline_note_start_token] = ACTIONS(2697), + [sym__strong_emphasis_open_star] = ACTIONS(2697), + [sym__strong_emphasis_open_underscore] = ACTIONS(2697), + [sym__emphasis_open_star] = ACTIONS(2697), + [sym__emphasis_open_underscore] = ACTIONS(2697), + [sym_inline_note_reference] = ACTIONS(2697), + [sym_html_element] = ACTIONS(2697), + [sym__pandoc_lt_str] = ACTIONS(2697), + [sym__pandoc_line_break] = ACTIONS(2697), + [sym_grid_table] = ACTIONS(2697), + [sym__caption_start] = ACTIONS(2697), + }, + [STATE(434)] = { + [sym_entity_reference] = ACTIONS(2701), + [sym_numeric_character_reference] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_BANG_LBRACK] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2703), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2701), + [aux_sym_pandoc_str_token1] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2701), + [sym__whitespace] = ACTIONS(2701), + [sym__line_ending] = ACTIONS(2701), + [sym__soft_line_ending] = ACTIONS(2701), + [sym__block_close] = ACTIONS(2701), + [sym__block_quote_start] = ACTIONS(2701), + [sym_atx_h1_marker] = ACTIONS(2701), + [sym_atx_h2_marker] = ACTIONS(2701), + [sym_atx_h3_marker] = ACTIONS(2701), + [sym_atx_h4_marker] = ACTIONS(2701), + [sym_atx_h5_marker] = ACTIONS(2701), + [sym_atx_h6_marker] = ACTIONS(2701), + [sym__thematic_break] = ACTIONS(2701), + [sym__list_marker_minus] = ACTIONS(2701), + [sym__list_marker_plus] = ACTIONS(2701), + [sym__list_marker_star] = ACTIONS(2701), + [sym__list_marker_parenthesis] = ACTIONS(2701), + [sym__list_marker_dot] = ACTIONS(2701), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_example] = ACTIONS(2701), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2701), + [sym__fenced_code_block_start_backtick] = ACTIONS(2701), + [sym__minus_metadata_start] = ACTIONS(2701), + [sym__pipe_table_start] = ACTIONS(2701), + [sym__fenced_div_start] = ACTIONS(2701), + [sym_ref_id_specifier] = ACTIONS(2701), + [sym__code_span_start] = ACTIONS(2701), + [sym__html_comment] = ACTIONS(2701), + [sym__autolink] = ACTIONS(2701), + [sym__highlight_span_start] = ACTIONS(2701), + [sym__insert_span_start] = ACTIONS(2701), + [sym__delete_span_start] = ACTIONS(2701), + [sym__edit_comment_span_start] = ACTIONS(2701), + [sym__single_quote_span_open] = ACTIONS(2701), + [sym__double_quote_span_open] = ACTIONS(2701), + [sym__shortcode_open_escaped] = ACTIONS(2701), + [sym__shortcode_open] = ACTIONS(2701), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2701), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2701), + [sym__cite_author_in_text] = ACTIONS(2701), + [sym__cite_suppress_author] = ACTIONS(2701), + [sym__strikeout_open] = ACTIONS(2701), + [sym__subscript_open] = ACTIONS(2701), + [sym__superscript_open] = ACTIONS(2701), + [sym__inline_note_start_token] = ACTIONS(2701), + [sym__strong_emphasis_open_star] = ACTIONS(2701), + [sym__strong_emphasis_open_underscore] = ACTIONS(2701), + [sym__emphasis_open_star] = ACTIONS(2701), + [sym__emphasis_open_underscore] = ACTIONS(2701), + [sym_inline_note_reference] = ACTIONS(2701), + [sym_html_element] = ACTIONS(2701), + [sym__pandoc_lt_str] = ACTIONS(2701), + [sym__pandoc_line_break] = ACTIONS(2701), + [sym_grid_table] = ACTIONS(2701), + [sym__caption_start] = ACTIONS(2701), + }, + [STATE(435)] = { + [sym_entity_reference] = ACTIONS(2611), + [sym_numeric_character_reference] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_BANG_LBRACK] = ACTIONS(2611), + [anon_sym_DOLLAR] = ACTIONS(2613), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [aux_sym_pandoc_str_token1] = ACTIONS(2613), + [anon_sym_PIPE] = ACTIONS(2611), + [sym__whitespace] = ACTIONS(2611), + [sym__line_ending] = ACTIONS(2611), + [sym__soft_line_ending] = ACTIONS(2611), + [sym__block_close] = ACTIONS(2611), + [sym__block_quote_start] = ACTIONS(2611), + [sym_atx_h1_marker] = ACTIONS(2611), + [sym_atx_h2_marker] = ACTIONS(2611), + [sym_atx_h3_marker] = ACTIONS(2611), + [sym_atx_h4_marker] = ACTIONS(2611), + [sym_atx_h5_marker] = ACTIONS(2611), + [sym_atx_h6_marker] = ACTIONS(2611), + [sym__thematic_break] = ACTIONS(2611), + [sym__list_marker_minus] = ACTIONS(2611), + [sym__list_marker_plus] = ACTIONS(2611), + [sym__list_marker_star] = ACTIONS(2611), + [sym__list_marker_parenthesis] = ACTIONS(2611), + [sym__list_marker_dot] = ACTIONS(2611), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2611), + [sym__list_marker_example] = ACTIONS(2611), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2611), + [sym__fenced_code_block_start_backtick] = ACTIONS(2611), + [sym__minus_metadata_start] = ACTIONS(2611), + [sym__pipe_table_start] = ACTIONS(2611), + [sym__fenced_div_start] = ACTIONS(2611), + [sym_ref_id_specifier] = ACTIONS(2611), + [sym__code_span_start] = ACTIONS(2611), + [sym__html_comment] = ACTIONS(2611), + [sym__autolink] = ACTIONS(2611), + [sym__highlight_span_start] = ACTIONS(2611), + [sym__insert_span_start] = ACTIONS(2611), + [sym__delete_span_start] = ACTIONS(2611), + [sym__edit_comment_span_start] = ACTIONS(2611), + [sym__single_quote_span_open] = ACTIONS(2611), + [sym__double_quote_span_open] = ACTIONS(2611), + [sym__shortcode_open_escaped] = ACTIONS(2611), + [sym__shortcode_open] = ACTIONS(2611), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2611), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2611), + [sym__cite_author_in_text] = ACTIONS(2611), + [sym__cite_suppress_author] = ACTIONS(2611), + [sym__strikeout_open] = ACTIONS(2611), + [sym__subscript_open] = ACTIONS(2611), + [sym__superscript_open] = ACTIONS(2611), + [sym__inline_note_start_token] = ACTIONS(2611), + [sym__strong_emphasis_open_star] = ACTIONS(2611), + [sym__strong_emphasis_open_underscore] = ACTIONS(2611), + [sym__emphasis_open_star] = ACTIONS(2611), + [sym__emphasis_open_underscore] = ACTIONS(2611), + [sym_inline_note_reference] = ACTIONS(2611), + [sym_html_element] = ACTIONS(2611), + [sym__pandoc_lt_str] = ACTIONS(2611), + [sym__pandoc_line_break] = ACTIONS(2611), + [sym_grid_table] = ACTIONS(2611), + [sym__caption_start] = ACTIONS(2611), + }, + [STATE(436)] = { + [ts_builtin_sym_end] = ACTIONS(2361), + [sym_entity_reference] = ACTIONS(2361), + [sym_numeric_character_reference] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_BANG_LBRACK] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2361), + [aux_sym_pandoc_str_token1] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2361), + [sym__whitespace] = ACTIONS(2361), + [sym__line_ending] = ACTIONS(2361), + [sym__soft_line_ending] = ACTIONS(2361), + [sym__block_quote_start] = ACTIONS(2361), + [sym_atx_h1_marker] = ACTIONS(2361), + [sym_atx_h2_marker] = ACTIONS(2361), + [sym_atx_h3_marker] = ACTIONS(2361), + [sym_atx_h4_marker] = ACTIONS(2361), + [sym_atx_h5_marker] = ACTIONS(2361), + [sym_atx_h6_marker] = ACTIONS(2361), + [sym__thematic_break] = ACTIONS(2361), + [sym__list_marker_minus] = ACTIONS(2361), + [sym__list_marker_plus] = ACTIONS(2361), + [sym__list_marker_star] = ACTIONS(2361), + [sym__list_marker_parenthesis] = ACTIONS(2361), + [sym__list_marker_dot] = ACTIONS(2361), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2361), + [sym__list_marker_example] = ACTIONS(2361), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2361), + [sym__fenced_code_block_start_backtick] = ACTIONS(2361), + [sym__minus_metadata_start] = ACTIONS(2361), + [sym__pipe_table_start] = ACTIONS(2361), + [sym__fenced_div_start] = ACTIONS(2361), + [sym_ref_id_specifier] = ACTIONS(2361), + [sym__code_span_start] = ACTIONS(2361), + [sym__html_comment] = ACTIONS(2361), + [sym__autolink] = ACTIONS(2361), + [sym__highlight_span_start] = ACTIONS(2361), + [sym__insert_span_start] = ACTIONS(2361), + [sym__delete_span_start] = ACTIONS(2361), + [sym__edit_comment_span_start] = ACTIONS(2361), + [sym__single_quote_span_open] = ACTIONS(2361), + [sym__double_quote_span_open] = ACTIONS(2361), + [sym__shortcode_open_escaped] = ACTIONS(2361), + [sym__shortcode_open] = ACTIONS(2361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2361), + [sym__cite_author_in_text] = ACTIONS(2361), + [sym__cite_suppress_author] = ACTIONS(2361), + [sym__strikeout_open] = ACTIONS(2361), + [sym__subscript_open] = ACTIONS(2361), + [sym__superscript_open] = ACTIONS(2361), + [sym__inline_note_start_token] = ACTIONS(2361), + [sym__strong_emphasis_open_star] = ACTIONS(2361), + [sym__strong_emphasis_open_underscore] = ACTIONS(2361), + [sym__emphasis_open_star] = ACTIONS(2361), + [sym__emphasis_open_underscore] = ACTIONS(2361), + [sym_inline_note_reference] = ACTIONS(2361), + [sym_html_element] = ACTIONS(2361), + [sym__pandoc_lt_str] = ACTIONS(2361), + [sym__pandoc_line_break] = ACTIONS(2361), + [sym_grid_table] = ACTIONS(2361), + [sym__caption_start] = ACTIONS(2361), + }, + [STATE(437)] = { + [sym_entity_reference] = ACTIONS(2713), + [sym_numeric_character_reference] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_BANG_LBRACK] = ACTIONS(2713), + [anon_sym_DOLLAR] = ACTIONS(2715), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2713), + [aux_sym_pandoc_str_token1] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2713), + [sym__whitespace] = ACTIONS(2713), + [sym__line_ending] = ACTIONS(2713), + [sym__soft_line_ending] = ACTIONS(2713), + [sym__block_close] = ACTIONS(2713), + [sym__block_quote_start] = ACTIONS(2713), + [sym_atx_h1_marker] = ACTIONS(2713), + [sym_atx_h2_marker] = ACTIONS(2713), + [sym_atx_h3_marker] = ACTIONS(2713), + [sym_atx_h4_marker] = ACTIONS(2713), + [sym_atx_h5_marker] = ACTIONS(2713), + [sym_atx_h6_marker] = ACTIONS(2713), + [sym__thematic_break] = ACTIONS(2713), + [sym__list_marker_minus] = ACTIONS(2713), + [sym__list_marker_plus] = ACTIONS(2713), + [sym__list_marker_star] = ACTIONS(2713), + [sym__list_marker_parenthesis] = ACTIONS(2713), + [sym__list_marker_dot] = ACTIONS(2713), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_example] = ACTIONS(2713), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2713), + [sym__fenced_code_block_start_backtick] = ACTIONS(2713), + [sym__minus_metadata_start] = ACTIONS(2713), + [sym__pipe_table_start] = ACTIONS(2713), + [sym__fenced_div_start] = ACTIONS(2713), + [sym_ref_id_specifier] = ACTIONS(2713), + [sym__code_span_start] = ACTIONS(2713), + [sym__html_comment] = ACTIONS(2713), + [sym__autolink] = ACTIONS(2713), + [sym__highlight_span_start] = ACTIONS(2713), + [sym__insert_span_start] = ACTIONS(2713), + [sym__delete_span_start] = ACTIONS(2713), + [sym__edit_comment_span_start] = ACTIONS(2713), + [sym__single_quote_span_open] = ACTIONS(2713), + [sym__double_quote_span_open] = ACTIONS(2713), + [sym__shortcode_open_escaped] = ACTIONS(2713), + [sym__shortcode_open] = ACTIONS(2713), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2713), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2713), + [sym__cite_author_in_text] = ACTIONS(2713), + [sym__cite_suppress_author] = ACTIONS(2713), + [sym__strikeout_open] = ACTIONS(2713), + [sym__subscript_open] = ACTIONS(2713), + [sym__superscript_open] = ACTIONS(2713), + [sym__inline_note_start_token] = ACTIONS(2713), + [sym__strong_emphasis_open_star] = ACTIONS(2713), + [sym__strong_emphasis_open_underscore] = ACTIONS(2713), + [sym__emphasis_open_star] = ACTIONS(2713), + [sym__emphasis_open_underscore] = ACTIONS(2713), + [sym_inline_note_reference] = ACTIONS(2713), + [sym_html_element] = ACTIONS(2713), + [sym__pandoc_lt_str] = ACTIONS(2713), + [sym__pandoc_line_break] = ACTIONS(2713), + [sym_grid_table] = ACTIONS(2713), + [sym__caption_start] = ACTIONS(2713), + }, + [STATE(438)] = { + [sym_entity_reference] = ACTIONS(2717), + [sym_numeric_character_reference] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_BANG_LBRACK] = ACTIONS(2717), + [anon_sym_DOLLAR] = ACTIONS(2719), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2717), + [aux_sym_pandoc_str_token1] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2717), + [sym__whitespace] = ACTIONS(2717), + [sym__line_ending] = ACTIONS(2717), + [sym__soft_line_ending] = ACTIONS(2717), + [sym__block_close] = ACTIONS(2717), + [sym__block_quote_start] = ACTIONS(2717), + [sym_atx_h1_marker] = ACTIONS(2717), + [sym_atx_h2_marker] = ACTIONS(2717), + [sym_atx_h3_marker] = ACTIONS(2717), + [sym_atx_h4_marker] = ACTIONS(2717), + [sym_atx_h5_marker] = ACTIONS(2717), + [sym_atx_h6_marker] = ACTIONS(2717), + [sym__thematic_break] = ACTIONS(2717), + [sym__list_marker_minus] = ACTIONS(2717), + [sym__list_marker_plus] = ACTIONS(2717), + [sym__list_marker_star] = ACTIONS(2717), + [sym__list_marker_parenthesis] = ACTIONS(2717), + [sym__list_marker_dot] = ACTIONS(2717), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_example] = ACTIONS(2717), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2717), + [sym__fenced_code_block_start_backtick] = ACTIONS(2717), + [sym__minus_metadata_start] = ACTIONS(2717), + [sym__pipe_table_start] = ACTIONS(2717), + [sym__fenced_div_start] = ACTIONS(2717), + [sym_ref_id_specifier] = ACTIONS(2717), + [sym__code_span_start] = ACTIONS(2717), + [sym__html_comment] = ACTIONS(2717), + [sym__autolink] = ACTIONS(2717), + [sym__highlight_span_start] = ACTIONS(2717), + [sym__insert_span_start] = ACTIONS(2717), + [sym__delete_span_start] = ACTIONS(2717), + [sym__edit_comment_span_start] = ACTIONS(2717), + [sym__single_quote_span_open] = ACTIONS(2717), + [sym__double_quote_span_open] = ACTIONS(2717), + [sym__shortcode_open_escaped] = ACTIONS(2717), + [sym__shortcode_open] = ACTIONS(2717), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2717), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2717), + [sym__cite_author_in_text] = ACTIONS(2717), + [sym__cite_suppress_author] = ACTIONS(2717), + [sym__strikeout_open] = ACTIONS(2717), + [sym__subscript_open] = ACTIONS(2717), + [sym__superscript_open] = ACTIONS(2717), + [sym__inline_note_start_token] = ACTIONS(2717), + [sym__strong_emphasis_open_star] = ACTIONS(2717), + [sym__strong_emphasis_open_underscore] = ACTIONS(2717), + [sym__emphasis_open_star] = ACTIONS(2717), + [sym__emphasis_open_underscore] = ACTIONS(2717), + [sym_inline_note_reference] = ACTIONS(2717), + [sym_html_element] = ACTIONS(2717), + [sym__pandoc_lt_str] = ACTIONS(2717), + [sym__pandoc_line_break] = ACTIONS(2717), + [sym_grid_table] = ACTIONS(2717), + [sym__caption_start] = ACTIONS(2717), + }, + [STATE(439)] = { + [sym_entity_reference] = ACTIONS(2721), + [sym_numeric_character_reference] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_BANG_LBRACK] = ACTIONS(2721), + [anon_sym_DOLLAR] = ACTIONS(2723), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2721), + [aux_sym_pandoc_str_token1] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2721), + [sym__whitespace] = ACTIONS(2721), + [sym__line_ending] = ACTIONS(2721), + [sym__soft_line_ending] = ACTIONS(2721), + [sym__block_close] = ACTIONS(2721), + [sym__block_quote_start] = ACTIONS(2721), + [sym_atx_h1_marker] = ACTIONS(2721), + [sym_atx_h2_marker] = ACTIONS(2721), + [sym_atx_h3_marker] = ACTIONS(2721), + [sym_atx_h4_marker] = ACTIONS(2721), + [sym_atx_h5_marker] = ACTIONS(2721), + [sym_atx_h6_marker] = ACTIONS(2721), + [sym__thematic_break] = ACTIONS(2721), + [sym__list_marker_minus] = ACTIONS(2721), + [sym__list_marker_plus] = ACTIONS(2721), + [sym__list_marker_star] = ACTIONS(2721), + [sym__list_marker_parenthesis] = ACTIONS(2721), + [sym__list_marker_dot] = ACTIONS(2721), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_example] = ACTIONS(2721), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2721), + [sym__fenced_code_block_start_backtick] = ACTIONS(2721), + [sym__minus_metadata_start] = ACTIONS(2721), + [sym__pipe_table_start] = ACTIONS(2721), + [sym__fenced_div_start] = ACTIONS(2721), + [sym_ref_id_specifier] = ACTIONS(2721), + [sym__code_span_start] = ACTIONS(2721), + [sym__html_comment] = ACTIONS(2721), + [sym__autolink] = ACTIONS(2721), + [sym__highlight_span_start] = ACTIONS(2721), + [sym__insert_span_start] = ACTIONS(2721), + [sym__delete_span_start] = ACTIONS(2721), + [sym__edit_comment_span_start] = ACTIONS(2721), + [sym__single_quote_span_open] = ACTIONS(2721), + [sym__double_quote_span_open] = ACTIONS(2721), + [sym__shortcode_open_escaped] = ACTIONS(2721), + [sym__shortcode_open] = ACTIONS(2721), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2721), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2721), + [sym__cite_author_in_text] = ACTIONS(2721), + [sym__cite_suppress_author] = ACTIONS(2721), + [sym__strikeout_open] = ACTIONS(2721), + [sym__subscript_open] = ACTIONS(2721), + [sym__superscript_open] = ACTIONS(2721), + [sym__inline_note_start_token] = ACTIONS(2721), + [sym__strong_emphasis_open_star] = ACTIONS(2721), + [sym__strong_emphasis_open_underscore] = ACTIONS(2721), + [sym__emphasis_open_star] = ACTIONS(2721), + [sym__emphasis_open_underscore] = ACTIONS(2721), + [sym_inline_note_reference] = ACTIONS(2721), + [sym_html_element] = ACTIONS(2721), + [sym__pandoc_lt_str] = ACTIONS(2721), + [sym__pandoc_line_break] = ACTIONS(2721), + [sym_grid_table] = ACTIONS(2721), + [sym__caption_start] = ACTIONS(2721), + }, + [STATE(440)] = { + [sym_entity_reference] = ACTIONS(2725), + [sym_numeric_character_reference] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_BANG_LBRACK] = ACTIONS(2725), + [anon_sym_DOLLAR] = ACTIONS(2727), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2725), + [aux_sym_pandoc_str_token1] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2725), + [sym__whitespace] = ACTIONS(2725), + [sym__line_ending] = ACTIONS(2725), + [sym__soft_line_ending] = ACTIONS(2725), + [sym__block_close] = ACTIONS(2725), + [sym__block_quote_start] = ACTIONS(2725), + [sym_atx_h1_marker] = ACTIONS(2725), + [sym_atx_h2_marker] = ACTIONS(2725), + [sym_atx_h3_marker] = ACTIONS(2725), + [sym_atx_h4_marker] = ACTIONS(2725), + [sym_atx_h5_marker] = ACTIONS(2725), + [sym_atx_h6_marker] = ACTIONS(2725), + [sym__thematic_break] = ACTIONS(2725), + [sym__list_marker_minus] = ACTIONS(2725), + [sym__list_marker_plus] = ACTIONS(2725), + [sym__list_marker_star] = ACTIONS(2725), + [sym__list_marker_parenthesis] = ACTIONS(2725), + [sym__list_marker_dot] = ACTIONS(2725), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_example] = ACTIONS(2725), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2725), + [sym__fenced_code_block_start_backtick] = ACTIONS(2725), + [sym__minus_metadata_start] = ACTIONS(2725), + [sym__pipe_table_start] = ACTIONS(2725), + [sym__fenced_div_start] = ACTIONS(2725), + [sym_ref_id_specifier] = ACTIONS(2725), + [sym__code_span_start] = ACTIONS(2725), + [sym__html_comment] = ACTIONS(2725), + [sym__autolink] = ACTIONS(2725), + [sym__highlight_span_start] = ACTIONS(2725), + [sym__insert_span_start] = ACTIONS(2725), + [sym__delete_span_start] = ACTIONS(2725), + [sym__edit_comment_span_start] = ACTIONS(2725), + [sym__single_quote_span_open] = ACTIONS(2725), + [sym__double_quote_span_open] = ACTIONS(2725), + [sym__shortcode_open_escaped] = ACTIONS(2725), + [sym__shortcode_open] = ACTIONS(2725), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2725), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2725), + [sym__cite_author_in_text] = ACTIONS(2725), + [sym__cite_suppress_author] = ACTIONS(2725), + [sym__strikeout_open] = ACTIONS(2725), + [sym__subscript_open] = ACTIONS(2725), + [sym__superscript_open] = ACTIONS(2725), + [sym__inline_note_start_token] = ACTIONS(2725), + [sym__strong_emphasis_open_star] = ACTIONS(2725), + [sym__strong_emphasis_open_underscore] = ACTIONS(2725), + [sym__emphasis_open_star] = ACTIONS(2725), + [sym__emphasis_open_underscore] = ACTIONS(2725), + [sym_inline_note_reference] = ACTIONS(2725), + [sym_html_element] = ACTIONS(2725), + [sym__pandoc_lt_str] = ACTIONS(2725), + [sym__pandoc_line_break] = ACTIONS(2725), + [sym_grid_table] = ACTIONS(2725), + [sym__caption_start] = ACTIONS(2725), + }, + [STATE(441)] = { + [ts_builtin_sym_end] = ACTIONS(2689), + [sym_entity_reference] = ACTIONS(2689), + [sym_numeric_character_reference] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_BANG_LBRACK] = ACTIONS(2689), + [anon_sym_DOLLAR] = ACTIONS(2691), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [aux_sym_pandoc_str_token1] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2689), + [sym__whitespace] = ACTIONS(2689), + [sym__line_ending] = ACTIONS(2689), + [sym__soft_line_ending] = ACTIONS(2689), + [sym__block_quote_start] = ACTIONS(2689), + [sym_atx_h1_marker] = ACTIONS(2689), + [sym_atx_h2_marker] = ACTIONS(2689), + [sym_atx_h3_marker] = ACTIONS(2689), + [sym_atx_h4_marker] = ACTIONS(2689), + [sym_atx_h5_marker] = ACTIONS(2689), + [sym_atx_h6_marker] = ACTIONS(2689), + [sym__thematic_break] = ACTIONS(2689), + [sym__list_marker_minus] = ACTIONS(2689), + [sym__list_marker_plus] = ACTIONS(2689), + [sym__list_marker_star] = ACTIONS(2689), + [sym__list_marker_parenthesis] = ACTIONS(2689), + [sym__list_marker_dot] = ACTIONS(2689), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_example] = ACTIONS(2689), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2689), + [sym__fenced_code_block_start_backtick] = ACTIONS(2689), + [sym__minus_metadata_start] = ACTIONS(2689), + [sym__pipe_table_start] = ACTIONS(2689), + [sym__fenced_div_start] = ACTIONS(2689), + [sym_ref_id_specifier] = ACTIONS(2689), + [sym__code_span_start] = ACTIONS(2689), + [sym__html_comment] = ACTIONS(2689), + [sym__autolink] = ACTIONS(2689), + [sym__highlight_span_start] = ACTIONS(2689), + [sym__insert_span_start] = ACTIONS(2689), + [sym__delete_span_start] = ACTIONS(2689), + [sym__edit_comment_span_start] = ACTIONS(2689), + [sym__single_quote_span_open] = ACTIONS(2689), + [sym__double_quote_span_open] = ACTIONS(2689), + [sym__shortcode_open_escaped] = ACTIONS(2689), + [sym__shortcode_open] = ACTIONS(2689), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2689), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2689), + [sym__cite_author_in_text] = ACTIONS(2689), + [sym__cite_suppress_author] = ACTIONS(2689), + [sym__strikeout_open] = ACTIONS(2689), + [sym__subscript_open] = ACTIONS(2689), + [sym__superscript_open] = ACTIONS(2689), + [sym__inline_note_start_token] = ACTIONS(2689), + [sym__strong_emphasis_open_star] = ACTIONS(2689), + [sym__strong_emphasis_open_underscore] = ACTIONS(2689), + [sym__emphasis_open_star] = ACTIONS(2689), + [sym__emphasis_open_underscore] = ACTIONS(2689), + [sym_inline_note_reference] = ACTIONS(2689), + [sym_html_element] = ACTIONS(2689), + [sym__pandoc_lt_str] = ACTIONS(2689), + [sym__pandoc_line_break] = ACTIONS(2689), + [sym_grid_table] = ACTIONS(2689), + [sym__caption_start] = ACTIONS(2689), + }, + [STATE(442)] = { + [sym_entity_reference] = ACTIONS(2729), + [sym_numeric_character_reference] = ACTIONS(2729), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_BANG_LBRACK] = ACTIONS(2729), + [anon_sym_DOLLAR] = ACTIONS(2731), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2729), + [aux_sym_pandoc_str_token1] = ACTIONS(2731), + [anon_sym_PIPE] = ACTIONS(2729), + [sym__whitespace] = ACTIONS(2729), + [sym__line_ending] = ACTIONS(2729), + [sym__soft_line_ending] = ACTIONS(2729), + [sym__block_close] = ACTIONS(2729), + [sym__block_quote_start] = ACTIONS(2729), + [sym_atx_h1_marker] = ACTIONS(2729), + [sym_atx_h2_marker] = ACTIONS(2729), + [sym_atx_h3_marker] = ACTIONS(2729), + [sym_atx_h4_marker] = ACTIONS(2729), + [sym_atx_h5_marker] = ACTIONS(2729), + [sym_atx_h6_marker] = ACTIONS(2729), + [sym__thematic_break] = ACTIONS(2729), + [sym__list_marker_minus] = ACTIONS(2729), + [sym__list_marker_plus] = ACTIONS(2729), + [sym__list_marker_star] = ACTIONS(2729), + [sym__list_marker_parenthesis] = ACTIONS(2729), + [sym__list_marker_dot] = ACTIONS(2729), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_example] = ACTIONS(2729), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2729), + [sym__fenced_code_block_start_backtick] = ACTIONS(2729), + [sym__minus_metadata_start] = ACTIONS(2729), + [sym__pipe_table_start] = ACTIONS(2729), + [sym__fenced_div_start] = ACTIONS(2729), + [sym_ref_id_specifier] = ACTIONS(2729), + [sym__code_span_start] = ACTIONS(2729), + [sym__html_comment] = ACTIONS(2729), + [sym__autolink] = ACTIONS(2729), + [sym__highlight_span_start] = ACTIONS(2729), + [sym__insert_span_start] = ACTIONS(2729), + [sym__delete_span_start] = ACTIONS(2729), + [sym__edit_comment_span_start] = ACTIONS(2729), + [sym__single_quote_span_open] = ACTIONS(2729), + [sym__double_quote_span_open] = ACTIONS(2729), + [sym__shortcode_open_escaped] = ACTIONS(2729), + [sym__shortcode_open] = ACTIONS(2729), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2729), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2729), + [sym__cite_author_in_text] = ACTIONS(2729), + [sym__cite_suppress_author] = ACTIONS(2729), + [sym__strikeout_open] = ACTIONS(2729), + [sym__subscript_open] = ACTIONS(2729), + [sym__superscript_open] = ACTIONS(2729), + [sym__inline_note_start_token] = ACTIONS(2729), + [sym__strong_emphasis_open_star] = ACTIONS(2729), + [sym__strong_emphasis_open_underscore] = ACTIONS(2729), + [sym__emphasis_open_star] = ACTIONS(2729), + [sym__emphasis_open_underscore] = ACTIONS(2729), + [sym_inline_note_reference] = ACTIONS(2729), + [sym_html_element] = ACTIONS(2729), + [sym__pandoc_lt_str] = ACTIONS(2729), + [sym__pandoc_line_break] = ACTIONS(2729), + [sym_grid_table] = ACTIONS(2729), + [sym__caption_start] = ACTIONS(2729), + }, + [STATE(443)] = { + [sym_entity_reference] = ACTIONS(2733), + [sym_numeric_character_reference] = ACTIONS(2733), + [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_BANG_LBRACK] = ACTIONS(2733), + [anon_sym_DOLLAR] = ACTIONS(2735), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2733), + [aux_sym_pandoc_str_token1] = ACTIONS(2735), + [anon_sym_PIPE] = ACTIONS(2733), + [sym__whitespace] = ACTIONS(2733), + [sym__line_ending] = ACTIONS(2733), + [sym__soft_line_ending] = ACTIONS(2733), + [sym__block_close] = ACTIONS(2733), + [sym__block_quote_start] = ACTIONS(2733), + [sym_atx_h1_marker] = ACTIONS(2733), + [sym_atx_h2_marker] = ACTIONS(2733), + [sym_atx_h3_marker] = ACTIONS(2733), + [sym_atx_h4_marker] = ACTIONS(2733), + [sym_atx_h5_marker] = ACTIONS(2733), + [sym_atx_h6_marker] = ACTIONS(2733), + [sym__thematic_break] = ACTIONS(2733), + [sym__list_marker_minus] = ACTIONS(2733), + [sym__list_marker_plus] = ACTIONS(2733), + [sym__list_marker_star] = ACTIONS(2733), + [sym__list_marker_parenthesis] = ACTIONS(2733), + [sym__list_marker_dot] = ACTIONS(2733), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_example] = ACTIONS(2733), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2733), + [sym__fenced_code_block_start_backtick] = ACTIONS(2733), + [sym__minus_metadata_start] = ACTIONS(2733), + [sym__pipe_table_start] = ACTIONS(2733), + [sym__fenced_div_start] = ACTIONS(2733), + [sym_ref_id_specifier] = ACTIONS(2733), + [sym__code_span_start] = ACTIONS(2733), + [sym__html_comment] = ACTIONS(2733), + [sym__autolink] = ACTIONS(2733), + [sym__highlight_span_start] = ACTIONS(2733), + [sym__insert_span_start] = ACTIONS(2733), + [sym__delete_span_start] = ACTIONS(2733), + [sym__edit_comment_span_start] = ACTIONS(2733), + [sym__single_quote_span_open] = ACTIONS(2733), + [sym__double_quote_span_open] = ACTIONS(2733), + [sym__shortcode_open_escaped] = ACTIONS(2733), + [sym__shortcode_open] = ACTIONS(2733), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2733), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2733), + [sym__cite_author_in_text] = ACTIONS(2733), + [sym__cite_suppress_author] = ACTIONS(2733), + [sym__strikeout_open] = ACTIONS(2733), + [sym__subscript_open] = ACTIONS(2733), + [sym__superscript_open] = ACTIONS(2733), + [sym__inline_note_start_token] = ACTIONS(2733), + [sym__strong_emphasis_open_star] = ACTIONS(2733), + [sym__strong_emphasis_open_underscore] = ACTIONS(2733), + [sym__emphasis_open_star] = ACTIONS(2733), + [sym__emphasis_open_underscore] = ACTIONS(2733), + [sym_inline_note_reference] = ACTIONS(2733), + [sym_html_element] = ACTIONS(2733), + [sym__pandoc_lt_str] = ACTIONS(2733), + [sym__pandoc_line_break] = ACTIONS(2733), + [sym_grid_table] = ACTIONS(2733), + [sym__caption_start] = ACTIONS(2733), + }, + [STATE(444)] = { + [sym_entity_reference] = ACTIONS(2737), + [sym_numeric_character_reference] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_BANG_LBRACK] = ACTIONS(2737), + [anon_sym_DOLLAR] = ACTIONS(2739), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2737), + [aux_sym_pandoc_str_token1] = ACTIONS(2739), + [anon_sym_PIPE] = ACTIONS(2737), + [sym__whitespace] = ACTIONS(2737), + [sym__line_ending] = ACTIONS(2737), + [sym__soft_line_ending] = ACTIONS(2737), + [sym__block_close] = ACTIONS(2737), + [sym__block_quote_start] = ACTIONS(2737), + [sym_atx_h1_marker] = ACTIONS(2737), + [sym_atx_h2_marker] = ACTIONS(2737), + [sym_atx_h3_marker] = ACTIONS(2737), + [sym_atx_h4_marker] = ACTIONS(2737), + [sym_atx_h5_marker] = ACTIONS(2737), + [sym_atx_h6_marker] = ACTIONS(2737), + [sym__thematic_break] = ACTIONS(2737), + [sym__list_marker_minus] = ACTIONS(2737), + [sym__list_marker_plus] = ACTIONS(2737), + [sym__list_marker_star] = ACTIONS(2737), + [sym__list_marker_parenthesis] = ACTIONS(2737), + [sym__list_marker_dot] = ACTIONS(2737), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_example] = ACTIONS(2737), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2737), + [sym__fenced_code_block_start_backtick] = ACTIONS(2737), + [sym__minus_metadata_start] = ACTIONS(2737), + [sym__pipe_table_start] = ACTIONS(2737), + [sym__fenced_div_start] = ACTIONS(2737), + [sym_ref_id_specifier] = ACTIONS(2737), + [sym__code_span_start] = ACTIONS(2737), + [sym__html_comment] = ACTIONS(2737), + [sym__autolink] = ACTIONS(2737), + [sym__highlight_span_start] = ACTIONS(2737), + [sym__insert_span_start] = ACTIONS(2737), + [sym__delete_span_start] = ACTIONS(2737), + [sym__edit_comment_span_start] = ACTIONS(2737), + [sym__single_quote_span_open] = ACTIONS(2737), + [sym__double_quote_span_open] = ACTIONS(2737), + [sym__shortcode_open_escaped] = ACTIONS(2737), + [sym__shortcode_open] = ACTIONS(2737), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2737), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2737), + [sym__cite_author_in_text] = ACTIONS(2737), + [sym__cite_suppress_author] = ACTIONS(2737), + [sym__strikeout_open] = ACTIONS(2737), + [sym__subscript_open] = ACTIONS(2737), + [sym__superscript_open] = ACTIONS(2737), + [sym__inline_note_start_token] = ACTIONS(2737), + [sym__strong_emphasis_open_star] = ACTIONS(2737), + [sym__strong_emphasis_open_underscore] = ACTIONS(2737), + [sym__emphasis_open_star] = ACTIONS(2737), + [sym__emphasis_open_underscore] = ACTIONS(2737), + [sym_inline_note_reference] = ACTIONS(2737), + [sym_html_element] = ACTIONS(2737), + [sym__pandoc_lt_str] = ACTIONS(2737), + [sym__pandoc_line_break] = ACTIONS(2737), + [sym_grid_table] = ACTIONS(2737), + [sym__caption_start] = ACTIONS(2737), + }, + [STATE(445)] = { + [sym_entity_reference] = ACTIONS(2741), + [sym_numeric_character_reference] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_BANG_LBRACK] = ACTIONS(2741), + [anon_sym_DOLLAR] = ACTIONS(2743), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2741), + [aux_sym_pandoc_str_token1] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2741), + [sym__whitespace] = ACTIONS(2741), + [sym__line_ending] = ACTIONS(2741), + [sym__soft_line_ending] = ACTIONS(2741), + [sym__block_close] = ACTIONS(2741), + [sym__block_quote_start] = ACTIONS(2741), + [sym_atx_h1_marker] = ACTIONS(2741), + [sym_atx_h2_marker] = ACTIONS(2741), + [sym_atx_h3_marker] = ACTIONS(2741), + [sym_atx_h4_marker] = ACTIONS(2741), + [sym_atx_h5_marker] = ACTIONS(2741), + [sym_atx_h6_marker] = ACTIONS(2741), + [sym__thematic_break] = ACTIONS(2741), + [sym__list_marker_minus] = ACTIONS(2741), + [sym__list_marker_plus] = ACTIONS(2741), + [sym__list_marker_star] = ACTIONS(2741), + [sym__list_marker_parenthesis] = ACTIONS(2741), + [sym__list_marker_dot] = ACTIONS(2741), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_example] = ACTIONS(2741), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2741), + [sym__fenced_code_block_start_backtick] = ACTIONS(2741), + [sym__minus_metadata_start] = ACTIONS(2741), + [sym__pipe_table_start] = ACTIONS(2741), + [sym__fenced_div_start] = ACTIONS(2741), + [sym_ref_id_specifier] = ACTIONS(2741), + [sym__code_span_start] = ACTIONS(2741), + [sym__html_comment] = ACTIONS(2741), + [sym__autolink] = ACTIONS(2741), + [sym__highlight_span_start] = ACTIONS(2741), + [sym__insert_span_start] = ACTIONS(2741), + [sym__delete_span_start] = ACTIONS(2741), + [sym__edit_comment_span_start] = ACTIONS(2741), + [sym__single_quote_span_open] = ACTIONS(2741), + [sym__double_quote_span_open] = ACTIONS(2741), + [sym__shortcode_open_escaped] = ACTIONS(2741), + [sym__shortcode_open] = ACTIONS(2741), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2741), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2741), + [sym__cite_author_in_text] = ACTIONS(2741), + [sym__cite_suppress_author] = ACTIONS(2741), + [sym__strikeout_open] = ACTIONS(2741), + [sym__subscript_open] = ACTIONS(2741), + [sym__superscript_open] = ACTIONS(2741), + [sym__inline_note_start_token] = ACTIONS(2741), + [sym__strong_emphasis_open_star] = ACTIONS(2741), + [sym__strong_emphasis_open_underscore] = ACTIONS(2741), + [sym__emphasis_open_star] = ACTIONS(2741), + [sym__emphasis_open_underscore] = ACTIONS(2741), + [sym_inline_note_reference] = ACTIONS(2741), + [sym_html_element] = ACTIONS(2741), + [sym__pandoc_lt_str] = ACTIONS(2741), + [sym__pandoc_line_break] = ACTIONS(2741), + [sym_grid_table] = ACTIONS(2741), + [sym__caption_start] = ACTIONS(2741), + }, + [STATE(446)] = { + [ts_builtin_sym_end] = ACTIONS(2593), + [sym_entity_reference] = ACTIONS(2593), + [sym_numeric_character_reference] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2593), + [anon_sym_BANG_LBRACK] = ACTIONS(2593), + [anon_sym_DOLLAR] = ACTIONS(2595), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(2593), + [aux_sym_pandoc_str_token1] = ACTIONS(2595), + [anon_sym_PIPE] = ACTIONS(2593), + [sym__whitespace] = ACTIONS(2593), + [sym__line_ending] = ACTIONS(2593), + [sym__soft_line_ending] = ACTIONS(2593), + [sym__block_quote_start] = ACTIONS(2593), + [sym_atx_h1_marker] = ACTIONS(2593), + [sym_atx_h2_marker] = ACTIONS(2593), + [sym_atx_h3_marker] = ACTIONS(2593), + [sym_atx_h4_marker] = ACTIONS(2593), + [sym_atx_h5_marker] = ACTIONS(2593), + [sym_atx_h6_marker] = ACTIONS(2593), + [sym__thematic_break] = ACTIONS(2593), + [sym__list_marker_minus] = ACTIONS(2593), + [sym__list_marker_plus] = ACTIONS(2593), + [sym__list_marker_star] = ACTIONS(2593), + [sym__list_marker_parenthesis] = ACTIONS(2593), + [sym__list_marker_dot] = ACTIONS(2593), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2593), + [sym__list_marker_example] = ACTIONS(2593), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2593), + [sym__fenced_code_block_start_backtick] = ACTIONS(2593), + [sym__minus_metadata_start] = ACTIONS(2593), + [sym__pipe_table_start] = ACTIONS(2593), + [sym__fenced_div_start] = ACTIONS(2593), + [sym_ref_id_specifier] = ACTIONS(2593), + [sym__code_span_start] = ACTIONS(2593), + [sym__html_comment] = ACTIONS(2593), + [sym__autolink] = ACTIONS(2593), + [sym__highlight_span_start] = ACTIONS(2593), + [sym__insert_span_start] = ACTIONS(2593), + [sym__delete_span_start] = ACTIONS(2593), + [sym__edit_comment_span_start] = ACTIONS(2593), + [sym__single_quote_span_open] = ACTIONS(2593), + [sym__double_quote_span_open] = ACTIONS(2593), + [sym__shortcode_open_escaped] = ACTIONS(2593), + [sym__shortcode_open] = ACTIONS(2593), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2593), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2593), + [sym__cite_author_in_text] = ACTIONS(2593), + [sym__cite_suppress_author] = ACTIONS(2593), + [sym__strikeout_open] = ACTIONS(2593), + [sym__subscript_open] = ACTIONS(2593), + [sym__superscript_open] = ACTIONS(2593), + [sym__inline_note_start_token] = ACTIONS(2593), + [sym__strong_emphasis_open_star] = ACTIONS(2593), + [sym__strong_emphasis_open_underscore] = ACTIONS(2593), + [sym__emphasis_open_star] = ACTIONS(2593), + [sym__emphasis_open_underscore] = ACTIONS(2593), + [sym_inline_note_reference] = ACTIONS(2593), + [sym_html_element] = ACTIONS(2593), + [sym__pandoc_lt_str] = ACTIONS(2593), + [sym__pandoc_line_break] = ACTIONS(2593), + [sym_grid_table] = ACTIONS(2593), + [sym__caption_start] = ACTIONS(2593), + }, + [STATE(447)] = { + [sym_entity_reference] = ACTIONS(2745), + [sym_numeric_character_reference] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_BANG_LBRACK] = ACTIONS(2745), + [anon_sym_DOLLAR] = ACTIONS(2747), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [aux_sym_pandoc_str_token1] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2745), + [sym__whitespace] = ACTIONS(2745), + [sym__line_ending] = ACTIONS(2745), + [sym__soft_line_ending] = ACTIONS(2745), + [sym__block_close] = ACTIONS(2745), + [sym__block_quote_start] = ACTIONS(2745), + [sym_atx_h1_marker] = ACTIONS(2745), + [sym_atx_h2_marker] = ACTIONS(2745), + [sym_atx_h3_marker] = ACTIONS(2745), + [sym_atx_h4_marker] = ACTIONS(2745), + [sym_atx_h5_marker] = ACTIONS(2745), + [sym_atx_h6_marker] = ACTIONS(2745), + [sym__thematic_break] = ACTIONS(2745), + [sym__list_marker_minus] = ACTIONS(2745), + [sym__list_marker_plus] = ACTIONS(2745), + [sym__list_marker_star] = ACTIONS(2745), + [sym__list_marker_parenthesis] = ACTIONS(2745), + [sym__list_marker_dot] = ACTIONS(2745), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_example] = ACTIONS(2745), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2745), + [sym__fenced_code_block_start_backtick] = ACTIONS(2745), + [sym__minus_metadata_start] = ACTIONS(2745), + [sym__pipe_table_start] = ACTIONS(2745), + [sym__fenced_div_start] = ACTIONS(2745), + [sym_ref_id_specifier] = ACTIONS(2745), + [sym__code_span_start] = ACTIONS(2745), + [sym__html_comment] = ACTIONS(2745), + [sym__autolink] = ACTIONS(2745), + [sym__highlight_span_start] = ACTIONS(2745), + [sym__insert_span_start] = ACTIONS(2745), + [sym__delete_span_start] = ACTIONS(2745), + [sym__edit_comment_span_start] = ACTIONS(2745), + [sym__single_quote_span_open] = ACTIONS(2745), + [sym__double_quote_span_open] = ACTIONS(2745), + [sym__shortcode_open_escaped] = ACTIONS(2745), + [sym__shortcode_open] = ACTIONS(2745), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2745), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2745), + [sym__cite_author_in_text] = ACTIONS(2745), + [sym__cite_suppress_author] = ACTIONS(2745), + [sym__strikeout_open] = ACTIONS(2745), + [sym__subscript_open] = ACTIONS(2745), + [sym__superscript_open] = ACTIONS(2745), + [sym__inline_note_start_token] = ACTIONS(2745), + [sym__strong_emphasis_open_star] = ACTIONS(2745), + [sym__strong_emphasis_open_underscore] = ACTIONS(2745), + [sym__emphasis_open_star] = ACTIONS(2745), + [sym__emphasis_open_underscore] = ACTIONS(2745), + [sym_inline_note_reference] = ACTIONS(2745), + [sym_html_element] = ACTIONS(2745), + [sym__pandoc_lt_str] = ACTIONS(2745), + [sym__pandoc_line_break] = ACTIONS(2745), + [sym_grid_table] = ACTIONS(2745), + [sym__caption_start] = ACTIONS(2745), + }, + [STATE(448)] = { + [ts_builtin_sym_end] = 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), + [sym__whitespace] = ACTIONS(2693), + [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_start] = 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_lt_str] = ACTIONS(2693), + [sym__pandoc_line_break] = ACTIONS(2693), + [sym_grid_table] = ACTIONS(2693), + [sym__caption_start] = ACTIONS(2693), + }, + [STATE(449)] = { + [sym_entity_reference] = ACTIONS(2749), + [sym_numeric_character_reference] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_BANG_LBRACK] = ACTIONS(2749), + [anon_sym_DOLLAR] = ACTIONS(2751), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2749), + [aux_sym_pandoc_str_token1] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2749), + [sym__whitespace] = ACTIONS(2749), + [sym__line_ending] = ACTIONS(2749), + [sym__soft_line_ending] = ACTIONS(2749), + [sym__block_close] = ACTIONS(2749), + [sym__block_quote_start] = ACTIONS(2749), + [sym_atx_h1_marker] = ACTIONS(2749), + [sym_atx_h2_marker] = ACTIONS(2749), + [sym_atx_h3_marker] = ACTIONS(2749), + [sym_atx_h4_marker] = ACTIONS(2749), + [sym_atx_h5_marker] = ACTIONS(2749), + [sym_atx_h6_marker] = ACTIONS(2749), + [sym__thematic_break] = ACTIONS(2749), + [sym__list_marker_minus] = ACTIONS(2749), + [sym__list_marker_plus] = ACTIONS(2749), + [sym__list_marker_star] = ACTIONS(2749), + [sym__list_marker_parenthesis] = ACTIONS(2749), + [sym__list_marker_dot] = ACTIONS(2749), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_example] = ACTIONS(2749), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2749), + [sym__fenced_code_block_start_backtick] = ACTIONS(2749), + [sym__minus_metadata_start] = ACTIONS(2749), + [sym__pipe_table_start] = ACTIONS(2749), + [sym__fenced_div_start] = ACTIONS(2749), + [sym_ref_id_specifier] = ACTIONS(2749), + [sym__code_span_start] = ACTIONS(2749), + [sym__html_comment] = ACTIONS(2749), + [sym__autolink] = ACTIONS(2749), + [sym__highlight_span_start] = ACTIONS(2749), + [sym__insert_span_start] = ACTIONS(2749), + [sym__delete_span_start] = ACTIONS(2749), + [sym__edit_comment_span_start] = ACTIONS(2749), + [sym__single_quote_span_open] = ACTIONS(2749), + [sym__double_quote_span_open] = ACTIONS(2749), + [sym__shortcode_open_escaped] = ACTIONS(2749), + [sym__shortcode_open] = ACTIONS(2749), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2749), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2749), + [sym__cite_author_in_text] = ACTIONS(2749), + [sym__cite_suppress_author] = ACTIONS(2749), + [sym__strikeout_open] = ACTIONS(2749), + [sym__subscript_open] = ACTIONS(2749), + [sym__superscript_open] = ACTIONS(2749), + [sym__inline_note_start_token] = ACTIONS(2749), + [sym__strong_emphasis_open_star] = ACTIONS(2749), + [sym__strong_emphasis_open_underscore] = ACTIONS(2749), + [sym__emphasis_open_star] = ACTIONS(2749), + [sym__emphasis_open_underscore] = ACTIONS(2749), + [sym_inline_note_reference] = ACTIONS(2749), + [sym_html_element] = ACTIONS(2749), + [sym__pandoc_lt_str] = ACTIONS(2749), + [sym__pandoc_line_break] = ACTIONS(2749), + [sym_grid_table] = ACTIONS(2749), + [sym__caption_start] = ACTIONS(2749), + }, + [STATE(450)] = { + [sym_entity_reference] = ACTIONS(2753), + [sym_numeric_character_reference] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_BANG_LBRACK] = ACTIONS(2753), + [anon_sym_DOLLAR] = ACTIONS(2755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2753), + [aux_sym_pandoc_str_token1] = ACTIONS(2755), + [anon_sym_PIPE] = ACTIONS(2753), + [sym__whitespace] = ACTIONS(2753), + [sym__line_ending] = ACTIONS(2753), + [sym__soft_line_ending] = ACTIONS(2753), + [sym__block_close] = ACTIONS(2753), + [sym__block_quote_start] = ACTIONS(2753), + [sym_atx_h1_marker] = ACTIONS(2753), + [sym_atx_h2_marker] = ACTIONS(2753), + [sym_atx_h3_marker] = ACTIONS(2753), + [sym_atx_h4_marker] = ACTIONS(2753), + [sym_atx_h5_marker] = ACTIONS(2753), + [sym_atx_h6_marker] = ACTIONS(2753), + [sym__thematic_break] = ACTIONS(2753), + [sym__list_marker_minus] = ACTIONS(2753), + [sym__list_marker_plus] = ACTIONS(2753), + [sym__list_marker_star] = ACTIONS(2753), + [sym__list_marker_parenthesis] = ACTIONS(2753), + [sym__list_marker_dot] = ACTIONS(2753), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_example] = ACTIONS(2753), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2753), + [sym__fenced_code_block_start_backtick] = ACTIONS(2753), + [sym__minus_metadata_start] = ACTIONS(2753), + [sym__pipe_table_start] = ACTIONS(2753), + [sym__fenced_div_start] = ACTIONS(2753), + [sym_ref_id_specifier] = ACTIONS(2753), + [sym__code_span_start] = ACTIONS(2753), + [sym__html_comment] = ACTIONS(2753), + [sym__autolink] = ACTIONS(2753), + [sym__highlight_span_start] = ACTIONS(2753), + [sym__insert_span_start] = ACTIONS(2753), + [sym__delete_span_start] = ACTIONS(2753), + [sym__edit_comment_span_start] = ACTIONS(2753), + [sym__single_quote_span_open] = ACTIONS(2753), + [sym__double_quote_span_open] = ACTIONS(2753), + [sym__shortcode_open_escaped] = ACTIONS(2753), + [sym__shortcode_open] = ACTIONS(2753), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2753), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2753), + [sym__cite_author_in_text] = ACTIONS(2753), + [sym__cite_suppress_author] = ACTIONS(2753), + [sym__strikeout_open] = ACTIONS(2753), + [sym__subscript_open] = ACTIONS(2753), + [sym__superscript_open] = ACTIONS(2753), + [sym__inline_note_start_token] = ACTIONS(2753), + [sym__strong_emphasis_open_star] = ACTIONS(2753), + [sym__strong_emphasis_open_underscore] = ACTIONS(2753), + [sym__emphasis_open_star] = ACTIONS(2753), + [sym__emphasis_open_underscore] = ACTIONS(2753), + [sym_inline_note_reference] = ACTIONS(2753), + [sym_html_element] = ACTIONS(2753), + [sym__pandoc_lt_str] = ACTIONS(2753), + [sym__pandoc_line_break] = ACTIONS(2753), + [sym_grid_table] = ACTIONS(2753), + [sym__caption_start] = ACTIONS(2753), + }, + [STATE(451)] = { + [ts_builtin_sym_end] = ACTIONS(2697), + [sym_entity_reference] = ACTIONS(2697), + [sym_numeric_character_reference] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_BANG_LBRACK] = ACTIONS(2697), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2697), + [aux_sym_pandoc_str_token1] = ACTIONS(2699), + [anon_sym_PIPE] = ACTIONS(2697), + [sym__whitespace] = ACTIONS(2697), + [sym__line_ending] = ACTIONS(2697), + [sym__soft_line_ending] = ACTIONS(2697), + [sym__block_quote_start] = ACTIONS(2697), + [sym_atx_h1_marker] = ACTIONS(2697), + [sym_atx_h2_marker] = ACTIONS(2697), + [sym_atx_h3_marker] = ACTIONS(2697), + [sym_atx_h4_marker] = ACTIONS(2697), + [sym_atx_h5_marker] = ACTIONS(2697), + [sym_atx_h6_marker] = ACTIONS(2697), + [sym__thematic_break] = ACTIONS(2697), + [sym__list_marker_minus] = ACTIONS(2697), + [sym__list_marker_plus] = ACTIONS(2697), + [sym__list_marker_star] = ACTIONS(2697), + [sym__list_marker_parenthesis] = ACTIONS(2697), + [sym__list_marker_dot] = ACTIONS(2697), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2697), + [sym__list_marker_example] = ACTIONS(2697), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2697), + [sym__fenced_code_block_start_backtick] = ACTIONS(2697), + [sym__minus_metadata_start] = ACTIONS(2697), + [sym__pipe_table_start] = ACTIONS(2697), + [sym__fenced_div_start] = ACTIONS(2697), + [sym_ref_id_specifier] = ACTIONS(2697), + [sym__code_span_start] = ACTIONS(2697), + [sym__html_comment] = ACTIONS(2697), + [sym__autolink] = ACTIONS(2697), + [sym__highlight_span_start] = ACTIONS(2697), + [sym__insert_span_start] = ACTIONS(2697), + [sym__delete_span_start] = ACTIONS(2697), + [sym__edit_comment_span_start] = ACTIONS(2697), + [sym__single_quote_span_open] = ACTIONS(2697), + [sym__double_quote_span_open] = ACTIONS(2697), + [sym__shortcode_open_escaped] = ACTIONS(2697), + [sym__shortcode_open] = ACTIONS(2697), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2697), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2697), + [sym__cite_author_in_text] = ACTIONS(2697), + [sym__cite_suppress_author] = ACTIONS(2697), + [sym__strikeout_open] = ACTIONS(2697), + [sym__subscript_open] = ACTIONS(2697), + [sym__superscript_open] = ACTIONS(2697), + [sym__inline_note_start_token] = ACTIONS(2697), + [sym__strong_emphasis_open_star] = ACTIONS(2697), + [sym__strong_emphasis_open_underscore] = ACTIONS(2697), + [sym__emphasis_open_star] = ACTIONS(2697), + [sym__emphasis_open_underscore] = ACTIONS(2697), + [sym_inline_note_reference] = ACTIONS(2697), + [sym_html_element] = ACTIONS(2697), + [sym__pandoc_lt_str] = ACTIONS(2697), + [sym__pandoc_line_break] = ACTIONS(2697), + [sym_grid_table] = ACTIONS(2697), + [sym__caption_start] = ACTIONS(2697), + }, + [STATE(452)] = { + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_entity_reference] = ACTIONS(2701), + [sym_numeric_character_reference] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_BANG_LBRACK] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2703), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2701), + [aux_sym_pandoc_str_token1] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2701), + [sym__whitespace] = ACTIONS(2701), + [sym__line_ending] = ACTIONS(2701), + [sym__soft_line_ending] = ACTIONS(2701), + [sym__block_quote_start] = ACTIONS(2701), + [sym_atx_h1_marker] = ACTIONS(2701), + [sym_atx_h2_marker] = ACTIONS(2701), + [sym_atx_h3_marker] = ACTIONS(2701), + [sym_atx_h4_marker] = ACTIONS(2701), + [sym_atx_h5_marker] = ACTIONS(2701), + [sym_atx_h6_marker] = ACTIONS(2701), + [sym__thematic_break] = ACTIONS(2701), + [sym__list_marker_minus] = ACTIONS(2701), + [sym__list_marker_plus] = ACTIONS(2701), + [sym__list_marker_star] = ACTIONS(2701), + [sym__list_marker_parenthesis] = ACTIONS(2701), + [sym__list_marker_dot] = ACTIONS(2701), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2701), + [sym__list_marker_example] = ACTIONS(2701), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2701), + [sym__fenced_code_block_start_backtick] = ACTIONS(2701), + [sym__minus_metadata_start] = ACTIONS(2701), + [sym__pipe_table_start] = ACTIONS(2701), + [sym__fenced_div_start] = ACTIONS(2701), + [sym_ref_id_specifier] = ACTIONS(2701), + [sym__code_span_start] = ACTIONS(2701), + [sym__html_comment] = ACTIONS(2701), + [sym__autolink] = ACTIONS(2701), + [sym__highlight_span_start] = ACTIONS(2701), + [sym__insert_span_start] = ACTIONS(2701), + [sym__delete_span_start] = ACTIONS(2701), + [sym__edit_comment_span_start] = ACTIONS(2701), + [sym__single_quote_span_open] = ACTIONS(2701), + [sym__double_quote_span_open] = ACTIONS(2701), + [sym__shortcode_open_escaped] = ACTIONS(2701), + [sym__shortcode_open] = ACTIONS(2701), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2701), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2701), + [sym__cite_author_in_text] = ACTIONS(2701), + [sym__cite_suppress_author] = ACTIONS(2701), + [sym__strikeout_open] = ACTIONS(2701), + [sym__subscript_open] = ACTIONS(2701), + [sym__superscript_open] = ACTIONS(2701), + [sym__inline_note_start_token] = ACTIONS(2701), + [sym__strong_emphasis_open_star] = ACTIONS(2701), + [sym__strong_emphasis_open_underscore] = ACTIONS(2701), + [sym__emphasis_open_star] = ACTIONS(2701), + [sym__emphasis_open_underscore] = ACTIONS(2701), + [sym_inline_note_reference] = ACTIONS(2701), + [sym_html_element] = ACTIONS(2701), + [sym__pandoc_lt_str] = ACTIONS(2701), + [sym__pandoc_line_break] = ACTIONS(2701), + [sym_grid_table] = ACTIONS(2701), + [sym__caption_start] = ACTIONS(2701), + }, + [STATE(453)] = { + [ts_builtin_sym_end] = 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), + [sym__whitespace] = ACTIONS(2705), + [sym__line_ending] = ACTIONS(2705), + [sym__soft_line_ending] = ACTIONS(2705), + [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_start] = 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_lt_str] = ACTIONS(2705), + [sym__pandoc_line_break] = ACTIONS(2705), + [sym_grid_table] = ACTIONS(2705), + [sym__caption_start] = ACTIONS(2705), + }, + [STATE(454)] = { [ts_builtin_sym_end] = ACTIONS(2709), [sym_entity_reference] = ACTIONS(2709), [sym_numeric_character_reference] = ACTIONS(2709), @@ -61428,7 +65639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2709), [sym__list_marker_example_dont_interrupt] = ACTIONS(2709), [sym__fenced_code_block_start_backtick] = ACTIONS(2709), - [sym_minus_metadata] = ACTIONS(2709), + [sym__minus_metadata_start] = ACTIONS(2709), [sym__pipe_table_start] = ACTIONS(2709), [sym__fenced_div_start] = ACTIONS(2709), [sym_ref_id_specifier] = ACTIONS(2709), @@ -61462,490 +65673,1318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2709), [sym__caption_start] = ACTIONS(2709), }, - [STATE(397)] = { - [ts_builtin_sym_end] = ACTIONS(2391), - [sym_entity_reference] = ACTIONS(2391), - [sym_numeric_character_reference] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_BANG_LBRACK] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2393), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [aux_sym_pandoc_str_token1] = ACTIONS(2393), - [anon_sym_PIPE] = ACTIONS(2391), - [sym__whitespace] = ACTIONS(2391), - [sym__line_ending] = ACTIONS(2391), - [sym__soft_line_ending] = ACTIONS(2391), - [sym__block_quote_start] = ACTIONS(2391), - [sym_atx_h1_marker] = ACTIONS(2391), - [sym_atx_h2_marker] = ACTIONS(2391), - [sym_atx_h3_marker] = ACTIONS(2391), - [sym_atx_h4_marker] = ACTIONS(2391), - [sym_atx_h5_marker] = ACTIONS(2391), - [sym_atx_h6_marker] = ACTIONS(2391), - [sym__thematic_break] = ACTIONS(2391), - [sym__list_marker_minus] = ACTIONS(2391), - [sym__list_marker_plus] = ACTIONS(2391), - [sym__list_marker_star] = ACTIONS(2391), - [sym__list_marker_parenthesis] = ACTIONS(2391), - [sym__list_marker_dot] = ACTIONS(2391), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2391), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2391), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2391), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2391), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2391), - [sym__list_marker_example] = ACTIONS(2391), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2391), - [sym__fenced_code_block_start_backtick] = ACTIONS(2391), - [sym_minus_metadata] = ACTIONS(2391), - [sym__pipe_table_start] = ACTIONS(2391), - [sym__fenced_div_start] = ACTIONS(2391), - [sym_ref_id_specifier] = ACTIONS(2391), - [sym__code_span_start] = ACTIONS(2391), - [sym__html_comment] = ACTIONS(2391), - [sym__autolink] = ACTIONS(2391), - [sym__highlight_span_start] = ACTIONS(2391), - [sym__insert_span_start] = ACTIONS(2391), - [sym__delete_span_start] = ACTIONS(2391), - [sym__edit_comment_span_start] = ACTIONS(2391), - [sym__single_quote_span_open] = ACTIONS(2391), - [sym__double_quote_span_open] = ACTIONS(2391), - [sym__shortcode_open_escaped] = ACTIONS(2391), - [sym__shortcode_open] = ACTIONS(2391), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2391), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2391), - [sym__cite_author_in_text] = ACTIONS(2391), - [sym__cite_suppress_author] = ACTIONS(2391), - [sym__strikeout_open] = ACTIONS(2391), - [sym__subscript_open] = ACTIONS(2391), - [sym__superscript_open] = ACTIONS(2391), - [sym__inline_note_start_token] = ACTIONS(2391), - [sym__strong_emphasis_open_star] = ACTIONS(2391), - [sym__strong_emphasis_open_underscore] = ACTIONS(2391), - [sym__emphasis_open_star] = ACTIONS(2391), - [sym__emphasis_open_underscore] = ACTIONS(2391), - [sym_inline_note_reference] = ACTIONS(2391), - [sym_html_element] = ACTIONS(2391), - [sym__pandoc_lt_str] = ACTIONS(2391), - [sym__pandoc_line_break] = ACTIONS(2391), - [sym_grid_table] = ACTIONS(2391), - [sym__caption_start] = ACTIONS(2391), + [STATE(455)] = { + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_entity_reference] = ACTIONS(2713), + [sym_numeric_character_reference] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_BANG_LBRACK] = ACTIONS(2713), + [anon_sym_DOLLAR] = ACTIONS(2715), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2713), + [aux_sym_pandoc_str_token1] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2713), + [sym__whitespace] = ACTIONS(2713), + [sym__line_ending] = ACTIONS(2713), + [sym__soft_line_ending] = ACTIONS(2713), + [sym__block_quote_start] = ACTIONS(2713), + [sym_atx_h1_marker] = ACTIONS(2713), + [sym_atx_h2_marker] = ACTIONS(2713), + [sym_atx_h3_marker] = ACTIONS(2713), + [sym_atx_h4_marker] = ACTIONS(2713), + [sym_atx_h5_marker] = ACTIONS(2713), + [sym_atx_h6_marker] = ACTIONS(2713), + [sym__thematic_break] = ACTIONS(2713), + [sym__list_marker_minus] = ACTIONS(2713), + [sym__list_marker_plus] = ACTIONS(2713), + [sym__list_marker_star] = ACTIONS(2713), + [sym__list_marker_parenthesis] = ACTIONS(2713), + [sym__list_marker_dot] = ACTIONS(2713), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2713), + [sym__list_marker_example] = ACTIONS(2713), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2713), + [sym__fenced_code_block_start_backtick] = ACTIONS(2713), + [sym__minus_metadata_start] = ACTIONS(2713), + [sym__pipe_table_start] = ACTIONS(2713), + [sym__fenced_div_start] = ACTIONS(2713), + [sym_ref_id_specifier] = ACTIONS(2713), + [sym__code_span_start] = ACTIONS(2713), + [sym__html_comment] = ACTIONS(2713), + [sym__autolink] = ACTIONS(2713), + [sym__highlight_span_start] = ACTIONS(2713), + [sym__insert_span_start] = ACTIONS(2713), + [sym__delete_span_start] = ACTIONS(2713), + [sym__edit_comment_span_start] = ACTIONS(2713), + [sym__single_quote_span_open] = ACTIONS(2713), + [sym__double_quote_span_open] = ACTIONS(2713), + [sym__shortcode_open_escaped] = ACTIONS(2713), + [sym__shortcode_open] = ACTIONS(2713), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2713), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2713), + [sym__cite_author_in_text] = ACTIONS(2713), + [sym__cite_suppress_author] = ACTIONS(2713), + [sym__strikeout_open] = ACTIONS(2713), + [sym__subscript_open] = ACTIONS(2713), + [sym__superscript_open] = ACTIONS(2713), + [sym__inline_note_start_token] = ACTIONS(2713), + [sym__strong_emphasis_open_star] = ACTIONS(2713), + [sym__strong_emphasis_open_underscore] = ACTIONS(2713), + [sym__emphasis_open_star] = ACTIONS(2713), + [sym__emphasis_open_underscore] = ACTIONS(2713), + [sym_inline_note_reference] = ACTIONS(2713), + [sym_html_element] = ACTIONS(2713), + [sym__pandoc_lt_str] = ACTIONS(2713), + [sym__pandoc_line_break] = ACTIONS(2713), + [sym_grid_table] = ACTIONS(2713), + [sym__caption_start] = ACTIONS(2713), }, - [STATE(398)] = { - [sym_entity_reference] = ACTIONS(2709), - [sym_numeric_character_reference] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_BANG_LBRACK] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2711), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2709), - [aux_sym_pandoc_str_token1] = ACTIONS(2711), - [anon_sym_PIPE] = ACTIONS(2709), - [sym__whitespace] = ACTIONS(2709), - [sym__line_ending] = ACTIONS(2709), - [sym__soft_line_ending] = ACTIONS(2709), - [sym__block_close] = ACTIONS(2709), - [sym__block_quote_start] = ACTIONS(2709), - [sym_atx_h1_marker] = ACTIONS(2709), - [sym_atx_h2_marker] = ACTIONS(2709), - [sym_atx_h3_marker] = ACTIONS(2709), - [sym_atx_h4_marker] = ACTIONS(2709), - [sym_atx_h5_marker] = ACTIONS(2709), - [sym_atx_h6_marker] = ACTIONS(2709), - [sym__thematic_break] = ACTIONS(2709), - [sym__list_marker_minus] = ACTIONS(2709), - [sym__list_marker_plus] = ACTIONS(2709), - [sym__list_marker_star] = ACTIONS(2709), - [sym__list_marker_parenthesis] = ACTIONS(2709), - [sym__list_marker_dot] = ACTIONS(2709), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2709), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2709), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2709), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2709), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2709), - [sym__list_marker_example] = ACTIONS(2709), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2709), - [sym__fenced_code_block_start_backtick] = ACTIONS(2709), - [sym_minus_metadata] = ACTIONS(2709), - [sym__pipe_table_start] = ACTIONS(2709), - [sym__fenced_div_start] = ACTIONS(2709), - [sym_ref_id_specifier] = ACTIONS(2709), - [sym__code_span_start] = ACTIONS(2709), - [sym__html_comment] = ACTIONS(2709), - [sym__autolink] = ACTIONS(2709), - [sym__highlight_span_start] = ACTIONS(2709), - [sym__insert_span_start] = ACTIONS(2709), - [sym__delete_span_start] = ACTIONS(2709), - [sym__edit_comment_span_start] = ACTIONS(2709), - [sym__single_quote_span_open] = ACTIONS(2709), - [sym__double_quote_span_open] = ACTIONS(2709), - [sym__shortcode_open_escaped] = ACTIONS(2709), - [sym__shortcode_open] = ACTIONS(2709), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2709), - [sym__cite_author_in_text] = ACTIONS(2709), - [sym__cite_suppress_author] = ACTIONS(2709), - [sym__strikeout_open] = ACTIONS(2709), - [sym__subscript_open] = ACTIONS(2709), - [sym__superscript_open] = ACTIONS(2709), - [sym__inline_note_start_token] = ACTIONS(2709), - [sym__strong_emphasis_open_star] = ACTIONS(2709), - [sym__strong_emphasis_open_underscore] = ACTIONS(2709), - [sym__emphasis_open_star] = ACTIONS(2709), - [sym__emphasis_open_underscore] = ACTIONS(2709), - [sym_inline_note_reference] = ACTIONS(2709), - [sym_html_element] = ACTIONS(2709), - [sym__pandoc_lt_str] = ACTIONS(2709), - [sym__pandoc_line_break] = ACTIONS(2709), - [sym_grid_table] = ACTIONS(2709), - [sym__caption_start] = ACTIONS(2709), + [STATE(456)] = { + [ts_builtin_sym_end] = ACTIONS(2717), + [sym_entity_reference] = ACTIONS(2717), + [sym_numeric_character_reference] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_BANG_LBRACK] = ACTIONS(2717), + [anon_sym_DOLLAR] = ACTIONS(2719), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2717), + [aux_sym_pandoc_str_token1] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2717), + [sym__whitespace] = ACTIONS(2717), + [sym__line_ending] = ACTIONS(2717), + [sym__soft_line_ending] = ACTIONS(2717), + [sym__block_quote_start] = ACTIONS(2717), + [sym_atx_h1_marker] = ACTIONS(2717), + [sym_atx_h2_marker] = ACTIONS(2717), + [sym_atx_h3_marker] = ACTIONS(2717), + [sym_atx_h4_marker] = ACTIONS(2717), + [sym_atx_h5_marker] = ACTIONS(2717), + [sym_atx_h6_marker] = ACTIONS(2717), + [sym__thematic_break] = ACTIONS(2717), + [sym__list_marker_minus] = ACTIONS(2717), + [sym__list_marker_plus] = ACTIONS(2717), + [sym__list_marker_star] = ACTIONS(2717), + [sym__list_marker_parenthesis] = ACTIONS(2717), + [sym__list_marker_dot] = ACTIONS(2717), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2717), + [sym__list_marker_example] = ACTIONS(2717), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2717), + [sym__fenced_code_block_start_backtick] = ACTIONS(2717), + [sym__minus_metadata_start] = ACTIONS(2717), + [sym__pipe_table_start] = ACTIONS(2717), + [sym__fenced_div_start] = ACTIONS(2717), + [sym_ref_id_specifier] = ACTIONS(2717), + [sym__code_span_start] = ACTIONS(2717), + [sym__html_comment] = ACTIONS(2717), + [sym__autolink] = ACTIONS(2717), + [sym__highlight_span_start] = ACTIONS(2717), + [sym__insert_span_start] = ACTIONS(2717), + [sym__delete_span_start] = ACTIONS(2717), + [sym__edit_comment_span_start] = ACTIONS(2717), + [sym__single_quote_span_open] = ACTIONS(2717), + [sym__double_quote_span_open] = ACTIONS(2717), + [sym__shortcode_open_escaped] = ACTIONS(2717), + [sym__shortcode_open] = ACTIONS(2717), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2717), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2717), + [sym__cite_author_in_text] = ACTIONS(2717), + [sym__cite_suppress_author] = ACTIONS(2717), + [sym__strikeout_open] = ACTIONS(2717), + [sym__subscript_open] = ACTIONS(2717), + [sym__superscript_open] = ACTIONS(2717), + [sym__inline_note_start_token] = ACTIONS(2717), + [sym__strong_emphasis_open_star] = ACTIONS(2717), + [sym__strong_emphasis_open_underscore] = ACTIONS(2717), + [sym__emphasis_open_star] = ACTIONS(2717), + [sym__emphasis_open_underscore] = ACTIONS(2717), + [sym_inline_note_reference] = ACTIONS(2717), + [sym_html_element] = ACTIONS(2717), + [sym__pandoc_lt_str] = ACTIONS(2717), + [sym__pandoc_line_break] = ACTIONS(2717), + [sym_grid_table] = ACTIONS(2717), + [sym__caption_start] = ACTIONS(2717), }, - [STATE(399)] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_entity_reference] = ACTIONS(2407), - [sym_numeric_character_reference] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_BANG_LBRACK] = ACTIONS(2407), - [anon_sym_DOLLAR] = ACTIONS(2409), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(2407), - [aux_sym_pandoc_str_token1] = ACTIONS(2409), - [anon_sym_PIPE] = ACTIONS(2407), - [sym__whitespace] = ACTIONS(2407), - [sym__line_ending] = ACTIONS(2407), - [sym__soft_line_ending] = ACTIONS(2407), - [sym__block_quote_start] = ACTIONS(2407), - [sym_atx_h1_marker] = ACTIONS(2407), - [sym_atx_h2_marker] = ACTIONS(2407), - [sym_atx_h3_marker] = ACTIONS(2407), - [sym_atx_h4_marker] = ACTIONS(2407), - [sym_atx_h5_marker] = ACTIONS(2407), - [sym_atx_h6_marker] = ACTIONS(2407), - [sym__thematic_break] = ACTIONS(2407), - [sym__list_marker_minus] = ACTIONS(2407), - [sym__list_marker_plus] = ACTIONS(2407), - [sym__list_marker_star] = ACTIONS(2407), - [sym__list_marker_parenthesis] = ACTIONS(2407), - [sym__list_marker_dot] = ACTIONS(2407), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_example] = ACTIONS(2407), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2407), - [sym__fenced_code_block_start_backtick] = ACTIONS(2407), - [sym_minus_metadata] = ACTIONS(2407), - [sym__pipe_table_start] = ACTIONS(2407), - [sym__fenced_div_start] = ACTIONS(2407), - [sym_ref_id_specifier] = ACTIONS(2407), - [sym__code_span_start] = ACTIONS(2407), - [sym__html_comment] = ACTIONS(2407), - [sym__autolink] = ACTIONS(2407), - [sym__highlight_span_start] = ACTIONS(2407), - [sym__insert_span_start] = ACTIONS(2407), - [sym__delete_span_start] = ACTIONS(2407), - [sym__edit_comment_span_start] = ACTIONS(2407), - [sym__single_quote_span_open] = ACTIONS(2407), - [sym__double_quote_span_open] = ACTIONS(2407), - [sym__shortcode_open_escaped] = ACTIONS(2407), - [sym__shortcode_open] = ACTIONS(2407), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2407), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2407), - [sym__cite_author_in_text] = ACTIONS(2407), - [sym__cite_suppress_author] = ACTIONS(2407), - [sym__strikeout_open] = ACTIONS(2407), - [sym__subscript_open] = ACTIONS(2407), - [sym__superscript_open] = ACTIONS(2407), - [sym__inline_note_start_token] = ACTIONS(2407), - [sym__strong_emphasis_open_star] = ACTIONS(2407), - [sym__strong_emphasis_open_underscore] = ACTIONS(2407), - [sym__emphasis_open_star] = ACTIONS(2407), - [sym__emphasis_open_underscore] = ACTIONS(2407), - [sym_inline_note_reference] = ACTIONS(2407), - [sym_html_element] = ACTIONS(2407), - [sym__pandoc_lt_str] = ACTIONS(2407), - [sym__pandoc_line_break] = ACTIONS(2407), - [sym_grid_table] = ACTIONS(2407), - [sym__caption_start] = ACTIONS(2407), + [STATE(457)] = { + [ts_builtin_sym_end] = ACTIONS(2721), + [sym_entity_reference] = ACTIONS(2721), + [sym_numeric_character_reference] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_BANG_LBRACK] = ACTIONS(2721), + [anon_sym_DOLLAR] = ACTIONS(2723), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2721), + [aux_sym_pandoc_str_token1] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2721), + [sym__whitespace] = ACTIONS(2721), + [sym__line_ending] = ACTIONS(2721), + [sym__soft_line_ending] = ACTIONS(2721), + [sym__block_quote_start] = ACTIONS(2721), + [sym_atx_h1_marker] = ACTIONS(2721), + [sym_atx_h2_marker] = ACTIONS(2721), + [sym_atx_h3_marker] = ACTIONS(2721), + [sym_atx_h4_marker] = ACTIONS(2721), + [sym_atx_h5_marker] = ACTIONS(2721), + [sym_atx_h6_marker] = ACTIONS(2721), + [sym__thematic_break] = ACTIONS(2721), + [sym__list_marker_minus] = ACTIONS(2721), + [sym__list_marker_plus] = ACTIONS(2721), + [sym__list_marker_star] = ACTIONS(2721), + [sym__list_marker_parenthesis] = ACTIONS(2721), + [sym__list_marker_dot] = ACTIONS(2721), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2721), + [sym__list_marker_example] = ACTIONS(2721), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2721), + [sym__fenced_code_block_start_backtick] = ACTIONS(2721), + [sym__minus_metadata_start] = ACTIONS(2721), + [sym__pipe_table_start] = ACTIONS(2721), + [sym__fenced_div_start] = ACTIONS(2721), + [sym_ref_id_specifier] = ACTIONS(2721), + [sym__code_span_start] = ACTIONS(2721), + [sym__html_comment] = ACTIONS(2721), + [sym__autolink] = ACTIONS(2721), + [sym__highlight_span_start] = ACTIONS(2721), + [sym__insert_span_start] = ACTIONS(2721), + [sym__delete_span_start] = ACTIONS(2721), + [sym__edit_comment_span_start] = ACTIONS(2721), + [sym__single_quote_span_open] = ACTIONS(2721), + [sym__double_quote_span_open] = ACTIONS(2721), + [sym__shortcode_open_escaped] = ACTIONS(2721), + [sym__shortcode_open] = ACTIONS(2721), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2721), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2721), + [sym__cite_author_in_text] = ACTIONS(2721), + [sym__cite_suppress_author] = ACTIONS(2721), + [sym__strikeout_open] = ACTIONS(2721), + [sym__subscript_open] = ACTIONS(2721), + [sym__superscript_open] = ACTIONS(2721), + [sym__inline_note_start_token] = ACTIONS(2721), + [sym__strong_emphasis_open_star] = ACTIONS(2721), + [sym__strong_emphasis_open_underscore] = ACTIONS(2721), + [sym__emphasis_open_star] = ACTIONS(2721), + [sym__emphasis_open_underscore] = ACTIONS(2721), + [sym_inline_note_reference] = ACTIONS(2721), + [sym_html_element] = ACTIONS(2721), + [sym__pandoc_lt_str] = ACTIONS(2721), + [sym__pandoc_line_break] = ACTIONS(2721), + [sym_grid_table] = ACTIONS(2721), + [sym__caption_start] = ACTIONS(2721), }, - [STATE(400)] = { - [ts_builtin_sym_end] = ACTIONS(2411), - [sym_entity_reference] = ACTIONS(2411), - [sym_numeric_character_reference] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(2411), - [anon_sym_BANG_LBRACK] = ACTIONS(2411), - [anon_sym_DOLLAR] = ACTIONS(2413), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [aux_sym_pandoc_str_token1] = ACTIONS(2413), - [anon_sym_PIPE] = ACTIONS(2411), - [sym__whitespace] = ACTIONS(2411), - [sym__line_ending] = ACTIONS(2411), - [sym__soft_line_ending] = ACTIONS(2411), - [sym__block_quote_start] = ACTIONS(2411), - [sym_atx_h1_marker] = ACTIONS(2411), - [sym_atx_h2_marker] = ACTIONS(2411), - [sym_atx_h3_marker] = ACTIONS(2411), - [sym_atx_h4_marker] = ACTIONS(2411), - [sym_atx_h5_marker] = ACTIONS(2411), - [sym_atx_h6_marker] = ACTIONS(2411), - [sym__thematic_break] = ACTIONS(2411), - [sym__list_marker_minus] = ACTIONS(2411), - [sym__list_marker_plus] = ACTIONS(2411), - [sym__list_marker_star] = ACTIONS(2411), - [sym__list_marker_parenthesis] = ACTIONS(2411), - [sym__list_marker_dot] = ACTIONS(2411), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2411), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2411), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2411), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2411), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2411), - [sym__list_marker_example] = ACTIONS(2411), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2411), - [sym__fenced_code_block_start_backtick] = ACTIONS(2411), - [sym_minus_metadata] = ACTIONS(2411), - [sym__pipe_table_start] = ACTIONS(2411), - [sym__fenced_div_start] = ACTIONS(2411), - [sym_ref_id_specifier] = ACTIONS(2411), - [sym__code_span_start] = ACTIONS(2411), - [sym__html_comment] = ACTIONS(2411), - [sym__autolink] = ACTIONS(2411), - [sym__highlight_span_start] = ACTIONS(2411), - [sym__insert_span_start] = ACTIONS(2411), - [sym__delete_span_start] = ACTIONS(2411), - [sym__edit_comment_span_start] = ACTIONS(2411), - [sym__single_quote_span_open] = ACTIONS(2411), - [sym__double_quote_span_open] = ACTIONS(2411), - [sym__shortcode_open_escaped] = ACTIONS(2411), - [sym__shortcode_open] = ACTIONS(2411), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2411), - [sym__cite_author_in_text] = ACTIONS(2411), - [sym__cite_suppress_author] = ACTIONS(2411), - [sym__strikeout_open] = ACTIONS(2411), - [sym__subscript_open] = ACTIONS(2411), - [sym__superscript_open] = ACTIONS(2411), - [sym__inline_note_start_token] = ACTIONS(2411), - [sym__strong_emphasis_open_star] = ACTIONS(2411), - [sym__strong_emphasis_open_underscore] = ACTIONS(2411), - [sym__emphasis_open_star] = ACTIONS(2411), - [sym__emphasis_open_underscore] = ACTIONS(2411), - [sym_inline_note_reference] = ACTIONS(2411), - [sym_html_element] = ACTIONS(2411), - [sym__pandoc_lt_str] = ACTIONS(2411), - [sym__pandoc_line_break] = ACTIONS(2411), - [sym_grid_table] = ACTIONS(2411), - [sym__caption_start] = ACTIONS(2411), + [STATE(458)] = { + [sym_entity_reference] = ACTIONS(2757), + [sym_numeric_character_reference] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_BANG_LBRACK] = ACTIONS(2757), + [anon_sym_DOLLAR] = ACTIONS(2759), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2757), + [aux_sym_pandoc_str_token1] = ACTIONS(2759), + [anon_sym_PIPE] = ACTIONS(2757), + [sym__whitespace] = ACTIONS(2757), + [sym__line_ending] = ACTIONS(2757), + [sym__soft_line_ending] = ACTIONS(2757), + [sym__block_close] = ACTIONS(2757), + [sym__block_quote_start] = ACTIONS(2757), + [sym_atx_h1_marker] = ACTIONS(2757), + [sym_atx_h2_marker] = ACTIONS(2757), + [sym_atx_h3_marker] = ACTIONS(2757), + [sym_atx_h4_marker] = ACTIONS(2757), + [sym_atx_h5_marker] = ACTIONS(2757), + [sym_atx_h6_marker] = ACTIONS(2757), + [sym__thematic_break] = ACTIONS(2757), + [sym__list_marker_minus] = ACTIONS(2757), + [sym__list_marker_plus] = ACTIONS(2757), + [sym__list_marker_star] = ACTIONS(2757), + [sym__list_marker_parenthesis] = ACTIONS(2757), + [sym__list_marker_dot] = ACTIONS(2757), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_example] = ACTIONS(2757), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2757), + [sym__fenced_code_block_start_backtick] = ACTIONS(2757), + [sym__minus_metadata_start] = ACTIONS(2757), + [sym__pipe_table_start] = ACTIONS(2757), + [sym__fenced_div_start] = ACTIONS(2757), + [sym_ref_id_specifier] = ACTIONS(2757), + [sym__code_span_start] = ACTIONS(2757), + [sym__html_comment] = ACTIONS(2757), + [sym__autolink] = ACTIONS(2757), + [sym__highlight_span_start] = ACTIONS(2757), + [sym__insert_span_start] = ACTIONS(2757), + [sym__delete_span_start] = ACTIONS(2757), + [sym__edit_comment_span_start] = ACTIONS(2757), + [sym__single_quote_span_open] = ACTIONS(2757), + [sym__double_quote_span_open] = ACTIONS(2757), + [sym__shortcode_open_escaped] = ACTIONS(2757), + [sym__shortcode_open] = ACTIONS(2757), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2757), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2757), + [sym__cite_author_in_text] = ACTIONS(2757), + [sym__cite_suppress_author] = ACTIONS(2757), + [sym__strikeout_open] = ACTIONS(2757), + [sym__subscript_open] = ACTIONS(2757), + [sym__superscript_open] = ACTIONS(2757), + [sym__inline_note_start_token] = ACTIONS(2757), + [sym__strong_emphasis_open_star] = ACTIONS(2757), + [sym__strong_emphasis_open_underscore] = ACTIONS(2757), + [sym__emphasis_open_star] = ACTIONS(2757), + [sym__emphasis_open_underscore] = ACTIONS(2757), + [sym_inline_note_reference] = ACTIONS(2757), + [sym_html_element] = ACTIONS(2757), + [sym__pandoc_lt_str] = ACTIONS(2757), + [sym__pandoc_line_break] = ACTIONS(2757), + [sym_grid_table] = ACTIONS(2757), + [sym__caption_start] = ACTIONS(2757), }, - [STATE(401)] = { - [ts_builtin_sym_end] = ACTIONS(2415), - [sym_entity_reference] = ACTIONS(2415), - [sym_numeric_character_reference] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_BANG_LBRACK] = ACTIONS(2415), - [anon_sym_DOLLAR] = ACTIONS(2417), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2415), - [aux_sym_pandoc_str_token1] = ACTIONS(2417), - [anon_sym_PIPE] = ACTIONS(2415), - [sym__whitespace] = ACTIONS(2415), - [sym__line_ending] = ACTIONS(2415), - [sym__soft_line_ending] = ACTIONS(2415), - [sym__block_quote_start] = ACTIONS(2415), - [sym_atx_h1_marker] = ACTIONS(2415), - [sym_atx_h2_marker] = ACTIONS(2415), - [sym_atx_h3_marker] = ACTIONS(2415), - [sym_atx_h4_marker] = ACTIONS(2415), - [sym_atx_h5_marker] = ACTIONS(2415), - [sym_atx_h6_marker] = ACTIONS(2415), - [sym__thematic_break] = ACTIONS(2415), - [sym__list_marker_minus] = ACTIONS(2415), - [sym__list_marker_plus] = ACTIONS(2415), - [sym__list_marker_star] = ACTIONS(2415), - [sym__list_marker_parenthesis] = ACTIONS(2415), - [sym__list_marker_dot] = ACTIONS(2415), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_example] = ACTIONS(2415), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2415), - [sym__fenced_code_block_start_backtick] = ACTIONS(2415), - [sym_minus_metadata] = ACTIONS(2415), - [sym__pipe_table_start] = ACTIONS(2415), - [sym__fenced_div_start] = ACTIONS(2415), - [sym_ref_id_specifier] = ACTIONS(2415), - [sym__code_span_start] = ACTIONS(2415), - [sym__html_comment] = ACTIONS(2415), - [sym__autolink] = ACTIONS(2415), - [sym__highlight_span_start] = ACTIONS(2415), - [sym__insert_span_start] = ACTIONS(2415), - [sym__delete_span_start] = ACTIONS(2415), - [sym__edit_comment_span_start] = ACTIONS(2415), - [sym__single_quote_span_open] = ACTIONS(2415), - [sym__double_quote_span_open] = ACTIONS(2415), - [sym__shortcode_open_escaped] = ACTIONS(2415), - [sym__shortcode_open] = ACTIONS(2415), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2415), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2415), - [sym__cite_author_in_text] = ACTIONS(2415), - [sym__cite_suppress_author] = ACTIONS(2415), - [sym__strikeout_open] = ACTIONS(2415), - [sym__subscript_open] = ACTIONS(2415), - [sym__superscript_open] = ACTIONS(2415), - [sym__inline_note_start_token] = ACTIONS(2415), - [sym__strong_emphasis_open_star] = ACTIONS(2415), - [sym__strong_emphasis_open_underscore] = ACTIONS(2415), - [sym__emphasis_open_star] = ACTIONS(2415), - [sym__emphasis_open_underscore] = ACTIONS(2415), - [sym_inline_note_reference] = ACTIONS(2415), - [sym_html_element] = ACTIONS(2415), - [sym__pandoc_lt_str] = ACTIONS(2415), - [sym__pandoc_line_break] = ACTIONS(2415), - [sym_grid_table] = ACTIONS(2415), - [sym__caption_start] = ACTIONS(2415), + [STATE(459)] = { + [ts_builtin_sym_end] = ACTIONS(2725), + [sym_entity_reference] = ACTIONS(2725), + [sym_numeric_character_reference] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_BANG_LBRACK] = ACTIONS(2725), + [anon_sym_DOLLAR] = ACTIONS(2727), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2725), + [aux_sym_pandoc_str_token1] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2725), + [sym__whitespace] = ACTIONS(2725), + [sym__line_ending] = ACTIONS(2725), + [sym__soft_line_ending] = ACTIONS(2725), + [sym__block_quote_start] = ACTIONS(2725), + [sym_atx_h1_marker] = ACTIONS(2725), + [sym_atx_h2_marker] = ACTIONS(2725), + [sym_atx_h3_marker] = ACTIONS(2725), + [sym_atx_h4_marker] = ACTIONS(2725), + [sym_atx_h5_marker] = ACTIONS(2725), + [sym_atx_h6_marker] = ACTIONS(2725), + [sym__thematic_break] = ACTIONS(2725), + [sym__list_marker_minus] = ACTIONS(2725), + [sym__list_marker_plus] = ACTIONS(2725), + [sym__list_marker_star] = ACTIONS(2725), + [sym__list_marker_parenthesis] = ACTIONS(2725), + [sym__list_marker_dot] = ACTIONS(2725), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_example] = ACTIONS(2725), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2725), + [sym__fenced_code_block_start_backtick] = ACTIONS(2725), + [sym__minus_metadata_start] = ACTIONS(2725), + [sym__pipe_table_start] = ACTIONS(2725), + [sym__fenced_div_start] = ACTIONS(2725), + [sym_ref_id_specifier] = ACTIONS(2725), + [sym__code_span_start] = ACTIONS(2725), + [sym__html_comment] = ACTIONS(2725), + [sym__autolink] = ACTIONS(2725), + [sym__highlight_span_start] = ACTIONS(2725), + [sym__insert_span_start] = ACTIONS(2725), + [sym__delete_span_start] = ACTIONS(2725), + [sym__edit_comment_span_start] = ACTIONS(2725), + [sym__single_quote_span_open] = ACTIONS(2725), + [sym__double_quote_span_open] = ACTIONS(2725), + [sym__shortcode_open_escaped] = ACTIONS(2725), + [sym__shortcode_open] = ACTIONS(2725), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2725), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2725), + [sym__cite_author_in_text] = ACTIONS(2725), + [sym__cite_suppress_author] = ACTIONS(2725), + [sym__strikeout_open] = ACTIONS(2725), + [sym__subscript_open] = ACTIONS(2725), + [sym__superscript_open] = ACTIONS(2725), + [sym__inline_note_start_token] = ACTIONS(2725), + [sym__strong_emphasis_open_star] = ACTIONS(2725), + [sym__strong_emphasis_open_underscore] = ACTIONS(2725), + [sym__emphasis_open_star] = ACTIONS(2725), + [sym__emphasis_open_underscore] = ACTIONS(2725), + [sym_inline_note_reference] = ACTIONS(2725), + [sym_html_element] = ACTIONS(2725), + [sym__pandoc_lt_str] = ACTIONS(2725), + [sym__pandoc_line_break] = ACTIONS(2725), + [sym_grid_table] = ACTIONS(2725), + [sym__caption_start] = ACTIONS(2725), }, - [STATE(402)] = { - [ts_builtin_sym_end] = ACTIONS(2419), - [sym_entity_reference] = ACTIONS(2419), - [sym_numeric_character_reference] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2419), - [anon_sym_BANG_LBRACK] = ACTIONS(2419), - [anon_sym_DOLLAR] = ACTIONS(2421), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [aux_sym_pandoc_str_token1] = ACTIONS(2421), - [anon_sym_PIPE] = ACTIONS(2419), - [sym__whitespace] = ACTIONS(2419), - [sym__line_ending] = ACTIONS(2419), - [sym__soft_line_ending] = ACTIONS(2419), - [sym__block_quote_start] = ACTIONS(2419), - [sym_atx_h1_marker] = ACTIONS(2419), - [sym_atx_h2_marker] = ACTIONS(2419), - [sym_atx_h3_marker] = ACTIONS(2419), - [sym_atx_h4_marker] = ACTIONS(2419), - [sym_atx_h5_marker] = ACTIONS(2419), - [sym_atx_h6_marker] = ACTIONS(2419), - [sym__thematic_break] = ACTIONS(2419), - [sym__list_marker_minus] = ACTIONS(2419), - [sym__list_marker_plus] = ACTIONS(2419), - [sym__list_marker_star] = ACTIONS(2419), - [sym__list_marker_parenthesis] = ACTIONS(2419), - [sym__list_marker_dot] = ACTIONS(2419), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_example] = ACTIONS(2419), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2419), - [sym__fenced_code_block_start_backtick] = ACTIONS(2419), - [sym_minus_metadata] = ACTIONS(2419), - [sym__pipe_table_start] = ACTIONS(2419), - [sym__fenced_div_start] = ACTIONS(2419), - [sym_ref_id_specifier] = ACTIONS(2419), - [sym__code_span_start] = ACTIONS(2419), - [sym__html_comment] = ACTIONS(2419), - [sym__autolink] = ACTIONS(2419), - [sym__highlight_span_start] = ACTIONS(2419), - [sym__insert_span_start] = ACTIONS(2419), - [sym__delete_span_start] = ACTIONS(2419), - [sym__edit_comment_span_start] = ACTIONS(2419), - [sym__single_quote_span_open] = ACTIONS(2419), - [sym__double_quote_span_open] = ACTIONS(2419), - [sym__shortcode_open_escaped] = ACTIONS(2419), - [sym__shortcode_open] = ACTIONS(2419), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2419), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2419), - [sym__cite_author_in_text] = ACTIONS(2419), - [sym__cite_suppress_author] = ACTIONS(2419), - [sym__strikeout_open] = ACTIONS(2419), - [sym__subscript_open] = ACTIONS(2419), - [sym__superscript_open] = ACTIONS(2419), - [sym__inline_note_start_token] = ACTIONS(2419), - [sym__strong_emphasis_open_star] = ACTIONS(2419), - [sym__strong_emphasis_open_underscore] = ACTIONS(2419), - [sym__emphasis_open_star] = ACTIONS(2419), - [sym__emphasis_open_underscore] = ACTIONS(2419), - [sym_inline_note_reference] = ACTIONS(2419), - [sym_html_element] = ACTIONS(2419), - [sym__pandoc_lt_str] = ACTIONS(2419), - [sym__pandoc_line_break] = ACTIONS(2419), - [sym_grid_table] = ACTIONS(2419), - [sym__caption_start] = ACTIONS(2419), + [STATE(460)] = { + [ts_builtin_sym_end] = ACTIONS(2729), + [sym_entity_reference] = ACTIONS(2729), + [sym_numeric_character_reference] = ACTIONS(2729), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_BANG_LBRACK] = ACTIONS(2729), + [anon_sym_DOLLAR] = ACTIONS(2731), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2729), + [aux_sym_pandoc_str_token1] = ACTIONS(2731), + [anon_sym_PIPE] = ACTIONS(2729), + [sym__whitespace] = ACTIONS(2729), + [sym__line_ending] = ACTIONS(2729), + [sym__soft_line_ending] = ACTIONS(2729), + [sym__block_quote_start] = ACTIONS(2729), + [sym_atx_h1_marker] = ACTIONS(2729), + [sym_atx_h2_marker] = ACTIONS(2729), + [sym_atx_h3_marker] = ACTIONS(2729), + [sym_atx_h4_marker] = ACTIONS(2729), + [sym_atx_h5_marker] = ACTIONS(2729), + [sym_atx_h6_marker] = ACTIONS(2729), + [sym__thematic_break] = ACTIONS(2729), + [sym__list_marker_minus] = ACTIONS(2729), + [sym__list_marker_plus] = ACTIONS(2729), + [sym__list_marker_star] = ACTIONS(2729), + [sym__list_marker_parenthesis] = ACTIONS(2729), + [sym__list_marker_dot] = ACTIONS(2729), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2729), + [sym__list_marker_example] = ACTIONS(2729), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2729), + [sym__fenced_code_block_start_backtick] = ACTIONS(2729), + [sym__minus_metadata_start] = ACTIONS(2729), + [sym__pipe_table_start] = ACTIONS(2729), + [sym__fenced_div_start] = ACTIONS(2729), + [sym_ref_id_specifier] = ACTIONS(2729), + [sym__code_span_start] = ACTIONS(2729), + [sym__html_comment] = ACTIONS(2729), + [sym__autolink] = ACTIONS(2729), + [sym__highlight_span_start] = ACTIONS(2729), + [sym__insert_span_start] = ACTIONS(2729), + [sym__delete_span_start] = ACTIONS(2729), + [sym__edit_comment_span_start] = ACTIONS(2729), + [sym__single_quote_span_open] = ACTIONS(2729), + [sym__double_quote_span_open] = ACTIONS(2729), + [sym__shortcode_open_escaped] = ACTIONS(2729), + [sym__shortcode_open] = ACTIONS(2729), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2729), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2729), + [sym__cite_author_in_text] = ACTIONS(2729), + [sym__cite_suppress_author] = ACTIONS(2729), + [sym__strikeout_open] = ACTIONS(2729), + [sym__subscript_open] = ACTIONS(2729), + [sym__superscript_open] = ACTIONS(2729), + [sym__inline_note_start_token] = ACTIONS(2729), + [sym__strong_emphasis_open_star] = ACTIONS(2729), + [sym__strong_emphasis_open_underscore] = ACTIONS(2729), + [sym__emphasis_open_star] = ACTIONS(2729), + [sym__emphasis_open_underscore] = ACTIONS(2729), + [sym_inline_note_reference] = ACTIONS(2729), + [sym_html_element] = ACTIONS(2729), + [sym__pandoc_lt_str] = ACTIONS(2729), + [sym__pandoc_line_break] = ACTIONS(2729), + [sym_grid_table] = ACTIONS(2729), + [sym__caption_start] = ACTIONS(2729), }, - [STATE(403)] = { - [ts_builtin_sym_end] = ACTIONS(2541), - [sym_entity_reference] = ACTIONS(2541), - [sym_numeric_character_reference] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2541), - [anon_sym_BANG_LBRACK] = ACTIONS(2541), - [anon_sym_DOLLAR] = ACTIONS(2543), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [aux_sym_pandoc_str_token1] = ACTIONS(2543), - [anon_sym_PIPE] = ACTIONS(2541), - [sym__whitespace] = ACTIONS(2541), - [sym__line_ending] = ACTIONS(2541), - [sym__soft_line_ending] = ACTIONS(2541), - [sym__block_quote_start] = ACTIONS(2541), - [sym_atx_h1_marker] = ACTIONS(2541), - [sym_atx_h2_marker] = ACTIONS(2541), - [sym_atx_h3_marker] = ACTIONS(2541), - [sym_atx_h4_marker] = ACTIONS(2541), - [sym_atx_h5_marker] = ACTIONS(2541), - [sym_atx_h6_marker] = ACTIONS(2541), - [sym__thematic_break] = ACTIONS(2541), - [sym__list_marker_minus] = ACTIONS(2541), - [sym__list_marker_plus] = ACTIONS(2541), - [sym__list_marker_star] = ACTIONS(2541), - [sym__list_marker_parenthesis] = ACTIONS(2541), - [sym__list_marker_dot] = ACTIONS(2541), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_example] = ACTIONS(2541), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2541), - [sym__fenced_code_block_start_backtick] = ACTIONS(2541), - [sym_minus_metadata] = ACTIONS(2541), - [sym__pipe_table_start] = ACTIONS(2541), - [sym__fenced_div_start] = ACTIONS(2541), - [sym_ref_id_specifier] = ACTIONS(2541), - [sym__code_span_start] = ACTIONS(2541), - [sym__html_comment] = ACTIONS(2541), - [sym__autolink] = ACTIONS(2541), - [sym__highlight_span_start] = ACTIONS(2541), - [sym__insert_span_start] = ACTIONS(2541), - [sym__delete_span_start] = ACTIONS(2541), - [sym__edit_comment_span_start] = ACTIONS(2541), - [sym__single_quote_span_open] = ACTIONS(2541), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2541), - [sym__shortcode_open] = ACTIONS(2541), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2541), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2541), - [sym__cite_author_in_text] = ACTIONS(2541), - [sym__cite_suppress_author] = ACTIONS(2541), - [sym__strikeout_open] = ACTIONS(2541), - [sym__subscript_open] = ACTIONS(2541), - [sym__superscript_open] = ACTIONS(2541), - [sym__inline_note_start_token] = ACTIONS(2541), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2541), - [sym__emphasis_open_star] = ACTIONS(2541), - [sym__emphasis_open_underscore] = ACTIONS(2541), - [sym_inline_note_reference] = ACTIONS(2541), - [sym_html_element] = ACTIONS(2541), - [sym__pandoc_lt_str] = ACTIONS(2541), - [sym__pandoc_line_break] = ACTIONS(2541), - [sym_grid_table] = ACTIONS(2541), - [sym__caption_start] = ACTIONS(2541), + [STATE(461)] = { + [ts_builtin_sym_end] = ACTIONS(2733), + [sym_entity_reference] = ACTIONS(2733), + [sym_numeric_character_reference] = ACTIONS(2733), + [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_BANG_LBRACK] = ACTIONS(2733), + [anon_sym_DOLLAR] = ACTIONS(2735), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2733), + [aux_sym_pandoc_str_token1] = ACTIONS(2735), + [anon_sym_PIPE] = ACTIONS(2733), + [sym__whitespace] = ACTIONS(2733), + [sym__line_ending] = ACTIONS(2733), + [sym__soft_line_ending] = ACTIONS(2733), + [sym__block_quote_start] = ACTIONS(2733), + [sym_atx_h1_marker] = ACTIONS(2733), + [sym_atx_h2_marker] = ACTIONS(2733), + [sym_atx_h3_marker] = ACTIONS(2733), + [sym_atx_h4_marker] = ACTIONS(2733), + [sym_atx_h5_marker] = ACTIONS(2733), + [sym_atx_h6_marker] = ACTIONS(2733), + [sym__thematic_break] = ACTIONS(2733), + [sym__list_marker_minus] = ACTIONS(2733), + [sym__list_marker_plus] = ACTIONS(2733), + [sym__list_marker_star] = ACTIONS(2733), + [sym__list_marker_parenthesis] = ACTIONS(2733), + [sym__list_marker_dot] = ACTIONS(2733), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2733), + [sym__list_marker_example] = ACTIONS(2733), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2733), + [sym__fenced_code_block_start_backtick] = ACTIONS(2733), + [sym__minus_metadata_start] = ACTIONS(2733), + [sym__pipe_table_start] = ACTIONS(2733), + [sym__fenced_div_start] = ACTIONS(2733), + [sym_ref_id_specifier] = ACTIONS(2733), + [sym__code_span_start] = ACTIONS(2733), + [sym__html_comment] = ACTIONS(2733), + [sym__autolink] = ACTIONS(2733), + [sym__highlight_span_start] = ACTIONS(2733), + [sym__insert_span_start] = ACTIONS(2733), + [sym__delete_span_start] = ACTIONS(2733), + [sym__edit_comment_span_start] = ACTIONS(2733), + [sym__single_quote_span_open] = ACTIONS(2733), + [sym__double_quote_span_open] = ACTIONS(2733), + [sym__shortcode_open_escaped] = ACTIONS(2733), + [sym__shortcode_open] = ACTIONS(2733), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2733), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2733), + [sym__cite_author_in_text] = ACTIONS(2733), + [sym__cite_suppress_author] = ACTIONS(2733), + [sym__strikeout_open] = ACTIONS(2733), + [sym__subscript_open] = ACTIONS(2733), + [sym__superscript_open] = ACTIONS(2733), + [sym__inline_note_start_token] = ACTIONS(2733), + [sym__strong_emphasis_open_star] = ACTIONS(2733), + [sym__strong_emphasis_open_underscore] = ACTIONS(2733), + [sym__emphasis_open_star] = ACTIONS(2733), + [sym__emphasis_open_underscore] = ACTIONS(2733), + [sym_inline_note_reference] = ACTIONS(2733), + [sym_html_element] = ACTIONS(2733), + [sym__pandoc_lt_str] = ACTIONS(2733), + [sym__pandoc_line_break] = ACTIONS(2733), + [sym_grid_table] = ACTIONS(2733), + [sym__caption_start] = ACTIONS(2733), }, - [STATE(404)] = { + [STATE(462)] = { + [ts_builtin_sym_end] = ACTIONS(2737), + [sym_entity_reference] = ACTIONS(2737), + [sym_numeric_character_reference] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_BANG_LBRACK] = ACTIONS(2737), + [anon_sym_DOLLAR] = ACTIONS(2739), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2737), + [aux_sym_pandoc_str_token1] = ACTIONS(2739), + [anon_sym_PIPE] = ACTIONS(2737), + [sym__whitespace] = ACTIONS(2737), + [sym__line_ending] = ACTIONS(2737), + [sym__soft_line_ending] = ACTIONS(2737), + [sym__block_quote_start] = ACTIONS(2737), + [sym_atx_h1_marker] = ACTIONS(2737), + [sym_atx_h2_marker] = ACTIONS(2737), + [sym_atx_h3_marker] = ACTIONS(2737), + [sym_atx_h4_marker] = ACTIONS(2737), + [sym_atx_h5_marker] = ACTIONS(2737), + [sym_atx_h6_marker] = ACTIONS(2737), + [sym__thematic_break] = ACTIONS(2737), + [sym__list_marker_minus] = ACTIONS(2737), + [sym__list_marker_plus] = ACTIONS(2737), + [sym__list_marker_star] = ACTIONS(2737), + [sym__list_marker_parenthesis] = ACTIONS(2737), + [sym__list_marker_dot] = ACTIONS(2737), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2737), + [sym__list_marker_example] = ACTIONS(2737), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2737), + [sym__fenced_code_block_start_backtick] = ACTIONS(2737), + [sym__minus_metadata_start] = ACTIONS(2737), + [sym__pipe_table_start] = ACTIONS(2737), + [sym__fenced_div_start] = ACTIONS(2737), + [sym_ref_id_specifier] = ACTIONS(2737), + [sym__code_span_start] = ACTIONS(2737), + [sym__html_comment] = ACTIONS(2737), + [sym__autolink] = ACTIONS(2737), + [sym__highlight_span_start] = ACTIONS(2737), + [sym__insert_span_start] = ACTIONS(2737), + [sym__delete_span_start] = ACTIONS(2737), + [sym__edit_comment_span_start] = ACTIONS(2737), + [sym__single_quote_span_open] = ACTIONS(2737), + [sym__double_quote_span_open] = ACTIONS(2737), + [sym__shortcode_open_escaped] = ACTIONS(2737), + [sym__shortcode_open] = ACTIONS(2737), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2737), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2737), + [sym__cite_author_in_text] = ACTIONS(2737), + [sym__cite_suppress_author] = ACTIONS(2737), + [sym__strikeout_open] = ACTIONS(2737), + [sym__subscript_open] = ACTIONS(2737), + [sym__superscript_open] = ACTIONS(2737), + [sym__inline_note_start_token] = ACTIONS(2737), + [sym__strong_emphasis_open_star] = ACTIONS(2737), + [sym__strong_emphasis_open_underscore] = ACTIONS(2737), + [sym__emphasis_open_star] = ACTIONS(2737), + [sym__emphasis_open_underscore] = ACTIONS(2737), + [sym_inline_note_reference] = ACTIONS(2737), + [sym_html_element] = ACTIONS(2737), + [sym__pandoc_lt_str] = ACTIONS(2737), + [sym__pandoc_line_break] = ACTIONS(2737), + [sym_grid_table] = ACTIONS(2737), + [sym__caption_start] = ACTIONS(2737), + }, + [STATE(463)] = { + [ts_builtin_sym_end] = ACTIONS(2741), + [sym_entity_reference] = ACTIONS(2741), + [sym_numeric_character_reference] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_BANG_LBRACK] = ACTIONS(2741), + [anon_sym_DOLLAR] = ACTIONS(2743), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2741), + [aux_sym_pandoc_str_token1] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2741), + [sym__whitespace] = ACTIONS(2741), + [sym__line_ending] = ACTIONS(2741), + [sym__soft_line_ending] = ACTIONS(2741), + [sym__block_quote_start] = ACTIONS(2741), + [sym_atx_h1_marker] = ACTIONS(2741), + [sym_atx_h2_marker] = ACTIONS(2741), + [sym_atx_h3_marker] = ACTIONS(2741), + [sym_atx_h4_marker] = ACTIONS(2741), + [sym_atx_h5_marker] = ACTIONS(2741), + [sym_atx_h6_marker] = ACTIONS(2741), + [sym__thematic_break] = ACTIONS(2741), + [sym__list_marker_minus] = ACTIONS(2741), + [sym__list_marker_plus] = ACTIONS(2741), + [sym__list_marker_star] = ACTIONS(2741), + [sym__list_marker_parenthesis] = ACTIONS(2741), + [sym__list_marker_dot] = ACTIONS(2741), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2741), + [sym__list_marker_example] = ACTIONS(2741), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2741), + [sym__fenced_code_block_start_backtick] = ACTIONS(2741), + [sym__minus_metadata_start] = ACTIONS(2741), + [sym__pipe_table_start] = ACTIONS(2741), + [sym__fenced_div_start] = ACTIONS(2741), + [sym_ref_id_specifier] = ACTIONS(2741), + [sym__code_span_start] = ACTIONS(2741), + [sym__html_comment] = ACTIONS(2741), + [sym__autolink] = ACTIONS(2741), + [sym__highlight_span_start] = ACTIONS(2741), + [sym__insert_span_start] = ACTIONS(2741), + [sym__delete_span_start] = ACTIONS(2741), + [sym__edit_comment_span_start] = ACTIONS(2741), + [sym__single_quote_span_open] = ACTIONS(2741), + [sym__double_quote_span_open] = ACTIONS(2741), + [sym__shortcode_open_escaped] = ACTIONS(2741), + [sym__shortcode_open] = ACTIONS(2741), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2741), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2741), + [sym__cite_author_in_text] = ACTIONS(2741), + [sym__cite_suppress_author] = ACTIONS(2741), + [sym__strikeout_open] = ACTIONS(2741), + [sym__subscript_open] = ACTIONS(2741), + [sym__superscript_open] = ACTIONS(2741), + [sym__inline_note_start_token] = ACTIONS(2741), + [sym__strong_emphasis_open_star] = ACTIONS(2741), + [sym__strong_emphasis_open_underscore] = ACTIONS(2741), + [sym__emphasis_open_star] = ACTIONS(2741), + [sym__emphasis_open_underscore] = ACTIONS(2741), + [sym_inline_note_reference] = ACTIONS(2741), + [sym_html_element] = ACTIONS(2741), + [sym__pandoc_lt_str] = ACTIONS(2741), + [sym__pandoc_line_break] = ACTIONS(2741), + [sym_grid_table] = ACTIONS(2741), + [sym__caption_start] = ACTIONS(2741), + }, + [STATE(464)] = { + [ts_builtin_sym_end] = ACTIONS(2745), + [sym_entity_reference] = ACTIONS(2745), + [sym_numeric_character_reference] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_BANG_LBRACK] = ACTIONS(2745), + [anon_sym_DOLLAR] = ACTIONS(2747), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [aux_sym_pandoc_str_token1] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2745), + [sym__whitespace] = ACTIONS(2745), + [sym__line_ending] = ACTIONS(2745), + [sym__soft_line_ending] = ACTIONS(2745), + [sym__block_quote_start] = ACTIONS(2745), + [sym_atx_h1_marker] = ACTIONS(2745), + [sym_atx_h2_marker] = ACTIONS(2745), + [sym_atx_h3_marker] = ACTIONS(2745), + [sym_atx_h4_marker] = ACTIONS(2745), + [sym_atx_h5_marker] = ACTIONS(2745), + [sym_atx_h6_marker] = ACTIONS(2745), + [sym__thematic_break] = ACTIONS(2745), + [sym__list_marker_minus] = ACTIONS(2745), + [sym__list_marker_plus] = ACTIONS(2745), + [sym__list_marker_star] = ACTIONS(2745), + [sym__list_marker_parenthesis] = ACTIONS(2745), + [sym__list_marker_dot] = ACTIONS(2745), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_example] = ACTIONS(2745), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2745), + [sym__fenced_code_block_start_backtick] = ACTIONS(2745), + [sym__minus_metadata_start] = ACTIONS(2745), + [sym__pipe_table_start] = ACTIONS(2745), + [sym__fenced_div_start] = ACTIONS(2745), + [sym_ref_id_specifier] = ACTIONS(2745), + [sym__code_span_start] = ACTIONS(2745), + [sym__html_comment] = ACTIONS(2745), + [sym__autolink] = ACTIONS(2745), + [sym__highlight_span_start] = ACTIONS(2745), + [sym__insert_span_start] = ACTIONS(2745), + [sym__delete_span_start] = ACTIONS(2745), + [sym__edit_comment_span_start] = ACTIONS(2745), + [sym__single_quote_span_open] = ACTIONS(2745), + [sym__double_quote_span_open] = ACTIONS(2745), + [sym__shortcode_open_escaped] = ACTIONS(2745), + [sym__shortcode_open] = ACTIONS(2745), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2745), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2745), + [sym__cite_author_in_text] = ACTIONS(2745), + [sym__cite_suppress_author] = ACTIONS(2745), + [sym__strikeout_open] = ACTIONS(2745), + [sym__subscript_open] = ACTIONS(2745), + [sym__superscript_open] = ACTIONS(2745), + [sym__inline_note_start_token] = ACTIONS(2745), + [sym__strong_emphasis_open_star] = ACTIONS(2745), + [sym__strong_emphasis_open_underscore] = ACTIONS(2745), + [sym__emphasis_open_star] = ACTIONS(2745), + [sym__emphasis_open_underscore] = ACTIONS(2745), + [sym_inline_note_reference] = ACTIONS(2745), + [sym_html_element] = ACTIONS(2745), + [sym__pandoc_lt_str] = ACTIONS(2745), + [sym__pandoc_line_break] = ACTIONS(2745), + [sym_grid_table] = ACTIONS(2745), + [sym__caption_start] = ACTIONS(2745), + }, + [STATE(465)] = { + [ts_builtin_sym_end] = ACTIONS(2749), + [sym_entity_reference] = ACTIONS(2749), + [sym_numeric_character_reference] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_BANG_LBRACK] = ACTIONS(2749), + [anon_sym_DOLLAR] = ACTIONS(2751), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2749), + [aux_sym_pandoc_str_token1] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2749), + [sym__whitespace] = ACTIONS(2749), + [sym__line_ending] = ACTIONS(2749), + [sym__soft_line_ending] = ACTIONS(2749), + [sym__block_quote_start] = ACTIONS(2749), + [sym_atx_h1_marker] = ACTIONS(2749), + [sym_atx_h2_marker] = ACTIONS(2749), + [sym_atx_h3_marker] = ACTIONS(2749), + [sym_atx_h4_marker] = ACTIONS(2749), + [sym_atx_h5_marker] = ACTIONS(2749), + [sym_atx_h6_marker] = ACTIONS(2749), + [sym__thematic_break] = ACTIONS(2749), + [sym__list_marker_minus] = ACTIONS(2749), + [sym__list_marker_plus] = ACTIONS(2749), + [sym__list_marker_star] = ACTIONS(2749), + [sym__list_marker_parenthesis] = ACTIONS(2749), + [sym__list_marker_dot] = ACTIONS(2749), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_example] = ACTIONS(2749), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2749), + [sym__fenced_code_block_start_backtick] = ACTIONS(2749), + [sym__minus_metadata_start] = ACTIONS(2749), + [sym__pipe_table_start] = ACTIONS(2749), + [sym__fenced_div_start] = ACTIONS(2749), + [sym_ref_id_specifier] = ACTIONS(2749), + [sym__code_span_start] = ACTIONS(2749), + [sym__html_comment] = ACTIONS(2749), + [sym__autolink] = ACTIONS(2749), + [sym__highlight_span_start] = ACTIONS(2749), + [sym__insert_span_start] = ACTIONS(2749), + [sym__delete_span_start] = ACTIONS(2749), + [sym__edit_comment_span_start] = ACTIONS(2749), + [sym__single_quote_span_open] = ACTIONS(2749), + [sym__double_quote_span_open] = ACTIONS(2749), + [sym__shortcode_open_escaped] = ACTIONS(2749), + [sym__shortcode_open] = ACTIONS(2749), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2749), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2749), + [sym__cite_author_in_text] = ACTIONS(2749), + [sym__cite_suppress_author] = ACTIONS(2749), + [sym__strikeout_open] = ACTIONS(2749), + [sym__subscript_open] = ACTIONS(2749), + [sym__superscript_open] = ACTIONS(2749), + [sym__inline_note_start_token] = ACTIONS(2749), + [sym__strong_emphasis_open_star] = ACTIONS(2749), + [sym__strong_emphasis_open_underscore] = ACTIONS(2749), + [sym__emphasis_open_star] = ACTIONS(2749), + [sym__emphasis_open_underscore] = ACTIONS(2749), + [sym_inline_note_reference] = ACTIONS(2749), + [sym_html_element] = ACTIONS(2749), + [sym__pandoc_lt_str] = ACTIONS(2749), + [sym__pandoc_line_break] = ACTIONS(2749), + [sym_grid_table] = ACTIONS(2749), + [sym__caption_start] = ACTIONS(2749), + }, + [STATE(466)] = { + [ts_builtin_sym_end] = ACTIONS(2753), + [sym_entity_reference] = ACTIONS(2753), + [sym_numeric_character_reference] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_BANG_LBRACK] = ACTIONS(2753), + [anon_sym_DOLLAR] = ACTIONS(2755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2753), + [aux_sym_pandoc_str_token1] = ACTIONS(2755), + [anon_sym_PIPE] = ACTIONS(2753), + [sym__whitespace] = ACTIONS(2753), + [sym__line_ending] = ACTIONS(2753), + [sym__soft_line_ending] = ACTIONS(2753), + [sym__block_quote_start] = ACTIONS(2753), + [sym_atx_h1_marker] = ACTIONS(2753), + [sym_atx_h2_marker] = ACTIONS(2753), + [sym_atx_h3_marker] = ACTIONS(2753), + [sym_atx_h4_marker] = ACTIONS(2753), + [sym_atx_h5_marker] = ACTIONS(2753), + [sym_atx_h6_marker] = ACTIONS(2753), + [sym__thematic_break] = ACTIONS(2753), + [sym__list_marker_minus] = ACTIONS(2753), + [sym__list_marker_plus] = ACTIONS(2753), + [sym__list_marker_star] = ACTIONS(2753), + [sym__list_marker_parenthesis] = ACTIONS(2753), + [sym__list_marker_dot] = ACTIONS(2753), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_example] = ACTIONS(2753), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2753), + [sym__fenced_code_block_start_backtick] = ACTIONS(2753), + [sym__minus_metadata_start] = ACTIONS(2753), + [sym__pipe_table_start] = ACTIONS(2753), + [sym__fenced_div_start] = ACTIONS(2753), + [sym_ref_id_specifier] = ACTIONS(2753), + [sym__code_span_start] = ACTIONS(2753), + [sym__html_comment] = ACTIONS(2753), + [sym__autolink] = ACTIONS(2753), + [sym__highlight_span_start] = ACTIONS(2753), + [sym__insert_span_start] = ACTIONS(2753), + [sym__delete_span_start] = ACTIONS(2753), + [sym__edit_comment_span_start] = ACTIONS(2753), + [sym__single_quote_span_open] = ACTIONS(2753), + [sym__double_quote_span_open] = ACTIONS(2753), + [sym__shortcode_open_escaped] = ACTIONS(2753), + [sym__shortcode_open] = ACTIONS(2753), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2753), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2753), + [sym__cite_author_in_text] = ACTIONS(2753), + [sym__cite_suppress_author] = ACTIONS(2753), + [sym__strikeout_open] = ACTIONS(2753), + [sym__subscript_open] = ACTIONS(2753), + [sym__superscript_open] = ACTIONS(2753), + [sym__inline_note_start_token] = ACTIONS(2753), + [sym__strong_emphasis_open_star] = ACTIONS(2753), + [sym__strong_emphasis_open_underscore] = ACTIONS(2753), + [sym__emphasis_open_star] = ACTIONS(2753), + [sym__emphasis_open_underscore] = ACTIONS(2753), + [sym_inline_note_reference] = ACTIONS(2753), + [sym_html_element] = ACTIONS(2753), + [sym__pandoc_lt_str] = ACTIONS(2753), + [sym__pandoc_line_break] = ACTIONS(2753), + [sym_grid_table] = ACTIONS(2753), + [sym__caption_start] = ACTIONS(2753), + }, + [STATE(467)] = { + [ts_builtin_sym_end] = ACTIONS(2757), + [sym_entity_reference] = ACTIONS(2757), + [sym_numeric_character_reference] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_BANG_LBRACK] = ACTIONS(2757), + [anon_sym_DOLLAR] = ACTIONS(2759), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2757), + [aux_sym_pandoc_str_token1] = ACTIONS(2759), + [anon_sym_PIPE] = ACTIONS(2757), + [sym__whitespace] = ACTIONS(2757), + [sym__line_ending] = ACTIONS(2757), + [sym__soft_line_ending] = ACTIONS(2757), + [sym__block_quote_start] = ACTIONS(2757), + [sym_atx_h1_marker] = ACTIONS(2757), + [sym_atx_h2_marker] = ACTIONS(2757), + [sym_atx_h3_marker] = ACTIONS(2757), + [sym_atx_h4_marker] = ACTIONS(2757), + [sym_atx_h5_marker] = ACTIONS(2757), + [sym_atx_h6_marker] = ACTIONS(2757), + [sym__thematic_break] = ACTIONS(2757), + [sym__list_marker_minus] = ACTIONS(2757), + [sym__list_marker_plus] = ACTIONS(2757), + [sym__list_marker_star] = ACTIONS(2757), + [sym__list_marker_parenthesis] = ACTIONS(2757), + [sym__list_marker_dot] = ACTIONS(2757), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_example] = ACTIONS(2757), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2757), + [sym__fenced_code_block_start_backtick] = ACTIONS(2757), + [sym__minus_metadata_start] = ACTIONS(2757), + [sym__pipe_table_start] = ACTIONS(2757), + [sym__fenced_div_start] = ACTIONS(2757), + [sym_ref_id_specifier] = ACTIONS(2757), + [sym__code_span_start] = ACTIONS(2757), + [sym__html_comment] = ACTIONS(2757), + [sym__autolink] = ACTIONS(2757), + [sym__highlight_span_start] = ACTIONS(2757), + [sym__insert_span_start] = ACTIONS(2757), + [sym__delete_span_start] = ACTIONS(2757), + [sym__edit_comment_span_start] = ACTIONS(2757), + [sym__single_quote_span_open] = ACTIONS(2757), + [sym__double_quote_span_open] = ACTIONS(2757), + [sym__shortcode_open_escaped] = ACTIONS(2757), + [sym__shortcode_open] = ACTIONS(2757), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2757), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2757), + [sym__cite_author_in_text] = ACTIONS(2757), + [sym__cite_suppress_author] = ACTIONS(2757), + [sym__strikeout_open] = ACTIONS(2757), + [sym__subscript_open] = ACTIONS(2757), + [sym__superscript_open] = ACTIONS(2757), + [sym__inline_note_start_token] = ACTIONS(2757), + [sym__strong_emphasis_open_star] = ACTIONS(2757), + [sym__strong_emphasis_open_underscore] = ACTIONS(2757), + [sym__emphasis_open_star] = ACTIONS(2757), + [sym__emphasis_open_underscore] = ACTIONS(2757), + [sym_inline_note_reference] = ACTIONS(2757), + [sym_html_element] = ACTIONS(2757), + [sym__pandoc_lt_str] = ACTIONS(2757), + [sym__pandoc_line_break] = ACTIONS(2757), + [sym_grid_table] = ACTIONS(2757), + [sym__caption_start] = ACTIONS(2757), + }, + [STATE(468)] = { + [sym_entity_reference] = ACTIONS(2761), + [sym_numeric_character_reference] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_BANG_LBRACK] = ACTIONS(2761), + [anon_sym_DOLLAR] = ACTIONS(2763), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2761), + [aux_sym_pandoc_str_token1] = ACTIONS(2763), + [anon_sym_PIPE] = ACTIONS(2761), + [sym__whitespace] = ACTIONS(2761), + [sym__line_ending] = ACTIONS(2761), + [sym__soft_line_ending] = ACTIONS(2761), + [sym__block_close] = ACTIONS(2761), + [sym__block_quote_start] = ACTIONS(2761), + [sym_atx_h1_marker] = ACTIONS(2761), + [sym_atx_h2_marker] = ACTIONS(2761), + [sym_atx_h3_marker] = ACTIONS(2761), + [sym_atx_h4_marker] = ACTIONS(2761), + [sym_atx_h5_marker] = ACTIONS(2761), + [sym_atx_h6_marker] = ACTIONS(2761), + [sym__thematic_break] = ACTIONS(2761), + [sym__list_marker_minus] = ACTIONS(2761), + [sym__list_marker_plus] = ACTIONS(2761), + [sym__list_marker_star] = ACTIONS(2761), + [sym__list_marker_parenthesis] = ACTIONS(2761), + [sym__list_marker_dot] = ACTIONS(2761), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_example] = ACTIONS(2761), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2761), + [sym__fenced_code_block_start_backtick] = ACTIONS(2761), + [sym__minus_metadata_start] = ACTIONS(2761), + [sym__pipe_table_start] = ACTIONS(2761), + [sym__fenced_div_start] = ACTIONS(2761), + [sym_ref_id_specifier] = ACTIONS(2761), + [sym__code_span_start] = ACTIONS(2761), + [sym__html_comment] = ACTIONS(2761), + [sym__autolink] = ACTIONS(2761), + [sym__highlight_span_start] = ACTIONS(2761), + [sym__insert_span_start] = ACTIONS(2761), + [sym__delete_span_start] = ACTIONS(2761), + [sym__edit_comment_span_start] = ACTIONS(2761), + [sym__single_quote_span_open] = ACTIONS(2761), + [sym__double_quote_span_open] = ACTIONS(2761), + [sym__shortcode_open_escaped] = ACTIONS(2761), + [sym__shortcode_open] = ACTIONS(2761), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2761), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2761), + [sym__cite_author_in_text] = ACTIONS(2761), + [sym__cite_suppress_author] = ACTIONS(2761), + [sym__strikeout_open] = ACTIONS(2761), + [sym__subscript_open] = ACTIONS(2761), + [sym__superscript_open] = ACTIONS(2761), + [sym__inline_note_start_token] = ACTIONS(2761), + [sym__strong_emphasis_open_star] = ACTIONS(2761), + [sym__strong_emphasis_open_underscore] = ACTIONS(2761), + [sym__emphasis_open_star] = ACTIONS(2761), + [sym__emphasis_open_underscore] = ACTIONS(2761), + [sym_inline_note_reference] = ACTIONS(2761), + [sym_html_element] = ACTIONS(2761), + [sym__pandoc_lt_str] = ACTIONS(2761), + [sym__pandoc_line_break] = ACTIONS(2761), + [sym_grid_table] = ACTIONS(2761), + [sym__caption_start] = ACTIONS(2761), + }, + [STATE(469)] = { + [sym_entity_reference] = ACTIONS(2765), + [sym_numeric_character_reference] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_BANG_LBRACK] = ACTIONS(2765), + [anon_sym_DOLLAR] = ACTIONS(2767), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2765), + [aux_sym_pandoc_str_token1] = ACTIONS(2767), + [anon_sym_PIPE] = ACTIONS(2765), + [sym__whitespace] = ACTIONS(2765), + [sym__line_ending] = ACTIONS(2765), + [sym__soft_line_ending] = ACTIONS(2765), + [sym__block_close] = ACTIONS(2765), + [sym__block_quote_start] = ACTIONS(2765), + [sym_atx_h1_marker] = ACTIONS(2765), + [sym_atx_h2_marker] = ACTIONS(2765), + [sym_atx_h3_marker] = ACTIONS(2765), + [sym_atx_h4_marker] = ACTIONS(2765), + [sym_atx_h5_marker] = ACTIONS(2765), + [sym_atx_h6_marker] = ACTIONS(2765), + [sym__thematic_break] = ACTIONS(2765), + [sym__list_marker_minus] = ACTIONS(2765), + [sym__list_marker_plus] = ACTIONS(2765), + [sym__list_marker_star] = ACTIONS(2765), + [sym__list_marker_parenthesis] = ACTIONS(2765), + [sym__list_marker_dot] = ACTIONS(2765), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_example] = ACTIONS(2765), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2765), + [sym__fenced_code_block_start_backtick] = ACTIONS(2765), + [sym__minus_metadata_start] = ACTIONS(2765), + [sym__pipe_table_start] = ACTIONS(2765), + [sym__fenced_div_start] = ACTIONS(2765), + [sym_ref_id_specifier] = ACTIONS(2765), + [sym__code_span_start] = ACTIONS(2765), + [sym__html_comment] = ACTIONS(2765), + [sym__autolink] = ACTIONS(2765), + [sym__highlight_span_start] = ACTIONS(2765), + [sym__insert_span_start] = ACTIONS(2765), + [sym__delete_span_start] = ACTIONS(2765), + [sym__edit_comment_span_start] = ACTIONS(2765), + [sym__single_quote_span_open] = ACTIONS(2765), + [sym__double_quote_span_open] = ACTIONS(2765), + [sym__shortcode_open_escaped] = ACTIONS(2765), + [sym__shortcode_open] = ACTIONS(2765), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2765), + [sym__cite_author_in_text] = ACTIONS(2765), + [sym__cite_suppress_author] = ACTIONS(2765), + [sym__strikeout_open] = ACTIONS(2765), + [sym__subscript_open] = ACTIONS(2765), + [sym__superscript_open] = ACTIONS(2765), + [sym__inline_note_start_token] = ACTIONS(2765), + [sym__strong_emphasis_open_star] = ACTIONS(2765), + [sym__strong_emphasis_open_underscore] = ACTIONS(2765), + [sym__emphasis_open_star] = ACTIONS(2765), + [sym__emphasis_open_underscore] = ACTIONS(2765), + [sym_inline_note_reference] = ACTIONS(2765), + [sym_html_element] = ACTIONS(2765), + [sym__pandoc_lt_str] = ACTIONS(2765), + [sym__pandoc_line_break] = ACTIONS(2765), + [sym_grid_table] = ACTIONS(2765), + [sym__caption_start] = ACTIONS(2765), + }, + [STATE(470)] = { + [ts_builtin_sym_end] = ACTIONS(2761), + [sym_entity_reference] = ACTIONS(2761), + [sym_numeric_character_reference] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_BANG_LBRACK] = ACTIONS(2761), + [anon_sym_DOLLAR] = ACTIONS(2763), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2761), + [aux_sym_pandoc_str_token1] = ACTIONS(2763), + [anon_sym_PIPE] = ACTIONS(2761), + [sym__whitespace] = ACTIONS(2761), + [sym__line_ending] = ACTIONS(2761), + [sym__soft_line_ending] = ACTIONS(2761), + [sym__block_quote_start] = ACTIONS(2761), + [sym_atx_h1_marker] = ACTIONS(2761), + [sym_atx_h2_marker] = ACTIONS(2761), + [sym_atx_h3_marker] = ACTIONS(2761), + [sym_atx_h4_marker] = ACTIONS(2761), + [sym_atx_h5_marker] = ACTIONS(2761), + [sym_atx_h6_marker] = ACTIONS(2761), + [sym__thematic_break] = ACTIONS(2761), + [sym__list_marker_minus] = ACTIONS(2761), + [sym__list_marker_plus] = ACTIONS(2761), + [sym__list_marker_star] = ACTIONS(2761), + [sym__list_marker_parenthesis] = ACTIONS(2761), + [sym__list_marker_dot] = ACTIONS(2761), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_example] = ACTIONS(2761), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2761), + [sym__fenced_code_block_start_backtick] = ACTIONS(2761), + [sym__minus_metadata_start] = ACTIONS(2761), + [sym__pipe_table_start] = ACTIONS(2761), + [sym__fenced_div_start] = ACTIONS(2761), + [sym_ref_id_specifier] = ACTIONS(2761), + [sym__code_span_start] = ACTIONS(2761), + [sym__html_comment] = ACTIONS(2761), + [sym__autolink] = ACTIONS(2761), + [sym__highlight_span_start] = ACTIONS(2761), + [sym__insert_span_start] = ACTIONS(2761), + [sym__delete_span_start] = ACTIONS(2761), + [sym__edit_comment_span_start] = ACTIONS(2761), + [sym__single_quote_span_open] = ACTIONS(2761), + [sym__double_quote_span_open] = ACTIONS(2761), + [sym__shortcode_open_escaped] = ACTIONS(2761), + [sym__shortcode_open] = ACTIONS(2761), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2761), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2761), + [sym__cite_author_in_text] = ACTIONS(2761), + [sym__cite_suppress_author] = ACTIONS(2761), + [sym__strikeout_open] = ACTIONS(2761), + [sym__subscript_open] = ACTIONS(2761), + [sym__superscript_open] = ACTIONS(2761), + [sym__inline_note_start_token] = ACTIONS(2761), + [sym__strong_emphasis_open_star] = ACTIONS(2761), + [sym__strong_emphasis_open_underscore] = ACTIONS(2761), + [sym__emphasis_open_star] = ACTIONS(2761), + [sym__emphasis_open_underscore] = ACTIONS(2761), + [sym_inline_note_reference] = ACTIONS(2761), + [sym_html_element] = ACTIONS(2761), + [sym__pandoc_lt_str] = ACTIONS(2761), + [sym__pandoc_line_break] = ACTIONS(2761), + [sym_grid_table] = ACTIONS(2761), + [sym__caption_start] = ACTIONS(2761), + }, + [STATE(471)] = { + [ts_builtin_sym_end] = ACTIONS(2765), + [sym_entity_reference] = ACTIONS(2765), + [sym_numeric_character_reference] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_BANG_LBRACK] = ACTIONS(2765), + [anon_sym_DOLLAR] = ACTIONS(2767), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2765), + [aux_sym_pandoc_str_token1] = ACTIONS(2767), + [anon_sym_PIPE] = ACTIONS(2765), + [sym__whitespace] = ACTIONS(2765), + [sym__line_ending] = ACTIONS(2765), + [sym__soft_line_ending] = ACTIONS(2765), + [sym__block_quote_start] = ACTIONS(2765), + [sym_atx_h1_marker] = ACTIONS(2765), + [sym_atx_h2_marker] = ACTIONS(2765), + [sym_atx_h3_marker] = ACTIONS(2765), + [sym_atx_h4_marker] = ACTIONS(2765), + [sym_atx_h5_marker] = ACTIONS(2765), + [sym_atx_h6_marker] = ACTIONS(2765), + [sym__thematic_break] = ACTIONS(2765), + [sym__list_marker_minus] = ACTIONS(2765), + [sym__list_marker_plus] = ACTIONS(2765), + [sym__list_marker_star] = ACTIONS(2765), + [sym__list_marker_parenthesis] = ACTIONS(2765), + [sym__list_marker_dot] = ACTIONS(2765), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_example] = ACTIONS(2765), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2765), + [sym__fenced_code_block_start_backtick] = ACTIONS(2765), + [sym__minus_metadata_start] = ACTIONS(2765), + [sym__pipe_table_start] = ACTIONS(2765), + [sym__fenced_div_start] = ACTIONS(2765), + [sym_ref_id_specifier] = ACTIONS(2765), + [sym__code_span_start] = ACTIONS(2765), + [sym__html_comment] = ACTIONS(2765), + [sym__autolink] = ACTIONS(2765), + [sym__highlight_span_start] = ACTIONS(2765), + [sym__insert_span_start] = ACTIONS(2765), + [sym__delete_span_start] = ACTIONS(2765), + [sym__edit_comment_span_start] = ACTIONS(2765), + [sym__single_quote_span_open] = ACTIONS(2765), + [sym__double_quote_span_open] = ACTIONS(2765), + [sym__shortcode_open_escaped] = ACTIONS(2765), + [sym__shortcode_open] = ACTIONS(2765), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2765), + [sym__cite_author_in_text] = ACTIONS(2765), + [sym__cite_suppress_author] = ACTIONS(2765), + [sym__strikeout_open] = ACTIONS(2765), + [sym__subscript_open] = ACTIONS(2765), + [sym__superscript_open] = ACTIONS(2765), + [sym__inline_note_start_token] = ACTIONS(2765), + [sym__strong_emphasis_open_star] = ACTIONS(2765), + [sym__strong_emphasis_open_underscore] = ACTIONS(2765), + [sym__emphasis_open_star] = ACTIONS(2765), + [sym__emphasis_open_underscore] = ACTIONS(2765), + [sym_inline_note_reference] = ACTIONS(2765), + [sym_html_element] = ACTIONS(2765), + [sym__pandoc_lt_str] = ACTIONS(2765), + [sym__pandoc_line_break] = ACTIONS(2765), + [sym_grid_table] = ACTIONS(2765), + [sym__caption_start] = ACTIONS(2765), + }, + [STATE(472)] = { + [ts_builtin_sym_end] = ACTIONS(2769), + [sym_entity_reference] = ACTIONS(2769), + [sym_numeric_character_reference] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_BANG_LBRACK] = ACTIONS(2769), + [anon_sym_DOLLAR] = ACTIONS(2771), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2769), + [aux_sym_pandoc_str_token1] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2769), + [sym__whitespace] = ACTIONS(2769), + [sym__line_ending] = ACTIONS(2769), + [sym__soft_line_ending] = ACTIONS(2769), + [sym__block_quote_start] = ACTIONS(2769), + [sym_atx_h1_marker] = ACTIONS(2769), + [sym_atx_h2_marker] = ACTIONS(2769), + [sym_atx_h3_marker] = ACTIONS(2769), + [sym_atx_h4_marker] = ACTIONS(2769), + [sym_atx_h5_marker] = ACTIONS(2769), + [sym_atx_h6_marker] = ACTIONS(2769), + [sym__thematic_break] = ACTIONS(2769), + [sym__list_marker_minus] = ACTIONS(2769), + [sym__list_marker_plus] = ACTIONS(2769), + [sym__list_marker_star] = ACTIONS(2769), + [sym__list_marker_parenthesis] = ACTIONS(2769), + [sym__list_marker_dot] = ACTIONS(2769), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_example] = ACTIONS(2769), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2769), + [sym__fenced_code_block_start_backtick] = ACTIONS(2769), + [sym__minus_metadata_start] = ACTIONS(2769), + [sym__pipe_table_start] = ACTIONS(2769), + [sym__fenced_div_start] = ACTIONS(2769), + [sym_ref_id_specifier] = ACTIONS(2769), + [sym__code_span_start] = ACTIONS(2769), + [sym__html_comment] = ACTIONS(2769), + [sym__autolink] = ACTIONS(2769), + [sym__highlight_span_start] = ACTIONS(2769), + [sym__insert_span_start] = ACTIONS(2769), + [sym__delete_span_start] = ACTIONS(2769), + [sym__edit_comment_span_start] = ACTIONS(2769), + [sym__single_quote_span_open] = ACTIONS(2769), + [sym__double_quote_span_open] = ACTIONS(2769), + [sym__shortcode_open_escaped] = ACTIONS(2769), + [sym__shortcode_open] = ACTIONS(2769), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2769), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2769), + [sym__cite_author_in_text] = ACTIONS(2769), + [sym__cite_suppress_author] = ACTIONS(2769), + [sym__strikeout_open] = ACTIONS(2769), + [sym__subscript_open] = ACTIONS(2769), + [sym__superscript_open] = ACTIONS(2769), + [sym__inline_note_start_token] = ACTIONS(2769), + [sym__strong_emphasis_open_star] = ACTIONS(2769), + [sym__strong_emphasis_open_underscore] = ACTIONS(2769), + [sym__emphasis_open_star] = ACTIONS(2769), + [sym__emphasis_open_underscore] = ACTIONS(2769), + [sym_inline_note_reference] = ACTIONS(2769), + [sym_html_element] = ACTIONS(2769), + [sym__pandoc_lt_str] = ACTIONS(2769), + [sym__pandoc_line_break] = ACTIONS(2769), + [sym_grid_table] = ACTIONS(2769), + [sym__caption_start] = ACTIONS(2769), + }, + [STATE(473)] = { + [sym_entity_reference] = ACTIONS(2769), + [sym_numeric_character_reference] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_BANG_LBRACK] = ACTIONS(2769), + [anon_sym_DOLLAR] = ACTIONS(2771), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2769), + [aux_sym_pandoc_str_token1] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2769), + [sym__whitespace] = ACTIONS(2769), + [sym__line_ending] = ACTIONS(2769), + [sym__soft_line_ending] = ACTIONS(2769), + [sym__block_close] = ACTIONS(2769), + [sym__block_quote_start] = ACTIONS(2769), + [sym_atx_h1_marker] = ACTIONS(2769), + [sym_atx_h2_marker] = ACTIONS(2769), + [sym_atx_h3_marker] = ACTIONS(2769), + [sym_atx_h4_marker] = ACTIONS(2769), + [sym_atx_h5_marker] = ACTIONS(2769), + [sym_atx_h6_marker] = ACTIONS(2769), + [sym__thematic_break] = ACTIONS(2769), + [sym__list_marker_minus] = ACTIONS(2769), + [sym__list_marker_plus] = ACTIONS(2769), + [sym__list_marker_star] = ACTIONS(2769), + [sym__list_marker_parenthesis] = ACTIONS(2769), + [sym__list_marker_dot] = ACTIONS(2769), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_example] = ACTIONS(2769), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2769), + [sym__fenced_code_block_start_backtick] = ACTIONS(2769), + [sym__minus_metadata_start] = ACTIONS(2769), + [sym__pipe_table_start] = ACTIONS(2769), + [sym__fenced_div_start] = ACTIONS(2769), + [sym_ref_id_specifier] = ACTIONS(2769), + [sym__code_span_start] = ACTIONS(2769), + [sym__html_comment] = ACTIONS(2769), + [sym__autolink] = ACTIONS(2769), + [sym__highlight_span_start] = ACTIONS(2769), + [sym__insert_span_start] = ACTIONS(2769), + [sym__delete_span_start] = ACTIONS(2769), + [sym__edit_comment_span_start] = ACTIONS(2769), + [sym__single_quote_span_open] = ACTIONS(2769), + [sym__double_quote_span_open] = ACTIONS(2769), + [sym__shortcode_open_escaped] = ACTIONS(2769), + [sym__shortcode_open] = ACTIONS(2769), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2769), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2769), + [sym__cite_author_in_text] = ACTIONS(2769), + [sym__cite_suppress_author] = ACTIONS(2769), + [sym__strikeout_open] = ACTIONS(2769), + [sym__subscript_open] = ACTIONS(2769), + [sym__superscript_open] = ACTIONS(2769), + [sym__inline_note_start_token] = ACTIONS(2769), + [sym__strong_emphasis_open_star] = ACTIONS(2769), + [sym__strong_emphasis_open_underscore] = ACTIONS(2769), + [sym__emphasis_open_star] = ACTIONS(2769), + [sym__emphasis_open_underscore] = ACTIONS(2769), + [sym_inline_note_reference] = ACTIONS(2769), + [sym_html_element] = ACTIONS(2769), + [sym__pandoc_lt_str] = ACTIONS(2769), + [sym__pandoc_line_break] = ACTIONS(2769), + [sym_grid_table] = ACTIONS(2769), + [sym__caption_start] = ACTIONS(2769), + }, + [STATE(474)] = { [sym_entity_reference] = ACTIONS(2531), [sym_numeric_character_reference] = ACTIONS(2531), [anon_sym_LBRACK] = ACTIONS(2531), @@ -61980,1214 +67019,525 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2531), [sym__list_marker_example_dont_interrupt] = ACTIONS(2531), [sym__fenced_code_block_start_backtick] = ACTIONS(2531), - [sym_minus_metadata] = ACTIONS(2531), + [sym__minus_metadata_start] = ACTIONS(2531), [sym__pipe_table_start] = ACTIONS(2531), [sym__fenced_div_start] = ACTIONS(2531), - [sym_ref_id_specifier] = ACTIONS(2531), - [sym__code_span_start] = ACTIONS(2531), - [sym__html_comment] = ACTIONS(2531), - [sym__autolink] = ACTIONS(2531), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2531), - [sym__delete_span_start] = ACTIONS(2531), - [sym__edit_comment_span_start] = ACTIONS(2531), - [sym__single_quote_span_open] = ACTIONS(2531), - [sym__double_quote_span_open] = ACTIONS(2531), - [sym__shortcode_open_escaped] = ACTIONS(2531), - [sym__shortcode_open] = ACTIONS(2531), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2531), - [sym__cite_author_in_text] = ACTIONS(2531), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2531), - [sym__subscript_open] = ACTIONS(2531), - [sym__superscript_open] = ACTIONS(2531), - [sym__inline_note_start_token] = ACTIONS(2531), - [sym__strong_emphasis_open_star] = ACTIONS(2531), - [sym__strong_emphasis_open_underscore] = ACTIONS(2531), - [sym__emphasis_open_star] = ACTIONS(2531), - [sym__emphasis_open_underscore] = ACTIONS(2531), - [sym_inline_note_reference] = ACTIONS(2531), - [sym_html_element] = ACTIONS(2531), - [sym__pandoc_lt_str] = ACTIONS(2531), - [sym__pandoc_line_break] = ACTIONS(2531), - [sym_grid_table] = ACTIONS(2531), - [sym__caption_start] = ACTIONS(2531), - }, - [STATE(405)] = { - [sym_entity_reference] = ACTIONS(2537), - [sym_numeric_character_reference] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_BANG_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2539), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [aux_sym_pandoc_str_token1] = ACTIONS(2539), - [anon_sym_PIPE] = ACTIONS(2537), - [sym__whitespace] = ACTIONS(2897), - [sym__line_ending] = ACTIONS(2537), - [sym__soft_line_ending] = ACTIONS(2537), - [sym__block_close] = ACTIONS(2537), - [sym__block_quote_start] = ACTIONS(2537), - [sym_atx_h1_marker] = ACTIONS(2537), - [sym_atx_h2_marker] = ACTIONS(2537), - [sym_atx_h3_marker] = ACTIONS(2537), - [sym_atx_h4_marker] = ACTIONS(2537), - [sym_atx_h5_marker] = ACTIONS(2537), - [sym_atx_h6_marker] = ACTIONS(2537), - [sym__thematic_break] = ACTIONS(2537), - [sym__list_marker_minus] = ACTIONS(2537), - [sym__list_marker_plus] = ACTIONS(2537), - [sym__list_marker_star] = ACTIONS(2537), - [sym__list_marker_parenthesis] = ACTIONS(2537), - [sym__list_marker_dot] = ACTIONS(2537), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_example] = ACTIONS(2537), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2537), - [sym__fenced_code_block_start_backtick] = ACTIONS(2537), - [sym_minus_metadata] = ACTIONS(2537), - [sym__pipe_table_start] = ACTIONS(2537), - [sym__fenced_div_start] = ACTIONS(2537), - [sym_ref_id_specifier] = ACTIONS(2537), - [sym__code_span_start] = ACTIONS(2537), - [sym__html_comment] = ACTIONS(2537), - [sym__autolink] = ACTIONS(2537), - [sym__highlight_span_start] = ACTIONS(2537), - [sym__insert_span_start] = ACTIONS(2537), - [sym__delete_span_start] = ACTIONS(2537), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2537), - [sym__double_quote_span_open] = ACTIONS(2537), - [sym__shortcode_open_escaped] = ACTIONS(2537), - [sym__shortcode_open] = ACTIONS(2537), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2537), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2537), - [sym__cite_author_in_text] = ACTIONS(2537), - [sym__cite_suppress_author] = ACTIONS(2537), - [sym__strikeout_open] = ACTIONS(2537), - [sym__subscript_open] = ACTIONS(2537), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2537), - [sym__strong_emphasis_open_star] = ACTIONS(2537), - [sym__strong_emphasis_open_underscore] = ACTIONS(2537), - [sym__emphasis_open_star] = ACTIONS(2537), - [sym__emphasis_open_underscore] = ACTIONS(2537), - [sym_inline_note_reference] = ACTIONS(2537), - [sym_html_element] = ACTIONS(2537), - [sym__pandoc_lt_str] = ACTIONS(2537), - [sym__pandoc_line_break] = ACTIONS(2537), - [sym_grid_table] = ACTIONS(2537), - [sym__caption_start] = ACTIONS(2537), - }, - [STATE(406)] = { - [sym_entity_reference] = ACTIONS(2537), - [sym_numeric_character_reference] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_BANG_LBRACK] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2539), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [aux_sym_pandoc_str_token1] = ACTIONS(2539), - [anon_sym_PIPE] = ACTIONS(2537), - [sym__whitespace] = ACTIONS(2537), - [sym__line_ending] = ACTIONS(2537), - [sym__soft_line_ending] = ACTIONS(2537), - [sym__block_close] = ACTIONS(2537), - [sym__block_quote_start] = ACTIONS(2537), - [sym_atx_h1_marker] = ACTIONS(2537), - [sym_atx_h2_marker] = ACTIONS(2537), - [sym_atx_h3_marker] = ACTIONS(2537), - [sym_atx_h4_marker] = ACTIONS(2537), - [sym_atx_h5_marker] = ACTIONS(2537), - [sym_atx_h6_marker] = ACTIONS(2537), - [sym__thematic_break] = ACTIONS(2537), - [sym__list_marker_minus] = ACTIONS(2537), - [sym__list_marker_plus] = ACTIONS(2537), - [sym__list_marker_star] = ACTIONS(2537), - [sym__list_marker_parenthesis] = ACTIONS(2537), - [sym__list_marker_dot] = ACTIONS(2537), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2537), - [sym__list_marker_example] = ACTIONS(2537), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2537), - [sym__fenced_code_block_start_backtick] = ACTIONS(2537), - [sym_minus_metadata] = ACTIONS(2537), - [sym__pipe_table_start] = ACTIONS(2537), - [sym__fenced_div_start] = ACTIONS(2537), - [sym_ref_id_specifier] = ACTIONS(2537), - [sym__code_span_start] = ACTIONS(2537), - [sym__html_comment] = ACTIONS(2537), - [sym__autolink] = ACTIONS(2537), - [sym__highlight_span_start] = ACTIONS(2537), - [sym__insert_span_start] = ACTIONS(2537), - [sym__delete_span_start] = ACTIONS(2537), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2537), - [sym__double_quote_span_open] = ACTIONS(2537), - [sym__shortcode_open_escaped] = ACTIONS(2537), - [sym__shortcode_open] = ACTIONS(2537), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2537), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2537), - [sym__cite_author_in_text] = ACTIONS(2537), - [sym__cite_suppress_author] = ACTIONS(2537), - [sym__strikeout_open] = ACTIONS(2537), - [sym__subscript_open] = ACTIONS(2537), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2537), - [sym__strong_emphasis_open_star] = ACTIONS(2537), - [sym__strong_emphasis_open_underscore] = ACTIONS(2537), - [sym__emphasis_open_star] = ACTIONS(2537), - [sym__emphasis_open_underscore] = ACTIONS(2537), - [sym_inline_note_reference] = ACTIONS(2537), - [sym_html_element] = ACTIONS(2537), - [sym__pandoc_lt_str] = ACTIONS(2537), - [sym__pandoc_line_break] = ACTIONS(2537), - [sym_grid_table] = ACTIONS(2537), - [sym__caption_start] = ACTIONS(2537), - }, - [STATE(407)] = { - [ts_builtin_sym_end] = ACTIONS(2213), - [sym_entity_reference] = ACTIONS(2213), - [sym_numeric_character_reference] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_BANG_LBRACK] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2215), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [aux_sym_pandoc_str_token1] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2213), - [sym__whitespace] = ACTIONS(2213), - [sym__line_ending] = ACTIONS(2213), - [sym__soft_line_ending] = ACTIONS(2213), - [sym__block_quote_start] = ACTIONS(2213), - [sym_atx_h1_marker] = ACTIONS(2213), - [sym_atx_h2_marker] = ACTIONS(2213), - [sym_atx_h3_marker] = ACTIONS(2213), - [sym_atx_h4_marker] = ACTIONS(2213), - [sym_atx_h5_marker] = ACTIONS(2213), - [sym_atx_h6_marker] = ACTIONS(2213), - [sym__thematic_break] = ACTIONS(2213), - [sym__list_marker_minus] = ACTIONS(2213), - [sym__list_marker_plus] = ACTIONS(2213), - [sym__list_marker_star] = ACTIONS(2213), - [sym__list_marker_parenthesis] = ACTIONS(2213), - [sym__list_marker_dot] = ACTIONS(2213), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_example] = ACTIONS(2213), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2213), - [sym__fenced_code_block_start_backtick] = ACTIONS(2213), - [sym_minus_metadata] = ACTIONS(2213), - [sym__pipe_table_start] = ACTIONS(2213), - [sym__fenced_div_start] = ACTIONS(2213), - [sym_ref_id_specifier] = ACTIONS(2213), - [sym__code_span_start] = ACTIONS(2213), - [sym__html_comment] = ACTIONS(2213), - [sym__autolink] = ACTIONS(2213), - [sym__highlight_span_start] = ACTIONS(2213), - [sym__insert_span_start] = ACTIONS(2213), - [sym__delete_span_start] = ACTIONS(2213), - [sym__edit_comment_span_start] = ACTIONS(2213), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2213), - [sym__shortcode_open_escaped] = ACTIONS(2213), - [sym__shortcode_open] = ACTIONS(2213), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2213), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2213), - [sym__cite_author_in_text] = ACTIONS(2213), - [sym__cite_suppress_author] = ACTIONS(2213), - [sym__strikeout_open] = ACTIONS(2213), - [sym__subscript_open] = ACTIONS(2213), - [sym__superscript_open] = ACTIONS(2213), - [sym__inline_note_start_token] = ACTIONS(2213), - [sym__strong_emphasis_open_star] = ACTIONS(2213), - [sym__strong_emphasis_open_underscore] = ACTIONS(2213), - [sym__emphasis_open_star] = ACTIONS(2213), - [sym__emphasis_open_underscore] = ACTIONS(2213), - [sym_inline_note_reference] = ACTIONS(2213), - [sym_html_element] = ACTIONS(2213), - [sym__pandoc_lt_str] = ACTIONS(2213), - [sym__pandoc_line_break] = ACTIONS(2213), - [sym_grid_table] = ACTIONS(2213), - [sym__caption_start] = ACTIONS(2213), - }, - [STATE(408)] = { - [sym_entity_reference] = ACTIONS(2379), - [sym_numeric_character_reference] = ACTIONS(2379), - [anon_sym_LBRACK] = ACTIONS(2379), - [anon_sym_BANG_LBRACK] = ACTIONS(2379), - [anon_sym_DOLLAR] = ACTIONS(2381), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [aux_sym_pandoc_str_token1] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2379), - [sym__whitespace] = ACTIONS(2379), - [sym__line_ending] = ACTIONS(2379), - [sym__soft_line_ending] = ACTIONS(2379), - [sym__block_close] = ACTIONS(2379), - [sym__block_quote_start] = ACTIONS(2379), - [sym_atx_h1_marker] = ACTIONS(2379), - [sym_atx_h2_marker] = ACTIONS(2379), - [sym_atx_h3_marker] = ACTIONS(2379), - [sym_atx_h4_marker] = ACTIONS(2379), - [sym_atx_h5_marker] = ACTIONS(2379), - [sym_atx_h6_marker] = ACTIONS(2379), - [sym__thematic_break] = ACTIONS(2379), - [sym__list_marker_minus] = ACTIONS(2379), - [sym__list_marker_plus] = ACTIONS(2379), - [sym__list_marker_star] = ACTIONS(2379), - [sym__list_marker_parenthesis] = ACTIONS(2379), - [sym__list_marker_dot] = ACTIONS(2379), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2379), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2379), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2379), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2379), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2379), - [sym__list_marker_example] = ACTIONS(2379), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2379), - [sym__fenced_code_block_start_backtick] = ACTIONS(2379), - [sym_minus_metadata] = ACTIONS(2379), - [sym__pipe_table_start] = ACTIONS(2379), - [sym__fenced_div_start] = ACTIONS(2379), - [sym_ref_id_specifier] = ACTIONS(2379), - [sym__code_span_start] = ACTIONS(2379), - [sym__html_comment] = ACTIONS(2379), - [sym__autolink] = ACTIONS(2379), - [sym__highlight_span_start] = ACTIONS(2379), - [sym__insert_span_start] = ACTIONS(2379), - [sym__delete_span_start] = ACTIONS(2379), - [sym__edit_comment_span_start] = ACTIONS(2379), - [sym__single_quote_span_open] = ACTIONS(2379), - [sym__double_quote_span_open] = ACTIONS(2379), - [sym__shortcode_open_escaped] = ACTIONS(2379), - [sym__shortcode_open] = ACTIONS(2379), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2379), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2379), - [sym__cite_author_in_text] = ACTIONS(2379), - [sym__cite_suppress_author] = ACTIONS(2379), - [sym__strikeout_open] = ACTIONS(2379), - [sym__subscript_open] = ACTIONS(2379), - [sym__superscript_open] = ACTIONS(2379), - [sym__inline_note_start_token] = ACTIONS(2379), - [sym__strong_emphasis_open_star] = ACTIONS(2379), - [sym__strong_emphasis_open_underscore] = ACTIONS(2379), - [sym__emphasis_open_star] = ACTIONS(2379), - [sym__emphasis_open_underscore] = ACTIONS(2379), - [sym_inline_note_reference] = ACTIONS(2379), - [sym_html_element] = ACTIONS(2379), - [sym__pandoc_lt_str] = ACTIONS(2379), - [sym__pandoc_line_break] = ACTIONS(2379), - [sym_grid_table] = ACTIONS(2379), - [sym__caption_start] = ACTIONS(2379), - }, - [STATE(409)] = { - [sym_entity_reference] = ACTIONS(2383), - [sym_numeric_character_reference] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_BANG_LBRACK] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [aux_sym_pandoc_str_token1] = ACTIONS(2385), - [anon_sym_PIPE] = ACTIONS(2383), - [sym__whitespace] = ACTIONS(2383), - [sym__line_ending] = ACTIONS(2383), - [sym__soft_line_ending] = ACTIONS(2383), - [sym__block_close] = ACTIONS(2383), - [sym__block_quote_start] = ACTIONS(2383), - [sym_atx_h1_marker] = ACTIONS(2383), - [sym_atx_h2_marker] = ACTIONS(2383), - [sym_atx_h3_marker] = ACTIONS(2383), - [sym_atx_h4_marker] = ACTIONS(2383), - [sym_atx_h5_marker] = ACTIONS(2383), - [sym_atx_h6_marker] = ACTIONS(2383), - [sym__thematic_break] = ACTIONS(2383), - [sym__list_marker_minus] = ACTIONS(2383), - [sym__list_marker_plus] = ACTIONS(2383), - [sym__list_marker_star] = ACTIONS(2383), - [sym__list_marker_parenthesis] = ACTIONS(2383), - [sym__list_marker_dot] = ACTIONS(2383), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2383), - [sym__list_marker_example] = ACTIONS(2383), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2383), - [sym__fenced_code_block_start_backtick] = ACTIONS(2383), - [sym_minus_metadata] = ACTIONS(2383), - [sym__pipe_table_start] = ACTIONS(2383), - [sym__fenced_div_start] = ACTIONS(2383), - [sym_ref_id_specifier] = ACTIONS(2383), - [sym__code_span_start] = ACTIONS(2383), - [sym__html_comment] = ACTIONS(2383), - [sym__autolink] = ACTIONS(2383), - [sym__highlight_span_start] = ACTIONS(2383), - [sym__insert_span_start] = ACTIONS(2383), - [sym__delete_span_start] = ACTIONS(2383), - [sym__edit_comment_span_start] = ACTIONS(2383), - [sym__single_quote_span_open] = ACTIONS(2383), - [sym__double_quote_span_open] = ACTIONS(2383), - [sym__shortcode_open_escaped] = ACTIONS(2383), - [sym__shortcode_open] = ACTIONS(2383), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2383), - [sym__cite_author_in_text] = ACTIONS(2383), - [sym__cite_suppress_author] = ACTIONS(2383), - [sym__strikeout_open] = ACTIONS(2383), - [sym__subscript_open] = ACTIONS(2383), - [sym__superscript_open] = ACTIONS(2383), - [sym__inline_note_start_token] = ACTIONS(2383), - [sym__strong_emphasis_open_star] = ACTIONS(2383), - [sym__strong_emphasis_open_underscore] = ACTIONS(2383), - [sym__emphasis_open_star] = ACTIONS(2383), - [sym__emphasis_open_underscore] = ACTIONS(2383), - [sym_inline_note_reference] = ACTIONS(2383), - [sym_html_element] = ACTIONS(2383), - [sym__pandoc_lt_str] = ACTIONS(2383), - [sym__pandoc_line_break] = ACTIONS(2383), - [sym_grid_table] = ACTIONS(2383), - [sym__caption_start] = ACTIONS(2383), - }, - [STATE(410)] = { - [sym_entity_reference] = ACTIONS(2391), - [sym_numeric_character_reference] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_BANG_LBRACK] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2393), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [aux_sym_pandoc_str_token1] = ACTIONS(2393), - [anon_sym_PIPE] = ACTIONS(2391), - [sym__whitespace] = ACTIONS(2391), - [sym__line_ending] = ACTIONS(2391), - [sym__soft_line_ending] = ACTIONS(2391), - [sym__block_close] = ACTIONS(2391), - [sym__block_quote_start] = ACTIONS(2391), - [sym_atx_h1_marker] = ACTIONS(2391), - [sym_atx_h2_marker] = ACTIONS(2391), - [sym_atx_h3_marker] = ACTIONS(2391), - [sym_atx_h4_marker] = ACTIONS(2391), - [sym_atx_h5_marker] = ACTIONS(2391), - [sym_atx_h6_marker] = ACTIONS(2391), - [sym__thematic_break] = ACTIONS(2391), - [sym__list_marker_minus] = ACTIONS(2391), - [sym__list_marker_plus] = ACTIONS(2391), - [sym__list_marker_star] = ACTIONS(2391), - [sym__list_marker_parenthesis] = ACTIONS(2391), - [sym__list_marker_dot] = ACTIONS(2391), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2391), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2391), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2391), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2391), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2391), - [sym__list_marker_example] = ACTIONS(2391), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2391), - [sym__fenced_code_block_start_backtick] = ACTIONS(2391), - [sym_minus_metadata] = ACTIONS(2391), - [sym__pipe_table_start] = ACTIONS(2391), - [sym__fenced_div_start] = ACTIONS(2391), - [sym_ref_id_specifier] = ACTIONS(2391), - [sym__code_span_start] = ACTIONS(2391), - [sym__html_comment] = ACTIONS(2391), - [sym__autolink] = ACTIONS(2391), - [sym__highlight_span_start] = ACTIONS(2391), - [sym__insert_span_start] = ACTIONS(2391), - [sym__delete_span_start] = ACTIONS(2391), - [sym__edit_comment_span_start] = ACTIONS(2391), - [sym__single_quote_span_open] = ACTIONS(2391), - [sym__double_quote_span_open] = ACTIONS(2391), - [sym__shortcode_open_escaped] = ACTIONS(2391), - [sym__shortcode_open] = ACTIONS(2391), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2391), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2391), - [sym__cite_author_in_text] = ACTIONS(2391), - [sym__cite_suppress_author] = ACTIONS(2391), - [sym__strikeout_open] = ACTIONS(2391), - [sym__subscript_open] = ACTIONS(2391), - [sym__superscript_open] = ACTIONS(2391), - [sym__inline_note_start_token] = ACTIONS(2391), - [sym__strong_emphasis_open_star] = ACTIONS(2391), - [sym__strong_emphasis_open_underscore] = ACTIONS(2391), - [sym__emphasis_open_star] = ACTIONS(2391), - [sym__emphasis_open_underscore] = ACTIONS(2391), - [sym_inline_note_reference] = ACTIONS(2391), - [sym_html_element] = ACTIONS(2391), - [sym__pandoc_lt_str] = ACTIONS(2391), - [sym__pandoc_line_break] = ACTIONS(2391), - [sym_grid_table] = ACTIONS(2391), - [sym__caption_start] = ACTIONS(2391), - }, - [STATE(411)] = { - [sym_entity_reference] = ACTIONS(2407), - [sym_numeric_character_reference] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_BANG_LBRACK] = ACTIONS(2407), - [anon_sym_DOLLAR] = ACTIONS(2409), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(2407), - [aux_sym_pandoc_str_token1] = ACTIONS(2409), - [anon_sym_PIPE] = ACTIONS(2407), - [sym__whitespace] = ACTIONS(2407), - [sym__line_ending] = ACTIONS(2407), - [sym__soft_line_ending] = ACTIONS(2407), - [sym__block_close] = ACTIONS(2407), - [sym__block_quote_start] = ACTIONS(2407), - [sym_atx_h1_marker] = ACTIONS(2407), - [sym_atx_h2_marker] = ACTIONS(2407), - [sym_atx_h3_marker] = ACTIONS(2407), - [sym_atx_h4_marker] = ACTIONS(2407), - [sym_atx_h5_marker] = ACTIONS(2407), - [sym_atx_h6_marker] = ACTIONS(2407), - [sym__thematic_break] = ACTIONS(2407), - [sym__list_marker_minus] = ACTIONS(2407), - [sym__list_marker_plus] = ACTIONS(2407), - [sym__list_marker_star] = ACTIONS(2407), - [sym__list_marker_parenthesis] = ACTIONS(2407), - [sym__list_marker_dot] = ACTIONS(2407), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2407), - [sym__list_marker_example] = ACTIONS(2407), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2407), - [sym__fenced_code_block_start_backtick] = ACTIONS(2407), - [sym_minus_metadata] = ACTIONS(2407), - [sym__pipe_table_start] = ACTIONS(2407), - [sym__fenced_div_start] = ACTIONS(2407), - [sym_ref_id_specifier] = ACTIONS(2407), - [sym__code_span_start] = ACTIONS(2407), - [sym__html_comment] = ACTIONS(2407), - [sym__autolink] = ACTIONS(2407), - [sym__highlight_span_start] = ACTIONS(2407), - [sym__insert_span_start] = ACTIONS(2407), - [sym__delete_span_start] = ACTIONS(2407), - [sym__edit_comment_span_start] = ACTIONS(2407), - [sym__single_quote_span_open] = ACTIONS(2407), - [sym__double_quote_span_open] = ACTIONS(2407), - [sym__shortcode_open_escaped] = ACTIONS(2407), - [sym__shortcode_open] = ACTIONS(2407), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2407), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2407), - [sym__cite_author_in_text] = ACTIONS(2407), - [sym__cite_suppress_author] = ACTIONS(2407), - [sym__strikeout_open] = ACTIONS(2407), - [sym__subscript_open] = ACTIONS(2407), - [sym__superscript_open] = ACTIONS(2407), - [sym__inline_note_start_token] = ACTIONS(2407), - [sym__strong_emphasis_open_star] = ACTIONS(2407), - [sym__strong_emphasis_open_underscore] = ACTIONS(2407), - [sym__emphasis_open_star] = ACTIONS(2407), - [sym__emphasis_open_underscore] = ACTIONS(2407), - [sym_inline_note_reference] = ACTIONS(2407), - [sym_html_element] = ACTIONS(2407), - [sym__pandoc_lt_str] = ACTIONS(2407), - [sym__pandoc_line_break] = ACTIONS(2407), - [sym_grid_table] = ACTIONS(2407), - [sym__caption_start] = ACTIONS(2407), - }, - [STATE(412)] = { - [sym_entity_reference] = ACTIONS(2411), - [sym_numeric_character_reference] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(2411), - [anon_sym_BANG_LBRACK] = ACTIONS(2411), - [anon_sym_DOLLAR] = ACTIONS(2413), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [aux_sym_pandoc_str_token1] = ACTIONS(2413), - [anon_sym_PIPE] = ACTIONS(2411), - [sym__whitespace] = ACTIONS(2411), - [sym__line_ending] = ACTIONS(2411), - [sym__soft_line_ending] = ACTIONS(2411), - [sym__block_close] = ACTIONS(2411), - [sym__block_quote_start] = ACTIONS(2411), - [sym_atx_h1_marker] = ACTIONS(2411), - [sym_atx_h2_marker] = ACTIONS(2411), - [sym_atx_h3_marker] = ACTIONS(2411), - [sym_atx_h4_marker] = ACTIONS(2411), - [sym_atx_h5_marker] = ACTIONS(2411), - [sym_atx_h6_marker] = ACTIONS(2411), - [sym__thematic_break] = ACTIONS(2411), - [sym__list_marker_minus] = ACTIONS(2411), - [sym__list_marker_plus] = ACTIONS(2411), - [sym__list_marker_star] = ACTIONS(2411), - [sym__list_marker_parenthesis] = ACTIONS(2411), - [sym__list_marker_dot] = ACTIONS(2411), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2411), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2411), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2411), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2411), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2411), - [sym__list_marker_example] = ACTIONS(2411), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2411), - [sym__fenced_code_block_start_backtick] = ACTIONS(2411), - [sym_minus_metadata] = ACTIONS(2411), - [sym__pipe_table_start] = ACTIONS(2411), - [sym__fenced_div_start] = ACTIONS(2411), - [sym_ref_id_specifier] = ACTIONS(2411), - [sym__code_span_start] = ACTIONS(2411), - [sym__html_comment] = ACTIONS(2411), - [sym__autolink] = ACTIONS(2411), - [sym__highlight_span_start] = ACTIONS(2411), - [sym__insert_span_start] = ACTIONS(2411), - [sym__delete_span_start] = ACTIONS(2411), - [sym__edit_comment_span_start] = ACTIONS(2411), - [sym__single_quote_span_open] = ACTIONS(2411), - [sym__double_quote_span_open] = ACTIONS(2411), - [sym__shortcode_open_escaped] = ACTIONS(2411), - [sym__shortcode_open] = ACTIONS(2411), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2411), - [sym__cite_author_in_text] = ACTIONS(2411), - [sym__cite_suppress_author] = ACTIONS(2411), - [sym__strikeout_open] = ACTIONS(2411), - [sym__subscript_open] = ACTIONS(2411), - [sym__superscript_open] = ACTIONS(2411), - [sym__inline_note_start_token] = ACTIONS(2411), - [sym__strong_emphasis_open_star] = ACTIONS(2411), - [sym__strong_emphasis_open_underscore] = ACTIONS(2411), - [sym__emphasis_open_star] = ACTIONS(2411), - [sym__emphasis_open_underscore] = ACTIONS(2411), - [sym_inline_note_reference] = ACTIONS(2411), - [sym_html_element] = ACTIONS(2411), - [sym__pandoc_lt_str] = ACTIONS(2411), - [sym__pandoc_line_break] = ACTIONS(2411), - [sym_grid_table] = ACTIONS(2411), - [sym__caption_start] = ACTIONS(2411), - }, - [STATE(413)] = { - [sym_entity_reference] = ACTIONS(2415), - [sym_numeric_character_reference] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_BANG_LBRACK] = ACTIONS(2415), - [anon_sym_DOLLAR] = ACTIONS(2417), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2415), - [aux_sym_pandoc_str_token1] = ACTIONS(2417), - [anon_sym_PIPE] = ACTIONS(2415), - [sym__whitespace] = ACTIONS(2415), - [sym__line_ending] = ACTIONS(2415), - [sym__soft_line_ending] = ACTIONS(2415), - [sym__block_close] = ACTIONS(2415), - [sym__block_quote_start] = ACTIONS(2415), - [sym_atx_h1_marker] = ACTIONS(2415), - [sym_atx_h2_marker] = ACTIONS(2415), - [sym_atx_h3_marker] = ACTIONS(2415), - [sym_atx_h4_marker] = ACTIONS(2415), - [sym_atx_h5_marker] = ACTIONS(2415), - [sym_atx_h6_marker] = ACTIONS(2415), - [sym__thematic_break] = ACTIONS(2415), - [sym__list_marker_minus] = ACTIONS(2415), - [sym__list_marker_plus] = ACTIONS(2415), - [sym__list_marker_star] = ACTIONS(2415), - [sym__list_marker_parenthesis] = ACTIONS(2415), - [sym__list_marker_dot] = ACTIONS(2415), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2415), - [sym__list_marker_example] = ACTIONS(2415), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2415), - [sym__fenced_code_block_start_backtick] = ACTIONS(2415), - [sym_minus_metadata] = ACTIONS(2415), - [sym__pipe_table_start] = ACTIONS(2415), - [sym__fenced_div_start] = ACTIONS(2415), - [sym_ref_id_specifier] = ACTIONS(2415), - [sym__code_span_start] = ACTIONS(2415), - [sym__html_comment] = ACTIONS(2415), - [sym__autolink] = ACTIONS(2415), - [sym__highlight_span_start] = ACTIONS(2415), - [sym__insert_span_start] = ACTIONS(2415), - [sym__delete_span_start] = ACTIONS(2415), - [sym__edit_comment_span_start] = ACTIONS(2415), - [sym__single_quote_span_open] = ACTIONS(2415), - [sym__double_quote_span_open] = ACTIONS(2415), - [sym__shortcode_open_escaped] = ACTIONS(2415), - [sym__shortcode_open] = ACTIONS(2415), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2415), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2415), - [sym__cite_author_in_text] = ACTIONS(2415), - [sym__cite_suppress_author] = ACTIONS(2415), - [sym__strikeout_open] = ACTIONS(2415), - [sym__subscript_open] = ACTIONS(2415), - [sym__superscript_open] = ACTIONS(2415), - [sym__inline_note_start_token] = ACTIONS(2415), - [sym__strong_emphasis_open_star] = ACTIONS(2415), - [sym__strong_emphasis_open_underscore] = ACTIONS(2415), - [sym__emphasis_open_star] = ACTIONS(2415), - [sym__emphasis_open_underscore] = ACTIONS(2415), - [sym_inline_note_reference] = ACTIONS(2415), - [sym_html_element] = ACTIONS(2415), - [sym__pandoc_lt_str] = ACTIONS(2415), - [sym__pandoc_line_break] = ACTIONS(2415), - [sym_grid_table] = ACTIONS(2415), - [sym__caption_start] = ACTIONS(2415), - }, - [STATE(414)] = { - [sym_entity_reference] = ACTIONS(2419), - [sym_numeric_character_reference] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2419), - [anon_sym_BANG_LBRACK] = ACTIONS(2419), - [anon_sym_DOLLAR] = ACTIONS(2421), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [aux_sym_pandoc_str_token1] = ACTIONS(2421), - [anon_sym_PIPE] = ACTIONS(2419), - [sym__whitespace] = ACTIONS(2419), - [sym__line_ending] = ACTIONS(2419), - [sym__soft_line_ending] = ACTIONS(2419), - [sym__block_close] = ACTIONS(2419), - [sym__block_quote_start] = ACTIONS(2419), - [sym_atx_h1_marker] = ACTIONS(2419), - [sym_atx_h2_marker] = ACTIONS(2419), - [sym_atx_h3_marker] = ACTIONS(2419), - [sym_atx_h4_marker] = ACTIONS(2419), - [sym_atx_h5_marker] = ACTIONS(2419), - [sym_atx_h6_marker] = ACTIONS(2419), - [sym__thematic_break] = ACTIONS(2419), - [sym__list_marker_minus] = ACTIONS(2419), - [sym__list_marker_plus] = ACTIONS(2419), - [sym__list_marker_star] = ACTIONS(2419), - [sym__list_marker_parenthesis] = ACTIONS(2419), - [sym__list_marker_dot] = ACTIONS(2419), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2419), - [sym__list_marker_example] = ACTIONS(2419), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2419), - [sym__fenced_code_block_start_backtick] = ACTIONS(2419), - [sym_minus_metadata] = ACTIONS(2419), - [sym__pipe_table_start] = ACTIONS(2419), - [sym__fenced_div_start] = ACTIONS(2419), - [sym_ref_id_specifier] = ACTIONS(2419), - [sym__code_span_start] = ACTIONS(2419), - [sym__html_comment] = ACTIONS(2419), - [sym__autolink] = ACTIONS(2419), - [sym__highlight_span_start] = ACTIONS(2419), - [sym__insert_span_start] = ACTIONS(2419), - [sym__delete_span_start] = ACTIONS(2419), - [sym__edit_comment_span_start] = ACTIONS(2419), - [sym__single_quote_span_open] = ACTIONS(2419), - [sym__double_quote_span_open] = ACTIONS(2419), - [sym__shortcode_open_escaped] = ACTIONS(2419), - [sym__shortcode_open] = ACTIONS(2419), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2419), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2419), - [sym__cite_author_in_text] = ACTIONS(2419), - [sym__cite_suppress_author] = ACTIONS(2419), - [sym__strikeout_open] = ACTIONS(2419), - [sym__subscript_open] = ACTIONS(2419), - [sym__superscript_open] = ACTIONS(2419), - [sym__inline_note_start_token] = ACTIONS(2419), - [sym__strong_emphasis_open_star] = ACTIONS(2419), - [sym__strong_emphasis_open_underscore] = ACTIONS(2419), - [sym__emphasis_open_star] = ACTIONS(2419), - [sym__emphasis_open_underscore] = ACTIONS(2419), - [sym_inline_note_reference] = ACTIONS(2419), - [sym_html_element] = ACTIONS(2419), - [sym__pandoc_lt_str] = ACTIONS(2419), - [sym__pandoc_line_break] = ACTIONS(2419), - [sym_grid_table] = ACTIONS(2419), - [sym__caption_start] = ACTIONS(2419), + [sym_ref_id_specifier] = ACTIONS(2531), + [sym__code_span_start] = ACTIONS(2531), + [sym__html_comment] = ACTIONS(2531), + [sym__autolink] = ACTIONS(2531), + [sym__highlight_span_start] = ACTIONS(2531), + [sym__insert_span_start] = ACTIONS(2531), + [sym__delete_span_start] = ACTIONS(2531), + [sym__edit_comment_span_start] = ACTIONS(2531), + [sym__single_quote_span_open] = ACTIONS(2531), + [sym__double_quote_span_open] = ACTIONS(2531), + [sym__shortcode_open_escaped] = ACTIONS(2531), + [sym__shortcode_open] = ACTIONS(2531), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2531), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2531), + [sym__cite_author_in_text] = ACTIONS(2531), + [sym__cite_suppress_author] = ACTIONS(2531), + [sym__strikeout_open] = ACTIONS(2531), + [sym__subscript_open] = ACTIONS(2531), + [sym__superscript_open] = ACTIONS(2531), + [sym__inline_note_start_token] = ACTIONS(2531), + [sym__strong_emphasis_open_star] = ACTIONS(2531), + [sym__strong_emphasis_open_underscore] = ACTIONS(2531), + [sym__emphasis_open_star] = ACTIONS(2531), + [sym__emphasis_open_underscore] = ACTIONS(2531), + [sym_inline_note_reference] = ACTIONS(2531), + [sym_html_element] = ACTIONS(2531), + [sym__pandoc_lt_str] = ACTIONS(2531), + [sym__pandoc_line_break] = ACTIONS(2531), + [sym_grid_table] = ACTIONS(2531), + [sym__caption_start] = ACTIONS(2531), }, - [STATE(415)] = { - [sym_pipe_table_cell] = STATE(2954), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2899), - [sym__line_ending] = ACTIONS(2901), - [sym__eof] = ACTIONS(2901), - [sym__pipe_table_line_ending] = ACTIONS(2901), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pipe_table_delimiter] = ACTIONS(2903), - [sym__pandoc_line_break] = ACTIONS(2139), + [STATE(475)] = { + [sym_entity_reference] = ACTIONS(2535), + [sym_numeric_character_reference] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_BANG_LBRACK] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [aux_sym_pandoc_str_token1] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(2535), + [sym__whitespace] = ACTIONS(2535), + [sym__line_ending] = ACTIONS(2535), + [sym__soft_line_ending] = ACTIONS(2535), + [sym__block_close] = ACTIONS(2535), + [sym__block_quote_start] = ACTIONS(2535), + [sym_atx_h1_marker] = ACTIONS(2535), + [sym_atx_h2_marker] = ACTIONS(2535), + [sym_atx_h3_marker] = ACTIONS(2535), + [sym_atx_h4_marker] = ACTIONS(2535), + [sym_atx_h5_marker] = ACTIONS(2535), + [sym_atx_h6_marker] = ACTIONS(2535), + [sym__thematic_break] = ACTIONS(2535), + [sym__list_marker_minus] = ACTIONS(2535), + [sym__list_marker_plus] = ACTIONS(2535), + [sym__list_marker_star] = ACTIONS(2535), + [sym__list_marker_parenthesis] = ACTIONS(2535), + [sym__list_marker_dot] = ACTIONS(2535), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2535), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2535), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2535), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2535), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2535), + [sym__list_marker_example] = ACTIONS(2535), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2535), + [sym__fenced_code_block_start_backtick] = ACTIONS(2535), + [sym__minus_metadata_start] = ACTIONS(2535), + [sym__pipe_table_start] = ACTIONS(2535), + [sym__fenced_div_start] = ACTIONS(2535), + [sym_ref_id_specifier] = ACTIONS(2535), + [sym__code_span_start] = ACTIONS(2535), + [sym__html_comment] = ACTIONS(2535), + [sym__autolink] = ACTIONS(2535), + [sym__highlight_span_start] = ACTIONS(2535), + [sym__insert_span_start] = ACTIONS(2535), + [sym__delete_span_start] = ACTIONS(2535), + [sym__edit_comment_span_start] = ACTIONS(2535), + [sym__single_quote_span_open] = ACTIONS(2535), + [sym__double_quote_span_open] = ACTIONS(2535), + [sym__shortcode_open_escaped] = ACTIONS(2535), + [sym__shortcode_open] = ACTIONS(2535), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2535), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2535), + [sym__cite_author_in_text] = ACTIONS(2535), + [sym__cite_suppress_author] = ACTIONS(2535), + [sym__strikeout_open] = ACTIONS(2535), + [sym__subscript_open] = ACTIONS(2535), + [sym__superscript_open] = ACTIONS(2535), + [sym__inline_note_start_token] = ACTIONS(2535), + [sym__strong_emphasis_open_star] = ACTIONS(2535), + [sym__strong_emphasis_open_underscore] = ACTIONS(2535), + [sym__emphasis_open_star] = ACTIONS(2535), + [sym__emphasis_open_underscore] = ACTIONS(2535), + [sym_inline_note_reference] = ACTIONS(2535), + [sym_html_element] = ACTIONS(2535), + [sym__pandoc_lt_str] = ACTIONS(2535), + [sym__pandoc_line_break] = ACTIONS(2535), + [sym_grid_table] = ACTIONS(2535), + [sym__caption_start] = ACTIONS(2535), }, - [STATE(416)] = { - [sym_pipe_table_cell] = STATE(2956), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym_pipe_table_row_repeat1] = STATE(444), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2905), - [sym__line_ending] = ACTIONS(2907), - [sym__eof] = ACTIONS(2907), - [sym__pipe_table_line_ending] = ACTIONS(2907), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pandoc_line_break] = ACTIONS(2139), + [STATE(476)] = { + [ts_builtin_sym_end] = ACTIONS(2599), + [sym_entity_reference] = ACTIONS(2599), + [sym_numeric_character_reference] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_BANG_LBRACK] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2601), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [aux_sym_pandoc_str_token1] = ACTIONS(2601), + [anon_sym_PIPE] = ACTIONS(2599), + [sym__whitespace] = ACTIONS(2599), + [sym__line_ending] = ACTIONS(2599), + [sym__soft_line_ending] = ACTIONS(2599), + [sym__block_quote_start] = ACTIONS(2599), + [sym_atx_h1_marker] = ACTIONS(2599), + [sym_atx_h2_marker] = ACTIONS(2599), + [sym_atx_h3_marker] = ACTIONS(2599), + [sym_atx_h4_marker] = ACTIONS(2599), + [sym_atx_h5_marker] = ACTIONS(2599), + [sym_atx_h6_marker] = ACTIONS(2599), + [sym__thematic_break] = ACTIONS(2599), + [sym__list_marker_minus] = ACTIONS(2599), + [sym__list_marker_plus] = ACTIONS(2599), + [sym__list_marker_star] = ACTIONS(2599), + [sym__list_marker_parenthesis] = ACTIONS(2599), + [sym__list_marker_dot] = ACTIONS(2599), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2599), + [sym__list_marker_example] = ACTIONS(2599), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2599), + [sym__fenced_code_block_start_backtick] = ACTIONS(2599), + [sym__minus_metadata_start] = ACTIONS(2599), + [sym__pipe_table_start] = ACTIONS(2599), + [sym__fenced_div_start] = ACTIONS(2599), + [sym_ref_id_specifier] = ACTIONS(2599), + [sym__code_span_start] = ACTIONS(2599), + [sym__html_comment] = ACTIONS(2599), + [sym__autolink] = ACTIONS(2599), + [sym__highlight_span_start] = ACTIONS(2599), + [sym__insert_span_start] = ACTIONS(2599), + [sym__delete_span_start] = ACTIONS(2599), + [sym__edit_comment_span_start] = ACTIONS(2599), + [sym__single_quote_span_open] = ACTIONS(2599), + [sym__double_quote_span_open] = ACTIONS(2599), + [sym__shortcode_open_escaped] = ACTIONS(2599), + [sym__shortcode_open] = ACTIONS(2599), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2599), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2599), + [sym__cite_author_in_text] = ACTIONS(2599), + [sym__cite_suppress_author] = ACTIONS(2599), + [sym__strikeout_open] = ACTIONS(2599), + [sym__subscript_open] = ACTIONS(2599), + [sym__superscript_open] = ACTIONS(2599), + [sym__inline_note_start_token] = ACTIONS(2599), + [sym__strong_emphasis_open_star] = ACTIONS(2599), + [sym__strong_emphasis_open_underscore] = ACTIONS(2599), + [sym__emphasis_open_star] = ACTIONS(2599), + [sym__emphasis_open_underscore] = ACTIONS(2599), + [sym_inline_note_reference] = ACTIONS(2599), + [sym_html_element] = ACTIONS(2599), + [sym__pandoc_lt_str] = ACTIONS(2599), + [sym__pandoc_line_break] = ACTIONS(2599), + [sym_grid_table] = ACTIONS(2599), + [sym__caption_start] = ACTIONS(2599), }, - [STATE(417)] = { - [sym_entity_reference] = ACTIONS(2423), - [sym_numeric_character_reference] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2423), - [anon_sym_BANG_LBRACK] = ACTIONS(2423), - [anon_sym_DOLLAR] = ACTIONS(2425), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [aux_sym_pandoc_str_token1] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2423), - [sym__whitespace] = ACTIONS(2423), - [sym__line_ending] = ACTIONS(2423), - [sym__soft_line_ending] = ACTIONS(2423), - [sym__block_close] = ACTIONS(2423), - [sym__block_quote_start] = ACTIONS(2423), - [sym_atx_h1_marker] = ACTIONS(2423), - [sym_atx_h2_marker] = ACTIONS(2423), - [sym_atx_h3_marker] = ACTIONS(2423), - [sym_atx_h4_marker] = ACTIONS(2423), - [sym_atx_h5_marker] = ACTIONS(2423), - [sym_atx_h6_marker] = ACTIONS(2423), - [sym__thematic_break] = ACTIONS(2423), - [sym__list_marker_minus] = ACTIONS(2423), - [sym__list_marker_plus] = ACTIONS(2423), - [sym__list_marker_star] = ACTIONS(2423), - [sym__list_marker_parenthesis] = ACTIONS(2423), - [sym__list_marker_dot] = ACTIONS(2423), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_example] = ACTIONS(2423), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2423), - [sym__fenced_code_block_start_backtick] = ACTIONS(2423), - [sym_minus_metadata] = ACTIONS(2423), - [sym__pipe_table_start] = ACTIONS(2423), - [sym__fenced_div_start] = ACTIONS(2423), - [sym_ref_id_specifier] = ACTIONS(2423), - [sym__code_span_start] = ACTIONS(2423), - [sym__html_comment] = ACTIONS(2423), - [sym__autolink] = ACTIONS(2423), - [sym__highlight_span_start] = ACTIONS(2423), - [sym__insert_span_start] = ACTIONS(2423), - [sym__delete_span_start] = ACTIONS(2423), - [sym__edit_comment_span_start] = ACTIONS(2423), - [sym__single_quote_span_open] = ACTIONS(2423), - [sym__double_quote_span_open] = ACTIONS(2423), - [sym__shortcode_open_escaped] = ACTIONS(2423), - [sym__shortcode_open] = ACTIONS(2423), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2423), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2423), - [sym__cite_author_in_text] = ACTIONS(2423), - [sym__cite_suppress_author] = ACTIONS(2423), - [sym__strikeout_open] = ACTIONS(2423), - [sym__subscript_open] = ACTIONS(2423), - [sym__superscript_open] = ACTIONS(2423), - [sym__inline_note_start_token] = ACTIONS(2423), - [sym__strong_emphasis_open_star] = ACTIONS(2423), - [sym__strong_emphasis_open_underscore] = ACTIONS(2423), - [sym__emphasis_open_star] = ACTIONS(2423), - [sym__emphasis_open_underscore] = ACTIONS(2423), - [sym_inline_note_reference] = ACTIONS(2423), - [sym_html_element] = ACTIONS(2423), - [sym__pandoc_lt_str] = ACTIONS(2423), - [sym__pandoc_line_break] = ACTIONS(2423), - [sym_grid_table] = ACTIONS(2423), - [sym__caption_start] = ACTIONS(2423), + [STATE(477)] = { + [ts_builtin_sym_end] = ACTIONS(2531), + [sym_entity_reference] = ACTIONS(2531), + [sym_numeric_character_reference] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2531), + [anon_sym_BANG_LBRACK] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2533), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2531), + [aux_sym_pandoc_str_token1] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2531), + [sym__whitespace] = ACTIONS(2531), + [sym__line_ending] = ACTIONS(2531), + [sym__soft_line_ending] = ACTIONS(2531), + [sym__block_quote_start] = ACTIONS(2531), + [sym_atx_h1_marker] = ACTIONS(2531), + [sym_atx_h2_marker] = ACTIONS(2531), + [sym_atx_h3_marker] = ACTIONS(2531), + [sym_atx_h4_marker] = ACTIONS(2531), + [sym_atx_h5_marker] = ACTIONS(2531), + [sym_atx_h6_marker] = ACTIONS(2531), + [sym__thematic_break] = ACTIONS(2531), + [sym__list_marker_minus] = ACTIONS(2531), + [sym__list_marker_plus] = ACTIONS(2531), + [sym__list_marker_star] = ACTIONS(2531), + [sym__list_marker_parenthesis] = ACTIONS(2531), + [sym__list_marker_dot] = ACTIONS(2531), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2531), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2531), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2531), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2531), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2531), + [sym__list_marker_example] = ACTIONS(2531), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2531), + [sym__fenced_code_block_start_backtick] = ACTIONS(2531), + [sym__minus_metadata_start] = ACTIONS(2531), + [sym__pipe_table_start] = ACTIONS(2531), + [sym__fenced_div_start] = ACTIONS(2531), + [sym_ref_id_specifier] = ACTIONS(2531), + [sym__code_span_start] = ACTIONS(2531), + [sym__html_comment] = ACTIONS(2531), + [sym__autolink] = ACTIONS(2531), + [sym__highlight_span_start] = ACTIONS(2531), + [sym__insert_span_start] = ACTIONS(2531), + [sym__delete_span_start] = ACTIONS(2531), + [sym__edit_comment_span_start] = ACTIONS(2531), + [sym__single_quote_span_open] = ACTIONS(2531), + [sym__double_quote_span_open] = ACTIONS(2531), + [sym__shortcode_open_escaped] = ACTIONS(2531), + [sym__shortcode_open] = ACTIONS(2531), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2531), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2531), + [sym__cite_author_in_text] = ACTIONS(2531), + [sym__cite_suppress_author] = ACTIONS(2531), + [sym__strikeout_open] = ACTIONS(2531), + [sym__subscript_open] = ACTIONS(2531), + [sym__superscript_open] = ACTIONS(2531), + [sym__inline_note_start_token] = ACTIONS(2531), + [sym__strong_emphasis_open_star] = ACTIONS(2531), + [sym__strong_emphasis_open_underscore] = ACTIONS(2531), + [sym__emphasis_open_star] = ACTIONS(2531), + [sym__emphasis_open_underscore] = ACTIONS(2531), + [sym_inline_note_reference] = ACTIONS(2531), + [sym_html_element] = ACTIONS(2531), + [sym__pandoc_lt_str] = ACTIONS(2531), + [sym__pandoc_line_break] = ACTIONS(2531), + [sym_grid_table] = ACTIONS(2531), + [sym__caption_start] = ACTIONS(2531), }, - [STATE(418)] = { - [sym_entity_reference] = ACTIONS(2473), - [sym_numeric_character_reference] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_BANG_LBRACK] = ACTIONS(2473), - [anon_sym_DOLLAR] = ACTIONS(2475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2473), - [aux_sym_pandoc_str_token1] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2473), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(2473), - [sym__soft_line_ending] = ACTIONS(2473), - [sym__block_close] = ACTIONS(2473), - [sym__block_quote_start] = ACTIONS(2473), - [sym_atx_h1_marker] = ACTIONS(2473), - [sym_atx_h2_marker] = ACTIONS(2473), - [sym_atx_h3_marker] = ACTIONS(2473), - [sym_atx_h4_marker] = ACTIONS(2473), - [sym_atx_h5_marker] = ACTIONS(2473), - [sym_atx_h6_marker] = ACTIONS(2473), - [sym__thematic_break] = ACTIONS(2473), - [sym__list_marker_minus] = ACTIONS(2473), - [sym__list_marker_plus] = ACTIONS(2473), - [sym__list_marker_star] = ACTIONS(2473), - [sym__list_marker_parenthesis] = ACTIONS(2473), - [sym__list_marker_dot] = ACTIONS(2473), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_example] = ACTIONS(2473), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2473), - [sym__fenced_code_block_start_backtick] = ACTIONS(2473), - [sym_minus_metadata] = ACTIONS(2473), - [sym__pipe_table_start] = ACTIONS(2473), - [sym__fenced_div_start] = ACTIONS(2473), - [sym_ref_id_specifier] = ACTIONS(2473), - [sym__code_span_start] = ACTIONS(2473), - [sym__html_comment] = ACTIONS(2473), - [sym__autolink] = ACTIONS(2473), - [sym__highlight_span_start] = ACTIONS(2473), - [sym__insert_span_start] = ACTIONS(2473), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2473), - [sym__single_quote_span_open] = ACTIONS(2473), - [sym__double_quote_span_open] = ACTIONS(2473), - [sym__shortcode_open_escaped] = ACTIONS(2473), - [sym__shortcode_open] = ACTIONS(2473), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2473), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2473), - [sym__cite_author_in_text] = ACTIONS(2473), - [sym__cite_suppress_author] = ACTIONS(2473), - [sym__strikeout_open] = ACTIONS(2473), - [sym__subscript_open] = ACTIONS(2473), - [sym__superscript_open] = ACTIONS(2473), - [sym__inline_note_start_token] = ACTIONS(2473), - [sym__strong_emphasis_open_star] = ACTIONS(2473), - [sym__strong_emphasis_open_underscore] = ACTIONS(2473), - [sym__emphasis_open_star] = ACTIONS(2473), - [sym__emphasis_open_underscore] = ACTIONS(2473), - [sym_inline_note_reference] = ACTIONS(2473), - [sym_html_element] = ACTIONS(2473), - [sym__pandoc_lt_str] = ACTIONS(2473), - [sym__pandoc_line_break] = ACTIONS(2473), - [sym_grid_table] = ACTIONS(2473), - [sym__caption_start] = ACTIONS(2473), + [STATE(478)] = { + [sym_entity_reference] = ACTIONS(2569), + [sym_numeric_character_reference] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_BANG_LBRACK] = ACTIONS(2569), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2569), + [aux_sym_pandoc_str_token1] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2569), + [sym__whitespace] = ACTIONS(2569), + [sym__line_ending] = ACTIONS(2569), + [sym__soft_line_ending] = ACTIONS(2569), + [sym__block_close] = ACTIONS(2569), + [sym__block_quote_start] = ACTIONS(2569), + [sym_atx_h1_marker] = ACTIONS(2569), + [sym_atx_h2_marker] = ACTIONS(2569), + [sym_atx_h3_marker] = ACTIONS(2569), + [sym_atx_h4_marker] = ACTIONS(2569), + [sym_atx_h5_marker] = ACTIONS(2569), + [sym_atx_h6_marker] = ACTIONS(2569), + [sym__thematic_break] = ACTIONS(2569), + [sym__list_marker_minus] = ACTIONS(2569), + [sym__list_marker_plus] = ACTIONS(2569), + [sym__list_marker_star] = ACTIONS(2569), + [sym__list_marker_parenthesis] = ACTIONS(2569), + [sym__list_marker_dot] = ACTIONS(2569), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_example] = ACTIONS(2569), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2569), + [sym__fenced_code_block_start_backtick] = ACTIONS(2569), + [sym__minus_metadata_start] = ACTIONS(2569), + [sym__pipe_table_start] = ACTIONS(2569), + [sym__fenced_div_start] = ACTIONS(2569), + [sym_ref_id_specifier] = ACTIONS(2569), + [sym__code_span_start] = ACTIONS(2569), + [sym__html_comment] = ACTIONS(2569), + [sym__autolink] = ACTIONS(2569), + [sym__highlight_span_start] = ACTIONS(2569), + [sym__insert_span_start] = ACTIONS(2569), + [sym__delete_span_start] = ACTIONS(2569), + [sym__edit_comment_span_start] = ACTIONS(2569), + [sym__single_quote_span_open] = ACTIONS(2569), + [sym__double_quote_span_open] = ACTIONS(2569), + [sym__shortcode_open_escaped] = ACTIONS(2569), + [sym__shortcode_open] = ACTIONS(2569), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2569), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2569), + [sym__cite_author_in_text] = ACTIONS(2569), + [sym__cite_suppress_author] = ACTIONS(2569), + [sym__strikeout_open] = ACTIONS(2569), + [sym__subscript_open] = ACTIONS(2569), + [sym__superscript_open] = ACTIONS(2569), + [sym__inline_note_start_token] = ACTIONS(2569), + [sym__strong_emphasis_open_star] = ACTIONS(2569), + [sym__strong_emphasis_open_underscore] = ACTIONS(2569), + [sym__emphasis_open_star] = ACTIONS(2569), + [sym__emphasis_open_underscore] = ACTIONS(2569), + [sym_inline_note_reference] = ACTIONS(2569), + [sym_html_element] = ACTIONS(2569), + [sym__pandoc_lt_str] = ACTIONS(2569), + [sym__pandoc_line_break] = ACTIONS(2569), + [sym_grid_table] = ACTIONS(2569), + [sym__caption_start] = ACTIONS(2569), }, - [STATE(419)] = { - [sym_entity_reference] = ACTIONS(2545), - [sym_numeric_character_reference] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2545), - [anon_sym_BANG_LBRACK] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2545), - [anon_sym_LBRACE] = ACTIONS(2545), - [aux_sym_pandoc_str_token1] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2545), - [sym__whitespace] = ACTIONS(2545), - [sym__line_ending] = ACTIONS(2545), - [sym__soft_line_ending] = ACTIONS(2545), - [sym__block_close] = ACTIONS(2545), - [sym__block_quote_start] = ACTIONS(2545), - [sym_atx_h1_marker] = ACTIONS(2545), - [sym_atx_h2_marker] = ACTIONS(2545), - [sym_atx_h3_marker] = ACTIONS(2545), - [sym_atx_h4_marker] = ACTIONS(2545), - [sym_atx_h5_marker] = ACTIONS(2545), - [sym_atx_h6_marker] = ACTIONS(2545), - [sym__thematic_break] = ACTIONS(2545), - [sym__list_marker_minus] = ACTIONS(2545), - [sym__list_marker_plus] = ACTIONS(2545), - [sym__list_marker_star] = ACTIONS(2545), - [sym__list_marker_parenthesis] = ACTIONS(2545), - [sym__list_marker_dot] = ACTIONS(2545), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2545), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2545), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2545), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2545), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2545), - [sym__list_marker_example] = ACTIONS(2545), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2545), - [sym__fenced_code_block_start_backtick] = ACTIONS(2545), - [sym_minus_metadata] = ACTIONS(2545), - [sym__pipe_table_start] = ACTIONS(2545), - [sym__fenced_div_start] = ACTIONS(2545), - [sym_ref_id_specifier] = ACTIONS(2545), - [sym__code_span_start] = ACTIONS(2545), - [sym__html_comment] = ACTIONS(2545), - [sym__autolink] = ACTIONS(2545), - [sym__highlight_span_start] = ACTIONS(2545), - [sym__insert_span_start] = ACTIONS(2545), - [sym__delete_span_start] = ACTIONS(2545), - [sym__edit_comment_span_start] = ACTIONS(2545), - [sym__single_quote_span_open] = ACTIONS(2545), - [sym__double_quote_span_open] = ACTIONS(2545), - [sym__shortcode_open_escaped] = ACTIONS(2545), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2545), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2545), - [sym__cite_author_in_text] = ACTIONS(2545), - [sym__cite_suppress_author] = ACTIONS(2545), - [sym__strikeout_open] = ACTIONS(2545), - [sym__subscript_open] = ACTIONS(2545), - [sym__superscript_open] = ACTIONS(2545), - [sym__inline_note_start_token] = ACTIONS(2545), - [sym__strong_emphasis_open_star] = ACTIONS(2545), - [sym__strong_emphasis_open_underscore] = ACTIONS(2545), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2545), - [sym_inline_note_reference] = ACTIONS(2545), - [sym_html_element] = ACTIONS(2545), - [sym__pandoc_lt_str] = ACTIONS(2545), - [sym__pandoc_line_break] = ACTIONS(2545), - [sym_grid_table] = ACTIONS(2545), - [sym__caption_start] = ACTIONS(2545), + [STATE(479)] = { + [sym_pipe_table_cell] = STATE(2958), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2963), + [sym__line_ending] = ACTIONS(2965), + [sym__eof] = ACTIONS(2965), + [sym__pipe_table_line_ending] = ACTIONS(2965), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pipe_table_delimiter] = ACTIONS(3077), + [sym__pandoc_line_break] = ACTIONS(2140), }, - [STATE(420)] = { - [sym_entity_reference] = ACTIONS(2629), - [sym_numeric_character_reference] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_BANG_LBRACK] = ACTIONS(2629), - [anon_sym_DOLLAR] = ACTIONS(2631), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2629), - [aux_sym_pandoc_str_token1] = ACTIONS(2631), - [anon_sym_PIPE] = ACTIONS(2629), - [sym__whitespace] = ACTIONS(2629), - [sym__line_ending] = ACTIONS(2629), - [sym__soft_line_ending] = ACTIONS(2629), - [sym__block_close] = ACTIONS(2629), - [sym__block_quote_start] = ACTIONS(2629), - [sym_atx_h1_marker] = ACTIONS(2629), - [sym_atx_h2_marker] = ACTIONS(2629), - [sym_atx_h3_marker] = ACTIONS(2629), - [sym_atx_h4_marker] = ACTIONS(2629), - [sym_atx_h5_marker] = ACTIONS(2629), - [sym_atx_h6_marker] = ACTIONS(2629), - [sym__thematic_break] = ACTIONS(2629), - [sym__list_marker_minus] = ACTIONS(2629), - [sym__list_marker_plus] = ACTIONS(2629), - [sym__list_marker_star] = ACTIONS(2629), - [sym__list_marker_parenthesis] = ACTIONS(2629), - [sym__list_marker_dot] = ACTIONS(2629), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2629), - [sym__list_marker_example] = ACTIONS(2629), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2629), - [sym__fenced_code_block_start_backtick] = ACTIONS(2629), - [sym_minus_metadata] = ACTIONS(2629), - [sym__pipe_table_start] = ACTIONS(2629), - [sym__fenced_div_start] = ACTIONS(2629), - [sym_ref_id_specifier] = ACTIONS(2629), - [sym__code_span_start] = ACTIONS(2629), - [sym__html_comment] = ACTIONS(2629), - [sym__autolink] = ACTIONS(2629), - [sym__highlight_span_start] = ACTIONS(2629), - [sym__insert_span_start] = ACTIONS(2629), - [sym__delete_span_start] = ACTIONS(2629), - [sym__edit_comment_span_start] = ACTIONS(2629), - [sym__single_quote_span_open] = ACTIONS(2629), - [sym__double_quote_span_open] = ACTIONS(2629), - [sym__shortcode_open_escaped] = ACTIONS(2629), - [sym__shortcode_open] = ACTIONS(2629), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2629), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2629), - [sym__cite_author_in_text] = ACTIONS(2629), - [sym__cite_suppress_author] = ACTIONS(2629), - [sym__strikeout_open] = ACTIONS(2629), - [sym__subscript_open] = ACTIONS(2629), - [sym__superscript_open] = ACTIONS(2629), - [sym__inline_note_start_token] = ACTIONS(2629), - [sym__strong_emphasis_open_star] = ACTIONS(2629), - [sym__strong_emphasis_open_underscore] = ACTIONS(2629), - [sym__emphasis_open_star] = ACTIONS(2629), - [sym__emphasis_open_underscore] = ACTIONS(2629), - [sym_inline_note_reference] = ACTIONS(2629), - [sym_html_element] = ACTIONS(2629), - [sym__pandoc_lt_str] = ACTIONS(2629), - [sym__pandoc_line_break] = ACTIONS(2629), - [sym_grid_table] = ACTIONS(2629), - [sym__caption_start] = ACTIONS(2629), + [STATE(480)] = { + [ts_builtin_sym_end] = 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), + [sym__whitespace] = ACTIONS(2627), + [sym__line_ending] = ACTIONS(2627), + [sym__soft_line_ending] = ACTIONS(2627), + [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_start] = 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_lt_str] = ACTIONS(2627), + [sym__pandoc_line_break] = ACTIONS(2627), + [sym_grid_table] = ACTIONS(2627), + [sym__caption_start] = ACTIONS(2627), }, - [STATE(421)] = { - [ts_builtin_sym_end] = ACTIONS(2859), - [sym_entity_reference] = ACTIONS(2859), - [sym_numeric_character_reference] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_BANG_LBRACK] = ACTIONS(2859), - [anon_sym_DOLLAR] = ACTIONS(2861), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2859), - [aux_sym_pandoc_str_token1] = ACTIONS(2861), - [anon_sym_PIPE] = ACTIONS(2859), - [sym__whitespace] = ACTIONS(2859), - [sym__line_ending] = ACTIONS(2859), - [sym__soft_line_ending] = ACTIONS(2859), - [sym__block_quote_start] = ACTIONS(2859), - [sym_atx_h1_marker] = ACTIONS(2859), - [sym_atx_h2_marker] = ACTIONS(2859), - [sym_atx_h3_marker] = ACTIONS(2859), - [sym_atx_h4_marker] = ACTIONS(2859), - [sym_atx_h5_marker] = ACTIONS(2859), - [sym_atx_h6_marker] = ACTIONS(2859), - [sym__thematic_break] = ACTIONS(2859), - [sym__list_marker_minus] = ACTIONS(2859), - [sym__list_marker_plus] = ACTIONS(2859), - [sym__list_marker_star] = ACTIONS(2859), - [sym__list_marker_parenthesis] = ACTIONS(2859), - [sym__list_marker_dot] = ACTIONS(2859), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_example] = ACTIONS(2859), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2859), - [sym__fenced_code_block_start_backtick] = ACTIONS(2859), - [sym_minus_metadata] = ACTIONS(2859), - [sym__pipe_table_start] = ACTIONS(2859), - [sym__fenced_div_start] = ACTIONS(2859), - [sym_ref_id_specifier] = ACTIONS(2859), - [sym__code_span_start] = ACTIONS(2859), - [sym__html_comment] = ACTIONS(2859), - [sym__autolink] = ACTIONS(2859), - [sym__highlight_span_start] = ACTIONS(2859), - [sym__insert_span_start] = ACTIONS(2859), - [sym__delete_span_start] = ACTIONS(2859), - [sym__edit_comment_span_start] = ACTIONS(2859), - [sym__single_quote_span_open] = ACTIONS(2859), - [sym__double_quote_span_open] = ACTIONS(2859), - [sym__shortcode_open_escaped] = ACTIONS(2859), - [sym__shortcode_open] = ACTIONS(2859), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2859), - [sym__cite_author_in_text] = ACTIONS(2859), - [sym__cite_suppress_author] = ACTIONS(2859), - [sym__strikeout_open] = ACTIONS(2859), - [sym__subscript_open] = ACTIONS(2859), - [sym__superscript_open] = ACTIONS(2859), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2859), - [sym__strong_emphasis_open_underscore] = ACTIONS(2859), - [sym__emphasis_open_star] = ACTIONS(2859), - [sym__emphasis_open_underscore] = ACTIONS(2859), - [sym_inline_note_reference] = ACTIONS(2859), - [sym_html_element] = ACTIONS(2859), - [sym__pandoc_lt_str] = ACTIONS(2859), - [sym__pandoc_line_break] = ACTIONS(2859), - [sym_grid_table] = ACTIONS(2859), - [sym__caption_start] = ACTIONS(2859), + [STATE(481)] = { + [ts_builtin_sym_end] = ACTIONS(2631), + [sym_entity_reference] = ACTIONS(2631), + [sym_numeric_character_reference] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_BANG_LBRACK] = ACTIONS(2631), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [aux_sym_pandoc_str_token1] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2631), + [sym__whitespace] = ACTIONS(2631), + [sym__line_ending] = ACTIONS(2631), + [sym__soft_line_ending] = ACTIONS(2631), + [sym__block_quote_start] = ACTIONS(2631), + [sym_atx_h1_marker] = ACTIONS(2631), + [sym_atx_h2_marker] = ACTIONS(2631), + [sym_atx_h3_marker] = ACTIONS(2631), + [sym_atx_h4_marker] = ACTIONS(2631), + [sym_atx_h5_marker] = ACTIONS(2631), + [sym_atx_h6_marker] = ACTIONS(2631), + [sym__thematic_break] = ACTIONS(2631), + [sym__list_marker_minus] = ACTIONS(2631), + [sym__list_marker_plus] = ACTIONS(2631), + [sym__list_marker_star] = ACTIONS(2631), + [sym__list_marker_parenthesis] = ACTIONS(2631), + [sym__list_marker_dot] = ACTIONS(2631), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_example] = ACTIONS(2631), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2631), + [sym__fenced_code_block_start_backtick] = ACTIONS(2631), + [sym__minus_metadata_start] = ACTIONS(2631), + [sym__pipe_table_start] = ACTIONS(2631), + [sym__fenced_div_start] = ACTIONS(2631), + [sym_ref_id_specifier] = ACTIONS(2631), + [sym__code_span_start] = ACTIONS(2631), + [sym__html_comment] = ACTIONS(2631), + [sym__autolink] = ACTIONS(2631), + [sym__highlight_span_start] = ACTIONS(2631), + [sym__insert_span_start] = ACTIONS(2631), + [sym__delete_span_start] = ACTIONS(2631), + [sym__edit_comment_span_start] = ACTIONS(2631), + [sym__single_quote_span_open] = ACTIONS(2631), + [sym__double_quote_span_open] = ACTIONS(2631), + [sym__shortcode_open_escaped] = ACTIONS(2631), + [sym__shortcode_open] = ACTIONS(2631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2631), + [sym__cite_author_in_text] = ACTIONS(2631), + [sym__cite_suppress_author] = ACTIONS(2631), + [sym__strikeout_open] = ACTIONS(2631), + [sym__subscript_open] = ACTIONS(2631), + [sym__superscript_open] = ACTIONS(2631), + [sym__inline_note_start_token] = ACTIONS(2631), + [sym__strong_emphasis_open_star] = ACTIONS(2631), + [sym__strong_emphasis_open_underscore] = ACTIONS(2631), + [sym__emphasis_open_star] = ACTIONS(2631), + [sym__emphasis_open_underscore] = ACTIONS(2631), + [sym_inline_note_reference] = ACTIONS(2631), + [sym_html_element] = ACTIONS(2631), + [sym__pandoc_lt_str] = ACTIONS(2631), + [sym__pandoc_line_break] = ACTIONS(2631), + [sym_grid_table] = ACTIONS(2631), + [sym__caption_start] = ACTIONS(2631), }, - [STATE(422)] = { + [STATE(482)] = { + [ts_builtin_sym_end] = ACTIONS(2635), [sym_entity_reference] = ACTIONS(2635), [sym_numeric_character_reference] = ACTIONS(2635), [anon_sym_LBRACK] = ACTIONS(2635), @@ -63200,7 +67550,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__whitespace] = ACTIONS(2635), [sym__line_ending] = ACTIONS(2635), [sym__soft_line_ending] = ACTIONS(2635), - [sym__block_close] = ACTIONS(2635), [sym__block_quote_start] = ACTIONS(2635), [sym_atx_h1_marker] = ACTIONS(2635), [sym_atx_h2_marker] = ACTIONS(2635), @@ -63222,7 +67571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2635), [sym__list_marker_example_dont_interrupt] = ACTIONS(2635), [sym__fenced_code_block_start_backtick] = ACTIONS(2635), - [sym_minus_metadata] = ACTIONS(2635), + [sym__minus_metadata_start] = ACTIONS(2635), [sym__pipe_table_start] = ACTIONS(2635), [sym__fenced_div_start] = ACTIONS(2635), [sym_ref_id_specifier] = ACTIONS(2635), @@ -63256,3319 +67605,559 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2635), [sym__caption_start] = ACTIONS(2635), }, - [STATE(423)] = { - [ts_builtin_sym_end] = ACTIONS(2863), - [sym_entity_reference] = ACTIONS(2863), - [sym_numeric_character_reference] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_BANG_LBRACK] = ACTIONS(2863), - [anon_sym_DOLLAR] = ACTIONS(2865), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2863), - [aux_sym_pandoc_str_token1] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(2863), - [sym__whitespace] = ACTIONS(2863), - [sym__line_ending] = ACTIONS(2863), - [sym__soft_line_ending] = ACTIONS(2863), - [sym__block_quote_start] = ACTIONS(2863), - [sym_atx_h1_marker] = ACTIONS(2863), - [sym_atx_h2_marker] = ACTIONS(2863), - [sym_atx_h3_marker] = ACTIONS(2863), - [sym_atx_h4_marker] = ACTIONS(2863), - [sym_atx_h5_marker] = ACTIONS(2863), - [sym_atx_h6_marker] = ACTIONS(2863), - [sym__thematic_break] = ACTIONS(2863), - [sym__list_marker_minus] = ACTIONS(2863), - [sym__list_marker_plus] = ACTIONS(2863), - [sym__list_marker_star] = ACTIONS(2863), - [sym__list_marker_parenthesis] = ACTIONS(2863), - [sym__list_marker_dot] = ACTIONS(2863), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_example] = ACTIONS(2863), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2863), - [sym__fenced_code_block_start_backtick] = ACTIONS(2863), - [sym_minus_metadata] = ACTIONS(2863), - [sym__pipe_table_start] = ACTIONS(2863), - [sym__fenced_div_start] = ACTIONS(2863), - [sym_ref_id_specifier] = ACTIONS(2863), - [sym__code_span_start] = ACTIONS(2863), - [sym__html_comment] = ACTIONS(2863), - [sym__autolink] = ACTIONS(2863), - [sym__highlight_span_start] = ACTIONS(2863), - [sym__insert_span_start] = ACTIONS(2863), - [sym__delete_span_start] = ACTIONS(2863), - [sym__edit_comment_span_start] = ACTIONS(2863), - [sym__single_quote_span_open] = ACTIONS(2863), - [sym__double_quote_span_open] = ACTIONS(2863), - [sym__shortcode_open_escaped] = ACTIONS(2863), - [sym__shortcode_open] = ACTIONS(2863), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2863), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2863), - [sym__cite_author_in_text] = ACTIONS(2863), - [sym__cite_suppress_author] = ACTIONS(2863), - [sym__strikeout_open] = ACTIONS(2863), - [sym__subscript_open] = ACTIONS(2863), - [sym__superscript_open] = ACTIONS(2863), - [sym__inline_note_start_token] = ACTIONS(2863), - [sym__strong_emphasis_open_star] = ACTIONS(2863), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2863), - [sym__emphasis_open_underscore] = ACTIONS(2863), - [sym_inline_note_reference] = ACTIONS(2863), - [sym_html_element] = ACTIONS(2863), - [sym__pandoc_lt_str] = ACTIONS(2863), - [sym__pandoc_line_break] = ACTIONS(2863), - [sym_grid_table] = ACTIONS(2863), - [sym__caption_start] = ACTIONS(2863), - }, - [STATE(424)] = { - [ts_builtin_sym_end] = ACTIONS(2867), - [sym_entity_reference] = ACTIONS(2867), - [sym_numeric_character_reference] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_BANG_LBRACK] = ACTIONS(2867), - [anon_sym_DOLLAR] = ACTIONS(2869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [aux_sym_pandoc_str_token1] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2867), - [sym__whitespace] = ACTIONS(2867), - [sym__line_ending] = ACTIONS(2867), - [sym__soft_line_ending] = ACTIONS(2867), - [sym__block_quote_start] = ACTIONS(2867), - [sym_atx_h1_marker] = ACTIONS(2867), - [sym_atx_h2_marker] = ACTIONS(2867), - [sym_atx_h3_marker] = ACTIONS(2867), - [sym_atx_h4_marker] = ACTIONS(2867), - [sym_atx_h5_marker] = ACTIONS(2867), - [sym_atx_h6_marker] = ACTIONS(2867), - [sym__thematic_break] = ACTIONS(2867), - [sym__list_marker_minus] = ACTIONS(2867), - [sym__list_marker_plus] = ACTIONS(2867), - [sym__list_marker_star] = ACTIONS(2867), - [sym__list_marker_parenthesis] = ACTIONS(2867), - [sym__list_marker_dot] = ACTIONS(2867), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_example] = ACTIONS(2867), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2867), - [sym__fenced_code_block_start_backtick] = ACTIONS(2867), - [sym_minus_metadata] = ACTIONS(2867), - [sym__pipe_table_start] = ACTIONS(2867), - [sym__fenced_div_start] = ACTIONS(2867), - [sym_ref_id_specifier] = ACTIONS(2867), - [sym__code_span_start] = ACTIONS(2867), - [sym__html_comment] = ACTIONS(2867), - [sym__autolink] = ACTIONS(2867), - [sym__highlight_span_start] = ACTIONS(2867), - [sym__insert_span_start] = ACTIONS(2867), - [sym__delete_span_start] = ACTIONS(2867), - [sym__edit_comment_span_start] = ACTIONS(2867), - [sym__single_quote_span_open] = ACTIONS(2867), - [sym__double_quote_span_open] = ACTIONS(2867), - [sym__shortcode_open_escaped] = ACTIONS(2867), - [sym__shortcode_open] = ACTIONS(2867), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2867), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2867), - [sym__cite_author_in_text] = ACTIONS(2867), - [sym__cite_suppress_author] = ACTIONS(2867), - [sym__strikeout_open] = ACTIONS(2867), - [sym__subscript_open] = ACTIONS(2867), - [sym__superscript_open] = ACTIONS(2867), - [sym__inline_note_start_token] = ACTIONS(2867), - [sym__strong_emphasis_open_star] = ACTIONS(2867), - [sym__strong_emphasis_open_underscore] = ACTIONS(2867), - [sym__emphasis_open_star] = ACTIONS(2867), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2867), - [sym_html_element] = ACTIONS(2867), - [sym__pandoc_lt_str] = ACTIONS(2867), - [sym__pandoc_line_break] = ACTIONS(2867), - [sym_grid_table] = ACTIONS(2867), - [sym__caption_start] = ACTIONS(2867), - }, - [STATE(425)] = { - [sym_entity_reference] = ACTIONS(2659), - [sym_numeric_character_reference] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_BANG_LBRACK] = ACTIONS(2659), - [anon_sym_DOLLAR] = ACTIONS(2661), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2659), - [aux_sym_pandoc_str_token1] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2659), - [sym__whitespace] = ACTIONS(2659), - [sym__line_ending] = ACTIONS(2659), - [sym__soft_line_ending] = ACTIONS(2659), - [sym__block_close] = ACTIONS(2659), - [sym__block_quote_start] = ACTIONS(2659), - [sym_atx_h1_marker] = ACTIONS(2659), - [sym_atx_h2_marker] = ACTIONS(2659), - [sym_atx_h3_marker] = ACTIONS(2659), - [sym_atx_h4_marker] = ACTIONS(2659), - [sym_atx_h5_marker] = ACTIONS(2659), - [sym_atx_h6_marker] = ACTIONS(2659), - [sym__thematic_break] = ACTIONS(2659), - [sym__list_marker_minus] = ACTIONS(2659), - [sym__list_marker_plus] = ACTIONS(2659), - [sym__list_marker_star] = ACTIONS(2659), - [sym__list_marker_parenthesis] = ACTIONS(2659), - [sym__list_marker_dot] = ACTIONS(2659), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2659), - [sym__list_marker_example] = ACTIONS(2659), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2659), - [sym__fenced_code_block_start_backtick] = ACTIONS(2659), - [sym_minus_metadata] = ACTIONS(2659), - [sym__pipe_table_start] = ACTIONS(2659), - [sym__fenced_div_start] = ACTIONS(2659), - [sym_ref_id_specifier] = ACTIONS(2659), - [sym__code_span_start] = ACTIONS(2659), - [sym__html_comment] = ACTIONS(2659), - [sym__autolink] = ACTIONS(2659), - [sym__highlight_span_start] = ACTIONS(2659), - [sym__insert_span_start] = ACTIONS(2659), - [sym__delete_span_start] = ACTIONS(2659), - [sym__edit_comment_span_start] = ACTIONS(2659), - [sym__single_quote_span_open] = ACTIONS(2659), - [sym__double_quote_span_open] = ACTIONS(2659), - [sym__shortcode_open_escaped] = ACTIONS(2659), - [sym__shortcode_open] = ACTIONS(2659), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2659), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2659), - [sym__cite_author_in_text] = ACTIONS(2659), - [sym__cite_suppress_author] = ACTIONS(2659), - [sym__strikeout_open] = ACTIONS(2659), - [sym__subscript_open] = ACTIONS(2659), - [sym__superscript_open] = ACTIONS(2659), - [sym__inline_note_start_token] = ACTIONS(2659), - [sym__strong_emphasis_open_star] = ACTIONS(2659), - [sym__strong_emphasis_open_underscore] = ACTIONS(2659), - [sym__emphasis_open_star] = ACTIONS(2659), - [sym__emphasis_open_underscore] = ACTIONS(2659), - [sym_inline_note_reference] = ACTIONS(2659), - [sym_html_element] = ACTIONS(2659), - [sym__pandoc_lt_str] = ACTIONS(2659), - [sym__pandoc_line_break] = ACTIONS(2659), - [sym_grid_table] = ACTIONS(2659), - [sym__caption_start] = ACTIONS(2659), - }, - [STATE(426)] = { - [ts_builtin_sym_end] = ACTIONS(2871), - [sym_entity_reference] = ACTIONS(2871), - [sym_numeric_character_reference] = ACTIONS(2871), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_BANG_LBRACK] = ACTIONS(2871), - [anon_sym_DOLLAR] = ACTIONS(2873), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2871), - [aux_sym_pandoc_str_token1] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2871), - [sym__whitespace] = ACTIONS(2871), - [sym__line_ending] = ACTIONS(2871), - [sym__soft_line_ending] = ACTIONS(2871), - [sym__block_quote_start] = ACTIONS(2871), - [sym_atx_h1_marker] = ACTIONS(2871), - [sym_atx_h2_marker] = ACTIONS(2871), - [sym_atx_h3_marker] = ACTIONS(2871), - [sym_atx_h4_marker] = ACTIONS(2871), - [sym_atx_h5_marker] = ACTIONS(2871), - [sym_atx_h6_marker] = ACTIONS(2871), - [sym__thematic_break] = ACTIONS(2871), - [sym__list_marker_minus] = ACTIONS(2871), - [sym__list_marker_plus] = ACTIONS(2871), - [sym__list_marker_star] = ACTIONS(2871), - [sym__list_marker_parenthesis] = ACTIONS(2871), - [sym__list_marker_dot] = ACTIONS(2871), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_example] = ACTIONS(2871), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2871), - [sym__fenced_code_block_start_backtick] = ACTIONS(2871), - [sym_minus_metadata] = ACTIONS(2871), - [sym__pipe_table_start] = ACTIONS(2871), - [sym__fenced_div_start] = ACTIONS(2871), - [sym_ref_id_specifier] = ACTIONS(2871), - [sym__code_span_start] = ACTIONS(2871), - [sym__html_comment] = ACTIONS(2871), - [sym__autolink] = ACTIONS(2871), - [sym__highlight_span_start] = ACTIONS(2871), - [sym__insert_span_start] = ACTIONS(2871), - [sym__delete_span_start] = ACTIONS(2871), - [sym__edit_comment_span_start] = ACTIONS(2871), - [sym__single_quote_span_open] = ACTIONS(2871), - [sym__double_quote_span_open] = ACTIONS(2871), - [sym__shortcode_open_escaped] = ACTIONS(2871), - [sym__shortcode_open] = ACTIONS(2871), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2871), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2871), - [sym__cite_author_in_text] = ACTIONS(2871), - [sym__cite_suppress_author] = ACTIONS(2871), - [sym__strikeout_open] = ACTIONS(2871), - [sym__subscript_open] = ACTIONS(2871), - [sym__superscript_open] = ACTIONS(2871), - [sym__inline_note_start_token] = ACTIONS(2871), - [sym__strong_emphasis_open_star] = ACTIONS(2871), - [sym__strong_emphasis_open_underscore] = ACTIONS(2871), - [sym__emphasis_open_star] = ACTIONS(2871), - [sym__emphasis_open_underscore] = ACTIONS(2871), - [sym_inline_note_reference] = ACTIONS(2871), - [sym_html_element] = ACTIONS(2871), - [sym__pandoc_lt_str] = ACTIONS(2871), - [sym__pandoc_line_break] = ACTIONS(2871), - [sym_grid_table] = ACTIONS(2871), - [sym__caption_start] = ACTIONS(2871), - }, - [STATE(427)] = { - [ts_builtin_sym_end] = ACTIONS(2875), - [sym_entity_reference] = ACTIONS(2875), - [sym_numeric_character_reference] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_BANG_LBRACK] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2877), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2875), - [aux_sym_pandoc_str_token1] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(2875), - [sym__whitespace] = ACTIONS(2875), - [sym__line_ending] = ACTIONS(2875), - [sym__soft_line_ending] = ACTIONS(2875), - [sym__block_quote_start] = ACTIONS(2875), - [sym_atx_h1_marker] = ACTIONS(2875), - [sym_atx_h2_marker] = ACTIONS(2875), - [sym_atx_h3_marker] = ACTIONS(2875), - [sym_atx_h4_marker] = ACTIONS(2875), - [sym_atx_h5_marker] = ACTIONS(2875), - [sym_atx_h6_marker] = ACTIONS(2875), - [sym__thematic_break] = ACTIONS(2875), - [sym__list_marker_minus] = ACTIONS(2875), - [sym__list_marker_plus] = ACTIONS(2875), - [sym__list_marker_star] = ACTIONS(2875), - [sym__list_marker_parenthesis] = ACTIONS(2875), - [sym__list_marker_dot] = ACTIONS(2875), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_example] = ACTIONS(2875), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2875), - [sym__fenced_code_block_start_backtick] = ACTIONS(2875), - [sym_minus_metadata] = ACTIONS(2875), - [sym__pipe_table_start] = ACTIONS(2875), - [sym__fenced_div_start] = ACTIONS(2875), - [sym_ref_id_specifier] = ACTIONS(2875), - [sym__code_span_start] = ACTIONS(2875), - [sym__html_comment] = ACTIONS(2875), - [sym__autolink] = ACTIONS(2875), - [sym__highlight_span_start] = ACTIONS(2875), - [sym__insert_span_start] = ACTIONS(2875), - [sym__delete_span_start] = ACTIONS(2875), - [sym__edit_comment_span_start] = ACTIONS(2875), - [sym__single_quote_span_open] = ACTIONS(2875), - [sym__double_quote_span_open] = ACTIONS(2875), - [sym__shortcode_open_escaped] = ACTIONS(2875), - [sym__shortcode_open] = ACTIONS(2875), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2875), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2875), - [sym__cite_author_in_text] = ACTIONS(2875), - [sym__cite_suppress_author] = ACTIONS(2875), - [sym__strikeout_open] = ACTIONS(2875), - [sym__subscript_open] = ACTIONS(2875), - [sym__superscript_open] = ACTIONS(2875), - [sym__inline_note_start_token] = ACTIONS(2875), - [sym__strong_emphasis_open_star] = ACTIONS(2875), - [sym__strong_emphasis_open_underscore] = ACTIONS(2875), - [sym__emphasis_open_star] = ACTIONS(2875), - [sym__emphasis_open_underscore] = ACTIONS(2875), - [sym_inline_note_reference] = ACTIONS(2875), - [sym_html_element] = ACTIONS(2875), - [sym__pandoc_lt_str] = ACTIONS(2875), - [sym__pandoc_line_break] = ACTIONS(2875), - [sym_grid_table] = ACTIONS(2875), - [sym__caption_start] = ACTIONS(2875), - }, - [STATE(428)] = { - [ts_builtin_sym_end] = ACTIONS(2879), - [sym_entity_reference] = ACTIONS(2879), - [sym_numeric_character_reference] = ACTIONS(2879), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_BANG_LBRACK] = ACTIONS(2879), - [anon_sym_DOLLAR] = ACTIONS(2881), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2879), - [aux_sym_pandoc_str_token1] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2879), - [sym__whitespace] = ACTIONS(2879), - [sym__line_ending] = ACTIONS(2879), - [sym__soft_line_ending] = ACTIONS(2879), - [sym__block_quote_start] = ACTIONS(2879), - [sym_atx_h1_marker] = ACTIONS(2879), - [sym_atx_h2_marker] = ACTIONS(2879), - [sym_atx_h3_marker] = ACTIONS(2879), - [sym_atx_h4_marker] = ACTIONS(2879), - [sym_atx_h5_marker] = ACTIONS(2879), - [sym_atx_h6_marker] = ACTIONS(2879), - [sym__thematic_break] = ACTIONS(2879), - [sym__list_marker_minus] = ACTIONS(2879), - [sym__list_marker_plus] = ACTIONS(2879), - [sym__list_marker_star] = ACTIONS(2879), - [sym__list_marker_parenthesis] = ACTIONS(2879), - [sym__list_marker_dot] = ACTIONS(2879), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_example] = ACTIONS(2879), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2879), - [sym__fenced_code_block_start_backtick] = ACTIONS(2879), - [sym_minus_metadata] = ACTIONS(2879), - [sym__pipe_table_start] = ACTIONS(2879), - [sym__fenced_div_start] = ACTIONS(2879), - [sym_ref_id_specifier] = ACTIONS(2879), - [sym__code_span_start] = ACTIONS(2879), - [sym__html_comment] = ACTIONS(2879), - [sym__autolink] = ACTIONS(2879), - [sym__highlight_span_start] = ACTIONS(2879), - [sym__insert_span_start] = ACTIONS(2879), - [sym__delete_span_start] = ACTIONS(2879), - [sym__edit_comment_span_start] = ACTIONS(2879), - [sym__single_quote_span_open] = ACTIONS(2879), - [sym__double_quote_span_open] = ACTIONS(2879), - [sym__shortcode_open_escaped] = ACTIONS(2879), - [sym__shortcode_open] = ACTIONS(2879), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2879), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2879), - [sym__cite_author_in_text] = ACTIONS(2879), - [sym__cite_suppress_author] = ACTIONS(2879), - [sym__strikeout_open] = ACTIONS(2879), - [sym__subscript_open] = ACTIONS(2879), - [sym__superscript_open] = ACTIONS(2879), - [sym__inline_note_start_token] = ACTIONS(2879), - [sym__strong_emphasis_open_star] = ACTIONS(2879), - [sym__strong_emphasis_open_underscore] = ACTIONS(2879), - [sym__emphasis_open_star] = ACTIONS(2879), - [sym__emphasis_open_underscore] = ACTIONS(2879), - [sym_inline_note_reference] = ACTIONS(2879), - [sym_html_element] = ACTIONS(2879), - [sym__pandoc_lt_str] = ACTIONS(2879), - [sym__pandoc_line_break] = ACTIONS(2879), - [sym_grid_table] = ACTIONS(2879), - [sym__caption_start] = ACTIONS(2879), - }, - [STATE(429)] = { - [ts_builtin_sym_end] = ACTIONS(2645), - [sym_entity_reference] = ACTIONS(2645), - [sym_numeric_character_reference] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_BANG_LBRACK] = ACTIONS(2645), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2645), - [aux_sym_pandoc_str_token1] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2645), - [sym__whitespace] = ACTIONS(2645), - [sym__line_ending] = ACTIONS(2645), - [sym__soft_line_ending] = ACTIONS(2645), - [sym__block_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_lt_str] = ACTIONS(2645), - [sym__pandoc_line_break] = ACTIONS(2645), - [sym_grid_table] = ACTIONS(2645), - [sym__caption_start] = ACTIONS(2645), - }, - [STATE(430)] = { - [ts_builtin_sym_end] = ACTIONS(2357), - [sym_entity_reference] = ACTIONS(2357), - [sym_numeric_character_reference] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_BANG_LBRACK] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [aux_sym_pandoc_str_token1] = ACTIONS(2359), - [anon_sym_PIPE] = ACTIONS(2357), - [sym__whitespace] = ACTIONS(2357), - [sym__line_ending] = ACTIONS(2357), - [sym__soft_line_ending] = ACTIONS(2357), - [sym__block_quote_start] = ACTIONS(2357), - [sym_atx_h1_marker] = ACTIONS(2357), - [sym_atx_h2_marker] = ACTIONS(2357), - [sym_atx_h3_marker] = ACTIONS(2357), - [sym_atx_h4_marker] = ACTIONS(2357), - [sym_atx_h5_marker] = ACTIONS(2357), - [sym_atx_h6_marker] = ACTIONS(2357), - [sym__thematic_break] = ACTIONS(2357), - [sym__list_marker_minus] = ACTIONS(2357), - [sym__list_marker_plus] = ACTIONS(2357), - [sym__list_marker_star] = ACTIONS(2357), - [sym__list_marker_parenthesis] = ACTIONS(2357), - [sym__list_marker_dot] = ACTIONS(2357), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_example] = ACTIONS(2357), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2357), - [sym__fenced_code_block_start_backtick] = ACTIONS(2357), - [sym_minus_metadata] = ACTIONS(2357), - [sym__pipe_table_start] = ACTIONS(2357), - [sym__fenced_div_start] = ACTIONS(2357), - [sym_ref_id_specifier] = ACTIONS(2357), - [sym__code_span_start] = ACTIONS(2357), - [sym__html_comment] = ACTIONS(2357), - [sym__autolink] = ACTIONS(2357), - [sym__highlight_span_start] = ACTIONS(2357), - [sym__insert_span_start] = ACTIONS(2357), - [sym__delete_span_start] = ACTIONS(2357), - [sym__edit_comment_span_start] = ACTIONS(2357), - [sym__single_quote_span_open] = ACTIONS(2357), - [sym__double_quote_span_open] = ACTIONS(2357), - [sym__shortcode_open_escaped] = ACTIONS(2357), - [sym__shortcode_open] = ACTIONS(2357), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2357), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2357), - [sym__cite_author_in_text] = ACTIONS(2357), - [sym__cite_suppress_author] = ACTIONS(2357), - [sym__strikeout_open] = ACTIONS(2357), - [sym__subscript_open] = ACTIONS(2357), - [sym__superscript_open] = ACTIONS(2357), - [sym__inline_note_start_token] = ACTIONS(2357), - [sym__strong_emphasis_open_star] = ACTIONS(2357), - [sym__strong_emphasis_open_underscore] = ACTIONS(2357), - [sym__emphasis_open_star] = ACTIONS(2357), - [sym__emphasis_open_underscore] = ACTIONS(2357), - [sym_inline_note_reference] = ACTIONS(2357), - [sym_html_element] = ACTIONS(2357), - [sym__pandoc_lt_str] = ACTIONS(2357), - [sym__pandoc_line_break] = ACTIONS(2357), - [sym_grid_table] = ACTIONS(2357), - [sym__caption_start] = ACTIONS(2357), - }, - [STATE(431)] = { - [sym_entity_reference] = ACTIONS(2541), - [sym_numeric_character_reference] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2541), - [anon_sym_BANG_LBRACK] = ACTIONS(2541), - [anon_sym_DOLLAR] = ACTIONS(2543), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [aux_sym_pandoc_str_token1] = ACTIONS(2543), - [anon_sym_PIPE] = ACTIONS(2541), - [sym__whitespace] = ACTIONS(2541), - [sym__line_ending] = ACTIONS(2541), - [sym__soft_line_ending] = ACTIONS(2541), - [sym__block_close] = ACTIONS(2541), - [sym__block_quote_start] = ACTIONS(2541), - [sym_atx_h1_marker] = ACTIONS(2541), - [sym_atx_h2_marker] = ACTIONS(2541), - [sym_atx_h3_marker] = ACTIONS(2541), - [sym_atx_h4_marker] = ACTIONS(2541), - [sym_atx_h5_marker] = ACTIONS(2541), - [sym_atx_h6_marker] = ACTIONS(2541), - [sym__thematic_break] = ACTIONS(2541), - [sym__list_marker_minus] = ACTIONS(2541), - [sym__list_marker_plus] = ACTIONS(2541), - [sym__list_marker_star] = ACTIONS(2541), - [sym__list_marker_parenthesis] = ACTIONS(2541), - [sym__list_marker_dot] = ACTIONS(2541), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2541), - [sym__list_marker_example] = ACTIONS(2541), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2541), - [sym__fenced_code_block_start_backtick] = ACTIONS(2541), - [sym_minus_metadata] = ACTIONS(2541), - [sym__pipe_table_start] = ACTIONS(2541), - [sym__fenced_div_start] = ACTIONS(2541), - [sym_ref_id_specifier] = ACTIONS(2541), - [sym__code_span_start] = ACTIONS(2541), - [sym__html_comment] = ACTIONS(2541), - [sym__autolink] = ACTIONS(2541), - [sym__highlight_span_start] = ACTIONS(2541), - [sym__insert_span_start] = ACTIONS(2541), - [sym__delete_span_start] = ACTIONS(2541), - [sym__edit_comment_span_start] = ACTIONS(2541), - [sym__single_quote_span_open] = ACTIONS(2541), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2541), - [sym__shortcode_open] = ACTIONS(2541), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2541), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2541), - [sym__cite_author_in_text] = ACTIONS(2541), - [sym__cite_suppress_author] = ACTIONS(2541), - [sym__strikeout_open] = ACTIONS(2541), - [sym__subscript_open] = ACTIONS(2541), - [sym__superscript_open] = ACTIONS(2541), - [sym__inline_note_start_token] = ACTIONS(2541), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2541), - [sym__emphasis_open_star] = ACTIONS(2541), - [sym__emphasis_open_underscore] = ACTIONS(2541), - [sym_inline_note_reference] = ACTIONS(2541), - [sym_html_element] = ACTIONS(2541), - [sym__pandoc_lt_str] = ACTIONS(2541), - [sym__pandoc_line_break] = ACTIONS(2541), - [sym_grid_table] = ACTIONS(2541), - [sym__caption_start] = ACTIONS(2541), - }, - [STATE(432)] = { - [sym_entity_reference] = ACTIONS(2213), - [sym_numeric_character_reference] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_BANG_LBRACK] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2215), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [aux_sym_pandoc_str_token1] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2213), - [sym__whitespace] = ACTIONS(2213), - [sym__line_ending] = ACTIONS(2213), - [sym__soft_line_ending] = ACTIONS(2213), - [sym__block_close] = ACTIONS(2213), - [sym__block_quote_start] = ACTIONS(2213), - [sym_atx_h1_marker] = ACTIONS(2213), - [sym_atx_h2_marker] = ACTIONS(2213), - [sym_atx_h3_marker] = ACTIONS(2213), - [sym_atx_h4_marker] = ACTIONS(2213), - [sym_atx_h5_marker] = ACTIONS(2213), - [sym_atx_h6_marker] = ACTIONS(2213), - [sym__thematic_break] = ACTIONS(2213), - [sym__list_marker_minus] = ACTIONS(2213), - [sym__list_marker_plus] = ACTIONS(2213), - [sym__list_marker_star] = ACTIONS(2213), - [sym__list_marker_parenthesis] = ACTIONS(2213), - [sym__list_marker_dot] = ACTIONS(2213), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2213), - [sym__list_marker_example] = ACTIONS(2213), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2213), - [sym__fenced_code_block_start_backtick] = ACTIONS(2213), - [sym_minus_metadata] = ACTIONS(2213), - [sym__pipe_table_start] = ACTIONS(2213), - [sym__fenced_div_start] = ACTIONS(2213), - [sym_ref_id_specifier] = ACTIONS(2213), - [sym__code_span_start] = ACTIONS(2213), - [sym__html_comment] = ACTIONS(2213), - [sym__autolink] = ACTIONS(2213), - [sym__highlight_span_start] = ACTIONS(2213), - [sym__insert_span_start] = ACTIONS(2213), - [sym__delete_span_start] = ACTIONS(2213), - [sym__edit_comment_span_start] = ACTIONS(2213), - [sym__single_quote_span_open] = ACTIONS(2213), - [sym__double_quote_span_open] = ACTIONS(2213), - [sym__shortcode_open_escaped] = ACTIONS(2213), - [sym__shortcode_open] = ACTIONS(2213), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2213), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2213), - [sym__cite_author_in_text] = ACTIONS(2213), - [sym__cite_suppress_author] = ACTIONS(2213), - [sym__strikeout_open] = ACTIONS(2213), - [sym__subscript_open] = ACTIONS(2213), - [sym__superscript_open] = ACTIONS(2213), - [sym__inline_note_start_token] = ACTIONS(2213), - [sym__strong_emphasis_open_star] = ACTIONS(2213), - [sym__strong_emphasis_open_underscore] = ACTIONS(2213), - [sym__emphasis_open_star] = ACTIONS(2213), - [sym__emphasis_open_underscore] = ACTIONS(2213), - [sym_inline_note_reference] = ACTIONS(2213), - [sym_html_element] = ACTIONS(2213), - [sym__pandoc_lt_str] = ACTIONS(2213), - [sym__pandoc_line_break] = ACTIONS(2213), - [sym_grid_table] = ACTIONS(2213), - [sym__caption_start] = ACTIONS(2213), - }, - [STATE(433)] = { - [sym_entity_reference] = ACTIONS(2859), - [sym_numeric_character_reference] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_BANG_LBRACK] = ACTIONS(2859), - [anon_sym_DOLLAR] = ACTIONS(2861), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2859), - [aux_sym_pandoc_str_token1] = ACTIONS(2861), - [anon_sym_PIPE] = ACTIONS(2859), - [sym__whitespace] = ACTIONS(2859), - [sym__line_ending] = ACTIONS(2859), - [sym__soft_line_ending] = ACTIONS(2859), - [sym__block_close] = ACTIONS(2859), - [sym__block_quote_start] = ACTIONS(2859), - [sym_atx_h1_marker] = ACTIONS(2859), - [sym_atx_h2_marker] = ACTIONS(2859), - [sym_atx_h3_marker] = ACTIONS(2859), - [sym_atx_h4_marker] = ACTIONS(2859), - [sym_atx_h5_marker] = ACTIONS(2859), - [sym_atx_h6_marker] = ACTIONS(2859), - [sym__thematic_break] = ACTIONS(2859), - [sym__list_marker_minus] = ACTIONS(2859), - [sym__list_marker_plus] = ACTIONS(2859), - [sym__list_marker_star] = ACTIONS(2859), - [sym__list_marker_parenthesis] = ACTIONS(2859), - [sym__list_marker_dot] = ACTIONS(2859), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2859), - [sym__list_marker_example] = ACTIONS(2859), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2859), - [sym__fenced_code_block_start_backtick] = ACTIONS(2859), - [sym_minus_metadata] = ACTIONS(2859), - [sym__pipe_table_start] = ACTIONS(2859), - [sym__fenced_div_start] = ACTIONS(2859), - [sym_ref_id_specifier] = ACTIONS(2859), - [sym__code_span_start] = ACTIONS(2859), - [sym__html_comment] = ACTIONS(2859), - [sym__autolink] = ACTIONS(2859), - [sym__highlight_span_start] = ACTIONS(2859), - [sym__insert_span_start] = ACTIONS(2859), - [sym__delete_span_start] = ACTIONS(2859), - [sym__edit_comment_span_start] = ACTIONS(2859), - [sym__single_quote_span_open] = ACTIONS(2859), - [sym__double_quote_span_open] = ACTIONS(2859), - [sym__shortcode_open_escaped] = ACTIONS(2859), - [sym__shortcode_open] = ACTIONS(2859), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2859), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2859), - [sym__cite_author_in_text] = ACTIONS(2859), - [sym__cite_suppress_author] = ACTIONS(2859), - [sym__strikeout_open] = ACTIONS(2859), - [sym__subscript_open] = ACTIONS(2859), - [sym__superscript_open] = ACTIONS(2859), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2859), - [sym__strong_emphasis_open_underscore] = ACTIONS(2859), - [sym__emphasis_open_star] = ACTIONS(2859), - [sym__emphasis_open_underscore] = ACTIONS(2859), - [sym_inline_note_reference] = ACTIONS(2859), - [sym_html_element] = ACTIONS(2859), - [sym__pandoc_lt_str] = ACTIONS(2859), - [sym__pandoc_line_break] = ACTIONS(2859), - [sym_grid_table] = ACTIONS(2859), - [sym__caption_start] = ACTIONS(2859), - }, - [STATE(434)] = { - [sym_entity_reference] = ACTIONS(2863), - [sym_numeric_character_reference] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_BANG_LBRACK] = ACTIONS(2863), - [anon_sym_DOLLAR] = ACTIONS(2865), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2863), - [aux_sym_pandoc_str_token1] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(2863), - [sym__whitespace] = ACTIONS(2863), - [sym__line_ending] = ACTIONS(2863), - [sym__soft_line_ending] = ACTIONS(2863), - [sym__block_close] = ACTIONS(2863), - [sym__block_quote_start] = ACTIONS(2863), - [sym_atx_h1_marker] = ACTIONS(2863), - [sym_atx_h2_marker] = ACTIONS(2863), - [sym_atx_h3_marker] = ACTIONS(2863), - [sym_atx_h4_marker] = ACTIONS(2863), - [sym_atx_h5_marker] = ACTIONS(2863), - [sym_atx_h6_marker] = ACTIONS(2863), - [sym__thematic_break] = ACTIONS(2863), - [sym__list_marker_minus] = ACTIONS(2863), - [sym__list_marker_plus] = ACTIONS(2863), - [sym__list_marker_star] = ACTIONS(2863), - [sym__list_marker_parenthesis] = ACTIONS(2863), - [sym__list_marker_dot] = ACTIONS(2863), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2863), - [sym__list_marker_example] = ACTIONS(2863), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2863), - [sym__fenced_code_block_start_backtick] = ACTIONS(2863), - [sym_minus_metadata] = ACTIONS(2863), - [sym__pipe_table_start] = ACTIONS(2863), - [sym__fenced_div_start] = ACTIONS(2863), - [sym_ref_id_specifier] = ACTIONS(2863), - [sym__code_span_start] = ACTIONS(2863), - [sym__html_comment] = ACTIONS(2863), - [sym__autolink] = ACTIONS(2863), - [sym__highlight_span_start] = ACTIONS(2863), - [sym__insert_span_start] = ACTIONS(2863), - [sym__delete_span_start] = ACTIONS(2863), - [sym__edit_comment_span_start] = ACTIONS(2863), - [sym__single_quote_span_open] = ACTIONS(2863), - [sym__double_quote_span_open] = ACTIONS(2863), - [sym__shortcode_open_escaped] = ACTIONS(2863), - [sym__shortcode_open] = ACTIONS(2863), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2863), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2863), - [sym__cite_author_in_text] = ACTIONS(2863), - [sym__cite_suppress_author] = ACTIONS(2863), - [sym__strikeout_open] = ACTIONS(2863), - [sym__subscript_open] = ACTIONS(2863), - [sym__superscript_open] = ACTIONS(2863), - [sym__inline_note_start_token] = ACTIONS(2863), - [sym__strong_emphasis_open_star] = ACTIONS(2863), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2863), - [sym__emphasis_open_underscore] = ACTIONS(2863), - [sym_inline_note_reference] = ACTIONS(2863), - [sym_html_element] = ACTIONS(2863), - [sym__pandoc_lt_str] = ACTIONS(2863), - [sym__pandoc_line_break] = ACTIONS(2863), - [sym_grid_table] = ACTIONS(2863), - [sym__caption_start] = ACTIONS(2863), - }, - [STATE(435)] = { - [sym_entity_reference] = ACTIONS(2867), - [sym_numeric_character_reference] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_BANG_LBRACK] = ACTIONS(2867), - [anon_sym_DOLLAR] = ACTIONS(2869), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [aux_sym_pandoc_str_token1] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2867), - [sym__whitespace] = ACTIONS(2867), - [sym__line_ending] = ACTIONS(2867), - [sym__soft_line_ending] = ACTIONS(2867), - [sym__block_close] = ACTIONS(2867), - [sym__block_quote_start] = ACTIONS(2867), - [sym_atx_h1_marker] = ACTIONS(2867), - [sym_atx_h2_marker] = ACTIONS(2867), - [sym_atx_h3_marker] = ACTIONS(2867), - [sym_atx_h4_marker] = ACTIONS(2867), - [sym_atx_h5_marker] = ACTIONS(2867), - [sym_atx_h6_marker] = ACTIONS(2867), - [sym__thematic_break] = ACTIONS(2867), - [sym__list_marker_minus] = ACTIONS(2867), - [sym__list_marker_plus] = ACTIONS(2867), - [sym__list_marker_star] = ACTIONS(2867), - [sym__list_marker_parenthesis] = ACTIONS(2867), - [sym__list_marker_dot] = ACTIONS(2867), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2867), - [sym__list_marker_example] = ACTIONS(2867), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2867), - [sym__fenced_code_block_start_backtick] = ACTIONS(2867), - [sym_minus_metadata] = ACTIONS(2867), - [sym__pipe_table_start] = ACTIONS(2867), - [sym__fenced_div_start] = ACTIONS(2867), - [sym_ref_id_specifier] = ACTIONS(2867), - [sym__code_span_start] = ACTIONS(2867), - [sym__html_comment] = ACTIONS(2867), - [sym__autolink] = ACTIONS(2867), - [sym__highlight_span_start] = ACTIONS(2867), - [sym__insert_span_start] = ACTIONS(2867), - [sym__delete_span_start] = ACTIONS(2867), - [sym__edit_comment_span_start] = ACTIONS(2867), - [sym__single_quote_span_open] = ACTIONS(2867), - [sym__double_quote_span_open] = ACTIONS(2867), - [sym__shortcode_open_escaped] = ACTIONS(2867), - [sym__shortcode_open] = ACTIONS(2867), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2867), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2867), - [sym__cite_author_in_text] = ACTIONS(2867), - [sym__cite_suppress_author] = ACTIONS(2867), - [sym__strikeout_open] = ACTIONS(2867), - [sym__subscript_open] = ACTIONS(2867), - [sym__superscript_open] = ACTIONS(2867), - [sym__inline_note_start_token] = ACTIONS(2867), - [sym__strong_emphasis_open_star] = ACTIONS(2867), - [sym__strong_emphasis_open_underscore] = ACTIONS(2867), - [sym__emphasis_open_star] = ACTIONS(2867), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2867), - [sym_html_element] = ACTIONS(2867), - [sym__pandoc_lt_str] = ACTIONS(2867), - [sym__pandoc_line_break] = ACTIONS(2867), - [sym_grid_table] = ACTIONS(2867), - [sym__caption_start] = ACTIONS(2867), - }, - [STATE(436)] = { - [sym_entity_reference] = ACTIONS(2871), - [sym_numeric_character_reference] = ACTIONS(2871), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_BANG_LBRACK] = ACTIONS(2871), - [anon_sym_DOLLAR] = ACTIONS(2873), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2871), - [aux_sym_pandoc_str_token1] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2871), - [sym__whitespace] = ACTIONS(2871), - [sym__line_ending] = ACTIONS(2871), - [sym__soft_line_ending] = ACTIONS(2871), - [sym__block_close] = ACTIONS(2871), - [sym__block_quote_start] = ACTIONS(2871), - [sym_atx_h1_marker] = ACTIONS(2871), - [sym_atx_h2_marker] = ACTIONS(2871), - [sym_atx_h3_marker] = ACTIONS(2871), - [sym_atx_h4_marker] = ACTIONS(2871), - [sym_atx_h5_marker] = ACTIONS(2871), - [sym_atx_h6_marker] = ACTIONS(2871), - [sym__thematic_break] = ACTIONS(2871), - [sym__list_marker_minus] = ACTIONS(2871), - [sym__list_marker_plus] = ACTIONS(2871), - [sym__list_marker_star] = ACTIONS(2871), - [sym__list_marker_parenthesis] = ACTIONS(2871), - [sym__list_marker_dot] = ACTIONS(2871), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2871), - [sym__list_marker_example] = ACTIONS(2871), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2871), - [sym__fenced_code_block_start_backtick] = ACTIONS(2871), - [sym_minus_metadata] = ACTIONS(2871), - [sym__pipe_table_start] = ACTIONS(2871), - [sym__fenced_div_start] = ACTIONS(2871), - [sym_ref_id_specifier] = ACTIONS(2871), - [sym__code_span_start] = ACTIONS(2871), - [sym__html_comment] = ACTIONS(2871), - [sym__autolink] = ACTIONS(2871), - [sym__highlight_span_start] = ACTIONS(2871), - [sym__insert_span_start] = ACTIONS(2871), - [sym__delete_span_start] = ACTIONS(2871), - [sym__edit_comment_span_start] = ACTIONS(2871), - [sym__single_quote_span_open] = ACTIONS(2871), - [sym__double_quote_span_open] = ACTIONS(2871), - [sym__shortcode_open_escaped] = ACTIONS(2871), - [sym__shortcode_open] = ACTIONS(2871), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2871), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2871), - [sym__cite_author_in_text] = ACTIONS(2871), - [sym__cite_suppress_author] = ACTIONS(2871), - [sym__strikeout_open] = ACTIONS(2871), - [sym__subscript_open] = ACTIONS(2871), - [sym__superscript_open] = ACTIONS(2871), - [sym__inline_note_start_token] = ACTIONS(2871), - [sym__strong_emphasis_open_star] = ACTIONS(2871), - [sym__strong_emphasis_open_underscore] = ACTIONS(2871), - [sym__emphasis_open_star] = ACTIONS(2871), - [sym__emphasis_open_underscore] = ACTIONS(2871), - [sym_inline_note_reference] = ACTIONS(2871), - [sym_html_element] = ACTIONS(2871), - [sym__pandoc_lt_str] = ACTIONS(2871), - [sym__pandoc_line_break] = ACTIONS(2871), - [sym_grid_table] = ACTIONS(2871), - [sym__caption_start] = ACTIONS(2871), - }, - [STATE(437)] = { - [sym_entity_reference] = ACTIONS(2875), - [sym_numeric_character_reference] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_BANG_LBRACK] = ACTIONS(2875), - [anon_sym_DOLLAR] = ACTIONS(2877), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2875), - [aux_sym_pandoc_str_token1] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(2875), - [sym__whitespace] = ACTIONS(2875), - [sym__line_ending] = ACTIONS(2875), - [sym__soft_line_ending] = ACTIONS(2875), - [sym__block_close] = ACTIONS(2875), - [sym__block_quote_start] = ACTIONS(2875), - [sym_atx_h1_marker] = ACTIONS(2875), - [sym_atx_h2_marker] = ACTIONS(2875), - [sym_atx_h3_marker] = ACTIONS(2875), - [sym_atx_h4_marker] = ACTIONS(2875), - [sym_atx_h5_marker] = ACTIONS(2875), - [sym_atx_h6_marker] = ACTIONS(2875), - [sym__thematic_break] = ACTIONS(2875), - [sym__list_marker_minus] = ACTIONS(2875), - [sym__list_marker_plus] = ACTIONS(2875), - [sym__list_marker_star] = ACTIONS(2875), - [sym__list_marker_parenthesis] = ACTIONS(2875), - [sym__list_marker_dot] = ACTIONS(2875), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2875), - [sym__list_marker_example] = ACTIONS(2875), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2875), - [sym__fenced_code_block_start_backtick] = ACTIONS(2875), - [sym_minus_metadata] = ACTIONS(2875), - [sym__pipe_table_start] = ACTIONS(2875), - [sym__fenced_div_start] = ACTIONS(2875), - [sym_ref_id_specifier] = ACTIONS(2875), - [sym__code_span_start] = ACTIONS(2875), - [sym__html_comment] = ACTIONS(2875), - [sym__autolink] = ACTIONS(2875), - [sym__highlight_span_start] = ACTIONS(2875), - [sym__insert_span_start] = ACTIONS(2875), - [sym__delete_span_start] = ACTIONS(2875), - [sym__edit_comment_span_start] = ACTIONS(2875), - [sym__single_quote_span_open] = ACTIONS(2875), - [sym__double_quote_span_open] = ACTIONS(2875), - [sym__shortcode_open_escaped] = ACTIONS(2875), - [sym__shortcode_open] = ACTIONS(2875), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2875), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2875), - [sym__cite_author_in_text] = ACTIONS(2875), - [sym__cite_suppress_author] = ACTIONS(2875), - [sym__strikeout_open] = ACTIONS(2875), - [sym__subscript_open] = ACTIONS(2875), - [sym__superscript_open] = ACTIONS(2875), - [sym__inline_note_start_token] = ACTIONS(2875), - [sym__strong_emphasis_open_star] = ACTIONS(2875), - [sym__strong_emphasis_open_underscore] = ACTIONS(2875), - [sym__emphasis_open_star] = ACTIONS(2875), - [sym__emphasis_open_underscore] = ACTIONS(2875), - [sym_inline_note_reference] = ACTIONS(2875), - [sym_html_element] = ACTIONS(2875), - [sym__pandoc_lt_str] = ACTIONS(2875), - [sym__pandoc_line_break] = ACTIONS(2875), - [sym_grid_table] = ACTIONS(2875), - [sym__caption_start] = ACTIONS(2875), - }, - [STATE(438)] = { - [sym_entity_reference] = ACTIONS(2879), - [sym_numeric_character_reference] = ACTIONS(2879), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_BANG_LBRACK] = ACTIONS(2879), - [anon_sym_DOLLAR] = ACTIONS(2881), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2879), - [aux_sym_pandoc_str_token1] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2879), - [sym__whitespace] = ACTIONS(2879), - [sym__line_ending] = ACTIONS(2879), - [sym__soft_line_ending] = ACTIONS(2879), - [sym__block_close] = ACTIONS(2879), - [sym__block_quote_start] = ACTIONS(2879), - [sym_atx_h1_marker] = ACTIONS(2879), - [sym_atx_h2_marker] = ACTIONS(2879), - [sym_atx_h3_marker] = ACTIONS(2879), - [sym_atx_h4_marker] = ACTIONS(2879), - [sym_atx_h5_marker] = ACTIONS(2879), - [sym_atx_h6_marker] = ACTIONS(2879), - [sym__thematic_break] = ACTIONS(2879), - [sym__list_marker_minus] = ACTIONS(2879), - [sym__list_marker_plus] = ACTIONS(2879), - [sym__list_marker_star] = ACTIONS(2879), - [sym__list_marker_parenthesis] = ACTIONS(2879), - [sym__list_marker_dot] = ACTIONS(2879), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2879), - [sym__list_marker_example] = ACTIONS(2879), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2879), - [sym__fenced_code_block_start_backtick] = ACTIONS(2879), - [sym_minus_metadata] = ACTIONS(2879), - [sym__pipe_table_start] = ACTIONS(2879), - [sym__fenced_div_start] = ACTIONS(2879), - [sym_ref_id_specifier] = ACTIONS(2879), - [sym__code_span_start] = ACTIONS(2879), - [sym__html_comment] = ACTIONS(2879), - [sym__autolink] = ACTIONS(2879), - [sym__highlight_span_start] = ACTIONS(2879), - [sym__insert_span_start] = ACTIONS(2879), - [sym__delete_span_start] = ACTIONS(2879), - [sym__edit_comment_span_start] = ACTIONS(2879), - [sym__single_quote_span_open] = ACTIONS(2879), - [sym__double_quote_span_open] = ACTIONS(2879), - [sym__shortcode_open_escaped] = ACTIONS(2879), - [sym__shortcode_open] = ACTIONS(2879), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2879), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2879), - [sym__cite_author_in_text] = ACTIONS(2879), - [sym__cite_suppress_author] = ACTIONS(2879), - [sym__strikeout_open] = ACTIONS(2879), - [sym__subscript_open] = ACTIONS(2879), - [sym__superscript_open] = ACTIONS(2879), - [sym__inline_note_start_token] = ACTIONS(2879), - [sym__strong_emphasis_open_star] = ACTIONS(2879), - [sym__strong_emphasis_open_underscore] = ACTIONS(2879), - [sym__emphasis_open_star] = ACTIONS(2879), - [sym__emphasis_open_underscore] = ACTIONS(2879), - [sym_inline_note_reference] = ACTIONS(2879), - [sym_html_element] = ACTIONS(2879), - [sym__pandoc_lt_str] = ACTIONS(2879), - [sym__pandoc_line_break] = ACTIONS(2879), - [sym_grid_table] = ACTIONS(2879), - [sym__caption_start] = ACTIONS(2879), - }, - [STATE(439)] = { - [sym_entity_reference] = ACTIONS(2645), - [sym_numeric_character_reference] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_BANG_LBRACK] = ACTIONS(2645), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2645), - [aux_sym_pandoc_str_token1] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2645), - [sym__whitespace] = ACTIONS(2645), - [sym__line_ending] = ACTIONS(2645), - [sym__soft_line_ending] = ACTIONS(2645), - [sym__block_close] = ACTIONS(2645), - [sym__block_quote_start] = ACTIONS(2645), - [sym_atx_h1_marker] = ACTIONS(2645), - [sym_atx_h2_marker] = ACTIONS(2645), - [sym_atx_h3_marker] = ACTIONS(2645), - [sym_atx_h4_marker] = ACTIONS(2645), - [sym_atx_h5_marker] = ACTIONS(2645), - [sym_atx_h6_marker] = ACTIONS(2645), - [sym__thematic_break] = ACTIONS(2645), - [sym__list_marker_minus] = ACTIONS(2645), - [sym__list_marker_plus] = ACTIONS(2645), - [sym__list_marker_star] = ACTIONS(2645), - [sym__list_marker_parenthesis] = ACTIONS(2645), - [sym__list_marker_dot] = ACTIONS(2645), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_example] = ACTIONS(2645), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2645), - [sym__fenced_code_block_start_backtick] = ACTIONS(2645), - [sym_minus_metadata] = ACTIONS(2645), - [sym__pipe_table_start] = ACTIONS(2645), - [sym__fenced_div_start] = ACTIONS(2645), - [sym_ref_id_specifier] = ACTIONS(2645), - [sym__code_span_start] = ACTIONS(2645), - [sym__html_comment] = ACTIONS(2645), - [sym__autolink] = ACTIONS(2645), - [sym__highlight_span_start] = ACTIONS(2645), - [sym__insert_span_start] = ACTIONS(2645), - [sym__delete_span_start] = ACTIONS(2645), - [sym__edit_comment_span_start] = ACTIONS(2645), - [sym__single_quote_span_open] = ACTIONS(2645), - [sym__double_quote_span_open] = ACTIONS(2645), - [sym__shortcode_open_escaped] = ACTIONS(2645), - [sym__shortcode_open] = ACTIONS(2645), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2645), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2645), - [sym__cite_author_in_text] = ACTIONS(2645), - [sym__cite_suppress_author] = ACTIONS(2645), - [sym__strikeout_open] = ACTIONS(2645), - [sym__subscript_open] = ACTIONS(2645), - [sym__superscript_open] = ACTIONS(2645), - [sym__inline_note_start_token] = ACTIONS(2645), - [sym__strong_emphasis_open_star] = ACTIONS(2645), - [sym__strong_emphasis_open_underscore] = ACTIONS(2645), - [sym__emphasis_open_star] = ACTIONS(2645), - [sym__emphasis_open_underscore] = ACTIONS(2645), - [sym_inline_note_reference] = ACTIONS(2645), - [sym_html_element] = ACTIONS(2645), - [sym__pandoc_lt_str] = ACTIONS(2645), - [sym__pandoc_line_break] = ACTIONS(2645), - [sym_grid_table] = ACTIONS(2645), - [sym__caption_start] = ACTIONS(2645), - }, - [STATE(440)] = { - [sym_pipe_table_cell] = STATE(2986), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2899), - [sym__line_ending] = ACTIONS(2901), - [sym__eof] = ACTIONS(2901), - [sym__pipe_table_line_ending] = ACTIONS(2901), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pipe_table_delimiter] = ACTIONS(2909), - [sym__pandoc_line_break] = ACTIONS(2139), - }, - [STATE(441)] = { - [sym_pipe_table_cell] = STATE(3027), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym_pipe_table_row_repeat1] = STATE(444), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2911), - [sym__line_ending] = ACTIONS(2913), - [sym__eof] = ACTIONS(2913), - [sym__pipe_table_line_ending] = ACTIONS(2913), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pandoc_line_break] = ACTIONS(2139), - }, - [STATE(442)] = { - [sym_pipe_table_cell] = STATE(3027), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym_pipe_table_row_repeat1] = STATE(463), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2915), - [sym__line_ending] = ACTIONS(2917), - [sym__eof] = ACTIONS(2917), - [sym__pipe_table_line_ending] = ACTIONS(2917), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pandoc_line_break] = ACTIONS(2139), - }, - [STATE(443)] = { - [sym_pipe_table_cell] = STATE(2986), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2899), - [sym__line_ending] = ACTIONS(2913), - [sym__eof] = ACTIONS(2913), - [sym__pipe_table_line_ending] = ACTIONS(2913), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pipe_table_delimiter] = ACTIONS(2909), - [sym__pandoc_line_break] = ACTIONS(2139), - }, - [STATE(444)] = { - [sym_pipe_table_cell] = STATE(3590), - [sym_pandoc_span] = STATE(787), - [sym_pandoc_image] = STATE(787), - [sym_pandoc_math] = STATE(787), - [sym_pandoc_display_math] = STATE(787), - [sym_pandoc_code_span] = STATE(787), - [sym_pandoc_single_quote] = STATE(787), - [sym_pandoc_double_quote] = STATE(787), - [sym_insert] = STATE(787), - [sym_delete] = STATE(787), - [sym_edit_comment] = STATE(787), - [sym_highlight] = STATE(787), - [sym__pandoc_attr_specifier] = STATE(787), - [sym__line_with_maybe_spaces] = STATE(3552), - [sym__inline_element] = STATE(787), - [sym_shortcode_escaped] = STATE(787), - [sym_shortcode] = STATE(787), - [sym_citation] = STATE(787), - [sym_inline_note] = STATE(787), - [sym_pandoc_superscript] = STATE(787), - [sym_pandoc_subscript] = STATE(787), - [sym_pandoc_strikeout] = STATE(787), - [sym_pandoc_emph] = STATE(787), - [sym_pandoc_strong] = STATE(787), - [sym_pandoc_str] = STATE(787), - [aux_sym_pipe_table_row_repeat1] = STATE(444), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(787), - [sym_entity_reference] = ACTIONS(2919), - [sym_numeric_character_reference] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_BANG_LBRACK] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2934), - [aux_sym_pandoc_str_token1] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2940), - [sym__whitespace] = ACTIONS(2943), - [sym__line_ending] = ACTIONS(2946), - [sym__eof] = ACTIONS(2946), - [sym__pipe_table_line_ending] = ACTIONS(2946), - [sym__code_span_start] = ACTIONS(2948), - [sym__html_comment] = ACTIONS(2919), - [sym__autolink] = ACTIONS(2919), - [sym__highlight_span_start] = ACTIONS(2951), - [sym__insert_span_start] = ACTIONS(2954), - [sym__delete_span_start] = ACTIONS(2957), - [sym__edit_comment_span_start] = ACTIONS(2960), - [sym__single_quote_span_open] = ACTIONS(2963), - [sym__double_quote_span_open] = ACTIONS(2966), - [sym__shortcode_open_escaped] = ACTIONS(2969), - [sym__shortcode_open] = ACTIONS(2972), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2975), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2978), - [sym__cite_author_in_text] = ACTIONS(2981), - [sym__cite_suppress_author] = ACTIONS(2984), - [sym__strikeout_open] = ACTIONS(2987), - [sym__subscript_open] = ACTIONS(2990), - [sym__superscript_open] = ACTIONS(2993), - [sym__inline_note_start_token] = ACTIONS(2996), - [sym__strong_emphasis_open_star] = ACTIONS(2999), - [sym__strong_emphasis_open_underscore] = ACTIONS(3002), - [sym__emphasis_open_star] = ACTIONS(3005), - [sym__emphasis_open_underscore] = ACTIONS(3008), - [sym_inline_note_reference] = ACTIONS(2919), - [sym_html_element] = ACTIONS(2919), - [sym__pandoc_lt_str] = ACTIONS(2940), - [sym__pandoc_line_break] = ACTIONS(2919), - }, - [STATE(445)] = { - [sym_entity_reference] = ACTIONS(2357), - [sym_numeric_character_reference] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_BANG_LBRACK] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [aux_sym_pandoc_str_token1] = ACTIONS(2359), - [anon_sym_PIPE] = ACTIONS(2357), - [sym__whitespace] = ACTIONS(2357), - [sym__line_ending] = ACTIONS(2357), - [sym__soft_line_ending] = ACTIONS(2357), - [sym__block_close] = ACTIONS(2357), - [sym__block_quote_start] = ACTIONS(2357), - [sym_atx_h1_marker] = ACTIONS(2357), - [sym_atx_h2_marker] = ACTIONS(2357), - [sym_atx_h3_marker] = ACTIONS(2357), - [sym_atx_h4_marker] = ACTIONS(2357), - [sym_atx_h5_marker] = ACTIONS(2357), - [sym_atx_h6_marker] = ACTIONS(2357), - [sym__thematic_break] = ACTIONS(2357), - [sym__list_marker_minus] = ACTIONS(2357), - [sym__list_marker_plus] = ACTIONS(2357), - [sym__list_marker_star] = ACTIONS(2357), - [sym__list_marker_parenthesis] = ACTIONS(2357), - [sym__list_marker_dot] = ACTIONS(2357), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2357), - [sym__list_marker_example] = ACTIONS(2357), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2357), - [sym__fenced_code_block_start_backtick] = ACTIONS(2357), - [sym_minus_metadata] = ACTIONS(2357), - [sym__pipe_table_start] = ACTIONS(2357), - [sym__fenced_div_start] = ACTIONS(2357), - [sym_ref_id_specifier] = ACTIONS(2357), - [sym__code_span_start] = ACTIONS(2357), - [sym__html_comment] = ACTIONS(2357), - [sym__autolink] = ACTIONS(2357), - [sym__highlight_span_start] = ACTIONS(2357), - [sym__insert_span_start] = ACTIONS(2357), - [sym__delete_span_start] = ACTIONS(2357), - [sym__edit_comment_span_start] = ACTIONS(2357), - [sym__single_quote_span_open] = ACTIONS(2357), - [sym__double_quote_span_open] = ACTIONS(2357), - [sym__shortcode_open_escaped] = ACTIONS(2357), - [sym__shortcode_open] = ACTIONS(2357), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2357), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2357), - [sym__cite_author_in_text] = ACTIONS(2357), - [sym__cite_suppress_author] = ACTIONS(2357), - [sym__strikeout_open] = ACTIONS(2357), - [sym__subscript_open] = ACTIONS(2357), - [sym__superscript_open] = ACTIONS(2357), - [sym__inline_note_start_token] = ACTIONS(2357), - [sym__strong_emphasis_open_star] = ACTIONS(2357), - [sym__strong_emphasis_open_underscore] = ACTIONS(2357), - [sym__emphasis_open_star] = ACTIONS(2357), - [sym__emphasis_open_underscore] = ACTIONS(2357), - [sym_inline_note_reference] = ACTIONS(2357), - [sym_html_element] = ACTIONS(2357), - [sym__pandoc_lt_str] = ACTIONS(2357), - [sym__pandoc_line_break] = ACTIONS(2357), - [sym_grid_table] = ACTIONS(2357), - [sym__caption_start] = ACTIONS(2357), - }, - [STATE(446)] = { - [ts_builtin_sym_end] = ACTIONS(2347), - [sym_entity_reference] = ACTIONS(2347), - [sym_numeric_character_reference] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_BANG_LBRACK] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [aux_sym_pandoc_str_token1] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2347), - [sym__whitespace] = ACTIONS(2347), - [sym__line_ending] = ACTIONS(2347), - [sym__soft_line_ending] = ACTIONS(2347), - [sym__block_quote_start] = ACTIONS(2347), - [sym_atx_h1_marker] = ACTIONS(2347), - [sym_atx_h2_marker] = ACTIONS(2347), - [sym_atx_h3_marker] = ACTIONS(2347), - [sym_atx_h4_marker] = ACTIONS(2347), - [sym_atx_h5_marker] = ACTIONS(2347), - [sym_atx_h6_marker] = ACTIONS(2347), - [sym__thematic_break] = ACTIONS(2347), - [sym__list_marker_minus] = ACTIONS(2347), - [sym__list_marker_plus] = ACTIONS(2347), - [sym__list_marker_star] = ACTIONS(2347), - [sym__list_marker_parenthesis] = ACTIONS(2347), - [sym__list_marker_dot] = ACTIONS(2347), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_example] = ACTIONS(2347), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2347), - [sym__fenced_code_block_start_backtick] = ACTIONS(2347), - [sym_minus_metadata] = ACTIONS(2347), - [sym__pipe_table_start] = ACTIONS(2347), - [sym__fenced_div_start] = ACTIONS(2347), - [sym_ref_id_specifier] = ACTIONS(2347), - [sym__code_span_start] = ACTIONS(2347), - [sym__html_comment] = ACTIONS(2347), - [sym__autolink] = ACTIONS(2347), - [sym__highlight_span_start] = ACTIONS(2347), - [sym__insert_span_start] = ACTIONS(2347), - [sym__delete_span_start] = ACTIONS(2347), - [sym__edit_comment_span_start] = ACTIONS(2347), - [sym__single_quote_span_open] = ACTIONS(2347), - [sym__double_quote_span_open] = ACTIONS(2347), - [sym__shortcode_open_escaped] = ACTIONS(2347), - [sym__shortcode_open] = ACTIONS(2347), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2347), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2347), - [sym__cite_author_in_text] = ACTIONS(2347), - [sym__cite_suppress_author] = ACTIONS(2347), - [sym__strikeout_open] = ACTIONS(2347), - [sym__subscript_open] = ACTIONS(2347), - [sym__superscript_open] = ACTIONS(2347), - [sym__inline_note_start_token] = ACTIONS(2347), - [sym__strong_emphasis_open_star] = ACTIONS(2347), - [sym__strong_emphasis_open_underscore] = ACTIONS(2347), - [sym__emphasis_open_star] = ACTIONS(2347), - [sym__emphasis_open_underscore] = ACTIONS(2347), - [sym_inline_note_reference] = ACTIONS(2347), - [sym_html_element] = ACTIONS(2347), - [sym__pandoc_lt_str] = ACTIONS(2347), - [sym__pandoc_line_break] = ACTIONS(2347), - [sym_grid_table] = ACTIONS(2347), - [sym__caption_start] = ACTIONS(2347), - }, - [STATE(447)] = { - [sym_entity_reference] = ACTIONS(2347), - [sym_numeric_character_reference] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_BANG_LBRACK] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [aux_sym_pandoc_str_token1] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2347), - [sym__whitespace] = ACTIONS(2347), - [sym__line_ending] = ACTIONS(2347), - [sym__soft_line_ending] = ACTIONS(2347), - [sym__block_close] = ACTIONS(2347), - [sym__block_quote_start] = ACTIONS(2347), - [sym_atx_h1_marker] = ACTIONS(2347), - [sym_atx_h2_marker] = ACTIONS(2347), - [sym_atx_h3_marker] = ACTIONS(2347), - [sym_atx_h4_marker] = ACTIONS(2347), - [sym_atx_h5_marker] = ACTIONS(2347), - [sym_atx_h6_marker] = ACTIONS(2347), - [sym__thematic_break] = ACTIONS(2347), - [sym__list_marker_minus] = ACTIONS(2347), - [sym__list_marker_plus] = ACTIONS(2347), - [sym__list_marker_star] = ACTIONS(2347), - [sym__list_marker_parenthesis] = ACTIONS(2347), - [sym__list_marker_dot] = ACTIONS(2347), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2347), - [sym__list_marker_example] = ACTIONS(2347), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2347), - [sym__fenced_code_block_start_backtick] = ACTIONS(2347), - [sym_minus_metadata] = ACTIONS(2347), - [sym__pipe_table_start] = ACTIONS(2347), - [sym__fenced_div_start] = ACTIONS(2347), - [sym_ref_id_specifier] = ACTIONS(2347), - [sym__code_span_start] = ACTIONS(2347), - [sym__html_comment] = ACTIONS(2347), - [sym__autolink] = ACTIONS(2347), - [sym__highlight_span_start] = ACTIONS(2347), - [sym__insert_span_start] = ACTIONS(2347), - [sym__delete_span_start] = ACTIONS(2347), - [sym__edit_comment_span_start] = ACTIONS(2347), - [sym__single_quote_span_open] = ACTIONS(2347), - [sym__double_quote_span_open] = ACTIONS(2347), - [sym__shortcode_open_escaped] = ACTIONS(2347), - [sym__shortcode_open] = ACTIONS(2347), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2347), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2347), - [sym__cite_author_in_text] = ACTIONS(2347), - [sym__cite_suppress_author] = ACTIONS(2347), - [sym__strikeout_open] = ACTIONS(2347), - [sym__subscript_open] = ACTIONS(2347), - [sym__superscript_open] = ACTIONS(2347), - [sym__inline_note_start_token] = ACTIONS(2347), - [sym__strong_emphasis_open_star] = ACTIONS(2347), - [sym__strong_emphasis_open_underscore] = ACTIONS(2347), - [sym__emphasis_open_star] = ACTIONS(2347), - [sym__emphasis_open_underscore] = ACTIONS(2347), - [sym_inline_note_reference] = ACTIONS(2347), - [sym_html_element] = ACTIONS(2347), - [sym__pandoc_lt_str] = ACTIONS(2347), - [sym__pandoc_line_break] = ACTIONS(2347), - [sym_grid_table] = ACTIONS(2347), - [sym__caption_start] = ACTIONS(2347), - }, - [STATE(448)] = { - [sym_entity_reference] = ACTIONS(2225), - [sym_numeric_character_reference] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_BANG_LBRACK] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [aux_sym_pandoc_str_token1] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2225), - [sym__whitespace] = ACTIONS(2225), - [sym__line_ending] = ACTIONS(2225), - [sym__soft_line_ending] = ACTIONS(2225), - [sym__block_close] = ACTIONS(2225), - [sym__block_quote_start] = ACTIONS(2225), - [sym_atx_h1_marker] = ACTIONS(2225), - [sym_atx_h2_marker] = ACTIONS(2225), - [sym_atx_h3_marker] = ACTIONS(2225), - [sym_atx_h4_marker] = ACTIONS(2225), - [sym_atx_h5_marker] = ACTIONS(2225), - [sym_atx_h6_marker] = ACTIONS(2225), - [sym__thematic_break] = ACTIONS(2225), - [sym__list_marker_minus] = ACTIONS(2225), - [sym__list_marker_plus] = ACTIONS(2225), - [sym__list_marker_star] = ACTIONS(2225), - [sym__list_marker_parenthesis] = ACTIONS(2225), - [sym__list_marker_dot] = ACTIONS(2225), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_example] = ACTIONS(2225), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2225), - [sym__fenced_code_block_start_backtick] = ACTIONS(2225), - [sym_minus_metadata] = ACTIONS(2225), - [sym__pipe_table_start] = ACTIONS(2225), - [sym__fenced_div_start] = ACTIONS(2225), - [sym_ref_id_specifier] = ACTIONS(2225), - [sym__code_span_start] = ACTIONS(2225), - [sym__html_comment] = ACTIONS(2225), - [sym__autolink] = ACTIONS(2225), - [sym__highlight_span_start] = ACTIONS(2225), - [sym__insert_span_start] = ACTIONS(2225), - [sym__delete_span_start] = ACTIONS(2225), - [sym__edit_comment_span_start] = ACTIONS(2225), - [sym__single_quote_span_open] = ACTIONS(2225), - [sym__double_quote_span_open] = ACTIONS(2225), - [sym__shortcode_open_escaped] = ACTIONS(2225), - [sym__shortcode_open] = ACTIONS(2225), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2225), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2225), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2225), - [sym__strikeout_open] = ACTIONS(2225), - [sym__subscript_open] = ACTIONS(2225), - [sym__superscript_open] = ACTIONS(2225), - [sym__inline_note_start_token] = ACTIONS(2225), - [sym__strong_emphasis_open_star] = ACTIONS(2225), - [sym__strong_emphasis_open_underscore] = ACTIONS(2225), - [sym__emphasis_open_star] = ACTIONS(2225), - [sym__emphasis_open_underscore] = ACTIONS(2225), - [sym_inline_note_reference] = ACTIONS(2225), - [sym_html_element] = ACTIONS(2225), - [sym__pandoc_lt_str] = ACTIONS(2225), - [sym__pandoc_line_break] = ACTIONS(2225), - [sym_grid_table] = ACTIONS(2225), - [sym__caption_start] = ACTIONS(2225), - }, - [STATE(449)] = { - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_entity_reference] = ACTIONS(2225), - [sym_numeric_character_reference] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_BANG_LBRACK] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [aux_sym_pandoc_str_token1] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2225), - [sym__whitespace] = ACTIONS(2225), - [sym__line_ending] = ACTIONS(2225), - [sym__soft_line_ending] = ACTIONS(2225), - [sym__block_quote_start] = ACTIONS(2225), - [sym_atx_h1_marker] = ACTIONS(2225), - [sym_atx_h2_marker] = ACTIONS(2225), - [sym_atx_h3_marker] = ACTIONS(2225), - [sym_atx_h4_marker] = ACTIONS(2225), - [sym_atx_h5_marker] = ACTIONS(2225), - [sym_atx_h6_marker] = ACTIONS(2225), - [sym__thematic_break] = ACTIONS(2225), - [sym__list_marker_minus] = ACTIONS(2225), - [sym__list_marker_plus] = ACTIONS(2225), - [sym__list_marker_star] = ACTIONS(2225), - [sym__list_marker_parenthesis] = ACTIONS(2225), - [sym__list_marker_dot] = ACTIONS(2225), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2225), - [sym__list_marker_example] = ACTIONS(2225), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2225), - [sym__fenced_code_block_start_backtick] = ACTIONS(2225), - [sym_minus_metadata] = ACTIONS(2225), - [sym__pipe_table_start] = ACTIONS(2225), - [sym__fenced_div_start] = ACTIONS(2225), - [sym_ref_id_specifier] = ACTIONS(2225), - [sym__code_span_start] = ACTIONS(2225), - [sym__html_comment] = ACTIONS(2225), - [sym__autolink] = ACTIONS(2225), - [sym__highlight_span_start] = ACTIONS(2225), - [sym__insert_span_start] = ACTIONS(2225), - [sym__delete_span_start] = ACTIONS(2225), - [sym__edit_comment_span_start] = ACTIONS(2225), - [sym__single_quote_span_open] = ACTIONS(2225), - [sym__double_quote_span_open] = ACTIONS(2225), - [sym__shortcode_open_escaped] = ACTIONS(2225), - [sym__shortcode_open] = ACTIONS(2225), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2225), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2225), - [sym__cite_author_in_text] = ACTIONS(2225), - [sym__cite_suppress_author] = ACTIONS(2225), - [sym__strikeout_open] = ACTIONS(2225), - [sym__subscript_open] = ACTIONS(2225), - [sym__superscript_open] = ACTIONS(2225), - [sym__inline_note_start_token] = ACTIONS(2225), - [sym__strong_emphasis_open_star] = ACTIONS(2225), - [sym__strong_emphasis_open_underscore] = ACTIONS(2225), - [sym__emphasis_open_star] = ACTIONS(2225), - [sym__emphasis_open_underscore] = ACTIONS(2225), - [sym_inline_note_reference] = ACTIONS(2225), - [sym_html_element] = ACTIONS(2225), - [sym__pandoc_lt_str] = ACTIONS(2225), - [sym__pandoc_line_break] = ACTIONS(2225), - [sym_grid_table] = ACTIONS(2225), - [sym__caption_start] = ACTIONS(2225), - }, - [STATE(450)] = { - [sym_entity_reference] = ACTIONS(2231), - [sym_numeric_character_reference] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_BANG_LBRACK] = ACTIONS(2231), - [anon_sym_DOLLAR] = ACTIONS(2233), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [aux_sym_pandoc_str_token1] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2231), - [sym__whitespace] = ACTIONS(2231), - [sym__line_ending] = ACTIONS(2231), - [sym__soft_line_ending] = ACTIONS(2231), - [sym__block_close] = ACTIONS(2231), - [sym__block_quote_start] = ACTIONS(2231), - [sym_atx_h1_marker] = ACTIONS(2231), - [sym_atx_h2_marker] = ACTIONS(2231), - [sym_atx_h3_marker] = ACTIONS(2231), - [sym_atx_h4_marker] = ACTIONS(2231), - [sym_atx_h5_marker] = ACTIONS(2231), - [sym_atx_h6_marker] = ACTIONS(2231), - [sym__thematic_break] = ACTIONS(2231), - [sym__list_marker_minus] = ACTIONS(2231), - [sym__list_marker_plus] = ACTIONS(2231), - [sym__list_marker_star] = ACTIONS(2231), - [sym__list_marker_parenthesis] = ACTIONS(2231), - [sym__list_marker_dot] = ACTIONS(2231), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_example] = ACTIONS(2231), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2231), - [sym__fenced_code_block_start_backtick] = ACTIONS(2231), - [sym_minus_metadata] = ACTIONS(2231), - [sym__pipe_table_start] = ACTIONS(2231), - [sym__fenced_div_start] = ACTIONS(2231), - [sym_ref_id_specifier] = ACTIONS(2231), - [sym__code_span_start] = ACTIONS(2231), - [sym__html_comment] = ACTIONS(2231), - [sym__autolink] = ACTIONS(2231), - [sym__highlight_span_start] = ACTIONS(2231), - [sym__insert_span_start] = ACTIONS(2231), - [sym__delete_span_start] = ACTIONS(2231), - [sym__edit_comment_span_start] = ACTIONS(2231), - [sym__single_quote_span_open] = ACTIONS(2231), - [sym__double_quote_span_open] = ACTIONS(2231), - [sym__shortcode_open_escaped] = ACTIONS(2231), - [sym__shortcode_open] = ACTIONS(2231), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2231), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2231), - [sym__cite_author_in_text] = ACTIONS(2231), - [sym__cite_suppress_author] = ACTIONS(2231), - [sym__strikeout_open] = ACTIONS(2231), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2231), - [sym__inline_note_start_token] = ACTIONS(2231), - [sym__strong_emphasis_open_star] = ACTIONS(2231), - [sym__strong_emphasis_open_underscore] = ACTIONS(2231), - [sym__emphasis_open_star] = ACTIONS(2231), - [sym__emphasis_open_underscore] = ACTIONS(2231), - [sym_inline_note_reference] = ACTIONS(2231), - [sym_html_element] = ACTIONS(2231), - [sym__pandoc_lt_str] = ACTIONS(2231), - [sym__pandoc_line_break] = ACTIONS(2231), - [sym_grid_table] = ACTIONS(2231), - [sym__caption_start] = ACTIONS(2231), - }, - [STATE(451)] = { - [ts_builtin_sym_end] = ACTIONS(2423), - [sym_entity_reference] = ACTIONS(2423), - [sym_numeric_character_reference] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2423), - [anon_sym_BANG_LBRACK] = ACTIONS(2423), - [anon_sym_DOLLAR] = ACTIONS(2425), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [aux_sym_pandoc_str_token1] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2423), - [sym__whitespace] = ACTIONS(2423), - [sym__line_ending] = ACTIONS(2423), - [sym__soft_line_ending] = ACTIONS(2423), - [sym__block_quote_start] = ACTIONS(2423), - [sym_atx_h1_marker] = ACTIONS(2423), - [sym_atx_h2_marker] = ACTIONS(2423), - [sym_atx_h3_marker] = ACTIONS(2423), - [sym_atx_h4_marker] = ACTIONS(2423), - [sym_atx_h5_marker] = ACTIONS(2423), - [sym_atx_h6_marker] = ACTIONS(2423), - [sym__thematic_break] = ACTIONS(2423), - [sym__list_marker_minus] = ACTIONS(2423), - [sym__list_marker_plus] = ACTIONS(2423), - [sym__list_marker_star] = ACTIONS(2423), - [sym__list_marker_parenthesis] = ACTIONS(2423), - [sym__list_marker_dot] = ACTIONS(2423), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2423), - [sym__list_marker_example] = ACTIONS(2423), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2423), - [sym__fenced_code_block_start_backtick] = ACTIONS(2423), - [sym_minus_metadata] = ACTIONS(2423), - [sym__pipe_table_start] = ACTIONS(2423), - [sym__fenced_div_start] = ACTIONS(2423), - [sym_ref_id_specifier] = ACTIONS(2423), - [sym__code_span_start] = ACTIONS(2423), - [sym__html_comment] = ACTIONS(2423), - [sym__autolink] = ACTIONS(2423), - [sym__highlight_span_start] = ACTIONS(2423), - [sym__insert_span_start] = ACTIONS(2423), - [sym__delete_span_start] = ACTIONS(2423), - [sym__edit_comment_span_start] = ACTIONS(2423), - [sym__single_quote_span_open] = ACTIONS(2423), - [sym__double_quote_span_open] = ACTIONS(2423), - [sym__shortcode_open_escaped] = ACTIONS(2423), - [sym__shortcode_open] = ACTIONS(2423), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2423), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2423), - [sym__cite_author_in_text] = ACTIONS(2423), - [sym__cite_suppress_author] = ACTIONS(2423), - [sym__strikeout_open] = ACTIONS(2423), - [sym__subscript_open] = ACTIONS(2423), - [sym__superscript_open] = ACTIONS(2423), - [sym__inline_note_start_token] = ACTIONS(2423), - [sym__strong_emphasis_open_star] = ACTIONS(2423), - [sym__strong_emphasis_open_underscore] = ACTIONS(2423), - [sym__emphasis_open_star] = ACTIONS(2423), - [sym__emphasis_open_underscore] = ACTIONS(2423), - [sym_inline_note_reference] = ACTIONS(2423), - [sym_html_element] = ACTIONS(2423), - [sym__pandoc_lt_str] = ACTIONS(2423), - [sym__pandoc_line_break] = ACTIONS(2423), - [sym_grid_table] = ACTIONS(2423), - [sym__caption_start] = ACTIONS(2423), - }, - [STATE(452)] = { - [sym_entity_reference] = ACTIONS(2237), - [sym_numeric_character_reference] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_BANG_LBRACK] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [aux_sym_pandoc_str_token1] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2237), - [sym__whitespace] = ACTIONS(2237), - [sym__line_ending] = ACTIONS(2237), - [sym__soft_line_ending] = ACTIONS(2237), - [sym__block_close] = ACTIONS(2237), - [sym__block_quote_start] = ACTIONS(2237), - [sym_atx_h1_marker] = ACTIONS(2237), - [sym_atx_h2_marker] = ACTIONS(2237), - [sym_atx_h3_marker] = ACTIONS(2237), - [sym_atx_h4_marker] = ACTIONS(2237), - [sym_atx_h5_marker] = ACTIONS(2237), - [sym_atx_h6_marker] = ACTIONS(2237), - [sym__thematic_break] = ACTIONS(2237), - [sym__list_marker_minus] = ACTIONS(2237), - [sym__list_marker_plus] = ACTIONS(2237), - [sym__list_marker_star] = ACTIONS(2237), - [sym__list_marker_parenthesis] = ACTIONS(2237), - [sym__list_marker_dot] = ACTIONS(2237), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_example] = ACTIONS(2237), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2237), - [sym__fenced_code_block_start_backtick] = ACTIONS(2237), - [sym_minus_metadata] = ACTIONS(2237), - [sym__pipe_table_start] = ACTIONS(2237), - [sym__fenced_div_start] = ACTIONS(2237), - [sym_ref_id_specifier] = ACTIONS(2237), - [sym__code_span_start] = ACTIONS(2237), - [sym__html_comment] = ACTIONS(2237), - [sym__autolink] = ACTIONS(2237), - [sym__highlight_span_start] = ACTIONS(2237), - [sym__insert_span_start] = ACTIONS(2237), - [sym__delete_span_start] = ACTIONS(2237), - [sym__edit_comment_span_start] = ACTIONS(2237), - [sym__single_quote_span_open] = ACTIONS(2237), - [sym__double_quote_span_open] = ACTIONS(2237), - [sym__shortcode_open_escaped] = ACTIONS(2237), - [sym__shortcode_open] = ACTIONS(2237), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2237), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), - [sym__cite_author_in_text] = ACTIONS(2237), - [sym__cite_suppress_author] = ACTIONS(2237), - [sym__strikeout_open] = ACTIONS(2237), - [sym__subscript_open] = ACTIONS(2237), - [sym__superscript_open] = ACTIONS(2237), - [sym__inline_note_start_token] = ACTIONS(2237), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2237), - [sym__emphasis_open_star] = ACTIONS(2237), - [sym__emphasis_open_underscore] = ACTIONS(2237), - [sym_inline_note_reference] = ACTIONS(2237), - [sym_html_element] = ACTIONS(2237), - [sym__pandoc_lt_str] = ACTIONS(2237), - [sym__pandoc_line_break] = ACTIONS(2237), - [sym_grid_table] = ACTIONS(2237), - [sym__caption_start] = ACTIONS(2237), - }, - [STATE(453)] = { - [ts_builtin_sym_end] = ACTIONS(2231), - [sym_entity_reference] = ACTIONS(2231), - [sym_numeric_character_reference] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_BANG_LBRACK] = ACTIONS(2231), - [anon_sym_DOLLAR] = ACTIONS(2233), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [aux_sym_pandoc_str_token1] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2231), - [sym__whitespace] = ACTIONS(2231), - [sym__line_ending] = ACTIONS(2231), - [sym__soft_line_ending] = ACTIONS(2231), - [sym__block_quote_start] = ACTIONS(2231), - [sym_atx_h1_marker] = ACTIONS(2231), - [sym_atx_h2_marker] = ACTIONS(2231), - [sym_atx_h3_marker] = ACTIONS(2231), - [sym_atx_h4_marker] = ACTIONS(2231), - [sym_atx_h5_marker] = ACTIONS(2231), - [sym_atx_h6_marker] = ACTIONS(2231), - [sym__thematic_break] = ACTIONS(2231), - [sym__list_marker_minus] = ACTIONS(2231), - [sym__list_marker_plus] = ACTIONS(2231), - [sym__list_marker_star] = ACTIONS(2231), - [sym__list_marker_parenthesis] = ACTIONS(2231), - [sym__list_marker_dot] = ACTIONS(2231), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2231), - [sym__list_marker_example] = ACTIONS(2231), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2231), - [sym__fenced_code_block_start_backtick] = ACTIONS(2231), - [sym_minus_metadata] = ACTIONS(2231), - [sym__pipe_table_start] = ACTIONS(2231), - [sym__fenced_div_start] = ACTIONS(2231), - [sym_ref_id_specifier] = ACTIONS(2231), - [sym__code_span_start] = ACTIONS(2231), - [sym__html_comment] = ACTIONS(2231), - [sym__autolink] = ACTIONS(2231), - [sym__highlight_span_start] = ACTIONS(2231), - [sym__insert_span_start] = ACTIONS(2231), - [sym__delete_span_start] = ACTIONS(2231), - [sym__edit_comment_span_start] = ACTIONS(2231), - [sym__single_quote_span_open] = ACTIONS(2231), - [sym__double_quote_span_open] = ACTIONS(2231), - [sym__shortcode_open_escaped] = ACTIONS(2231), - [sym__shortcode_open] = ACTIONS(2231), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2231), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2231), - [sym__cite_author_in_text] = ACTIONS(2231), - [sym__cite_suppress_author] = ACTIONS(2231), - [sym__strikeout_open] = ACTIONS(2231), - [sym__subscript_open] = ACTIONS(2231), - [sym__superscript_open] = ACTIONS(2231), - [sym__inline_note_start_token] = ACTIONS(2231), - [sym__strong_emphasis_open_star] = ACTIONS(2231), - [sym__strong_emphasis_open_underscore] = ACTIONS(2231), - [sym__emphasis_open_star] = ACTIONS(2231), - [sym__emphasis_open_underscore] = ACTIONS(2231), - [sym_inline_note_reference] = ACTIONS(2231), - [sym_html_element] = ACTIONS(2231), - [sym__pandoc_lt_str] = ACTIONS(2231), - [sym__pandoc_line_break] = ACTIONS(2231), - [sym_grid_table] = ACTIONS(2231), - [sym__caption_start] = ACTIONS(2231), - }, - [STATE(454)] = { - [sym_entity_reference] = ACTIONS(2243), - [sym_numeric_character_reference] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_BANG_LBRACK] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [aux_sym_pandoc_str_token1] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2243), - [sym__whitespace] = ACTIONS(2243), - [sym__line_ending] = ACTIONS(2243), - [sym__soft_line_ending] = ACTIONS(2243), - [sym__block_close] = ACTIONS(2243), - [sym__block_quote_start] = ACTIONS(2243), - [sym_atx_h1_marker] = ACTIONS(2243), - [sym_atx_h2_marker] = ACTIONS(2243), - [sym_atx_h3_marker] = ACTIONS(2243), - [sym_atx_h4_marker] = ACTIONS(2243), - [sym_atx_h5_marker] = ACTIONS(2243), - [sym_atx_h6_marker] = ACTIONS(2243), - [sym__thematic_break] = ACTIONS(2243), - [sym__list_marker_minus] = ACTIONS(2243), - [sym__list_marker_plus] = ACTIONS(2243), - [sym__list_marker_star] = ACTIONS(2243), - [sym__list_marker_parenthesis] = ACTIONS(2243), - [sym__list_marker_dot] = ACTIONS(2243), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_example] = ACTIONS(2243), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2243), - [sym__fenced_code_block_start_backtick] = ACTIONS(2243), - [sym_minus_metadata] = ACTIONS(2243), - [sym__pipe_table_start] = ACTIONS(2243), - [sym__fenced_div_start] = ACTIONS(2243), - [sym_ref_id_specifier] = ACTIONS(2243), - [sym__code_span_start] = ACTIONS(2243), - [sym__html_comment] = ACTIONS(2243), - [sym__autolink] = ACTIONS(2243), - [sym__highlight_span_start] = ACTIONS(2243), - [sym__insert_span_start] = ACTIONS(2243), - [sym__delete_span_start] = ACTIONS(2243), - [sym__edit_comment_span_start] = ACTIONS(2243), - [sym__single_quote_span_open] = ACTIONS(2243), - [sym__double_quote_span_open] = ACTIONS(2243), - [sym__shortcode_open_escaped] = ACTIONS(2243), - [sym__shortcode_open] = ACTIONS(2243), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2243), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2243), - [sym__cite_author_in_text] = ACTIONS(2243), - [sym__cite_suppress_author] = ACTIONS(2243), - [sym__strikeout_open] = ACTIONS(2243), - [sym__subscript_open] = ACTIONS(2243), - [sym__superscript_open] = ACTIONS(2243), - [sym__inline_note_start_token] = ACTIONS(2243), - [sym__strong_emphasis_open_star] = ACTIONS(2243), - [sym__strong_emphasis_open_underscore] = ACTIONS(2243), - [sym__emphasis_open_star] = ACTIONS(2243), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2243), - [sym_html_element] = ACTIONS(2243), - [sym__pandoc_lt_str] = ACTIONS(2243), - [sym__pandoc_line_break] = ACTIONS(2243), - [sym_grid_table] = ACTIONS(2243), - [sym__caption_start] = ACTIONS(2243), - }, - [STATE(455)] = { - [sym_entity_reference] = ACTIONS(2249), - [sym_numeric_character_reference] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_BANG_LBRACK] = ACTIONS(2249), - [anon_sym_DOLLAR] = ACTIONS(2251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [aux_sym_pandoc_str_token1] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2249), - [sym__whitespace] = ACTIONS(2249), - [sym__line_ending] = ACTIONS(2249), - [sym__soft_line_ending] = ACTIONS(2249), - [sym__block_close] = ACTIONS(2249), - [sym__block_quote_start] = ACTIONS(2249), - [sym_atx_h1_marker] = ACTIONS(2249), - [sym_atx_h2_marker] = ACTIONS(2249), - [sym_atx_h3_marker] = ACTIONS(2249), - [sym_atx_h4_marker] = ACTIONS(2249), - [sym_atx_h5_marker] = ACTIONS(2249), - [sym_atx_h6_marker] = ACTIONS(2249), - [sym__thematic_break] = ACTIONS(2249), - [sym__list_marker_minus] = ACTIONS(2249), - [sym__list_marker_plus] = ACTIONS(2249), - [sym__list_marker_star] = ACTIONS(2249), - [sym__list_marker_parenthesis] = ACTIONS(2249), - [sym__list_marker_dot] = ACTIONS(2249), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_example] = ACTIONS(2249), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2249), - [sym__fenced_code_block_start_backtick] = ACTIONS(2249), - [sym_minus_metadata] = ACTIONS(2249), - [sym__pipe_table_start] = ACTIONS(2249), - [sym__fenced_div_start] = ACTIONS(2249), - [sym_ref_id_specifier] = ACTIONS(2249), - [sym__code_span_start] = ACTIONS(2249), - [sym__html_comment] = ACTIONS(2249), - [sym__autolink] = ACTIONS(2249), - [sym__highlight_span_start] = ACTIONS(2249), - [sym__insert_span_start] = ACTIONS(2249), - [sym__delete_span_start] = ACTIONS(2249), - [sym__edit_comment_span_start] = ACTIONS(2249), - [sym__single_quote_span_open] = ACTIONS(2249), - [sym__double_quote_span_open] = ACTIONS(2249), - [sym__shortcode_open_escaped] = ACTIONS(2249), - [sym__shortcode_open] = ACTIONS(2249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2249), - [sym__cite_author_in_text] = ACTIONS(2249), - [sym__cite_suppress_author] = ACTIONS(2249), - [sym__strikeout_open] = ACTIONS(2249), - [sym__subscript_open] = ACTIONS(2249), - [sym__superscript_open] = ACTIONS(2249), - [sym__inline_note_start_token] = ACTIONS(2249), - [sym__strong_emphasis_open_star] = ACTIONS(2249), - [sym__strong_emphasis_open_underscore] = ACTIONS(2249), - [sym__emphasis_open_star] = ACTIONS(2249), - [sym__emphasis_open_underscore] = ACTIONS(2249), - [sym_inline_note_reference] = ACTIONS(2249), - [sym_html_element] = ACTIONS(2249), - [sym__pandoc_lt_str] = ACTIONS(2249), - [sym__pandoc_line_break] = ACTIONS(2249), - [sym_grid_table] = ACTIONS(2249), - [sym__caption_start] = ACTIONS(2249), - }, - [STATE(456)] = { - [ts_builtin_sym_end] = ACTIONS(2237), - [sym_entity_reference] = ACTIONS(2237), - [sym_numeric_character_reference] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_BANG_LBRACK] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [aux_sym_pandoc_str_token1] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2237), - [sym__whitespace] = ACTIONS(2237), - [sym__line_ending] = ACTIONS(2237), - [sym__soft_line_ending] = ACTIONS(2237), - [sym__block_quote_start] = ACTIONS(2237), - [sym_atx_h1_marker] = ACTIONS(2237), - [sym_atx_h2_marker] = ACTIONS(2237), - [sym_atx_h3_marker] = ACTIONS(2237), - [sym_atx_h4_marker] = ACTIONS(2237), - [sym_atx_h5_marker] = ACTIONS(2237), - [sym_atx_h6_marker] = ACTIONS(2237), - [sym__thematic_break] = ACTIONS(2237), - [sym__list_marker_minus] = ACTIONS(2237), - [sym__list_marker_plus] = ACTIONS(2237), - [sym__list_marker_star] = ACTIONS(2237), - [sym__list_marker_parenthesis] = ACTIONS(2237), - [sym__list_marker_dot] = ACTIONS(2237), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2237), - [sym__list_marker_example] = ACTIONS(2237), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2237), - [sym__fenced_code_block_start_backtick] = ACTIONS(2237), - [sym_minus_metadata] = ACTIONS(2237), - [sym__pipe_table_start] = ACTIONS(2237), - [sym__fenced_div_start] = ACTIONS(2237), - [sym_ref_id_specifier] = ACTIONS(2237), - [sym__code_span_start] = ACTIONS(2237), - [sym__html_comment] = ACTIONS(2237), - [sym__autolink] = ACTIONS(2237), - [sym__highlight_span_start] = ACTIONS(2237), - [sym__insert_span_start] = ACTIONS(2237), - [sym__delete_span_start] = ACTIONS(2237), - [sym__edit_comment_span_start] = ACTIONS(2237), - [sym__single_quote_span_open] = ACTIONS(2237), - [sym__double_quote_span_open] = ACTIONS(2237), - [sym__shortcode_open_escaped] = ACTIONS(2237), - [sym__shortcode_open] = ACTIONS(2237), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2237), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2237), - [sym__cite_author_in_text] = ACTIONS(2237), - [sym__cite_suppress_author] = ACTIONS(2237), - [sym__strikeout_open] = ACTIONS(2237), - [sym__subscript_open] = ACTIONS(2237), - [sym__superscript_open] = ACTIONS(2237), - [sym__inline_note_start_token] = ACTIONS(2237), - [sym__strong_emphasis_open_star] = ACTIONS(2237), - [sym__strong_emphasis_open_underscore] = ACTIONS(2237), - [sym__emphasis_open_star] = ACTIONS(2237), - [sym__emphasis_open_underscore] = ACTIONS(2237), - [sym_inline_note_reference] = ACTIONS(2237), - [sym_html_element] = ACTIONS(2237), - [sym__pandoc_lt_str] = ACTIONS(2237), - [sym__pandoc_line_break] = ACTIONS(2237), - [sym_grid_table] = ACTIONS(2237), - [sym__caption_start] = ACTIONS(2237), - }, - [STATE(457)] = { - [sym_entity_reference] = ACTIONS(2387), - [sym_numeric_character_reference] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_BANG_LBRACK] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2389), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [aux_sym_pandoc_str_token1] = ACTIONS(2389), - [anon_sym_PIPE] = ACTIONS(2387), - [sym__whitespace] = ACTIONS(2387), - [sym__line_ending] = ACTIONS(2387), - [sym__soft_line_ending] = ACTIONS(2387), - [sym__block_close] = ACTIONS(2387), - [sym__block_quote_start] = ACTIONS(2387), - [sym_atx_h1_marker] = ACTIONS(2387), - [sym_atx_h2_marker] = ACTIONS(2387), - [sym_atx_h3_marker] = ACTIONS(2387), - [sym_atx_h4_marker] = ACTIONS(2387), - [sym_atx_h5_marker] = ACTIONS(2387), - [sym_atx_h6_marker] = ACTIONS(2387), - [sym__thematic_break] = ACTIONS(2387), - [sym__list_marker_minus] = ACTIONS(2387), - [sym__list_marker_plus] = ACTIONS(2387), - [sym__list_marker_star] = ACTIONS(2387), - [sym__list_marker_parenthesis] = ACTIONS(2387), - [sym__list_marker_dot] = ACTIONS(2387), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_example] = ACTIONS(2387), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2387), - [sym__fenced_code_block_start_backtick] = ACTIONS(2387), - [sym_minus_metadata] = ACTIONS(2387), - [sym__pipe_table_start] = ACTIONS(2387), - [sym__fenced_div_start] = ACTIONS(2387), - [sym_ref_id_specifier] = ACTIONS(2387), - [sym__code_span_start] = ACTIONS(2387), - [sym__html_comment] = ACTIONS(2387), - [sym__autolink] = ACTIONS(2387), - [sym__highlight_span_start] = ACTIONS(2387), - [sym__insert_span_start] = ACTIONS(2387), - [sym__delete_span_start] = ACTIONS(2387), - [sym__edit_comment_span_start] = ACTIONS(2387), - [sym__single_quote_span_open] = ACTIONS(2387), - [sym__double_quote_span_open] = ACTIONS(2387), - [sym__shortcode_open_escaped] = ACTIONS(2387), - [sym__shortcode_open] = ACTIONS(2387), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2387), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2387), - [sym__cite_author_in_text] = ACTIONS(2387), - [sym__cite_suppress_author] = ACTIONS(2387), - [sym__strikeout_open] = ACTIONS(2387), - [sym__subscript_open] = ACTIONS(2387), - [sym__superscript_open] = ACTIONS(2387), - [sym__inline_note_start_token] = ACTIONS(2387), - [sym__strong_emphasis_open_star] = ACTIONS(2387), - [sym__strong_emphasis_open_underscore] = ACTIONS(2387), - [sym__emphasis_open_star] = ACTIONS(2387), - [sym__emphasis_open_underscore] = ACTIONS(2387), - [sym_inline_note_reference] = ACTIONS(2387), - [sym_html_element] = ACTIONS(2387), - [sym__pandoc_lt_str] = ACTIONS(2387), - [sym__pandoc_line_break] = ACTIONS(2387), - [sym_grid_table] = ACTIONS(2387), - [sym__caption_start] = ACTIONS(2387), - }, - [STATE(458)] = { - [sym_entity_reference] = ACTIONS(2255), - [sym_numeric_character_reference] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_BANG_LBRACK] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2257), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [aux_sym_pandoc_str_token1] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2255), - [sym__whitespace] = ACTIONS(2255), - [sym__line_ending] = ACTIONS(2255), - [sym__soft_line_ending] = ACTIONS(2255), - [sym__block_close] = ACTIONS(2255), - [sym__block_quote_start] = ACTIONS(2255), - [sym_atx_h1_marker] = ACTIONS(2255), - [sym_atx_h2_marker] = ACTIONS(2255), - [sym_atx_h3_marker] = ACTIONS(2255), - [sym_atx_h4_marker] = ACTIONS(2255), - [sym_atx_h5_marker] = ACTIONS(2255), - [sym_atx_h6_marker] = ACTIONS(2255), - [sym__thematic_break] = ACTIONS(2255), - [sym__list_marker_minus] = ACTIONS(2255), - [sym__list_marker_plus] = ACTIONS(2255), - [sym__list_marker_star] = ACTIONS(2255), - [sym__list_marker_parenthesis] = ACTIONS(2255), - [sym__list_marker_dot] = ACTIONS(2255), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_example] = ACTIONS(2255), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2255), - [sym__fenced_code_block_start_backtick] = ACTIONS(2255), - [sym_minus_metadata] = ACTIONS(2255), - [sym__pipe_table_start] = ACTIONS(2255), - [sym__fenced_div_start] = ACTIONS(2255), - [sym_ref_id_specifier] = ACTIONS(2255), - [sym__code_span_start] = ACTIONS(2255), - [sym__html_comment] = ACTIONS(2255), - [sym__autolink] = ACTIONS(2255), - [sym__highlight_span_start] = ACTIONS(2255), - [sym__insert_span_start] = ACTIONS(2255), - [sym__delete_span_start] = ACTIONS(2255), - [sym__edit_comment_span_start] = ACTIONS(2255), - [sym__single_quote_span_open] = ACTIONS(2255), - [sym__double_quote_span_open] = ACTIONS(2255), - [sym__shortcode_open_escaped] = ACTIONS(2255), - [sym__shortcode_open] = ACTIONS(2255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2255), - [sym__cite_author_in_text] = ACTIONS(2255), - [sym__cite_suppress_author] = ACTIONS(2255), - [sym__strikeout_open] = ACTIONS(2255), - [sym__subscript_open] = ACTIONS(2255), - [sym__superscript_open] = ACTIONS(2255), - [sym__inline_note_start_token] = ACTIONS(2255), - [sym__strong_emphasis_open_star] = ACTIONS(2255), - [sym__strong_emphasis_open_underscore] = ACTIONS(2255), - [sym__emphasis_open_star] = ACTIONS(2255), - [sym__emphasis_open_underscore] = ACTIONS(2255), - [sym_inline_note_reference] = ACTIONS(2255), - [sym_html_element] = ACTIONS(2255), - [sym__pandoc_lt_str] = ACTIONS(2255), - [sym__pandoc_line_break] = ACTIONS(2255), - [sym_grid_table] = ACTIONS(2255), - [sym__caption_start] = ACTIONS(2255), - }, - [STATE(459)] = { - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_entity_reference] = ACTIONS(2473), - [sym_numeric_character_reference] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_BANG_LBRACK] = ACTIONS(2473), - [anon_sym_DOLLAR] = ACTIONS(2475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2473), - [aux_sym_pandoc_str_token1] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2473), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(2473), - [sym__soft_line_ending] = ACTIONS(2473), - [sym__block_quote_start] = ACTIONS(2473), - [sym_atx_h1_marker] = ACTIONS(2473), - [sym_atx_h2_marker] = ACTIONS(2473), - [sym_atx_h3_marker] = ACTIONS(2473), - [sym_atx_h4_marker] = ACTIONS(2473), - [sym_atx_h5_marker] = ACTIONS(2473), - [sym_atx_h6_marker] = ACTIONS(2473), - [sym__thematic_break] = ACTIONS(2473), - [sym__list_marker_minus] = ACTIONS(2473), - [sym__list_marker_plus] = ACTIONS(2473), - [sym__list_marker_star] = ACTIONS(2473), - [sym__list_marker_parenthesis] = ACTIONS(2473), - [sym__list_marker_dot] = ACTIONS(2473), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2473), - [sym__list_marker_example] = ACTIONS(2473), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2473), - [sym__fenced_code_block_start_backtick] = ACTIONS(2473), - [sym_minus_metadata] = ACTIONS(2473), - [sym__pipe_table_start] = ACTIONS(2473), - [sym__fenced_div_start] = ACTIONS(2473), - [sym_ref_id_specifier] = ACTIONS(2473), - [sym__code_span_start] = ACTIONS(2473), - [sym__html_comment] = ACTIONS(2473), - [sym__autolink] = ACTIONS(2473), - [sym__highlight_span_start] = ACTIONS(2473), - [sym__insert_span_start] = ACTIONS(2473), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2473), - [sym__single_quote_span_open] = ACTIONS(2473), - [sym__double_quote_span_open] = ACTIONS(2473), - [sym__shortcode_open_escaped] = ACTIONS(2473), - [sym__shortcode_open] = ACTIONS(2473), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2473), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2473), - [sym__cite_author_in_text] = ACTIONS(2473), - [sym__cite_suppress_author] = ACTIONS(2473), - [sym__strikeout_open] = ACTIONS(2473), - [sym__subscript_open] = ACTIONS(2473), - [sym__superscript_open] = ACTIONS(2473), - [sym__inline_note_start_token] = ACTIONS(2473), - [sym__strong_emphasis_open_star] = ACTIONS(2473), - [sym__strong_emphasis_open_underscore] = ACTIONS(2473), - [sym__emphasis_open_star] = ACTIONS(2473), - [sym__emphasis_open_underscore] = ACTIONS(2473), - [sym_inline_note_reference] = ACTIONS(2473), - [sym_html_element] = ACTIONS(2473), - [sym__pandoc_lt_str] = ACTIONS(2473), - [sym__pandoc_line_break] = ACTIONS(2473), - [sym_grid_table] = ACTIONS(2473), - [sym__caption_start] = ACTIONS(2473), - }, - [STATE(460)] = { - [sym_entity_reference] = ACTIONS(2395), - [sym_numeric_character_reference] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_BANG_LBRACK] = ACTIONS(2395), - [anon_sym_DOLLAR] = ACTIONS(2397), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [aux_sym_pandoc_str_token1] = ACTIONS(2397), - [anon_sym_PIPE] = ACTIONS(2395), - [sym__whitespace] = ACTIONS(2395), - [sym__line_ending] = ACTIONS(2395), - [sym__soft_line_ending] = ACTIONS(2395), - [sym__block_close] = ACTIONS(2395), - [sym__block_quote_start] = ACTIONS(2395), - [sym_atx_h1_marker] = ACTIONS(2395), - [sym_atx_h2_marker] = ACTIONS(2395), - [sym_atx_h3_marker] = ACTIONS(2395), - [sym_atx_h4_marker] = ACTIONS(2395), - [sym_atx_h5_marker] = ACTIONS(2395), - [sym_atx_h6_marker] = ACTIONS(2395), - [sym__thematic_break] = ACTIONS(2395), - [sym__list_marker_minus] = ACTIONS(2395), - [sym__list_marker_plus] = ACTIONS(2395), - [sym__list_marker_star] = ACTIONS(2395), - [sym__list_marker_parenthesis] = ACTIONS(2395), - [sym__list_marker_dot] = ACTIONS(2395), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2395), - [sym__list_marker_example] = ACTIONS(2395), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2395), - [sym__fenced_code_block_start_backtick] = ACTIONS(2395), - [sym_minus_metadata] = ACTIONS(2395), - [sym__pipe_table_start] = ACTIONS(2395), - [sym__fenced_div_start] = ACTIONS(2395), - [sym_ref_id_specifier] = ACTIONS(2395), - [sym__code_span_start] = ACTIONS(2395), - [sym__html_comment] = ACTIONS(2395), - [sym__autolink] = ACTIONS(2395), - [sym__highlight_span_start] = ACTIONS(2395), - [sym__insert_span_start] = ACTIONS(2395), - [sym__delete_span_start] = ACTIONS(2395), - [sym__edit_comment_span_start] = ACTIONS(2395), - [sym__single_quote_span_open] = ACTIONS(2395), - [sym__double_quote_span_open] = ACTIONS(2395), - [sym__shortcode_open_escaped] = ACTIONS(2395), - [sym__shortcode_open] = ACTIONS(2395), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2395), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2395), - [sym__cite_author_in_text] = ACTIONS(2395), - [sym__cite_suppress_author] = ACTIONS(2395), - [sym__strikeout_open] = ACTIONS(2395), - [sym__subscript_open] = ACTIONS(2395), - [sym__superscript_open] = ACTIONS(2395), - [sym__inline_note_start_token] = ACTIONS(2395), - [sym__strong_emphasis_open_star] = ACTIONS(2395), - [sym__strong_emphasis_open_underscore] = ACTIONS(2395), - [sym__emphasis_open_star] = ACTIONS(2395), - [sym__emphasis_open_underscore] = ACTIONS(2395), - [sym_inline_note_reference] = ACTIONS(2395), - [sym_html_element] = ACTIONS(2395), - [sym__pandoc_lt_str] = ACTIONS(2395), - [sym__pandoc_line_break] = ACTIONS(2395), - [sym_grid_table] = ACTIONS(2395), - [sym__caption_start] = ACTIONS(2395), - }, - [STATE(461)] = { - [sym_pipe_table_cell] = STATE(2963), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2899), - [sym__line_ending] = ACTIONS(3011), - [sym__eof] = ACTIONS(3011), - [sym__pipe_table_line_ending] = ACTIONS(3011), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pipe_table_delimiter] = ACTIONS(2909), - [sym__pandoc_line_break] = ACTIONS(2139), - }, - [STATE(462)] = { - [sym_pipe_table_cell] = STATE(2963), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2899), - [sym__line_ending] = ACTIONS(2901), - [sym__eof] = ACTIONS(2901), - [sym__pipe_table_line_ending] = ACTIONS(2901), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pipe_table_delimiter] = ACTIONS(2909), - [sym__pandoc_line_break] = ACTIONS(2139), - }, - [STATE(463)] = { - [sym_pipe_table_cell] = STATE(3046), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym_pipe_table_row_repeat1] = STATE(444), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(3013), - [sym__line_ending] = ACTIONS(3011), - [sym__eof] = ACTIONS(3011), - [sym__pipe_table_line_ending] = ACTIONS(3011), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pandoc_line_break] = ACTIONS(2139), + [STATE(483)] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_entity_reference] = ACTIONS(2561), + [sym_numeric_character_reference] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_BANG_LBRACK] = ACTIONS(2561), + [anon_sym_DOLLAR] = ACTIONS(2563), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2561), + [aux_sym_pandoc_str_token1] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(2561), + [sym__whitespace] = ACTIONS(2561), + [sym__line_ending] = ACTIONS(2561), + [sym__soft_line_ending] = ACTIONS(2561), + [sym__block_quote_start] = ACTIONS(2561), + [sym_atx_h1_marker] = ACTIONS(2561), + [sym_atx_h2_marker] = ACTIONS(2561), + [sym_atx_h3_marker] = ACTIONS(2561), + [sym_atx_h4_marker] = ACTIONS(2561), + [sym_atx_h5_marker] = ACTIONS(2561), + [sym_atx_h6_marker] = ACTIONS(2561), + [sym__thematic_break] = ACTIONS(2561), + [sym__list_marker_minus] = ACTIONS(2561), + [sym__list_marker_plus] = ACTIONS(2561), + [sym__list_marker_star] = ACTIONS(2561), + [sym__list_marker_parenthesis] = ACTIONS(2561), + [sym__list_marker_dot] = ACTIONS(2561), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2561), + [sym__list_marker_example] = ACTIONS(2561), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2561), + [sym__fenced_code_block_start_backtick] = ACTIONS(2561), + [sym__minus_metadata_start] = ACTIONS(2561), + [sym__pipe_table_start] = ACTIONS(2561), + [sym__fenced_div_start] = ACTIONS(2561), + [sym_ref_id_specifier] = ACTIONS(2561), + [sym__code_span_start] = ACTIONS(2561), + [sym__html_comment] = ACTIONS(2561), + [sym__autolink] = ACTIONS(2561), + [sym__highlight_span_start] = ACTIONS(2561), + [sym__insert_span_start] = ACTIONS(2561), + [sym__delete_span_start] = ACTIONS(2561), + [sym__edit_comment_span_start] = ACTIONS(2561), + [sym__single_quote_span_open] = ACTIONS(2561), + [sym__double_quote_span_open] = ACTIONS(2561), + [sym__shortcode_open_escaped] = ACTIONS(2561), + [sym__shortcode_open] = ACTIONS(2561), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2561), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2561), + [sym__cite_author_in_text] = ACTIONS(2561), + [sym__cite_suppress_author] = ACTIONS(2561), + [sym__strikeout_open] = ACTIONS(2561), + [sym__subscript_open] = ACTIONS(2561), + [sym__superscript_open] = ACTIONS(2561), + [sym__inline_note_start_token] = ACTIONS(2561), + [sym__strong_emphasis_open_star] = ACTIONS(2561), + [sym__strong_emphasis_open_underscore] = ACTIONS(2561), + [sym__emphasis_open_star] = ACTIONS(2561), + [sym__emphasis_open_underscore] = ACTIONS(2561), + [sym_inline_note_reference] = ACTIONS(2561), + [sym_html_element] = ACTIONS(2561), + [sym__pandoc_lt_str] = ACTIONS(2561), + [sym__pandoc_line_break] = ACTIONS(2561), + [sym_grid_table] = ACTIONS(2561), + [sym__caption_start] = ACTIONS(2561), }, - [STATE(464)] = { - [sym_entity_reference] = ACTIONS(2399), - [sym_numeric_character_reference] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_BANG_LBRACK] = ACTIONS(2399), - [anon_sym_DOLLAR] = ACTIONS(2401), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2399), - [aux_sym_pandoc_str_token1] = ACTIONS(2401), - [anon_sym_PIPE] = ACTIONS(2399), - [sym__whitespace] = ACTIONS(2399), - [sym__line_ending] = ACTIONS(2399), - [sym__soft_line_ending] = ACTIONS(2399), - [sym__block_close] = ACTIONS(2399), - [sym__block_quote_start] = ACTIONS(2399), - [sym_atx_h1_marker] = ACTIONS(2399), - [sym_atx_h2_marker] = ACTIONS(2399), - [sym_atx_h3_marker] = ACTIONS(2399), - [sym_atx_h4_marker] = ACTIONS(2399), - [sym_atx_h5_marker] = ACTIONS(2399), - [sym_atx_h6_marker] = ACTIONS(2399), - [sym__thematic_break] = ACTIONS(2399), - [sym__list_marker_minus] = ACTIONS(2399), - [sym__list_marker_plus] = ACTIONS(2399), - [sym__list_marker_star] = ACTIONS(2399), - [sym__list_marker_parenthesis] = ACTIONS(2399), - [sym__list_marker_dot] = ACTIONS(2399), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2399), - [sym__list_marker_example] = ACTIONS(2399), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2399), - [sym__fenced_code_block_start_backtick] = ACTIONS(2399), - [sym_minus_metadata] = ACTIONS(2399), - [sym__pipe_table_start] = ACTIONS(2399), - [sym__fenced_div_start] = ACTIONS(2399), - [sym_ref_id_specifier] = ACTIONS(2399), - [sym__code_span_start] = ACTIONS(2399), - [sym__html_comment] = ACTIONS(2399), - [sym__autolink] = ACTIONS(2399), - [sym__highlight_span_start] = ACTIONS(2399), - [sym__insert_span_start] = ACTIONS(2399), - [sym__delete_span_start] = ACTIONS(2399), - [sym__edit_comment_span_start] = ACTIONS(2399), - [sym__single_quote_span_open] = ACTIONS(2399), - [sym__double_quote_span_open] = ACTIONS(2399), - [sym__shortcode_open_escaped] = ACTIONS(2399), - [sym__shortcode_open] = ACTIONS(2399), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2399), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2399), - [sym__cite_author_in_text] = ACTIONS(2399), - [sym__cite_suppress_author] = ACTIONS(2399), - [sym__strikeout_open] = ACTIONS(2399), - [sym__subscript_open] = ACTIONS(2399), - [sym__superscript_open] = ACTIONS(2399), - [sym__inline_note_start_token] = ACTIONS(2399), - [sym__strong_emphasis_open_star] = ACTIONS(2399), - [sym__strong_emphasis_open_underscore] = ACTIONS(2399), - [sym__emphasis_open_star] = ACTIONS(2399), - [sym__emphasis_open_underscore] = ACTIONS(2399), - [sym_inline_note_reference] = ACTIONS(2399), - [sym_html_element] = ACTIONS(2399), - [sym__pandoc_lt_str] = ACTIONS(2399), - [sym__pandoc_line_break] = ACTIONS(2399), - [sym_grid_table] = ACTIONS(2399), - [sym__caption_start] = ACTIONS(2399), + [STATE(484)] = { + [ts_builtin_sym_end] = 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), + [sym__whitespace] = ACTIONS(2639), + [sym__line_ending] = ACTIONS(2639), + [sym__soft_line_ending] = ACTIONS(2639), + [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_start] = 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_lt_str] = ACTIONS(2639), + [sym__pandoc_line_break] = ACTIONS(2639), + [sym_grid_table] = ACTIONS(2639), + [sym__caption_start] = ACTIONS(2639), }, - [STATE(465)] = { - [sym_entity_reference] = ACTIONS(2403), - [sym_numeric_character_reference] = ACTIONS(2403), - [anon_sym_LBRACK] = ACTIONS(2403), - [anon_sym_BANG_LBRACK] = ACTIONS(2403), - [anon_sym_DOLLAR] = ACTIONS(2405), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2403), - [aux_sym_pandoc_str_token1] = ACTIONS(2405), - [anon_sym_PIPE] = ACTIONS(2403), - [sym__whitespace] = ACTIONS(2403), - [sym__line_ending] = ACTIONS(2403), - [sym__soft_line_ending] = ACTIONS(2403), - [sym__block_close] = ACTIONS(2403), - [sym__block_quote_start] = ACTIONS(2403), - [sym_atx_h1_marker] = ACTIONS(2403), - [sym_atx_h2_marker] = ACTIONS(2403), - [sym_atx_h3_marker] = ACTIONS(2403), - [sym_atx_h4_marker] = ACTIONS(2403), - [sym_atx_h5_marker] = ACTIONS(2403), - [sym_atx_h6_marker] = ACTIONS(2403), - [sym__thematic_break] = ACTIONS(2403), - [sym__list_marker_minus] = ACTIONS(2403), - [sym__list_marker_plus] = ACTIONS(2403), - [sym__list_marker_star] = ACTIONS(2403), - [sym__list_marker_parenthesis] = ACTIONS(2403), - [sym__list_marker_dot] = ACTIONS(2403), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2403), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2403), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2403), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2403), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2403), - [sym__list_marker_example] = ACTIONS(2403), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2403), - [sym__fenced_code_block_start_backtick] = ACTIONS(2403), - [sym_minus_metadata] = ACTIONS(2403), - [sym__pipe_table_start] = ACTIONS(2403), - [sym__fenced_div_start] = ACTIONS(2403), - [sym_ref_id_specifier] = ACTIONS(2403), - [sym__code_span_start] = ACTIONS(2403), - [sym__html_comment] = ACTIONS(2403), - [sym__autolink] = ACTIONS(2403), - [sym__highlight_span_start] = ACTIONS(2403), - [sym__insert_span_start] = ACTIONS(2403), - [sym__delete_span_start] = ACTIONS(2403), - [sym__edit_comment_span_start] = ACTIONS(2403), - [sym__single_quote_span_open] = ACTIONS(2403), - [sym__double_quote_span_open] = ACTIONS(2403), - [sym__shortcode_open_escaped] = ACTIONS(2403), - [sym__shortcode_open] = ACTIONS(2403), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2403), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2403), - [sym__cite_author_in_text] = ACTIONS(2403), - [sym__cite_suppress_author] = ACTIONS(2403), - [sym__strikeout_open] = ACTIONS(2403), - [sym__subscript_open] = ACTIONS(2403), - [sym__superscript_open] = ACTIONS(2403), - [sym__inline_note_start_token] = ACTIONS(2403), - [sym__strong_emphasis_open_star] = ACTIONS(2403), - [sym__strong_emphasis_open_underscore] = ACTIONS(2403), - [sym__emphasis_open_star] = ACTIONS(2403), - [sym__emphasis_open_underscore] = ACTIONS(2403), - [sym_inline_note_reference] = ACTIONS(2403), - [sym_html_element] = ACTIONS(2403), - [sym__pandoc_lt_str] = ACTIONS(2403), - [sym__pandoc_line_break] = ACTIONS(2403), - [sym_grid_table] = ACTIONS(2403), - [sym__caption_start] = ACTIONS(2403), + [STATE(485)] = { + [ts_builtin_sym_end] = ACTIONS(2565), + [sym_entity_reference] = ACTIONS(2565), + [sym_numeric_character_reference] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2565), + [anon_sym_BANG_LBRACK] = ACTIONS(2565), + [anon_sym_DOLLAR] = ACTIONS(2567), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2565), + [anon_sym_LBRACE] = ACTIONS(2565), + [aux_sym_pandoc_str_token1] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2565), + [sym__whitespace] = ACTIONS(2565), + [sym__line_ending] = ACTIONS(2565), + [sym__soft_line_ending] = ACTIONS(2565), + [sym__block_quote_start] = ACTIONS(2565), + [sym_atx_h1_marker] = ACTIONS(2565), + [sym_atx_h2_marker] = ACTIONS(2565), + [sym_atx_h3_marker] = ACTIONS(2565), + [sym_atx_h4_marker] = ACTIONS(2565), + [sym_atx_h5_marker] = ACTIONS(2565), + [sym_atx_h6_marker] = ACTIONS(2565), + [sym__thematic_break] = ACTIONS(2565), + [sym__list_marker_minus] = ACTIONS(2565), + [sym__list_marker_plus] = ACTIONS(2565), + [sym__list_marker_star] = ACTIONS(2565), + [sym__list_marker_parenthesis] = ACTIONS(2565), + [sym__list_marker_dot] = ACTIONS(2565), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2565), + [sym__list_marker_example] = ACTIONS(2565), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2565), + [sym__fenced_code_block_start_backtick] = ACTIONS(2565), + [sym__minus_metadata_start] = ACTIONS(2565), + [sym__pipe_table_start] = ACTIONS(2565), + [sym__fenced_div_start] = ACTIONS(2565), + [sym_ref_id_specifier] = ACTIONS(2565), + [sym__code_span_start] = ACTIONS(2565), + [sym__html_comment] = ACTIONS(2565), + [sym__autolink] = ACTIONS(2565), + [sym__highlight_span_start] = ACTIONS(2565), + [sym__insert_span_start] = ACTIONS(2565), + [sym__delete_span_start] = ACTIONS(2565), + [sym__edit_comment_span_start] = ACTIONS(2565), + [sym__single_quote_span_open] = ACTIONS(2565), + [sym__double_quote_span_open] = ACTIONS(2565), + [sym__shortcode_open_escaped] = ACTIONS(2565), + [sym__shortcode_open] = ACTIONS(2565), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2565), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2565), + [sym__cite_author_in_text] = ACTIONS(2565), + [sym__cite_suppress_author] = ACTIONS(2565), + [sym__strikeout_open] = ACTIONS(2565), + [sym__subscript_open] = ACTIONS(2565), + [sym__superscript_open] = ACTIONS(2565), + [sym__inline_note_start_token] = ACTIONS(2565), + [sym__strong_emphasis_open_star] = ACTIONS(2565), + [sym__strong_emphasis_open_underscore] = ACTIONS(2565), + [sym__emphasis_open_star] = ACTIONS(2565), + [sym__emphasis_open_underscore] = ACTIONS(2565), + [sym_inline_note_reference] = ACTIONS(2565), + [sym_html_element] = ACTIONS(2565), + [sym__pandoc_lt_str] = ACTIONS(2565), + [sym__pandoc_line_break] = ACTIONS(2565), + [sym_grid_table] = ACTIONS(2565), + [sym__caption_start] = ACTIONS(2565), }, - [STATE(466)] = { - [ts_builtin_sym_end] = ACTIONS(2243), - [sym_entity_reference] = ACTIONS(2243), - [sym_numeric_character_reference] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_BANG_LBRACK] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [aux_sym_pandoc_str_token1] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2243), - [sym__whitespace] = ACTIONS(2243), - [sym__line_ending] = ACTIONS(2243), - [sym__soft_line_ending] = ACTIONS(2243), - [sym__block_quote_start] = ACTIONS(2243), - [sym_atx_h1_marker] = ACTIONS(2243), - [sym_atx_h2_marker] = ACTIONS(2243), - [sym_atx_h3_marker] = ACTIONS(2243), - [sym_atx_h4_marker] = ACTIONS(2243), - [sym_atx_h5_marker] = ACTIONS(2243), - [sym_atx_h6_marker] = ACTIONS(2243), - [sym__thematic_break] = ACTIONS(2243), - [sym__list_marker_minus] = ACTIONS(2243), - [sym__list_marker_plus] = ACTIONS(2243), - [sym__list_marker_star] = ACTIONS(2243), - [sym__list_marker_parenthesis] = ACTIONS(2243), - [sym__list_marker_dot] = ACTIONS(2243), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2243), - [sym__list_marker_example] = ACTIONS(2243), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2243), - [sym__fenced_code_block_start_backtick] = ACTIONS(2243), - [sym_minus_metadata] = ACTIONS(2243), - [sym__pipe_table_start] = ACTIONS(2243), - [sym__fenced_div_start] = ACTIONS(2243), - [sym_ref_id_specifier] = ACTIONS(2243), - [sym__code_span_start] = ACTIONS(2243), - [sym__html_comment] = ACTIONS(2243), - [sym__autolink] = ACTIONS(2243), - [sym__highlight_span_start] = ACTIONS(2243), - [sym__insert_span_start] = ACTIONS(2243), - [sym__delete_span_start] = ACTIONS(2243), - [sym__edit_comment_span_start] = ACTIONS(2243), - [sym__single_quote_span_open] = ACTIONS(2243), - [sym__double_quote_span_open] = ACTIONS(2243), - [sym__shortcode_open_escaped] = ACTIONS(2243), - [sym__shortcode_open] = ACTIONS(2243), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2243), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2243), - [sym__cite_author_in_text] = ACTIONS(2243), - [sym__cite_suppress_author] = ACTIONS(2243), - [sym__strikeout_open] = ACTIONS(2243), - [sym__subscript_open] = ACTIONS(2243), - [sym__superscript_open] = ACTIONS(2243), - [sym__inline_note_start_token] = ACTIONS(2243), - [sym__strong_emphasis_open_star] = ACTIONS(2243), - [sym__strong_emphasis_open_underscore] = ACTIONS(2243), - [sym__emphasis_open_star] = ACTIONS(2243), - [sym__emphasis_open_underscore] = ACTIONS(2243), - [sym_inline_note_reference] = ACTIONS(2243), - [sym_html_element] = ACTIONS(2243), - [sym__pandoc_lt_str] = ACTIONS(2243), - [sym__pandoc_line_break] = ACTIONS(2243), - [sym_grid_table] = ACTIONS(2243), - [sym__caption_start] = ACTIONS(2243), + [STATE(486)] = { + [sym_pipe_table_cell] = STATE(3032), + [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__line_with_maybe_spaces] = STATE(3056), + [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), + [aux_sym_pipe_table_row_repeat1] = STATE(373), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(607), + [sym_entity_reference] = ACTIONS(2140), + [sym_numeric_character_reference] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(3079), + [sym__line_ending] = ACTIONS(3081), + [sym__eof] = ACTIONS(3081), + [sym__pipe_table_line_ending] = ACTIONS(3081), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(2140), + [sym__autolink] = ACTIONS(2140), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(2140), + [sym_html_element] = ACTIONS(2140), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pandoc_line_break] = ACTIONS(2140), }, - [STATE(467)] = { - [sym_entity_reference] = ACTIONS(2261), - [sym_numeric_character_reference] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2261), - [anon_sym_BANG_LBRACK] = ACTIONS(2261), - [anon_sym_DOLLAR] = ACTIONS(2263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2261), - [aux_sym_pandoc_str_token1] = ACTIONS(2263), - [anon_sym_PIPE] = ACTIONS(2261), - [sym__whitespace] = ACTIONS(2261), - [sym__line_ending] = ACTIONS(2261), - [sym__soft_line_ending] = ACTIONS(2261), - [sym__block_close] = ACTIONS(2261), - [sym__block_quote_start] = ACTIONS(2261), - [sym_atx_h1_marker] = ACTIONS(2261), - [sym_atx_h2_marker] = ACTIONS(2261), - [sym_atx_h3_marker] = ACTIONS(2261), - [sym_atx_h4_marker] = ACTIONS(2261), - [sym_atx_h5_marker] = ACTIONS(2261), - [sym_atx_h6_marker] = ACTIONS(2261), - [sym__thematic_break] = ACTIONS(2261), - [sym__list_marker_minus] = ACTIONS(2261), - [sym__list_marker_plus] = ACTIONS(2261), - [sym__list_marker_star] = ACTIONS(2261), - [sym__list_marker_parenthesis] = ACTIONS(2261), - [sym__list_marker_dot] = ACTIONS(2261), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2261), - [sym__list_marker_example] = ACTIONS(2261), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2261), - [sym__fenced_code_block_start_backtick] = ACTIONS(2261), - [sym_minus_metadata] = ACTIONS(2261), - [sym__pipe_table_start] = ACTIONS(2261), - [sym__fenced_div_start] = ACTIONS(2261), - [sym_ref_id_specifier] = ACTIONS(2261), - [sym__code_span_start] = ACTIONS(2261), - [sym__html_comment] = ACTIONS(2261), - [sym__autolink] = ACTIONS(2261), - [sym__highlight_span_start] = ACTIONS(2261), - [sym__insert_span_start] = ACTIONS(2261), - [sym__delete_span_start] = ACTIONS(2261), - [sym__edit_comment_span_start] = ACTIONS(2261), - [sym__single_quote_span_open] = ACTIONS(2261), - [sym__double_quote_span_open] = ACTIONS(2261), - [sym__shortcode_open_escaped] = ACTIONS(2261), - [sym__shortcode_open] = ACTIONS(2261), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2261), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2261), - [sym__cite_author_in_text] = ACTIONS(2261), - [sym__cite_suppress_author] = ACTIONS(2261), - [sym__strikeout_open] = ACTIONS(2261), - [sym__subscript_open] = ACTIONS(2261), - [sym__superscript_open] = ACTIONS(2261), - [sym__inline_note_start_token] = ACTIONS(2261), - [sym__strong_emphasis_open_star] = ACTIONS(2261), - [sym__strong_emphasis_open_underscore] = ACTIONS(2261), - [sym__emphasis_open_star] = ACTIONS(2261), - [sym__emphasis_open_underscore] = ACTIONS(2261), - [sym_inline_note_reference] = ACTIONS(2261), - [sym_html_element] = ACTIONS(2261), - [sym__pandoc_lt_str] = ACTIONS(2261), - [sym__pandoc_line_break] = ACTIONS(2261), - [sym_grid_table] = ACTIONS(2261), - [sym__caption_start] = ACTIONS(2261), + [STATE(487)] = { + [ts_builtin_sym_end] = ACTIONS(2569), + [sym_entity_reference] = ACTIONS(2569), + [sym_numeric_character_reference] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_BANG_LBRACK] = ACTIONS(2569), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(2569), + [aux_sym_pandoc_str_token1] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2569), + [sym__whitespace] = ACTIONS(2569), + [sym__line_ending] = ACTIONS(2569), + [sym__soft_line_ending] = ACTIONS(2569), + [sym__block_quote_start] = ACTIONS(2569), + [sym_atx_h1_marker] = ACTIONS(2569), + [sym_atx_h2_marker] = ACTIONS(2569), + [sym_atx_h3_marker] = ACTIONS(2569), + [sym_atx_h4_marker] = ACTIONS(2569), + [sym_atx_h5_marker] = ACTIONS(2569), + [sym_atx_h6_marker] = ACTIONS(2569), + [sym__thematic_break] = ACTIONS(2569), + [sym__list_marker_minus] = ACTIONS(2569), + [sym__list_marker_plus] = ACTIONS(2569), + [sym__list_marker_star] = ACTIONS(2569), + [sym__list_marker_parenthesis] = ACTIONS(2569), + [sym__list_marker_dot] = ACTIONS(2569), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2569), + [sym__list_marker_example] = ACTIONS(2569), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2569), + [sym__fenced_code_block_start_backtick] = ACTIONS(2569), + [sym__minus_metadata_start] = ACTIONS(2569), + [sym__pipe_table_start] = ACTIONS(2569), + [sym__fenced_div_start] = ACTIONS(2569), + [sym_ref_id_specifier] = ACTIONS(2569), + [sym__code_span_start] = ACTIONS(2569), + [sym__html_comment] = ACTIONS(2569), + [sym__autolink] = ACTIONS(2569), + [sym__highlight_span_start] = ACTIONS(2569), + [sym__insert_span_start] = ACTIONS(2569), + [sym__delete_span_start] = ACTIONS(2569), + [sym__edit_comment_span_start] = ACTIONS(2569), + [sym__single_quote_span_open] = ACTIONS(2569), + [sym__double_quote_span_open] = ACTIONS(2569), + [sym__shortcode_open_escaped] = ACTIONS(2569), + [sym__shortcode_open] = ACTIONS(2569), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2569), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2569), + [sym__cite_author_in_text] = ACTIONS(2569), + [sym__cite_suppress_author] = ACTIONS(2569), + [sym__strikeout_open] = ACTIONS(2569), + [sym__subscript_open] = ACTIONS(2569), + [sym__superscript_open] = ACTIONS(2569), + [sym__inline_note_start_token] = ACTIONS(2569), + [sym__strong_emphasis_open_star] = ACTIONS(2569), + [sym__strong_emphasis_open_underscore] = ACTIONS(2569), + [sym__emphasis_open_star] = ACTIONS(2569), + [sym__emphasis_open_underscore] = ACTIONS(2569), + [sym_inline_note_reference] = ACTIONS(2569), + [sym_html_element] = ACTIONS(2569), + [sym__pandoc_lt_str] = ACTIONS(2569), + [sym__pandoc_line_break] = ACTIONS(2569), + [sym_grid_table] = ACTIONS(2569), + [sym__caption_start] = ACTIONS(2569), }, - [STATE(468)] = { - [sym_entity_reference] = ACTIONS(2267), - [sym_numeric_character_reference] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_BANG_LBRACK] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [aux_sym_pandoc_str_token1] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2267), - [sym__whitespace] = ACTIONS(2267), - [sym__line_ending] = ACTIONS(2267), - [sym__soft_line_ending] = ACTIONS(2267), - [sym__block_close] = ACTIONS(2267), - [sym__block_quote_start] = ACTIONS(2267), - [sym_atx_h1_marker] = ACTIONS(2267), - [sym_atx_h2_marker] = ACTIONS(2267), - [sym_atx_h3_marker] = ACTIONS(2267), - [sym_atx_h4_marker] = ACTIONS(2267), - [sym_atx_h5_marker] = ACTIONS(2267), - [sym_atx_h6_marker] = ACTIONS(2267), - [sym__thematic_break] = ACTIONS(2267), - [sym__list_marker_minus] = ACTIONS(2267), - [sym__list_marker_plus] = ACTIONS(2267), - [sym__list_marker_star] = ACTIONS(2267), - [sym__list_marker_parenthesis] = ACTIONS(2267), - [sym__list_marker_dot] = ACTIONS(2267), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_example] = ACTIONS(2267), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2267), - [sym__fenced_code_block_start_backtick] = ACTIONS(2267), - [sym_minus_metadata] = ACTIONS(2267), - [sym__pipe_table_start] = ACTIONS(2267), - [sym__fenced_div_start] = ACTIONS(2267), - [sym_ref_id_specifier] = ACTIONS(2267), - [sym__code_span_start] = ACTIONS(2267), - [sym__html_comment] = ACTIONS(2267), - [sym__autolink] = ACTIONS(2267), - [sym__highlight_span_start] = ACTIONS(2267), - [sym__insert_span_start] = ACTIONS(2267), - [sym__delete_span_start] = ACTIONS(2267), - [sym__edit_comment_span_start] = ACTIONS(2267), - [sym__single_quote_span_open] = ACTIONS(2267), - [sym__double_quote_span_open] = ACTIONS(2267), - [sym__shortcode_open_escaped] = ACTIONS(2267), - [sym__shortcode_open] = ACTIONS(2267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2267), - [sym__cite_author_in_text] = ACTIONS(2267), - [sym__cite_suppress_author] = ACTIONS(2267), - [sym__strikeout_open] = ACTIONS(2267), - [sym__subscript_open] = ACTIONS(2267), - [sym__superscript_open] = ACTIONS(2267), - [sym__inline_note_start_token] = ACTIONS(2267), - [sym__strong_emphasis_open_star] = ACTIONS(2267), - [sym__strong_emphasis_open_underscore] = ACTIONS(2267), - [sym__emphasis_open_star] = ACTIONS(2267), - [sym__emphasis_open_underscore] = ACTIONS(2267), - [sym_inline_note_reference] = ACTIONS(2267), - [sym_html_element] = ACTIONS(2267), - [sym__pandoc_lt_str] = ACTIONS(2267), - [sym__pandoc_line_break] = ACTIONS(2267), - [sym_grid_table] = ACTIONS(2267), - [sym__caption_start] = ACTIONS(2267), + [STATE(488)] = { + [ts_builtin_sym_end] = ACTIONS(2573), + [sym_entity_reference] = ACTIONS(2573), + [sym_numeric_character_reference] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_BANG_LBRACK] = ACTIONS(2573), + [anon_sym_DOLLAR] = ACTIONS(2575), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2573), + [aux_sym_pandoc_str_token1] = ACTIONS(2575), + [anon_sym_PIPE] = ACTIONS(2573), + [sym__whitespace] = ACTIONS(2573), + [sym__line_ending] = ACTIONS(2573), + [sym__soft_line_ending] = ACTIONS(2573), + [sym__block_quote_start] = ACTIONS(2573), + [sym_atx_h1_marker] = ACTIONS(2573), + [sym_atx_h2_marker] = ACTIONS(2573), + [sym_atx_h3_marker] = ACTIONS(2573), + [sym_atx_h4_marker] = ACTIONS(2573), + [sym_atx_h5_marker] = ACTIONS(2573), + [sym_atx_h6_marker] = ACTIONS(2573), + [sym__thematic_break] = ACTIONS(2573), + [sym__list_marker_minus] = ACTIONS(2573), + [sym__list_marker_plus] = ACTIONS(2573), + [sym__list_marker_star] = ACTIONS(2573), + [sym__list_marker_parenthesis] = ACTIONS(2573), + [sym__list_marker_dot] = ACTIONS(2573), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_example] = ACTIONS(2573), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2573), + [sym__fenced_code_block_start_backtick] = ACTIONS(2573), + [sym__minus_metadata_start] = ACTIONS(2573), + [sym__pipe_table_start] = ACTIONS(2573), + [sym__fenced_div_start] = ACTIONS(2573), + [sym_ref_id_specifier] = ACTIONS(2573), + [sym__code_span_start] = ACTIONS(2573), + [sym__html_comment] = ACTIONS(2573), + [sym__autolink] = ACTIONS(2573), + [sym__highlight_span_start] = ACTIONS(2573), + [sym__insert_span_start] = ACTIONS(2573), + [sym__delete_span_start] = ACTIONS(2573), + [sym__edit_comment_span_start] = ACTIONS(2573), + [sym__single_quote_span_open] = ACTIONS(2573), + [sym__double_quote_span_open] = ACTIONS(2573), + [sym__shortcode_open_escaped] = ACTIONS(2573), + [sym__shortcode_open] = ACTIONS(2573), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2573), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2573), + [sym__cite_author_in_text] = ACTIONS(2573), + [sym__cite_suppress_author] = ACTIONS(2573), + [sym__strikeout_open] = ACTIONS(2573), + [sym__subscript_open] = ACTIONS(2573), + [sym__superscript_open] = ACTIONS(2573), + [sym__inline_note_start_token] = ACTIONS(2573), + [sym__strong_emphasis_open_star] = ACTIONS(2573), + [sym__strong_emphasis_open_underscore] = ACTIONS(2573), + [sym__emphasis_open_star] = ACTIONS(2573), + [sym__emphasis_open_underscore] = ACTIONS(2573), + [sym_inline_note_reference] = ACTIONS(2573), + [sym_html_element] = ACTIONS(2573), + [sym__pandoc_lt_str] = ACTIONS(2573), + [sym__pandoc_line_break] = ACTIONS(2573), + [sym_grid_table] = ACTIONS(2573), + [sym__caption_start] = ACTIONS(2573), }, - [STATE(469)] = { - [ts_builtin_sym_end] = ACTIONS(2249), - [sym_entity_reference] = ACTIONS(2249), - [sym_numeric_character_reference] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_BANG_LBRACK] = ACTIONS(2249), - [anon_sym_DOLLAR] = ACTIONS(2251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [aux_sym_pandoc_str_token1] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2249), - [sym__whitespace] = ACTIONS(2249), - [sym__line_ending] = ACTIONS(2249), - [sym__soft_line_ending] = ACTIONS(2249), - [sym__block_quote_start] = ACTIONS(2249), - [sym_atx_h1_marker] = ACTIONS(2249), - [sym_atx_h2_marker] = ACTIONS(2249), - [sym_atx_h3_marker] = ACTIONS(2249), - [sym_atx_h4_marker] = ACTIONS(2249), - [sym_atx_h5_marker] = ACTIONS(2249), - [sym_atx_h6_marker] = ACTIONS(2249), - [sym__thematic_break] = ACTIONS(2249), - [sym__list_marker_minus] = ACTIONS(2249), - [sym__list_marker_plus] = ACTIONS(2249), - [sym__list_marker_star] = ACTIONS(2249), - [sym__list_marker_parenthesis] = ACTIONS(2249), - [sym__list_marker_dot] = ACTIONS(2249), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2249), - [sym__list_marker_example] = ACTIONS(2249), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2249), - [sym__fenced_code_block_start_backtick] = ACTIONS(2249), - [sym_minus_metadata] = ACTIONS(2249), - [sym__pipe_table_start] = ACTIONS(2249), - [sym__fenced_div_start] = ACTIONS(2249), - [sym_ref_id_specifier] = ACTIONS(2249), - [sym__code_span_start] = ACTIONS(2249), - [sym__html_comment] = ACTIONS(2249), - [sym__autolink] = ACTIONS(2249), - [sym__highlight_span_start] = ACTIONS(2249), - [sym__insert_span_start] = ACTIONS(2249), - [sym__delete_span_start] = ACTIONS(2249), - [sym__edit_comment_span_start] = ACTIONS(2249), - [sym__single_quote_span_open] = ACTIONS(2249), - [sym__double_quote_span_open] = ACTIONS(2249), - [sym__shortcode_open_escaped] = ACTIONS(2249), - [sym__shortcode_open] = ACTIONS(2249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2249), - [sym__cite_author_in_text] = ACTIONS(2249), - [sym__cite_suppress_author] = ACTIONS(2249), - [sym__strikeout_open] = ACTIONS(2249), - [sym__subscript_open] = ACTIONS(2249), - [sym__superscript_open] = ACTIONS(2249), - [sym__inline_note_start_token] = ACTIONS(2249), - [sym__strong_emphasis_open_star] = ACTIONS(2249), - [sym__strong_emphasis_open_underscore] = ACTIONS(2249), - [sym__emphasis_open_star] = ACTIONS(2249), - [sym__emphasis_open_underscore] = ACTIONS(2249), - [sym_inline_note_reference] = ACTIONS(2249), - [sym_html_element] = ACTIONS(2249), - [sym__pandoc_lt_str] = ACTIONS(2249), - [sym__pandoc_line_break] = ACTIONS(2249), - [sym_grid_table] = ACTIONS(2249), - [sym__caption_start] = ACTIONS(2249), + [STATE(489)] = { + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_entity_reference] = ACTIONS(2343), + [sym_numeric_character_reference] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_BANG_LBRACK] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [aux_sym_pandoc_str_token1] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2343), + [sym__whitespace] = ACTIONS(2343), + [sym__line_ending] = ACTIONS(2343), + [sym__soft_line_ending] = ACTIONS(2343), + [sym__block_quote_start] = ACTIONS(2343), + [sym_atx_h1_marker] = ACTIONS(2343), + [sym_atx_h2_marker] = ACTIONS(2343), + [sym_atx_h3_marker] = ACTIONS(2343), + [sym_atx_h4_marker] = ACTIONS(2343), + [sym_atx_h5_marker] = ACTIONS(2343), + [sym_atx_h6_marker] = ACTIONS(2343), + [sym__thematic_break] = ACTIONS(2343), + [sym__list_marker_minus] = ACTIONS(2343), + [sym__list_marker_plus] = ACTIONS(2343), + [sym__list_marker_star] = ACTIONS(2343), + [sym__list_marker_parenthesis] = ACTIONS(2343), + [sym__list_marker_dot] = ACTIONS(2343), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2343), + [sym__list_marker_example] = ACTIONS(2343), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2343), + [sym__fenced_code_block_start_backtick] = ACTIONS(2343), + [sym__minus_metadata_start] = ACTIONS(2343), + [sym__pipe_table_start] = ACTIONS(2343), + [sym__fenced_div_start] = ACTIONS(2343), + [sym_ref_id_specifier] = ACTIONS(2343), + [sym__code_span_start] = ACTIONS(2343), + [sym__html_comment] = ACTIONS(2343), + [sym__autolink] = ACTIONS(2343), + [sym__highlight_span_start] = ACTIONS(2343), + [sym__insert_span_start] = ACTIONS(2343), + [sym__delete_span_start] = ACTIONS(2343), + [sym__edit_comment_span_start] = ACTIONS(2343), + [sym__single_quote_span_open] = ACTIONS(2343), + [sym__double_quote_span_open] = ACTIONS(2343), + [sym__shortcode_open_escaped] = ACTIONS(2343), + [sym__shortcode_open] = ACTIONS(2343), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2343), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2343), + [sym__cite_author_in_text] = ACTIONS(2343), + [sym__cite_suppress_author] = ACTIONS(2343), + [sym__strikeout_open] = ACTIONS(2343), + [sym__subscript_open] = ACTIONS(2343), + [sym__superscript_open] = ACTIONS(2343), + [sym__inline_note_start_token] = ACTIONS(2343), + [sym__strong_emphasis_open_star] = ACTIONS(2343), + [sym__strong_emphasis_open_underscore] = ACTIONS(2343), + [sym__emphasis_open_star] = ACTIONS(2343), + [sym__emphasis_open_underscore] = ACTIONS(2343), + [sym_inline_note_reference] = ACTIONS(2343), + [sym_html_element] = ACTIONS(2343), + [sym__pandoc_lt_str] = ACTIONS(2343), + [sym__pandoc_line_break] = ACTIONS(2343), + [sym_grid_table] = ACTIONS(2343), + [sym__caption_start] = ACTIONS(2343), }, - [STATE(470)] = { - [sym_entity_reference] = ACTIONS(2273), - [sym_numeric_character_reference] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2273), - [anon_sym_BANG_LBRACK] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [aux_sym_pandoc_str_token1] = ACTIONS(2275), - [anon_sym_PIPE] = ACTIONS(2273), - [sym__whitespace] = ACTIONS(2273), - [sym__line_ending] = ACTIONS(2273), - [sym__soft_line_ending] = ACTIONS(2273), - [sym__block_close] = ACTIONS(2273), - [sym__block_quote_start] = ACTIONS(2273), - [sym_atx_h1_marker] = ACTIONS(2273), - [sym_atx_h2_marker] = ACTIONS(2273), - [sym_atx_h3_marker] = ACTIONS(2273), - [sym_atx_h4_marker] = ACTIONS(2273), - [sym_atx_h5_marker] = ACTIONS(2273), - [sym_atx_h6_marker] = ACTIONS(2273), - [sym__thematic_break] = ACTIONS(2273), - [sym__list_marker_minus] = ACTIONS(2273), - [sym__list_marker_plus] = ACTIONS(2273), - [sym__list_marker_star] = ACTIONS(2273), - [sym__list_marker_parenthesis] = ACTIONS(2273), - [sym__list_marker_dot] = ACTIONS(2273), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2273), - [sym__list_marker_example] = ACTIONS(2273), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2273), - [sym__fenced_code_block_start_backtick] = ACTIONS(2273), - [sym_minus_metadata] = ACTIONS(2273), - [sym__pipe_table_start] = ACTIONS(2273), - [sym__fenced_div_start] = ACTIONS(2273), - [sym_ref_id_specifier] = ACTIONS(2273), - [sym__code_span_start] = ACTIONS(2273), - [sym__html_comment] = ACTIONS(2273), - [sym__autolink] = ACTIONS(2273), - [sym__highlight_span_start] = ACTIONS(2273), - [sym__insert_span_start] = ACTIONS(2273), - [sym__delete_span_start] = ACTIONS(2273), - [sym__edit_comment_span_start] = ACTIONS(2273), - [sym__single_quote_span_open] = ACTIONS(2273), - [sym__double_quote_span_open] = ACTIONS(2273), - [sym__shortcode_open_escaped] = ACTIONS(2273), - [sym__shortcode_open] = ACTIONS(2273), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2273), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2273), - [sym__cite_author_in_text] = ACTIONS(2273), - [sym__cite_suppress_author] = ACTIONS(2273), - [sym__strikeout_open] = ACTIONS(2273), - [sym__subscript_open] = ACTIONS(2273), - [sym__superscript_open] = ACTIONS(2273), - [sym__inline_note_start_token] = ACTIONS(2273), - [sym__strong_emphasis_open_star] = ACTIONS(2273), - [sym__strong_emphasis_open_underscore] = ACTIONS(2273), - [sym__emphasis_open_star] = ACTIONS(2273), - [sym__emphasis_open_underscore] = ACTIONS(2273), - [sym_inline_note_reference] = ACTIONS(2273), - [sym_html_element] = ACTIONS(2273), - [sym__pandoc_lt_str] = ACTIONS(2273), - [sym__pandoc_line_break] = ACTIONS(2273), - [sym_grid_table] = ACTIONS(2273), - [sym__caption_start] = ACTIONS(2273), + [STATE(490)] = { + [ts_builtin_sym_end] = ACTIONS(2539), + [sym_entity_reference] = ACTIONS(2539), + [sym_numeric_character_reference] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_BANG_LBRACK] = ACTIONS(2539), + [anon_sym_DOLLAR] = ACTIONS(2541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2539), + [aux_sym_pandoc_str_token1] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2539), + [sym__whitespace] = ACTIONS(2539), + [sym__line_ending] = ACTIONS(2539), + [sym__soft_line_ending] = ACTIONS(2539), + [sym__block_quote_start] = ACTIONS(2539), + [sym_atx_h1_marker] = ACTIONS(2539), + [sym_atx_h2_marker] = ACTIONS(2539), + [sym_atx_h3_marker] = ACTIONS(2539), + [sym_atx_h4_marker] = ACTIONS(2539), + [sym_atx_h5_marker] = ACTIONS(2539), + [sym_atx_h6_marker] = ACTIONS(2539), + [sym__thematic_break] = ACTIONS(2539), + [sym__list_marker_minus] = ACTIONS(2539), + [sym__list_marker_plus] = ACTIONS(2539), + [sym__list_marker_star] = ACTIONS(2539), + [sym__list_marker_parenthesis] = ACTIONS(2539), + [sym__list_marker_dot] = ACTIONS(2539), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_example] = ACTIONS(2539), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2539), + [sym__fenced_code_block_start_backtick] = ACTIONS(2539), + [sym__minus_metadata_start] = ACTIONS(2539), + [sym__pipe_table_start] = ACTIONS(2539), + [sym__fenced_div_start] = ACTIONS(2539), + [sym_ref_id_specifier] = ACTIONS(2539), + [sym__code_span_start] = ACTIONS(2539), + [sym__html_comment] = ACTIONS(2539), + [sym__autolink] = ACTIONS(2539), + [sym__highlight_span_start] = ACTIONS(2539), + [sym__insert_span_start] = ACTIONS(2539), + [sym__delete_span_start] = ACTIONS(2539), + [sym__edit_comment_span_start] = ACTIONS(2539), + [sym__single_quote_span_open] = ACTIONS(2539), + [sym__double_quote_span_open] = ACTIONS(2539), + [sym__shortcode_open_escaped] = ACTIONS(2539), + [sym__shortcode_open] = ACTIONS(2539), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2539), + [sym__cite_author_in_text] = ACTIONS(2539), + [sym__cite_suppress_author] = ACTIONS(2539), + [sym__strikeout_open] = ACTIONS(2539), + [sym__subscript_open] = ACTIONS(2539), + [sym__superscript_open] = ACTIONS(2539), + [sym__inline_note_start_token] = ACTIONS(2539), + [sym__strong_emphasis_open_star] = ACTIONS(2539), + [sym__strong_emphasis_open_underscore] = ACTIONS(2539), + [sym__emphasis_open_star] = ACTIONS(2539), + [sym__emphasis_open_underscore] = ACTIONS(2539), + [sym_inline_note_reference] = ACTIONS(2539), + [sym_html_element] = ACTIONS(2539), + [sym__pandoc_lt_str] = ACTIONS(2539), + [sym__pandoc_line_break] = ACTIONS(2539), + [sym_grid_table] = ACTIONS(2539), + [sym__caption_start] = ACTIONS(2539), }, - [STATE(471)] = { + [STATE(491)] = { [ts_builtin_sym_end] = ACTIONS(2545), [sym_entity_reference] = ACTIONS(2545), [sym_numeric_character_reference] = ACTIONS(2545), @@ -66603,7 +68192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(2545), [sym__list_marker_example_dont_interrupt] = ACTIONS(2545), [sym__fenced_code_block_start_backtick] = ACTIONS(2545), - [sym_minus_metadata] = ACTIONS(2545), + [sym__minus_metadata_start] = ACTIONS(2545), [sym__pipe_table_start] = ACTIONS(2545), [sym__fenced_div_start] = ACTIONS(2545), [sym_ref_id_specifier] = ACTIONS(2545), @@ -66637,2242 +68226,1340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grid_table] = ACTIONS(2545), [sym__caption_start] = ACTIONS(2545), }, - [STATE(472)] = { - [sym_entity_reference] = ACTIONS(2279), - [sym_numeric_character_reference] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_BANG_LBRACK] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [aux_sym_pandoc_str_token1] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2279), - [sym__whitespace] = ACTIONS(2279), - [sym__line_ending] = ACTIONS(2279), - [sym__soft_line_ending] = ACTIONS(2279), - [sym__block_close] = ACTIONS(2279), - [sym__block_quote_start] = ACTIONS(2279), - [sym_atx_h1_marker] = ACTIONS(2279), - [sym_atx_h2_marker] = ACTIONS(2279), - [sym_atx_h3_marker] = ACTIONS(2279), - [sym_atx_h4_marker] = ACTIONS(2279), - [sym_atx_h5_marker] = ACTIONS(2279), - [sym_atx_h6_marker] = ACTIONS(2279), - [sym__thematic_break] = ACTIONS(2279), - [sym__list_marker_minus] = ACTIONS(2279), - [sym__list_marker_plus] = ACTIONS(2279), - [sym__list_marker_star] = ACTIONS(2279), - [sym__list_marker_parenthesis] = ACTIONS(2279), - [sym__list_marker_dot] = ACTIONS(2279), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_example] = ACTIONS(2279), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2279), - [sym__fenced_code_block_start_backtick] = ACTIONS(2279), - [sym_minus_metadata] = ACTIONS(2279), - [sym__pipe_table_start] = ACTIONS(2279), - [sym__fenced_div_start] = ACTIONS(2279), - [sym_ref_id_specifier] = ACTIONS(2279), - [sym__code_span_start] = ACTIONS(2279), - [sym__html_comment] = ACTIONS(2279), - [sym__autolink] = ACTIONS(2279), - [sym__highlight_span_start] = ACTIONS(2279), - [sym__insert_span_start] = ACTIONS(2279), - [sym__delete_span_start] = ACTIONS(2279), - [sym__edit_comment_span_start] = ACTIONS(2279), - [sym__single_quote_span_open] = ACTIONS(2279), - [sym__double_quote_span_open] = ACTIONS(2279), - [sym__shortcode_open_escaped] = ACTIONS(2279), - [sym__shortcode_open] = ACTIONS(2279), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2279), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2279), - [sym__cite_author_in_text] = ACTIONS(2279), - [sym__cite_suppress_author] = ACTIONS(2279), - [sym__strikeout_open] = ACTIONS(2279), - [sym__subscript_open] = ACTIONS(2279), - [sym__superscript_open] = ACTIONS(2279), - [sym__inline_note_start_token] = ACTIONS(2279), - [sym__strong_emphasis_open_star] = ACTIONS(2279), - [sym__strong_emphasis_open_underscore] = ACTIONS(2279), - [sym__emphasis_open_star] = ACTIONS(2279), - [sym__emphasis_open_underscore] = ACTIONS(2279), - [sym_inline_note_reference] = ACTIONS(2279), - [sym_html_element] = ACTIONS(2279), - [sym__pandoc_lt_str] = ACTIONS(2279), - [sym__pandoc_line_break] = ACTIONS(2279), - [sym_grid_table] = ACTIONS(2279), - [sym__caption_start] = ACTIONS(2279), - }, - [STATE(473)] = { - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_entity_reference] = ACTIONS(2387), - [sym_numeric_character_reference] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_BANG_LBRACK] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2389), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [aux_sym_pandoc_str_token1] = ACTIONS(2389), - [anon_sym_PIPE] = ACTIONS(2387), - [sym__whitespace] = ACTIONS(2387), - [sym__line_ending] = ACTIONS(2387), - [sym__soft_line_ending] = ACTIONS(2387), - [sym__block_quote_start] = ACTIONS(2387), - [sym_atx_h1_marker] = ACTIONS(2387), - [sym_atx_h2_marker] = ACTIONS(2387), - [sym_atx_h3_marker] = ACTIONS(2387), - [sym_atx_h4_marker] = ACTIONS(2387), - [sym_atx_h5_marker] = ACTIONS(2387), - [sym_atx_h6_marker] = ACTIONS(2387), - [sym__thematic_break] = ACTIONS(2387), - [sym__list_marker_minus] = ACTIONS(2387), - [sym__list_marker_plus] = ACTIONS(2387), - [sym__list_marker_star] = ACTIONS(2387), - [sym__list_marker_parenthesis] = ACTIONS(2387), - [sym__list_marker_dot] = ACTIONS(2387), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2387), - [sym__list_marker_example] = ACTIONS(2387), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2387), - [sym__fenced_code_block_start_backtick] = ACTIONS(2387), - [sym_minus_metadata] = ACTIONS(2387), - [sym__pipe_table_start] = ACTIONS(2387), - [sym__fenced_div_start] = ACTIONS(2387), - [sym_ref_id_specifier] = ACTIONS(2387), - [sym__code_span_start] = ACTIONS(2387), - [sym__html_comment] = ACTIONS(2387), - [sym__autolink] = ACTIONS(2387), - [sym__highlight_span_start] = ACTIONS(2387), - [sym__insert_span_start] = ACTIONS(2387), - [sym__delete_span_start] = ACTIONS(2387), - [sym__edit_comment_span_start] = ACTIONS(2387), - [sym__single_quote_span_open] = ACTIONS(2387), - [sym__double_quote_span_open] = ACTIONS(2387), - [sym__shortcode_open_escaped] = ACTIONS(2387), - [sym__shortcode_open] = ACTIONS(2387), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2387), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2387), - [sym__cite_author_in_text] = ACTIONS(2387), - [sym__cite_suppress_author] = ACTIONS(2387), - [sym__strikeout_open] = ACTIONS(2387), - [sym__subscript_open] = ACTIONS(2387), - [sym__superscript_open] = ACTIONS(2387), - [sym__inline_note_start_token] = ACTIONS(2387), - [sym__strong_emphasis_open_star] = ACTIONS(2387), - [sym__strong_emphasis_open_underscore] = ACTIONS(2387), - [sym__emphasis_open_star] = ACTIONS(2387), - [sym__emphasis_open_underscore] = ACTIONS(2387), - [sym_inline_note_reference] = ACTIONS(2387), - [sym_html_element] = ACTIONS(2387), - [sym__pandoc_lt_str] = ACTIONS(2387), - [sym__pandoc_line_break] = ACTIONS(2387), - [sym_grid_table] = ACTIONS(2387), - [sym__caption_start] = ACTIONS(2387), - }, - [STATE(474)] = { - [sym_entity_reference] = ACTIONS(2285), - [sym_numeric_character_reference] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_BANG_LBRACK] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [aux_sym_pandoc_str_token1] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2285), - [sym__whitespace] = ACTIONS(2285), - [sym__line_ending] = ACTIONS(2285), - [sym__soft_line_ending] = ACTIONS(2285), - [sym__block_close] = ACTIONS(2285), - [sym__block_quote_start] = ACTIONS(2285), - [sym_atx_h1_marker] = ACTIONS(2285), - [sym_atx_h2_marker] = ACTIONS(2285), - [sym_atx_h3_marker] = ACTIONS(2285), - [sym_atx_h4_marker] = ACTIONS(2285), - [sym_atx_h5_marker] = ACTIONS(2285), - [sym_atx_h6_marker] = ACTIONS(2285), - [sym__thematic_break] = ACTIONS(2285), - [sym__list_marker_minus] = ACTIONS(2285), - [sym__list_marker_plus] = ACTIONS(2285), - [sym__list_marker_star] = ACTIONS(2285), - [sym__list_marker_parenthesis] = ACTIONS(2285), - [sym__list_marker_dot] = ACTIONS(2285), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2285), - [sym__list_marker_example] = ACTIONS(2285), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2285), - [sym__fenced_code_block_start_backtick] = ACTIONS(2285), - [sym_minus_metadata] = ACTIONS(2285), - [sym__pipe_table_start] = ACTIONS(2285), - [sym__fenced_div_start] = ACTIONS(2285), - [sym_ref_id_specifier] = ACTIONS(2285), - [sym__code_span_start] = ACTIONS(2285), - [sym__html_comment] = ACTIONS(2285), - [sym__autolink] = ACTIONS(2285), - [sym__highlight_span_start] = ACTIONS(2285), - [sym__insert_span_start] = ACTIONS(2285), - [sym__delete_span_start] = ACTIONS(2285), - [sym__edit_comment_span_start] = ACTIONS(2285), - [sym__single_quote_span_open] = ACTIONS(2285), - [sym__double_quote_span_open] = ACTIONS(2285), - [sym__shortcode_open_escaped] = ACTIONS(2285), - [sym__shortcode_open] = ACTIONS(2285), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2285), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2285), - [sym__cite_author_in_text] = ACTIONS(2285), - [sym__cite_suppress_author] = ACTIONS(2285), - [sym__strikeout_open] = ACTIONS(2285), - [sym__subscript_open] = ACTIONS(2285), - [sym__superscript_open] = ACTIONS(2285), - [sym__inline_note_start_token] = ACTIONS(2285), - [sym__strong_emphasis_open_star] = ACTIONS(2285), - [sym__strong_emphasis_open_underscore] = ACTIONS(2285), - [sym__emphasis_open_star] = ACTIONS(2285), - [sym__emphasis_open_underscore] = ACTIONS(2285), - [sym_inline_note_reference] = ACTIONS(2285), - [sym_html_element] = ACTIONS(2285), - [sym__pandoc_lt_str] = ACTIONS(2285), - [sym__pandoc_line_break] = ACTIONS(2285), - [sym_grid_table] = ACTIONS(2285), - [sym__caption_start] = ACTIONS(2285), - }, - [STATE(475)] = { - [ts_builtin_sym_end] = ACTIONS(2255), - [sym_entity_reference] = ACTIONS(2255), - [sym_numeric_character_reference] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_BANG_LBRACK] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2257), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [aux_sym_pandoc_str_token1] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2255), - [sym__whitespace] = ACTIONS(2255), - [sym__line_ending] = ACTIONS(2255), - [sym__soft_line_ending] = ACTIONS(2255), - [sym__block_quote_start] = ACTIONS(2255), - [sym_atx_h1_marker] = ACTIONS(2255), - [sym_atx_h2_marker] = ACTIONS(2255), - [sym_atx_h3_marker] = ACTIONS(2255), - [sym_atx_h4_marker] = ACTIONS(2255), - [sym_atx_h5_marker] = ACTIONS(2255), - [sym_atx_h6_marker] = ACTIONS(2255), - [sym__thematic_break] = ACTIONS(2255), - [sym__list_marker_minus] = ACTIONS(2255), - [sym__list_marker_plus] = ACTIONS(2255), - [sym__list_marker_star] = ACTIONS(2255), - [sym__list_marker_parenthesis] = ACTIONS(2255), - [sym__list_marker_dot] = ACTIONS(2255), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2255), - [sym__list_marker_example] = ACTIONS(2255), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2255), - [sym__fenced_code_block_start_backtick] = ACTIONS(2255), - [sym_minus_metadata] = ACTIONS(2255), - [sym__pipe_table_start] = ACTIONS(2255), - [sym__fenced_div_start] = ACTIONS(2255), - [sym_ref_id_specifier] = ACTIONS(2255), - [sym__code_span_start] = ACTIONS(2255), - [sym__html_comment] = ACTIONS(2255), - [sym__autolink] = ACTIONS(2255), - [sym__highlight_span_start] = ACTIONS(2255), - [sym__insert_span_start] = ACTIONS(2255), - [sym__delete_span_start] = ACTIONS(2255), - [sym__edit_comment_span_start] = ACTIONS(2255), - [sym__single_quote_span_open] = ACTIONS(2255), - [sym__double_quote_span_open] = ACTIONS(2255), - [sym__shortcode_open_escaped] = ACTIONS(2255), - [sym__shortcode_open] = ACTIONS(2255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2255), - [sym__cite_author_in_text] = ACTIONS(2255), - [sym__cite_suppress_author] = ACTIONS(2255), - [sym__strikeout_open] = ACTIONS(2255), - [sym__subscript_open] = ACTIONS(2255), - [sym__superscript_open] = ACTIONS(2255), - [sym__inline_note_start_token] = ACTIONS(2255), - [sym__strong_emphasis_open_star] = ACTIONS(2255), - [sym__strong_emphasis_open_underscore] = ACTIONS(2255), - [sym__emphasis_open_star] = ACTIONS(2255), - [sym__emphasis_open_underscore] = ACTIONS(2255), - [sym_inline_note_reference] = ACTIONS(2255), - [sym_html_element] = ACTIONS(2255), - [sym__pandoc_lt_str] = ACTIONS(2255), - [sym__pandoc_line_break] = ACTIONS(2255), - [sym_grid_table] = ACTIONS(2255), - [sym__caption_start] = ACTIONS(2255), - }, - [STATE(476)] = { - [sym_entity_reference] = ACTIONS(2297), - [sym_numeric_character_reference] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_BANG_LBRACK] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [aux_sym_pandoc_str_token1] = ACTIONS(2299), - [anon_sym_PIPE] = ACTIONS(2297), - [sym__whitespace] = ACTIONS(2297), - [sym__line_ending] = ACTIONS(2297), - [sym__soft_line_ending] = ACTIONS(2297), - [sym__block_close] = ACTIONS(2297), - [sym__block_quote_start] = ACTIONS(2297), - [sym_atx_h1_marker] = ACTIONS(2297), - [sym_atx_h2_marker] = ACTIONS(2297), - [sym_atx_h3_marker] = ACTIONS(2297), - [sym_atx_h4_marker] = ACTIONS(2297), - [sym_atx_h5_marker] = ACTIONS(2297), - [sym_atx_h6_marker] = ACTIONS(2297), - [sym__thematic_break] = ACTIONS(2297), - [sym__list_marker_minus] = ACTIONS(2297), - [sym__list_marker_plus] = ACTIONS(2297), - [sym__list_marker_star] = ACTIONS(2297), - [sym__list_marker_parenthesis] = ACTIONS(2297), - [sym__list_marker_dot] = ACTIONS(2297), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2297), - [sym__list_marker_example] = ACTIONS(2297), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2297), - [sym__fenced_code_block_start_backtick] = ACTIONS(2297), - [sym_minus_metadata] = ACTIONS(2297), - [sym__pipe_table_start] = ACTIONS(2297), - [sym__fenced_div_start] = ACTIONS(2297), - [sym_ref_id_specifier] = ACTIONS(2297), - [sym__code_span_start] = ACTIONS(2297), - [sym__html_comment] = ACTIONS(2297), - [sym__autolink] = ACTIONS(2297), - [sym__highlight_span_start] = ACTIONS(2297), - [sym__insert_span_start] = ACTIONS(2297), - [sym__delete_span_start] = ACTIONS(2297), - [sym__edit_comment_span_start] = ACTIONS(2297), - [sym__single_quote_span_open] = ACTIONS(2297), - [sym__double_quote_span_open] = ACTIONS(2297), - [sym__shortcode_open_escaped] = ACTIONS(2297), - [sym__shortcode_open] = ACTIONS(2297), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2297), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2297), - [sym__cite_author_in_text] = ACTIONS(2297), - [sym__cite_suppress_author] = ACTIONS(2297), - [sym__strikeout_open] = ACTIONS(2297), - [sym__subscript_open] = ACTIONS(2297), - [sym__superscript_open] = ACTIONS(2297), - [sym__inline_note_start_token] = ACTIONS(2297), - [sym__strong_emphasis_open_star] = ACTIONS(2297), - [sym__strong_emphasis_open_underscore] = ACTIONS(2297), - [sym__emphasis_open_star] = ACTIONS(2297), - [sym__emphasis_open_underscore] = ACTIONS(2297), - [sym_inline_note_reference] = ACTIONS(2297), - [sym_html_element] = ACTIONS(2297), - [sym__pandoc_lt_str] = ACTIONS(2297), - [sym__pandoc_line_break] = ACTIONS(2297), - [sym_grid_table] = ACTIONS(2297), - [sym__caption_start] = ACTIONS(2297), - }, - [STATE(477)] = { - [sym_entity_reference] = ACTIONS(2429), - [sym_numeric_character_reference] = ACTIONS(2429), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_BANG_LBRACK] = ACTIONS(2429), - [anon_sym_DOLLAR] = ACTIONS(2431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2429), - [aux_sym_pandoc_str_token1] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2429), - [sym__whitespace] = ACTIONS(2429), - [sym__line_ending] = ACTIONS(2429), - [sym__soft_line_ending] = ACTIONS(2429), - [sym__block_close] = ACTIONS(2429), - [sym__block_quote_start] = ACTIONS(2429), - [sym_atx_h1_marker] = ACTIONS(2429), - [sym_atx_h2_marker] = ACTIONS(2429), - [sym_atx_h3_marker] = ACTIONS(2429), - [sym_atx_h4_marker] = ACTIONS(2429), - [sym_atx_h5_marker] = ACTIONS(2429), - [sym_atx_h6_marker] = ACTIONS(2429), - [sym__thematic_break] = ACTIONS(2429), - [sym__list_marker_minus] = ACTIONS(2429), - [sym__list_marker_plus] = ACTIONS(2429), - [sym__list_marker_star] = ACTIONS(2429), - [sym__list_marker_parenthesis] = ACTIONS(2429), - [sym__list_marker_dot] = ACTIONS(2429), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2429), - [sym__list_marker_example] = ACTIONS(2429), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2429), - [sym__fenced_code_block_start_backtick] = ACTIONS(2429), - [sym_minus_metadata] = ACTIONS(2429), - [sym__pipe_table_start] = ACTIONS(2429), - [sym__fenced_div_start] = ACTIONS(2429), - [sym_ref_id_specifier] = ACTIONS(2429), - [sym__code_span_start] = ACTIONS(2429), - [sym__html_comment] = ACTIONS(2429), - [sym__autolink] = ACTIONS(2429), - [sym__highlight_span_start] = ACTIONS(2429), - [sym__insert_span_start] = ACTIONS(2429), - [sym__delete_span_start] = ACTIONS(2429), - [sym__edit_comment_span_start] = ACTIONS(2429), - [sym__single_quote_span_open] = ACTIONS(2429), - [sym__double_quote_span_open] = ACTIONS(2429), - [sym__shortcode_open_escaped] = ACTIONS(2429), - [sym__shortcode_open] = ACTIONS(2429), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2429), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2429), - [sym__cite_author_in_text] = ACTIONS(2429), - [sym__cite_suppress_author] = ACTIONS(2429), - [sym__strikeout_open] = ACTIONS(2429), - [sym__subscript_open] = ACTIONS(2429), - [sym__superscript_open] = ACTIONS(2429), - [sym__inline_note_start_token] = ACTIONS(2429), - [sym__strong_emphasis_open_star] = ACTIONS(2429), - [sym__strong_emphasis_open_underscore] = ACTIONS(2429), - [sym__emphasis_open_star] = ACTIONS(2429), - [sym__emphasis_open_underscore] = ACTIONS(2429), - [sym_inline_note_reference] = ACTIONS(2429), - [sym_html_element] = ACTIONS(2429), - [sym__pandoc_lt_str] = ACTIONS(2429), - [sym__pandoc_line_break] = ACTIONS(2429), - [sym_grid_table] = ACTIONS(2429), - [sym__caption_start] = ACTIONS(2429), - }, - [STATE(478)] = { - [sym_entity_reference] = ACTIONS(2433), - [sym_numeric_character_reference] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_BANG_LBRACK] = ACTIONS(2433), - [anon_sym_DOLLAR] = ACTIONS(2435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [aux_sym_pandoc_str_token1] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2433), - [sym__whitespace] = ACTIONS(2433), - [sym__line_ending] = ACTIONS(2433), - [sym__soft_line_ending] = ACTIONS(2433), - [sym__block_close] = ACTIONS(2433), - [sym__block_quote_start] = ACTIONS(2433), - [sym_atx_h1_marker] = ACTIONS(2433), - [sym_atx_h2_marker] = ACTIONS(2433), - [sym_atx_h3_marker] = ACTIONS(2433), - [sym_atx_h4_marker] = ACTIONS(2433), - [sym_atx_h5_marker] = ACTIONS(2433), - [sym_atx_h6_marker] = ACTIONS(2433), - [sym__thematic_break] = ACTIONS(2433), - [sym__list_marker_minus] = ACTIONS(2433), - [sym__list_marker_plus] = ACTIONS(2433), - [sym__list_marker_star] = ACTIONS(2433), - [sym__list_marker_parenthesis] = ACTIONS(2433), - [sym__list_marker_dot] = ACTIONS(2433), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2433), - [sym__list_marker_example] = ACTIONS(2433), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2433), - [sym__fenced_code_block_start_backtick] = ACTIONS(2433), - [sym_minus_metadata] = ACTIONS(2433), - [sym__pipe_table_start] = ACTIONS(2433), - [sym__fenced_div_start] = ACTIONS(2433), - [sym_ref_id_specifier] = ACTIONS(2433), - [sym__code_span_start] = ACTIONS(2433), - [sym__html_comment] = ACTIONS(2433), - [sym__autolink] = ACTIONS(2433), - [sym__highlight_span_start] = ACTIONS(2433), - [sym__insert_span_start] = ACTIONS(2433), - [sym__delete_span_start] = ACTIONS(2433), - [sym__edit_comment_span_start] = ACTIONS(2433), - [sym__single_quote_span_open] = ACTIONS(2433), - [sym__double_quote_span_open] = ACTIONS(2433), - [sym__shortcode_open_escaped] = ACTIONS(2433), - [sym__shortcode_open] = ACTIONS(2433), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2433), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2433), - [sym__cite_author_in_text] = ACTIONS(2433), - [sym__cite_suppress_author] = ACTIONS(2433), - [sym__strikeout_open] = ACTIONS(2433), - [sym__subscript_open] = ACTIONS(2433), - [sym__superscript_open] = ACTIONS(2433), - [sym__inline_note_start_token] = ACTIONS(2433), - [sym__strong_emphasis_open_star] = ACTIONS(2433), - [sym__strong_emphasis_open_underscore] = ACTIONS(2433), - [sym__emphasis_open_star] = ACTIONS(2433), - [sym__emphasis_open_underscore] = ACTIONS(2433), - [sym_inline_note_reference] = ACTIONS(2433), - [sym_html_element] = ACTIONS(2433), - [sym__pandoc_lt_str] = ACTIONS(2433), - [sym__pandoc_line_break] = ACTIONS(2433), - [sym_grid_table] = ACTIONS(2433), - [sym__caption_start] = ACTIONS(2433), - }, - [STATE(479)] = { - [sym_pipe_table_cell] = STATE(3025), - [sym_pandoc_span] = STATE(595), - [sym_pandoc_image] = STATE(595), - [sym_pandoc_math] = STATE(595), - [sym_pandoc_display_math] = STATE(595), - [sym_pandoc_code_span] = STATE(595), - [sym_pandoc_single_quote] = STATE(595), - [sym_pandoc_double_quote] = STATE(595), - [sym_insert] = STATE(595), - [sym_delete] = STATE(595), - [sym_edit_comment] = STATE(595), - [sym_highlight] = STATE(595), - [sym__pandoc_attr_specifier] = STATE(595), - [sym__line_with_maybe_spaces] = STATE(3068), - [sym__inline_element] = STATE(595), - [sym_shortcode_escaped] = STATE(595), - [sym_shortcode] = STATE(595), - [sym_citation] = STATE(595), - [sym_inline_note] = STATE(595), - [sym_pandoc_superscript] = STATE(595), - [sym_pandoc_subscript] = STATE(595), - [sym_pandoc_strikeout] = STATE(595), - [sym_pandoc_emph] = STATE(595), - [sym_pandoc_strong] = STATE(595), - [sym_pandoc_str] = STATE(595), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(595), - [sym_entity_reference] = ACTIONS(2139), - [sym_numeric_character_reference] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2899), - [sym__line_ending] = ACTIONS(3015), - [sym__eof] = ACTIONS(3015), - [sym__pipe_table_line_ending] = ACTIONS(3015), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(2139), - [sym__autolink] = ACTIONS(2139), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(2139), - [sym_html_element] = ACTIONS(2139), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pipe_table_delimiter] = ACTIONS(2909), - [sym__pandoc_line_break] = ACTIONS(2139), - }, - [STATE(480)] = { - [sym_entity_reference] = ACTIONS(2437), - [sym_numeric_character_reference] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_BANG_LBRACK] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [aux_sym_pandoc_str_token1] = ACTIONS(2439), - [anon_sym_PIPE] = ACTIONS(2437), - [sym__whitespace] = ACTIONS(2437), - [sym__line_ending] = ACTIONS(2437), - [sym__soft_line_ending] = ACTIONS(2437), - [sym__block_close] = ACTIONS(2437), - [sym__block_quote_start] = ACTIONS(2437), - [sym_atx_h1_marker] = ACTIONS(2437), - [sym_atx_h2_marker] = ACTIONS(2437), - [sym_atx_h3_marker] = ACTIONS(2437), - [sym_atx_h4_marker] = ACTIONS(2437), - [sym_atx_h5_marker] = ACTIONS(2437), - [sym_atx_h6_marker] = ACTIONS(2437), - [sym__thematic_break] = ACTIONS(2437), - [sym__list_marker_minus] = ACTIONS(2437), - [sym__list_marker_plus] = ACTIONS(2437), - [sym__list_marker_star] = ACTIONS(2437), - [sym__list_marker_parenthesis] = ACTIONS(2437), - [sym__list_marker_dot] = ACTIONS(2437), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2437), - [sym__list_marker_example] = ACTIONS(2437), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2437), - [sym__fenced_code_block_start_backtick] = ACTIONS(2437), - [sym_minus_metadata] = ACTIONS(2437), - [sym__pipe_table_start] = ACTIONS(2437), - [sym__fenced_div_start] = ACTIONS(2437), - [sym_ref_id_specifier] = ACTIONS(2437), - [sym__code_span_start] = ACTIONS(2437), - [sym__html_comment] = ACTIONS(2437), - [sym__autolink] = ACTIONS(2437), - [sym__highlight_span_start] = ACTIONS(2437), - [sym__insert_span_start] = ACTIONS(2437), - [sym__delete_span_start] = ACTIONS(2437), - [sym__edit_comment_span_start] = ACTIONS(2437), - [sym__single_quote_span_open] = ACTIONS(2437), - [sym__double_quote_span_open] = ACTIONS(2437), - [sym__shortcode_open_escaped] = ACTIONS(2437), - [sym__shortcode_open] = ACTIONS(2437), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2437), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2437), - [sym__cite_author_in_text] = ACTIONS(2437), - [sym__cite_suppress_author] = ACTIONS(2437), - [sym__strikeout_open] = ACTIONS(2437), - [sym__subscript_open] = ACTIONS(2437), - [sym__superscript_open] = ACTIONS(2437), - [sym__inline_note_start_token] = ACTIONS(2437), - [sym__strong_emphasis_open_star] = ACTIONS(2437), - [sym__strong_emphasis_open_underscore] = ACTIONS(2437), - [sym__emphasis_open_star] = ACTIONS(2437), - [sym__emphasis_open_underscore] = ACTIONS(2437), - [sym_inline_note_reference] = ACTIONS(2437), - [sym_html_element] = ACTIONS(2437), - [sym__pandoc_lt_str] = ACTIONS(2437), - [sym__pandoc_line_break] = ACTIONS(2437), - [sym_grid_table] = ACTIONS(2437), - [sym__caption_start] = ACTIONS(2437), - }, - [STATE(481)] = { - [sym_entity_reference] = ACTIONS(2441), - [sym_numeric_character_reference] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(2441), - [anon_sym_BANG_LBRACK] = ACTIONS(2441), - [anon_sym_DOLLAR] = ACTIONS(2443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2441), - [anon_sym_LBRACE] = ACTIONS(2441), - [aux_sym_pandoc_str_token1] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2441), - [sym__whitespace] = ACTIONS(2441), - [sym__line_ending] = ACTIONS(2441), - [sym__soft_line_ending] = ACTIONS(2441), - [sym__block_close] = ACTIONS(2441), - [sym__block_quote_start] = ACTIONS(2441), - [sym_atx_h1_marker] = ACTIONS(2441), - [sym_atx_h2_marker] = ACTIONS(2441), - [sym_atx_h3_marker] = ACTIONS(2441), - [sym_atx_h4_marker] = ACTIONS(2441), - [sym_atx_h5_marker] = ACTIONS(2441), - [sym_atx_h6_marker] = ACTIONS(2441), - [sym__thematic_break] = ACTIONS(2441), - [sym__list_marker_minus] = ACTIONS(2441), - [sym__list_marker_plus] = ACTIONS(2441), - [sym__list_marker_star] = ACTIONS(2441), - [sym__list_marker_parenthesis] = ACTIONS(2441), - [sym__list_marker_dot] = ACTIONS(2441), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2441), - [sym__list_marker_example] = ACTIONS(2441), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2441), - [sym__fenced_code_block_start_backtick] = ACTIONS(2441), - [sym_minus_metadata] = ACTIONS(2441), - [sym__pipe_table_start] = ACTIONS(2441), - [sym__fenced_div_start] = ACTIONS(2441), - [sym_ref_id_specifier] = ACTIONS(2441), - [sym__code_span_start] = ACTIONS(2441), - [sym__html_comment] = ACTIONS(2441), - [sym__autolink] = ACTIONS(2441), - [sym__highlight_span_start] = ACTIONS(2441), - [sym__insert_span_start] = ACTIONS(2441), - [sym__delete_span_start] = ACTIONS(2441), - [sym__edit_comment_span_start] = ACTIONS(2441), - [sym__single_quote_span_open] = ACTIONS(2441), - [sym__double_quote_span_open] = ACTIONS(2441), - [sym__shortcode_open_escaped] = ACTIONS(2441), - [sym__shortcode_open] = ACTIONS(2441), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2441), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2441), - [sym__cite_author_in_text] = ACTIONS(2441), - [sym__cite_suppress_author] = ACTIONS(2441), - [sym__strikeout_open] = ACTIONS(2441), - [sym__subscript_open] = ACTIONS(2441), - [sym__superscript_open] = ACTIONS(2441), - [sym__inline_note_start_token] = ACTIONS(2441), - [sym__strong_emphasis_open_star] = ACTIONS(2441), - [sym__strong_emphasis_open_underscore] = ACTIONS(2441), - [sym__emphasis_open_star] = ACTIONS(2441), - [sym__emphasis_open_underscore] = ACTIONS(2441), - [sym_inline_note_reference] = ACTIONS(2441), - [sym_html_element] = ACTIONS(2441), - [sym__pandoc_lt_str] = ACTIONS(2441), - [sym__pandoc_line_break] = ACTIONS(2441), - [sym_grid_table] = ACTIONS(2441), - [sym__caption_start] = ACTIONS(2441), - }, - [STATE(482)] = { - [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), - [sym__whitespace] = ACTIONS(2445), - [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(2445), - [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(2445), - [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__pandoc_lt_str] = ACTIONS(2445), - [sym__pandoc_line_break] = ACTIONS(2445), - [sym_grid_table] = ACTIONS(2445), - [sym__caption_start] = ACTIONS(2445), - }, - [STATE(483)] = { - [sym_entity_reference] = ACTIONS(2449), - [sym_numeric_character_reference] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_BANG_LBRACK] = ACTIONS(2449), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2449), - [aux_sym_pandoc_str_token1] = ACTIONS(2451), - [anon_sym_PIPE] = ACTIONS(2449), - [sym__whitespace] = ACTIONS(2449), - [sym__line_ending] = ACTIONS(2449), - [sym__soft_line_ending] = ACTIONS(2449), - [sym__block_close] = ACTIONS(2449), - [sym__block_quote_start] = ACTIONS(2449), - [sym_atx_h1_marker] = ACTIONS(2449), - [sym_atx_h2_marker] = ACTIONS(2449), - [sym_atx_h3_marker] = ACTIONS(2449), - [sym_atx_h4_marker] = ACTIONS(2449), - [sym_atx_h5_marker] = ACTIONS(2449), - [sym_atx_h6_marker] = ACTIONS(2449), - [sym__thematic_break] = ACTIONS(2449), - [sym__list_marker_minus] = ACTIONS(2449), - [sym__list_marker_plus] = ACTIONS(2449), - [sym__list_marker_star] = ACTIONS(2449), - [sym__list_marker_parenthesis] = ACTIONS(2449), - [sym__list_marker_dot] = ACTIONS(2449), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_example] = ACTIONS(2449), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2449), - [sym__fenced_code_block_start_backtick] = ACTIONS(2449), - [sym_minus_metadata] = ACTIONS(2449), - [sym__pipe_table_start] = ACTIONS(2449), - [sym__fenced_div_start] = ACTIONS(2449), - [sym_ref_id_specifier] = ACTIONS(2449), - [sym__code_span_start] = ACTIONS(2449), - [sym__html_comment] = ACTIONS(2449), - [sym__autolink] = ACTIONS(2449), - [sym__highlight_span_start] = ACTIONS(2449), - [sym__insert_span_start] = ACTIONS(2449), - [sym__delete_span_start] = ACTIONS(2449), - [sym__edit_comment_span_start] = ACTIONS(2449), - [sym__single_quote_span_open] = ACTIONS(2449), - [sym__double_quote_span_open] = ACTIONS(2449), - [sym__shortcode_open_escaped] = ACTIONS(2449), - [sym__shortcode_open] = ACTIONS(2449), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2449), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2449), - [sym__cite_author_in_text] = ACTIONS(2449), - [sym__cite_suppress_author] = ACTIONS(2449), - [sym__strikeout_open] = ACTIONS(2449), - [sym__subscript_open] = ACTIONS(2449), - [sym__superscript_open] = ACTIONS(2449), - [sym__inline_note_start_token] = ACTIONS(2449), - [sym__strong_emphasis_open_star] = ACTIONS(2449), - [sym__strong_emphasis_open_underscore] = ACTIONS(2449), - [sym__emphasis_open_star] = ACTIONS(2449), - [sym__emphasis_open_underscore] = ACTIONS(2449), - [sym_inline_note_reference] = ACTIONS(2449), - [sym_html_element] = ACTIONS(2449), - [sym__pandoc_lt_str] = ACTIONS(2449), - [sym__pandoc_line_break] = ACTIONS(2449), - [sym_grid_table] = ACTIONS(2449), - [sym__caption_start] = ACTIONS(2449), - }, - [STATE(484)] = { - [sym_entity_reference] = ACTIONS(2453), - [sym_numeric_character_reference] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2453), - [anon_sym_BANG_LBRACK] = ACTIONS(2453), - [anon_sym_DOLLAR] = ACTIONS(2455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2453), - [aux_sym_pandoc_str_token1] = ACTIONS(2455), - [anon_sym_PIPE] = ACTIONS(2453), - [sym__whitespace] = ACTIONS(2453), - [sym__line_ending] = ACTIONS(2453), - [sym__soft_line_ending] = ACTIONS(2453), - [sym__block_close] = ACTIONS(2453), - [sym__block_quote_start] = ACTIONS(2453), - [sym_atx_h1_marker] = ACTIONS(2453), - [sym_atx_h2_marker] = ACTIONS(2453), - [sym_atx_h3_marker] = ACTIONS(2453), - [sym_atx_h4_marker] = ACTIONS(2453), - [sym_atx_h5_marker] = ACTIONS(2453), - [sym_atx_h6_marker] = ACTIONS(2453), - [sym__thematic_break] = ACTIONS(2453), - [sym__list_marker_minus] = ACTIONS(2453), - [sym__list_marker_plus] = ACTIONS(2453), - [sym__list_marker_star] = ACTIONS(2453), - [sym__list_marker_parenthesis] = ACTIONS(2453), - [sym__list_marker_dot] = ACTIONS(2453), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2453), - [sym__list_marker_example] = ACTIONS(2453), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2453), - [sym__fenced_code_block_start_backtick] = ACTIONS(2453), - [sym_minus_metadata] = ACTIONS(2453), - [sym__pipe_table_start] = ACTIONS(2453), - [sym__fenced_div_start] = ACTIONS(2453), - [sym_ref_id_specifier] = ACTIONS(2453), - [sym__code_span_start] = ACTIONS(2453), - [sym__html_comment] = ACTIONS(2453), - [sym__autolink] = ACTIONS(2453), - [sym__highlight_span_start] = ACTIONS(2453), - [sym__insert_span_start] = ACTIONS(2453), - [sym__delete_span_start] = ACTIONS(2453), - [sym__edit_comment_span_start] = ACTIONS(2453), - [sym__single_quote_span_open] = ACTIONS(2453), - [sym__double_quote_span_open] = ACTIONS(2453), - [sym__shortcode_open_escaped] = ACTIONS(2453), - [sym__shortcode_open] = ACTIONS(2453), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2453), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2453), - [sym__cite_author_in_text] = ACTIONS(2453), - [sym__cite_suppress_author] = ACTIONS(2453), - [sym__strikeout_open] = ACTIONS(2453), - [sym__subscript_open] = ACTIONS(2453), - [sym__superscript_open] = ACTIONS(2453), - [sym__inline_note_start_token] = ACTIONS(2453), - [sym__strong_emphasis_open_star] = ACTIONS(2453), - [sym__strong_emphasis_open_underscore] = ACTIONS(2453), - [sym__emphasis_open_star] = ACTIONS(2453), - [sym__emphasis_open_underscore] = ACTIONS(2453), - [sym_inline_note_reference] = ACTIONS(2453), - [sym_html_element] = ACTIONS(2453), - [sym__pandoc_lt_str] = ACTIONS(2453), - [sym__pandoc_line_break] = ACTIONS(2453), - [sym_grid_table] = ACTIONS(2453), - [sym__caption_start] = ACTIONS(2453), - }, - [STATE(485)] = { - [sym_entity_reference] = ACTIONS(2457), - [sym_numeric_character_reference] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_BANG_LBRACK] = ACTIONS(2457), - [anon_sym_DOLLAR] = ACTIONS(2459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2457), - [anon_sym_LBRACE] = ACTIONS(2457), - [aux_sym_pandoc_str_token1] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(2457), - [sym__whitespace] = ACTIONS(2457), - [sym__line_ending] = ACTIONS(2457), - [sym__soft_line_ending] = ACTIONS(2457), - [sym__block_close] = ACTIONS(2457), - [sym__block_quote_start] = ACTIONS(2457), - [sym_atx_h1_marker] = ACTIONS(2457), - [sym_atx_h2_marker] = ACTIONS(2457), - [sym_atx_h3_marker] = ACTIONS(2457), - [sym_atx_h4_marker] = ACTIONS(2457), - [sym_atx_h5_marker] = ACTIONS(2457), - [sym_atx_h6_marker] = ACTIONS(2457), - [sym__thematic_break] = ACTIONS(2457), - [sym__list_marker_minus] = ACTIONS(2457), - [sym__list_marker_plus] = ACTIONS(2457), - [sym__list_marker_star] = ACTIONS(2457), - [sym__list_marker_parenthesis] = ACTIONS(2457), - [sym__list_marker_dot] = ACTIONS(2457), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2457), - [sym__list_marker_example] = ACTIONS(2457), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2457), - [sym__fenced_code_block_start_backtick] = ACTIONS(2457), - [sym_minus_metadata] = ACTIONS(2457), - [sym__pipe_table_start] = ACTIONS(2457), - [sym__fenced_div_start] = ACTIONS(2457), - [sym_ref_id_specifier] = ACTIONS(2457), - [sym__code_span_start] = ACTIONS(2457), - [sym__html_comment] = ACTIONS(2457), - [sym__autolink] = ACTIONS(2457), - [sym__highlight_span_start] = ACTIONS(2457), - [sym__insert_span_start] = ACTIONS(2457), - [sym__delete_span_start] = ACTIONS(2457), - [sym__edit_comment_span_start] = ACTIONS(2457), - [sym__single_quote_span_open] = ACTIONS(2457), - [sym__double_quote_span_open] = ACTIONS(2457), - [sym__shortcode_open_escaped] = ACTIONS(2457), - [sym__shortcode_open] = ACTIONS(2457), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2457), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2457), - [sym__cite_author_in_text] = ACTIONS(2457), - [sym__cite_suppress_author] = ACTIONS(2457), - [sym__strikeout_open] = ACTIONS(2457), - [sym__subscript_open] = ACTIONS(2457), - [sym__superscript_open] = ACTIONS(2457), - [sym__inline_note_start_token] = ACTIONS(2457), - [sym__strong_emphasis_open_star] = ACTIONS(2457), - [sym__strong_emphasis_open_underscore] = ACTIONS(2457), - [sym__emphasis_open_star] = ACTIONS(2457), - [sym__emphasis_open_underscore] = ACTIONS(2457), - [sym_inline_note_reference] = ACTIONS(2457), - [sym_html_element] = ACTIONS(2457), - [sym__pandoc_lt_str] = ACTIONS(2457), - [sym__pandoc_line_break] = ACTIONS(2457), - [sym_grid_table] = ACTIONS(2457), - [sym__caption_start] = ACTIONS(2457), - }, - [STATE(486)] = { - [sym_entity_reference] = ACTIONS(2461), - [sym_numeric_character_reference] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_BANG_LBRACK] = ACTIONS(2461), - [anon_sym_DOLLAR] = ACTIONS(2463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2461), - [anon_sym_LBRACE] = ACTIONS(2461), - [aux_sym_pandoc_str_token1] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2461), - [sym__line_ending] = ACTIONS(2461), - [sym__soft_line_ending] = ACTIONS(2461), - [sym__block_close] = ACTIONS(2461), - [sym__block_quote_start] = ACTIONS(2461), - [sym_atx_h1_marker] = ACTIONS(2461), - [sym_atx_h2_marker] = ACTIONS(2461), - [sym_atx_h3_marker] = ACTIONS(2461), - [sym_atx_h4_marker] = ACTIONS(2461), - [sym_atx_h5_marker] = ACTIONS(2461), - [sym_atx_h6_marker] = ACTIONS(2461), - [sym__thematic_break] = ACTIONS(2461), - [sym__list_marker_minus] = ACTIONS(2461), - [sym__list_marker_plus] = ACTIONS(2461), - [sym__list_marker_star] = ACTIONS(2461), - [sym__list_marker_parenthesis] = ACTIONS(2461), - [sym__list_marker_dot] = ACTIONS(2461), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2461), - [sym__list_marker_example] = ACTIONS(2461), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2461), - [sym__fenced_code_block_start_backtick] = ACTIONS(2461), - [sym_minus_metadata] = ACTIONS(2461), - [sym__pipe_table_start] = ACTIONS(2461), - [sym__fenced_div_start] = ACTIONS(2461), - [sym_ref_id_specifier] = ACTIONS(2461), - [sym__code_span_start] = ACTIONS(2461), - [sym__html_comment] = ACTIONS(2461), - [sym__autolink] = ACTIONS(2461), - [sym__highlight_span_start] = ACTIONS(2461), - [sym__insert_span_start] = ACTIONS(2461), - [sym__delete_span_start] = ACTIONS(2461), - [sym__edit_comment_span_start] = ACTIONS(2461), - [sym__single_quote_span_open] = ACTIONS(2461), - [sym__double_quote_span_open] = ACTIONS(2461), - [sym__shortcode_open_escaped] = ACTIONS(2461), - [sym__shortcode_open] = ACTIONS(2461), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2461), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2461), - [sym__cite_author_in_text] = ACTIONS(2461), - [sym__cite_suppress_author] = ACTIONS(2461), - [sym__strikeout_open] = ACTIONS(2461), - [sym__subscript_open] = ACTIONS(2461), - [sym__superscript_open] = ACTIONS(2461), - [sym__inline_note_start_token] = ACTIONS(2461), - [sym__strong_emphasis_open_star] = ACTIONS(2461), - [sym__strong_emphasis_open_underscore] = ACTIONS(2461), - [sym__emphasis_open_star] = ACTIONS(2461), - [sym__emphasis_open_underscore] = ACTIONS(2461), - [sym_inline_note_reference] = ACTIONS(2461), - [sym_html_element] = ACTIONS(2461), - [sym__pandoc_lt_str] = ACTIONS(2461), - [sym__pandoc_line_break] = ACTIONS(2461), - [sym_grid_table] = ACTIONS(2461), - [sym__caption_start] = ACTIONS(2461), - }, - [STATE(487)] = { - [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), - [sym__whitespace] = ACTIONS(2465), - [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(2465), - [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(2465), - [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__pandoc_lt_str] = ACTIONS(2465), - [sym__pandoc_line_break] = ACTIONS(2465), - [sym_grid_table] = ACTIONS(2465), - [sym__caption_start] = ACTIONS(2465), - }, - [STATE(488)] = { - [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), - [sym__whitespace] = ACTIONS(2469), - [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(2469), - [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(2469), - [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__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__pandoc_lt_str] = ACTIONS(2469), - [sym__pandoc_line_break] = ACTIONS(2469), - [sym_grid_table] = ACTIONS(2469), - [sym__caption_start] = ACTIONS(2469), - }, - [STATE(489)] = { - [sym_entity_reference] = ACTIONS(2353), - [sym_numeric_character_reference] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_BANG_LBRACK] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [aux_sym_pandoc_str_token1] = ACTIONS(2355), - [anon_sym_PIPE] = ACTIONS(2353), - [sym__whitespace] = ACTIONS(2353), - [sym__line_ending] = ACTIONS(2353), - [sym__soft_line_ending] = ACTIONS(2353), - [sym__block_close] = ACTIONS(2353), - [sym__block_quote_start] = ACTIONS(2353), - [sym_atx_h1_marker] = ACTIONS(2353), - [sym_atx_h2_marker] = ACTIONS(2353), - [sym_atx_h3_marker] = ACTIONS(2353), - [sym_atx_h4_marker] = ACTIONS(2353), - [sym_atx_h5_marker] = ACTIONS(2353), - [sym_atx_h6_marker] = ACTIONS(2353), - [sym__thematic_break] = ACTIONS(2353), - [sym__list_marker_minus] = ACTIONS(2353), - [sym__list_marker_plus] = ACTIONS(2353), - [sym__list_marker_star] = ACTIONS(2353), - [sym__list_marker_parenthesis] = ACTIONS(2353), - [sym__list_marker_dot] = ACTIONS(2353), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2353), - [sym__list_marker_example] = ACTIONS(2353), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2353), - [sym__fenced_code_block_start_backtick] = ACTIONS(2353), - [sym_minus_metadata] = ACTIONS(2353), - [sym__pipe_table_start] = ACTIONS(2353), - [sym__fenced_div_start] = ACTIONS(2353), - [sym_ref_id_specifier] = ACTIONS(2353), - [sym__code_span_start] = ACTIONS(2353), - [sym__html_comment] = ACTIONS(2353), - [sym__autolink] = ACTIONS(2353), - [sym__highlight_span_start] = ACTIONS(2353), - [sym__insert_span_start] = ACTIONS(2353), - [sym__delete_span_start] = ACTIONS(2353), - [sym__edit_comment_span_start] = ACTIONS(2353), - [sym__single_quote_span_open] = ACTIONS(2353), - [sym__double_quote_span_open] = ACTIONS(2353), - [sym__shortcode_open_escaped] = ACTIONS(2353), - [sym__shortcode_open] = ACTIONS(2353), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2353), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2353), - [sym__cite_author_in_text] = ACTIONS(2353), - [sym__cite_suppress_author] = ACTIONS(2353), - [sym__strikeout_open] = ACTIONS(2353), - [sym__subscript_open] = ACTIONS(2353), - [sym__superscript_open] = ACTIONS(2353), - [sym__inline_note_start_token] = ACTIONS(2353), - [sym__strong_emphasis_open_star] = ACTIONS(2353), - [sym__strong_emphasis_open_underscore] = ACTIONS(2353), - [sym__emphasis_open_star] = ACTIONS(2353), - [sym__emphasis_open_underscore] = ACTIONS(2353), - [sym_inline_note_reference] = ACTIONS(2353), - [sym_html_element] = ACTIONS(2353), - [sym__pandoc_lt_str] = ACTIONS(2353), - [sym__pandoc_line_break] = ACTIONS(2353), - [sym_grid_table] = ACTIONS(2353), - [sym__caption_start] = ACTIONS(2353), - }, - [STATE(490)] = { - [sym_entity_reference] = ACTIONS(2477), - [sym_numeric_character_reference] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2477), - [anon_sym_BANG_LBRACK] = ACTIONS(2477), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), - [aux_sym_pandoc_str_token1] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(2477), - [sym__whitespace] = ACTIONS(2477), - [sym__line_ending] = ACTIONS(2477), - [sym__soft_line_ending] = ACTIONS(2477), - [sym__block_close] = ACTIONS(2477), - [sym__block_quote_start] = ACTIONS(2477), - [sym_atx_h1_marker] = ACTIONS(2477), - [sym_atx_h2_marker] = ACTIONS(2477), - [sym_atx_h3_marker] = ACTIONS(2477), - [sym_atx_h4_marker] = ACTIONS(2477), - [sym_atx_h5_marker] = ACTIONS(2477), - [sym_atx_h6_marker] = ACTIONS(2477), - [sym__thematic_break] = ACTIONS(2477), - [sym__list_marker_minus] = ACTIONS(2477), - [sym__list_marker_plus] = ACTIONS(2477), - [sym__list_marker_star] = ACTIONS(2477), - [sym__list_marker_parenthesis] = ACTIONS(2477), - [sym__list_marker_dot] = ACTIONS(2477), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2477), - [sym__list_marker_example] = ACTIONS(2477), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2477), - [sym__fenced_code_block_start_backtick] = ACTIONS(2477), - [sym_minus_metadata] = ACTIONS(2477), - [sym__pipe_table_start] = ACTIONS(2477), - [sym__fenced_div_start] = ACTIONS(2477), - [sym_ref_id_specifier] = ACTIONS(2477), - [sym__code_span_start] = ACTIONS(2477), - [sym__html_comment] = ACTIONS(2477), - [sym__autolink] = ACTIONS(2477), - [sym__highlight_span_start] = ACTIONS(2477), - [sym__insert_span_start] = ACTIONS(2477), - [sym__delete_span_start] = ACTIONS(2477), - [sym__edit_comment_span_start] = ACTIONS(2477), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2477), - [sym__shortcode_open_escaped] = ACTIONS(2477), - [sym__shortcode_open] = ACTIONS(2477), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2477), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2477), - [sym__cite_author_in_text] = ACTIONS(2477), - [sym__cite_suppress_author] = ACTIONS(2477), - [sym__strikeout_open] = ACTIONS(2477), - [sym__subscript_open] = ACTIONS(2477), - [sym__superscript_open] = ACTIONS(2477), - [sym__inline_note_start_token] = ACTIONS(2477), - [sym__strong_emphasis_open_star] = ACTIONS(2477), - [sym__strong_emphasis_open_underscore] = ACTIONS(2477), - [sym__emphasis_open_star] = ACTIONS(2477), - [sym__emphasis_open_underscore] = ACTIONS(2477), - [sym_inline_note_reference] = ACTIONS(2477), - [sym_html_element] = ACTIONS(2477), - [sym__pandoc_lt_str] = ACTIONS(2477), - [sym__pandoc_line_break] = ACTIONS(2477), - [sym_grid_table] = ACTIONS(2477), - [sym__caption_start] = ACTIONS(2477), - }, - [STATE(491)] = { - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2481), - [anon_sym_BANG_LBRACK] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2481), - [aux_sym_pandoc_str_token1] = ACTIONS(2483), - [anon_sym_PIPE] = ACTIONS(2481), - [sym__whitespace] = ACTIONS(2481), - [sym__line_ending] = ACTIONS(2481), - [sym__soft_line_ending] = ACTIONS(2481), - [sym__block_close] = ACTIONS(2481), - [sym__block_quote_start] = ACTIONS(2481), - [sym_atx_h1_marker] = ACTIONS(2481), - [sym_atx_h2_marker] = ACTIONS(2481), - [sym_atx_h3_marker] = ACTIONS(2481), - [sym_atx_h4_marker] = ACTIONS(2481), - [sym_atx_h5_marker] = ACTIONS(2481), - [sym_atx_h6_marker] = ACTIONS(2481), - [sym__thematic_break] = ACTIONS(2481), - [sym__list_marker_minus] = ACTIONS(2481), - [sym__list_marker_plus] = ACTIONS(2481), - [sym__list_marker_star] = ACTIONS(2481), - [sym__list_marker_parenthesis] = ACTIONS(2481), - [sym__list_marker_dot] = ACTIONS(2481), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2481), - [sym__list_marker_example] = ACTIONS(2481), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2481), - [sym__fenced_code_block_start_backtick] = ACTIONS(2481), - [sym_minus_metadata] = ACTIONS(2481), - [sym__pipe_table_start] = ACTIONS(2481), - [sym__fenced_div_start] = ACTIONS(2481), - [sym_ref_id_specifier] = ACTIONS(2481), - [sym__code_span_start] = ACTIONS(2481), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2481), - [sym__insert_span_start] = ACTIONS(2481), - [sym__delete_span_start] = ACTIONS(2481), - [sym__edit_comment_span_start] = ACTIONS(2481), - [sym__single_quote_span_open] = ACTIONS(2481), - [sym__double_quote_span_open] = ACTIONS(2481), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2481), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2481), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2481), - [sym__cite_author_in_text] = ACTIONS(2481), - [sym__cite_suppress_author] = ACTIONS(2481), - [sym__strikeout_open] = ACTIONS(2481), - [sym__subscript_open] = ACTIONS(2481), - [sym__superscript_open] = ACTIONS(2481), - [sym__inline_note_start_token] = ACTIONS(2481), - [sym__strong_emphasis_open_star] = ACTIONS(2481), - [sym__strong_emphasis_open_underscore] = ACTIONS(2481), - [sym__emphasis_open_star] = ACTIONS(2481), - [sym__emphasis_open_underscore] = ACTIONS(2481), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - [sym__pandoc_lt_str] = ACTIONS(2481), - [sym__pandoc_line_break] = ACTIONS(2481), - [sym_grid_table] = ACTIONS(2481), - [sym__caption_start] = ACTIONS(2481), - }, [STATE(492)] = { - [sym_entity_reference] = ACTIONS(2485), - [sym_numeric_character_reference] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2485), - [aux_sym_pandoc_str_token1] = ACTIONS(2487), - [anon_sym_PIPE] = ACTIONS(2485), - [sym__whitespace] = ACTIONS(2485), - [sym__line_ending] = ACTIONS(2485), - [sym__soft_line_ending] = ACTIONS(2485), - [sym__block_close] = ACTIONS(2485), - [sym__block_quote_start] = ACTIONS(2485), - [sym_atx_h1_marker] = ACTIONS(2485), - [sym_atx_h2_marker] = ACTIONS(2485), - [sym_atx_h3_marker] = ACTIONS(2485), - [sym_atx_h4_marker] = ACTIONS(2485), - [sym_atx_h5_marker] = ACTIONS(2485), - [sym_atx_h6_marker] = ACTIONS(2485), - [sym__thematic_break] = ACTIONS(2485), - [sym__list_marker_minus] = ACTIONS(2485), - [sym__list_marker_plus] = ACTIONS(2485), - [sym__list_marker_star] = ACTIONS(2485), - [sym__list_marker_parenthesis] = ACTIONS(2485), - [sym__list_marker_dot] = ACTIONS(2485), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2485), - [sym__list_marker_example] = ACTIONS(2485), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2485), - [sym__fenced_code_block_start_backtick] = ACTIONS(2485), - [sym_minus_metadata] = ACTIONS(2485), - [sym__pipe_table_start] = ACTIONS(2485), - [sym__fenced_div_start] = ACTIONS(2485), - [sym_ref_id_specifier] = ACTIONS(2485), - [sym__code_span_start] = ACTIONS(2485), - [sym__html_comment] = ACTIONS(2485), - [sym__autolink] = ACTIONS(2485), - [sym__highlight_span_start] = ACTIONS(2485), - [sym__insert_span_start] = ACTIONS(2485), - [sym__delete_span_start] = ACTIONS(2485), - [sym__edit_comment_span_start] = ACTIONS(2485), - [sym__single_quote_span_open] = ACTIONS(2485), - [sym__double_quote_span_open] = ACTIONS(2485), - [sym__shortcode_open_escaped] = ACTIONS(2485), - [sym__shortcode_open] = ACTIONS(2485), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2485), - [sym__cite_author_in_text] = ACTIONS(2485), - [sym__cite_suppress_author] = ACTIONS(2485), - [sym__strikeout_open] = ACTIONS(2485), - [sym__subscript_open] = ACTIONS(2485), - [sym__superscript_open] = ACTIONS(2485), - [sym__inline_note_start_token] = ACTIONS(2485), - [sym__strong_emphasis_open_star] = ACTIONS(2485), - [sym__strong_emphasis_open_underscore] = ACTIONS(2485), - [sym__emphasis_open_star] = ACTIONS(2485), - [sym__emphasis_open_underscore] = ACTIONS(2485), - [sym_inline_note_reference] = ACTIONS(2485), - [sym_html_element] = ACTIONS(2485), - [sym__pandoc_lt_str] = ACTIONS(2485), - [sym__pandoc_line_break] = ACTIONS(2485), - [sym_grid_table] = ACTIONS(2485), - [sym__caption_start] = ACTIONS(2485), + [ts_builtin_sym_end] = ACTIONS(2549), + [sym_entity_reference] = ACTIONS(2549), + [sym_numeric_character_reference] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_BANG_LBRACK] = ACTIONS(2549), + [anon_sym_DOLLAR] = ACTIONS(2551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2549), + [aux_sym_pandoc_str_token1] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2549), + [sym__whitespace] = ACTIONS(2549), + [sym__line_ending] = ACTIONS(2549), + [sym__soft_line_ending] = ACTIONS(2549), + [sym__block_quote_start] = ACTIONS(2549), + [sym_atx_h1_marker] = ACTIONS(2549), + [sym_atx_h2_marker] = ACTIONS(2549), + [sym_atx_h3_marker] = ACTIONS(2549), + [sym_atx_h4_marker] = ACTIONS(2549), + [sym_atx_h5_marker] = ACTIONS(2549), + [sym_atx_h6_marker] = ACTIONS(2549), + [sym__thematic_break] = ACTIONS(2549), + [sym__list_marker_minus] = ACTIONS(2549), + [sym__list_marker_plus] = ACTIONS(2549), + [sym__list_marker_star] = ACTIONS(2549), + [sym__list_marker_parenthesis] = ACTIONS(2549), + [sym__list_marker_dot] = ACTIONS(2549), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2549), + [sym__list_marker_example] = ACTIONS(2549), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2549), + [sym__fenced_code_block_start_backtick] = ACTIONS(2549), + [sym__minus_metadata_start] = ACTIONS(2549), + [sym__pipe_table_start] = ACTIONS(2549), + [sym__fenced_div_start] = ACTIONS(2549), + [sym_ref_id_specifier] = ACTIONS(2549), + [sym__code_span_start] = ACTIONS(2549), + [sym__html_comment] = ACTIONS(2549), + [sym__autolink] = ACTIONS(2549), + [sym__highlight_span_start] = ACTIONS(2549), + [sym__insert_span_start] = ACTIONS(2549), + [sym__delete_span_start] = ACTIONS(2549), + [sym__edit_comment_span_start] = ACTIONS(2549), + [sym__single_quote_span_open] = ACTIONS(2549), + [sym__double_quote_span_open] = ACTIONS(2549), + [sym__shortcode_open_escaped] = ACTIONS(2549), + [sym__shortcode_open] = ACTIONS(2549), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2549), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), + [sym__cite_author_in_text] = ACTIONS(2549), + [sym__cite_suppress_author] = ACTIONS(2549), + [sym__strikeout_open] = ACTIONS(2549), + [sym__subscript_open] = ACTIONS(2549), + [sym__superscript_open] = ACTIONS(2549), + [sym__inline_note_start_token] = ACTIONS(2549), + [sym__strong_emphasis_open_star] = ACTIONS(2549), + [sym__strong_emphasis_open_underscore] = ACTIONS(2549), + [sym__emphasis_open_star] = ACTIONS(2549), + [sym__emphasis_open_underscore] = ACTIONS(2549), + [sym_inline_note_reference] = ACTIONS(2549), + [sym_html_element] = ACTIONS(2549), + [sym__pandoc_lt_str] = ACTIONS(2549), + [sym__pandoc_line_break] = ACTIONS(2549), + [sym_grid_table] = ACTIONS(2549), + [sym__caption_start] = ACTIONS(2549), }, [STATE(493)] = { - [sym_entity_reference] = ACTIONS(2489), - [sym_numeric_character_reference] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_BANG_LBRACK] = ACTIONS(2489), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(2489), - [aux_sym_pandoc_str_token1] = ACTIONS(2491), - [anon_sym_PIPE] = ACTIONS(2489), - [sym__whitespace] = ACTIONS(2489), - [sym__line_ending] = ACTIONS(2489), - [sym__soft_line_ending] = ACTIONS(2489), - [sym__block_close] = ACTIONS(2489), - [sym__block_quote_start] = ACTIONS(2489), - [sym_atx_h1_marker] = ACTIONS(2489), - [sym_atx_h2_marker] = ACTIONS(2489), - [sym_atx_h3_marker] = ACTIONS(2489), - [sym_atx_h4_marker] = ACTIONS(2489), - [sym_atx_h5_marker] = ACTIONS(2489), - [sym_atx_h6_marker] = ACTIONS(2489), - [sym__thematic_break] = ACTIONS(2489), - [sym__list_marker_minus] = ACTIONS(2489), - [sym__list_marker_plus] = ACTIONS(2489), - [sym__list_marker_star] = ACTIONS(2489), - [sym__list_marker_parenthesis] = ACTIONS(2489), - [sym__list_marker_dot] = ACTIONS(2489), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2489), - [sym__list_marker_example] = ACTIONS(2489), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2489), - [sym__fenced_code_block_start_backtick] = ACTIONS(2489), - [sym_minus_metadata] = ACTIONS(2489), - [sym__pipe_table_start] = ACTIONS(2489), - [sym__fenced_div_start] = ACTIONS(2489), - [sym_ref_id_specifier] = ACTIONS(2489), - [sym__code_span_start] = ACTIONS(2489), - [sym__html_comment] = ACTIONS(2489), - [sym__autolink] = ACTIONS(2489), - [sym__highlight_span_start] = ACTIONS(2489), - [sym__insert_span_start] = ACTIONS(2489), - [sym__delete_span_start] = ACTIONS(2489), - [sym__edit_comment_span_start] = ACTIONS(2489), - [sym__single_quote_span_open] = ACTIONS(2489), - [sym__double_quote_span_open] = ACTIONS(2489), - [sym__shortcode_open_escaped] = ACTIONS(2489), - [sym__shortcode_open] = ACTIONS(2489), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2489), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2489), - [sym__strikeout_open] = ACTIONS(2489), - [sym__subscript_open] = ACTIONS(2489), - [sym__superscript_open] = ACTIONS(2489), - [sym__inline_note_start_token] = ACTIONS(2489), - [sym__strong_emphasis_open_star] = ACTIONS(2489), - [sym__strong_emphasis_open_underscore] = ACTIONS(2489), - [sym__emphasis_open_star] = ACTIONS(2489), - [sym__emphasis_open_underscore] = ACTIONS(2489), - [sym_inline_note_reference] = ACTIONS(2489), - [sym_html_element] = ACTIONS(2489), - [sym__pandoc_lt_str] = ACTIONS(2489), - [sym__pandoc_line_break] = ACTIONS(2489), - [sym_grid_table] = ACTIONS(2489), - [sym__caption_start] = ACTIONS(2489), + [ts_builtin_sym_end] = ACTIONS(2787), + [sym_entity_reference] = ACTIONS(2787), + [sym_numeric_character_reference] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_BANG_LBRACK] = ACTIONS(2787), + [anon_sym_DOLLAR] = ACTIONS(2789), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2787), + [aux_sym_pandoc_str_token1] = ACTIONS(2789), + [anon_sym_PIPE] = ACTIONS(2787), + [sym__whitespace] = ACTIONS(2787), + [sym__line_ending] = ACTIONS(2787), + [sym__soft_line_ending] = ACTIONS(2787), + [sym__block_quote_start] = ACTIONS(2787), + [sym_atx_h1_marker] = ACTIONS(2787), + [sym_atx_h2_marker] = ACTIONS(2787), + [sym_atx_h3_marker] = ACTIONS(2787), + [sym_atx_h4_marker] = ACTIONS(2787), + [sym_atx_h5_marker] = ACTIONS(2787), + [sym_atx_h6_marker] = ACTIONS(2787), + [sym__thematic_break] = ACTIONS(2787), + [sym__list_marker_minus] = ACTIONS(2787), + [sym__list_marker_plus] = ACTIONS(2787), + [sym__list_marker_star] = ACTIONS(2787), + [sym__list_marker_parenthesis] = ACTIONS(2787), + [sym__list_marker_dot] = ACTIONS(2787), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_example] = ACTIONS(2787), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2787), + [sym__fenced_code_block_start_backtick] = ACTIONS(2787), + [sym__minus_metadata_start] = ACTIONS(2787), + [sym__pipe_table_start] = ACTIONS(2787), + [sym__fenced_div_start] = ACTIONS(2787), + [sym_ref_id_specifier] = ACTIONS(2787), + [sym__code_span_start] = ACTIONS(2787), + [sym__html_comment] = ACTIONS(2787), + [sym__autolink] = ACTIONS(2787), + [sym__highlight_span_start] = ACTIONS(2787), + [sym__insert_span_start] = ACTIONS(2787), + [sym__delete_span_start] = ACTIONS(2787), + [sym__edit_comment_span_start] = ACTIONS(2787), + [sym__single_quote_span_open] = ACTIONS(2787), + [sym__double_quote_span_open] = ACTIONS(2787), + [sym__shortcode_open_escaped] = ACTIONS(2787), + [sym__shortcode_open] = ACTIONS(2787), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2787), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2787), + [sym__cite_author_in_text] = ACTIONS(2787), + [sym__cite_suppress_author] = ACTIONS(2787), + [sym__strikeout_open] = ACTIONS(2787), + [sym__subscript_open] = ACTIONS(2787), + [sym__superscript_open] = ACTIONS(2787), + [sym__inline_note_start_token] = ACTIONS(2787), + [sym__strong_emphasis_open_star] = ACTIONS(2787), + [sym__strong_emphasis_open_underscore] = ACTIONS(2787), + [sym__emphasis_open_star] = ACTIONS(2787), + [sym__emphasis_open_underscore] = ACTIONS(2787), + [sym_inline_note_reference] = ACTIONS(2787), + [sym_html_element] = ACTIONS(2787), + [sym__pandoc_lt_str] = ACTIONS(2787), + [sym__pandoc_line_break] = ACTIONS(2787), + [sym_grid_table] = ACTIONS(2787), + [sym__caption_start] = ACTIONS(2787), }, [STATE(494)] = { - [sym_entity_reference] = ACTIONS(2493), - [sym_numeric_character_reference] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_BANG_LBRACK] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2493), - [sym__whitespace] = ACTIONS(2493), - [sym__line_ending] = ACTIONS(2493), - [sym__soft_line_ending] = ACTIONS(2493), - [sym__block_close] = ACTIONS(2493), - [sym__block_quote_start] = ACTIONS(2493), - [sym_atx_h1_marker] = ACTIONS(2493), - [sym_atx_h2_marker] = ACTIONS(2493), - [sym_atx_h3_marker] = ACTIONS(2493), - [sym_atx_h4_marker] = ACTIONS(2493), - [sym_atx_h5_marker] = ACTIONS(2493), - [sym_atx_h6_marker] = ACTIONS(2493), - [sym__thematic_break] = ACTIONS(2493), - [sym__list_marker_minus] = ACTIONS(2493), - [sym__list_marker_plus] = ACTIONS(2493), - [sym__list_marker_star] = ACTIONS(2493), - [sym__list_marker_parenthesis] = ACTIONS(2493), - [sym__list_marker_dot] = ACTIONS(2493), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2493), - [sym__list_marker_example] = ACTIONS(2493), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2493), - [sym__fenced_code_block_start_backtick] = ACTIONS(2493), - [sym_minus_metadata] = ACTIONS(2493), - [sym__pipe_table_start] = ACTIONS(2493), - [sym__fenced_div_start] = ACTIONS(2493), - [sym_ref_id_specifier] = ACTIONS(2493), - [sym__code_span_start] = ACTIONS(2493), - [sym__html_comment] = ACTIONS(2493), - [sym__autolink] = ACTIONS(2493), - [sym__highlight_span_start] = ACTIONS(2493), - [sym__insert_span_start] = ACTIONS(2493), - [sym__delete_span_start] = ACTIONS(2493), - [sym__edit_comment_span_start] = ACTIONS(2493), - [sym__single_quote_span_open] = ACTIONS(2493), - [sym__double_quote_span_open] = ACTIONS(2493), - [sym__shortcode_open_escaped] = ACTIONS(2493), - [sym__shortcode_open] = ACTIONS(2493), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2493), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2493), - [sym__cite_author_in_text] = ACTIONS(2493), - [sym__cite_suppress_author] = ACTIONS(2493), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2493), - [sym__superscript_open] = ACTIONS(2493), - [sym__inline_note_start_token] = ACTIONS(2493), - [sym__strong_emphasis_open_star] = ACTIONS(2493), - [sym__strong_emphasis_open_underscore] = ACTIONS(2493), - [sym__emphasis_open_star] = ACTIONS(2493), - [sym__emphasis_open_underscore] = ACTIONS(2493), - [sym_inline_note_reference] = ACTIONS(2493), - [sym_html_element] = ACTIONS(2493), - [sym__pandoc_lt_str] = ACTIONS(2493), - [sym__pandoc_line_break] = ACTIONS(2493), - [sym_grid_table] = ACTIONS(2493), - [sym__caption_start] = ACTIONS(2493), + [sym_entity_reference] = ACTIONS(2545), + [sym_numeric_character_reference] = ACTIONS(2545), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_BANG_LBRACK] = ACTIONS(2545), + [anon_sym_DOLLAR] = ACTIONS(2547), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2545), + [anon_sym_LBRACE] = ACTIONS(2545), + [aux_sym_pandoc_str_token1] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2545), + [sym__whitespace] = ACTIONS(2545), + [sym__line_ending] = ACTIONS(2545), + [sym__soft_line_ending] = ACTIONS(2545), + [sym__block_close] = ACTIONS(2545), + [sym__block_quote_start] = ACTIONS(2545), + [sym_atx_h1_marker] = ACTIONS(2545), + [sym_atx_h2_marker] = ACTIONS(2545), + [sym_atx_h3_marker] = ACTIONS(2545), + [sym_atx_h4_marker] = ACTIONS(2545), + [sym_atx_h5_marker] = ACTIONS(2545), + [sym_atx_h6_marker] = ACTIONS(2545), + [sym__thematic_break] = ACTIONS(2545), + [sym__list_marker_minus] = ACTIONS(2545), + [sym__list_marker_plus] = ACTIONS(2545), + [sym__list_marker_star] = ACTIONS(2545), + [sym__list_marker_parenthesis] = ACTIONS(2545), + [sym__list_marker_dot] = ACTIONS(2545), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2545), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2545), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2545), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2545), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2545), + [sym__list_marker_example] = ACTIONS(2545), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2545), + [sym__fenced_code_block_start_backtick] = ACTIONS(2545), + [sym__minus_metadata_start] = ACTIONS(2545), + [sym__pipe_table_start] = ACTIONS(2545), + [sym__fenced_div_start] = ACTIONS(2545), + [sym_ref_id_specifier] = ACTIONS(2545), + [sym__code_span_start] = ACTIONS(2545), + [sym__html_comment] = ACTIONS(2545), + [sym__autolink] = ACTIONS(2545), + [sym__highlight_span_start] = ACTIONS(2545), + [sym__insert_span_start] = ACTIONS(2545), + [sym__delete_span_start] = ACTIONS(2545), + [sym__edit_comment_span_start] = ACTIONS(2545), + [sym__single_quote_span_open] = ACTIONS(2545), + [sym__double_quote_span_open] = ACTIONS(2545), + [sym__shortcode_open_escaped] = ACTIONS(2545), + [sym__shortcode_open] = ACTIONS(2545), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2545), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2545), + [sym__cite_author_in_text] = ACTIONS(2545), + [sym__cite_suppress_author] = ACTIONS(2545), + [sym__strikeout_open] = ACTIONS(2545), + [sym__subscript_open] = ACTIONS(2545), + [sym__superscript_open] = ACTIONS(2545), + [sym__inline_note_start_token] = ACTIONS(2545), + [sym__strong_emphasis_open_star] = ACTIONS(2545), + [sym__strong_emphasis_open_underscore] = ACTIONS(2545), + [sym__emphasis_open_star] = ACTIONS(2545), + [sym__emphasis_open_underscore] = ACTIONS(2545), + [sym_inline_note_reference] = ACTIONS(2545), + [sym_html_element] = ACTIONS(2545), + [sym__pandoc_lt_str] = ACTIONS(2545), + [sym__pandoc_line_break] = ACTIONS(2545), + [sym_grid_table] = ACTIONS(2545), + [sym__caption_start] = ACTIONS(2545), }, [STATE(495)] = { - [sym_entity_reference] = ACTIONS(2497), - [sym_numeric_character_reference] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_BANG_LBRACK] = ACTIONS(2497), - [anon_sym_DOLLAR] = ACTIONS(2499), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2497), - [aux_sym_pandoc_str_token1] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2497), - [sym__whitespace] = ACTIONS(2497), - [sym__line_ending] = ACTIONS(2497), - [sym__soft_line_ending] = ACTIONS(2497), - [sym__block_close] = ACTIONS(2497), - [sym__block_quote_start] = ACTIONS(2497), - [sym_atx_h1_marker] = ACTIONS(2497), - [sym_atx_h2_marker] = ACTIONS(2497), - [sym_atx_h3_marker] = ACTIONS(2497), - [sym_atx_h4_marker] = ACTIONS(2497), - [sym_atx_h5_marker] = ACTIONS(2497), - [sym_atx_h6_marker] = ACTIONS(2497), - [sym__thematic_break] = ACTIONS(2497), - [sym__list_marker_minus] = ACTIONS(2497), - [sym__list_marker_plus] = ACTIONS(2497), - [sym__list_marker_star] = ACTIONS(2497), - [sym__list_marker_parenthesis] = ACTIONS(2497), - [sym__list_marker_dot] = ACTIONS(2497), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2497), - [sym__list_marker_example] = ACTIONS(2497), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2497), - [sym__fenced_code_block_start_backtick] = ACTIONS(2497), - [sym_minus_metadata] = ACTIONS(2497), - [sym__pipe_table_start] = ACTIONS(2497), - [sym__fenced_div_start] = ACTIONS(2497), - [sym_ref_id_specifier] = ACTIONS(2497), - [sym__code_span_start] = ACTIONS(2497), - [sym__html_comment] = ACTIONS(2497), - [sym__autolink] = ACTIONS(2497), - [sym__highlight_span_start] = ACTIONS(2497), - [sym__insert_span_start] = ACTIONS(2497), - [sym__delete_span_start] = ACTIONS(2497), - [sym__edit_comment_span_start] = ACTIONS(2497), - [sym__single_quote_span_open] = ACTIONS(2497), - [sym__double_quote_span_open] = ACTIONS(2497), - [sym__shortcode_open_escaped] = ACTIONS(2497), - [sym__shortcode_open] = ACTIONS(2497), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2497), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2497), - [sym__cite_author_in_text] = ACTIONS(2497), - [sym__cite_suppress_author] = ACTIONS(2497), - [sym__strikeout_open] = ACTIONS(2497), - [sym__subscript_open] = ACTIONS(2497), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2497), - [sym__strong_emphasis_open_star] = ACTIONS(2497), - [sym__strong_emphasis_open_underscore] = ACTIONS(2497), - [sym__emphasis_open_star] = ACTIONS(2497), - [sym__emphasis_open_underscore] = ACTIONS(2497), - [sym_inline_note_reference] = ACTIONS(2497), - [sym_html_element] = ACTIONS(2497), - [sym__pandoc_lt_str] = ACTIONS(2497), - [sym__pandoc_line_break] = ACTIONS(2497), - [sym_grid_table] = ACTIONS(2497), - [sym__caption_start] = ACTIONS(2497), + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_entity_reference] = ACTIONS(2379), + [sym_numeric_character_reference] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_BANG_LBRACK] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(2381), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [aux_sym_pandoc_str_token1] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2379), + [sym__whitespace] = ACTIONS(2379), + [sym__line_ending] = ACTIONS(2379), + [sym__soft_line_ending] = ACTIONS(2379), + [sym__block_quote_start] = ACTIONS(2379), + [sym_atx_h1_marker] = ACTIONS(2379), + [sym_atx_h2_marker] = ACTIONS(2379), + [sym_atx_h3_marker] = ACTIONS(2379), + [sym_atx_h4_marker] = ACTIONS(2379), + [sym_atx_h5_marker] = ACTIONS(2379), + [sym_atx_h6_marker] = ACTIONS(2379), + [sym__thematic_break] = ACTIONS(2379), + [sym__list_marker_minus] = ACTIONS(2379), + [sym__list_marker_plus] = ACTIONS(2379), + [sym__list_marker_star] = ACTIONS(2379), + [sym__list_marker_parenthesis] = ACTIONS(2379), + [sym__list_marker_dot] = ACTIONS(2379), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_example] = ACTIONS(2379), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2379), + [sym__fenced_code_block_start_backtick] = ACTIONS(2379), + [sym__minus_metadata_start] = ACTIONS(2379), + [sym__pipe_table_start] = ACTIONS(2379), + [sym__fenced_div_start] = ACTIONS(2379), + [sym_ref_id_specifier] = ACTIONS(2379), + [sym__code_span_start] = ACTIONS(2379), + [sym__html_comment] = ACTIONS(2379), + [sym__autolink] = ACTIONS(2379), + [sym__highlight_span_start] = ACTIONS(2379), + [sym__insert_span_start] = ACTIONS(2379), + [sym__delete_span_start] = ACTIONS(2379), + [sym__edit_comment_span_start] = ACTIONS(2379), + [sym__single_quote_span_open] = ACTIONS(2379), + [sym__double_quote_span_open] = ACTIONS(2379), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2379), + [sym__cite_author_in_text] = ACTIONS(2379), + [sym__cite_suppress_author] = ACTIONS(2379), + [sym__strikeout_open] = ACTIONS(2379), + [sym__subscript_open] = ACTIONS(2379), + [sym__superscript_open] = ACTIONS(2379), + [sym__inline_note_start_token] = ACTIONS(2379), + [sym__strong_emphasis_open_star] = ACTIONS(2379), + [sym__strong_emphasis_open_underscore] = ACTIONS(2379), + [sym__emphasis_open_star] = ACTIONS(2379), + [sym__emphasis_open_underscore] = ACTIONS(2379), + [sym_inline_note_reference] = ACTIONS(2379), + [sym_html_element] = ACTIONS(2379), + [sym__pandoc_lt_str] = ACTIONS(2379), + [sym__pandoc_line_break] = ACTIONS(2379), + [sym_grid_table] = ACTIONS(2379), + [sym__caption_start] = ACTIONS(2379), }, [STATE(496)] = { - [sym_entity_reference] = ACTIONS(2501), - [sym_numeric_character_reference] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_BANG_LBRACK] = ACTIONS(2501), - [anon_sym_DOLLAR] = ACTIONS(2503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [aux_sym_pandoc_str_token1] = ACTIONS(2503), - [anon_sym_PIPE] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2501), - [sym__line_ending] = ACTIONS(2501), - [sym__soft_line_ending] = ACTIONS(2501), - [sym__block_close] = ACTIONS(2501), - [sym__block_quote_start] = ACTIONS(2501), - [sym_atx_h1_marker] = ACTIONS(2501), - [sym_atx_h2_marker] = ACTIONS(2501), - [sym_atx_h3_marker] = ACTIONS(2501), - [sym_atx_h4_marker] = ACTIONS(2501), - [sym_atx_h5_marker] = ACTIONS(2501), - [sym_atx_h6_marker] = ACTIONS(2501), - [sym__thematic_break] = ACTIONS(2501), - [sym__list_marker_minus] = ACTIONS(2501), - [sym__list_marker_plus] = ACTIONS(2501), - [sym__list_marker_star] = ACTIONS(2501), - [sym__list_marker_parenthesis] = ACTIONS(2501), - [sym__list_marker_dot] = ACTIONS(2501), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2501), - [sym__list_marker_example] = ACTIONS(2501), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2501), - [sym__fenced_code_block_start_backtick] = ACTIONS(2501), - [sym_minus_metadata] = ACTIONS(2501), - [sym__pipe_table_start] = ACTIONS(2501), - [sym__fenced_div_start] = ACTIONS(2501), - [sym_ref_id_specifier] = ACTIONS(2501), - [sym__code_span_start] = ACTIONS(2501), - [sym__html_comment] = ACTIONS(2501), - [sym__autolink] = ACTIONS(2501), - [sym__highlight_span_start] = ACTIONS(2501), - [sym__insert_span_start] = ACTIONS(2501), - [sym__delete_span_start] = ACTIONS(2501), - [sym__edit_comment_span_start] = ACTIONS(2501), - [sym__single_quote_span_open] = ACTIONS(2501), - [sym__double_quote_span_open] = ACTIONS(2501), - [sym__shortcode_open_escaped] = ACTIONS(2501), - [sym__shortcode_open] = ACTIONS(2501), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2501), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2501), - [sym__cite_author_in_text] = ACTIONS(2501), - [sym__cite_suppress_author] = ACTIONS(2501), - [sym__strikeout_open] = ACTIONS(2501), - [sym__subscript_open] = ACTIONS(2501), - [sym__superscript_open] = ACTIONS(2501), - [sym__inline_note_start_token] = ACTIONS(2501), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2501), - [sym__emphasis_open_star] = ACTIONS(2501), - [sym__emphasis_open_underscore] = ACTIONS(2501), - [sym_inline_note_reference] = ACTIONS(2501), - [sym_html_element] = ACTIONS(2501), - [sym__pandoc_lt_str] = ACTIONS(2501), - [sym__pandoc_line_break] = ACTIONS(2501), - [sym_grid_table] = ACTIONS(2501), - [sym__caption_start] = ACTIONS(2501), + [sym_entity_reference] = ACTIONS(2573), + [sym_numeric_character_reference] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_BANG_LBRACK] = ACTIONS(2573), + [anon_sym_DOLLAR] = ACTIONS(2575), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2573), + [aux_sym_pandoc_str_token1] = ACTIONS(2575), + [anon_sym_PIPE] = ACTIONS(2573), + [sym__whitespace] = ACTIONS(2573), + [sym__line_ending] = ACTIONS(2573), + [sym__soft_line_ending] = ACTIONS(2573), + [sym__block_close] = ACTIONS(2573), + [sym__block_quote_start] = ACTIONS(2573), + [sym_atx_h1_marker] = ACTIONS(2573), + [sym_atx_h2_marker] = ACTIONS(2573), + [sym_atx_h3_marker] = ACTIONS(2573), + [sym_atx_h4_marker] = ACTIONS(2573), + [sym_atx_h5_marker] = ACTIONS(2573), + [sym_atx_h6_marker] = ACTIONS(2573), + [sym__thematic_break] = ACTIONS(2573), + [sym__list_marker_minus] = ACTIONS(2573), + [sym__list_marker_plus] = ACTIONS(2573), + [sym__list_marker_star] = ACTIONS(2573), + [sym__list_marker_parenthesis] = ACTIONS(2573), + [sym__list_marker_dot] = ACTIONS(2573), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2573), + [sym__list_marker_example] = ACTIONS(2573), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2573), + [sym__fenced_code_block_start_backtick] = ACTIONS(2573), + [sym__minus_metadata_start] = ACTIONS(2573), + [sym__pipe_table_start] = ACTIONS(2573), + [sym__fenced_div_start] = ACTIONS(2573), + [sym_ref_id_specifier] = ACTIONS(2573), + [sym__code_span_start] = ACTIONS(2573), + [sym__html_comment] = ACTIONS(2573), + [sym__autolink] = ACTIONS(2573), + [sym__highlight_span_start] = ACTIONS(2573), + [sym__insert_span_start] = ACTIONS(2573), + [sym__delete_span_start] = ACTIONS(2573), + [sym__edit_comment_span_start] = ACTIONS(2573), + [sym__single_quote_span_open] = ACTIONS(2573), + [sym__double_quote_span_open] = ACTIONS(2573), + [sym__shortcode_open_escaped] = ACTIONS(2573), + [sym__shortcode_open] = ACTIONS(2573), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2573), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2573), + [sym__cite_author_in_text] = ACTIONS(2573), + [sym__cite_suppress_author] = ACTIONS(2573), + [sym__strikeout_open] = ACTIONS(2573), + [sym__subscript_open] = ACTIONS(2573), + [sym__superscript_open] = ACTIONS(2573), + [sym__inline_note_start_token] = ACTIONS(2573), + [sym__strong_emphasis_open_star] = ACTIONS(2573), + [sym__strong_emphasis_open_underscore] = ACTIONS(2573), + [sym__emphasis_open_star] = ACTIONS(2573), + [sym__emphasis_open_underscore] = ACTIONS(2573), + [sym_inline_note_reference] = ACTIONS(2573), + [sym_html_element] = ACTIONS(2573), + [sym__pandoc_lt_str] = ACTIONS(2573), + [sym__pandoc_line_break] = ACTIONS(2573), + [sym_grid_table] = ACTIONS(2573), + [sym__caption_start] = ACTIONS(2573), }, [STATE(497)] = { - [sym_entity_reference] = ACTIONS(2505), - [sym_numeric_character_reference] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_BANG_LBRACK] = ACTIONS(2505), - [anon_sym_DOLLAR] = ACTIONS(2507), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [aux_sym_pandoc_str_token1] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2505), - [sym__whitespace] = ACTIONS(2505), - [sym__line_ending] = ACTIONS(2505), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__block_close] = ACTIONS(2505), - [sym__block_quote_start] = ACTIONS(2505), - [sym_atx_h1_marker] = ACTIONS(2505), - [sym_atx_h2_marker] = ACTIONS(2505), - [sym_atx_h3_marker] = ACTIONS(2505), - [sym_atx_h4_marker] = ACTIONS(2505), - [sym_atx_h5_marker] = ACTIONS(2505), - [sym_atx_h6_marker] = ACTIONS(2505), - [sym__thematic_break] = ACTIONS(2505), - [sym__list_marker_minus] = ACTIONS(2505), - [sym__list_marker_plus] = ACTIONS(2505), - [sym__list_marker_star] = ACTIONS(2505), - [sym__list_marker_parenthesis] = ACTIONS(2505), - [sym__list_marker_dot] = ACTIONS(2505), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2505), - [sym__list_marker_example] = ACTIONS(2505), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2505), - [sym__fenced_code_block_start_backtick] = ACTIONS(2505), - [sym_minus_metadata] = ACTIONS(2505), - [sym__pipe_table_start] = ACTIONS(2505), - [sym__fenced_div_start] = ACTIONS(2505), - [sym_ref_id_specifier] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2505), - [sym__html_comment] = ACTIONS(2505), - [sym__autolink] = ACTIONS(2505), - [sym__highlight_span_start] = ACTIONS(2505), - [sym__insert_span_start] = ACTIONS(2505), - [sym__delete_span_start] = ACTIONS(2505), - [sym__edit_comment_span_start] = ACTIONS(2505), - [sym__single_quote_span_open] = ACTIONS(2505), - [sym__double_quote_span_open] = ACTIONS(2505), - [sym__shortcode_open_escaped] = ACTIONS(2505), - [sym__shortcode_open] = ACTIONS(2505), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2505), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2505), - [sym__cite_author_in_text] = ACTIONS(2505), - [sym__cite_suppress_author] = ACTIONS(2505), - [sym__strikeout_open] = ACTIONS(2505), - [sym__subscript_open] = ACTIONS(2505), - [sym__superscript_open] = ACTIONS(2505), - [sym__inline_note_start_token] = ACTIONS(2505), - [sym__strong_emphasis_open_star] = ACTIONS(2505), - [sym__strong_emphasis_open_underscore] = ACTIONS(2505), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2505), - [sym_inline_note_reference] = ACTIONS(2505), - [sym_html_element] = ACTIONS(2505), - [sym__pandoc_lt_str] = ACTIONS(2505), - [sym__pandoc_line_break] = ACTIONS(2505), - [sym_grid_table] = ACTIONS(2505), - [sym__caption_start] = ACTIONS(2505), + [sym_entity_reference] = ACTIONS(2787), + [sym_numeric_character_reference] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_BANG_LBRACK] = ACTIONS(2787), + [anon_sym_DOLLAR] = ACTIONS(2789), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2787), + [aux_sym_pandoc_str_token1] = ACTIONS(2789), + [anon_sym_PIPE] = ACTIONS(2787), + [sym__whitespace] = ACTIONS(2787), + [sym__line_ending] = ACTIONS(2787), + [sym__soft_line_ending] = ACTIONS(2787), + [sym__block_close] = ACTIONS(2787), + [sym__block_quote_start] = ACTIONS(2787), + [sym_atx_h1_marker] = ACTIONS(2787), + [sym_atx_h2_marker] = ACTIONS(2787), + [sym_atx_h3_marker] = ACTIONS(2787), + [sym_atx_h4_marker] = ACTIONS(2787), + [sym_atx_h5_marker] = ACTIONS(2787), + [sym_atx_h6_marker] = ACTIONS(2787), + [sym__thematic_break] = ACTIONS(2787), + [sym__list_marker_minus] = ACTIONS(2787), + [sym__list_marker_plus] = ACTIONS(2787), + [sym__list_marker_star] = ACTIONS(2787), + [sym__list_marker_parenthesis] = ACTIONS(2787), + [sym__list_marker_dot] = ACTIONS(2787), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2787), + [sym__list_marker_example] = ACTIONS(2787), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2787), + [sym__fenced_code_block_start_backtick] = ACTIONS(2787), + [sym__minus_metadata_start] = ACTIONS(2787), + [sym__pipe_table_start] = ACTIONS(2787), + [sym__fenced_div_start] = ACTIONS(2787), + [sym_ref_id_specifier] = ACTIONS(2787), + [sym__code_span_start] = ACTIONS(2787), + [sym__html_comment] = ACTIONS(2787), + [sym__autolink] = ACTIONS(2787), + [sym__highlight_span_start] = ACTIONS(2787), + [sym__insert_span_start] = ACTIONS(2787), + [sym__delete_span_start] = ACTIONS(2787), + [sym__edit_comment_span_start] = ACTIONS(2787), + [sym__single_quote_span_open] = ACTIONS(2787), + [sym__double_quote_span_open] = ACTIONS(2787), + [sym__shortcode_open_escaped] = ACTIONS(2787), + [sym__shortcode_open] = ACTIONS(2787), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2787), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2787), + [sym__cite_author_in_text] = ACTIONS(2787), + [sym__cite_suppress_author] = ACTIONS(2787), + [sym__strikeout_open] = ACTIONS(2787), + [sym__subscript_open] = ACTIONS(2787), + [sym__superscript_open] = ACTIONS(2787), + [sym__inline_note_start_token] = ACTIONS(2787), + [sym__strong_emphasis_open_star] = ACTIONS(2787), + [sym__strong_emphasis_open_underscore] = ACTIONS(2787), + [sym__emphasis_open_star] = ACTIONS(2787), + [sym__emphasis_open_underscore] = ACTIONS(2787), + [sym_inline_note_reference] = ACTIONS(2787), + [sym_html_element] = ACTIONS(2787), + [sym__pandoc_lt_str] = ACTIONS(2787), + [sym__pandoc_line_break] = ACTIONS(2787), + [sym_grid_table] = ACTIONS(2787), + [sym__caption_start] = ACTIONS(2787), }, [STATE(498)] = { - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2509), - [anon_sym_BANG_LBRACK] = ACTIONS(2509), - [anon_sym_DOLLAR] = ACTIONS(2511), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [aux_sym_pandoc_str_token1] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2509), - [sym__whitespace] = ACTIONS(2509), - [sym__line_ending] = ACTIONS(2509), - [sym__soft_line_ending] = ACTIONS(2509), - [sym__block_close] = ACTIONS(2509), - [sym__block_quote_start] = ACTIONS(2509), - [sym_atx_h1_marker] = ACTIONS(2509), - [sym_atx_h2_marker] = ACTIONS(2509), - [sym_atx_h3_marker] = ACTIONS(2509), - [sym_atx_h4_marker] = ACTIONS(2509), - [sym_atx_h5_marker] = ACTIONS(2509), - [sym_atx_h6_marker] = ACTIONS(2509), - [sym__thematic_break] = ACTIONS(2509), - [sym__list_marker_minus] = ACTIONS(2509), - [sym__list_marker_plus] = ACTIONS(2509), - [sym__list_marker_star] = ACTIONS(2509), - [sym__list_marker_parenthesis] = ACTIONS(2509), - [sym__list_marker_dot] = ACTIONS(2509), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2509), - [sym__list_marker_example] = ACTIONS(2509), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2509), - [sym__fenced_code_block_start_backtick] = ACTIONS(2509), - [sym_minus_metadata] = ACTIONS(2509), - [sym__pipe_table_start] = ACTIONS(2509), - [sym__fenced_div_start] = ACTIONS(2509), - [sym_ref_id_specifier] = ACTIONS(2509), - [sym__code_span_start] = ACTIONS(2509), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2509), - [sym__delete_span_start] = ACTIONS(2509), - [sym__edit_comment_span_start] = ACTIONS(2509), - [sym__single_quote_span_open] = ACTIONS(2509), - [sym__double_quote_span_open] = ACTIONS(2509), - [sym__shortcode_open_escaped] = ACTIONS(2509), - [sym__shortcode_open] = ACTIONS(2509), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2509), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2509), - [sym__cite_author_in_text] = ACTIONS(2509), - [sym__cite_suppress_author] = ACTIONS(2509), - [sym__strikeout_open] = ACTIONS(2509), - [sym__subscript_open] = ACTIONS(2509), - [sym__superscript_open] = ACTIONS(2509), - [sym__inline_note_start_token] = ACTIONS(2509), - [sym__strong_emphasis_open_star] = ACTIONS(2509), - [sym__strong_emphasis_open_underscore] = ACTIONS(2509), - [sym__emphasis_open_star] = ACTIONS(2509), - [sym__emphasis_open_underscore] = ACTIONS(2509), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pandoc_lt_str] = ACTIONS(2509), - [sym__pandoc_line_break] = ACTIONS(2509), - [sym_grid_table] = ACTIONS(2509), - [sym__caption_start] = ACTIONS(2509), + [sym_entity_reference] = ACTIONS(2539), + [sym_numeric_character_reference] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_BANG_LBRACK] = ACTIONS(2539), + [anon_sym_DOLLAR] = ACTIONS(2541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2539), + [aux_sym_pandoc_str_token1] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2539), + [sym__whitespace] = ACTIONS(2539), + [sym__line_ending] = ACTIONS(2539), + [sym__soft_line_ending] = ACTIONS(2539), + [sym__block_close] = ACTIONS(2539), + [sym__block_quote_start] = ACTIONS(2539), + [sym_atx_h1_marker] = ACTIONS(2539), + [sym_atx_h2_marker] = ACTIONS(2539), + [sym_atx_h3_marker] = ACTIONS(2539), + [sym_atx_h4_marker] = ACTIONS(2539), + [sym_atx_h5_marker] = ACTIONS(2539), + [sym_atx_h6_marker] = ACTIONS(2539), + [sym__thematic_break] = ACTIONS(2539), + [sym__list_marker_minus] = ACTIONS(2539), + [sym__list_marker_plus] = ACTIONS(2539), + [sym__list_marker_star] = ACTIONS(2539), + [sym__list_marker_parenthesis] = ACTIONS(2539), + [sym__list_marker_dot] = ACTIONS(2539), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2539), + [sym__list_marker_example] = ACTIONS(2539), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2539), + [sym__fenced_code_block_start_backtick] = ACTIONS(2539), + [sym__minus_metadata_start] = ACTIONS(2539), + [sym__pipe_table_start] = ACTIONS(2539), + [sym__fenced_div_start] = ACTIONS(2539), + [sym_ref_id_specifier] = ACTIONS(2539), + [sym__code_span_start] = ACTIONS(2539), + [sym__html_comment] = ACTIONS(2539), + [sym__autolink] = ACTIONS(2539), + [sym__highlight_span_start] = ACTIONS(2539), + [sym__insert_span_start] = ACTIONS(2539), + [sym__delete_span_start] = ACTIONS(2539), + [sym__edit_comment_span_start] = ACTIONS(2539), + [sym__single_quote_span_open] = ACTIONS(2539), + [sym__double_quote_span_open] = ACTIONS(2539), + [sym__shortcode_open_escaped] = ACTIONS(2539), + [sym__shortcode_open] = ACTIONS(2539), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2539), + [sym__cite_author_in_text] = ACTIONS(2539), + [sym__cite_suppress_author] = ACTIONS(2539), + [sym__strikeout_open] = ACTIONS(2539), + [sym__subscript_open] = ACTIONS(2539), + [sym__superscript_open] = ACTIONS(2539), + [sym__inline_note_start_token] = ACTIONS(2539), + [sym__strong_emphasis_open_star] = ACTIONS(2539), + [sym__strong_emphasis_open_underscore] = ACTIONS(2539), + [sym__emphasis_open_star] = ACTIONS(2539), + [sym__emphasis_open_underscore] = ACTIONS(2539), + [sym_inline_note_reference] = ACTIONS(2539), + [sym_html_element] = ACTIONS(2539), + [sym__pandoc_lt_str] = ACTIONS(2539), + [sym__pandoc_line_break] = ACTIONS(2539), + [sym_grid_table] = ACTIONS(2539), + [sym__caption_start] = ACTIONS(2539), }, [STATE(499)] = { - [sym_entity_reference] = ACTIONS(2513), - [sym_numeric_character_reference] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2513), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [aux_sym_pandoc_str_token1] = ACTIONS(2515), - [anon_sym_PIPE] = ACTIONS(2513), - [sym__whitespace] = ACTIONS(2513), - [sym__line_ending] = ACTIONS(2513), - [sym__soft_line_ending] = ACTIONS(2513), - [sym__block_close] = ACTIONS(2513), - [sym__block_quote_start] = ACTIONS(2513), - [sym_atx_h1_marker] = ACTIONS(2513), - [sym_atx_h2_marker] = ACTIONS(2513), - [sym_atx_h3_marker] = ACTIONS(2513), - [sym_atx_h4_marker] = ACTIONS(2513), - [sym_atx_h5_marker] = ACTIONS(2513), - [sym_atx_h6_marker] = ACTIONS(2513), - [sym__thematic_break] = ACTIONS(2513), - [sym__list_marker_minus] = ACTIONS(2513), - [sym__list_marker_plus] = ACTIONS(2513), - [sym__list_marker_star] = ACTIONS(2513), - [sym__list_marker_parenthesis] = ACTIONS(2513), - [sym__list_marker_dot] = ACTIONS(2513), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2513), - [sym__list_marker_example] = ACTIONS(2513), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2513), - [sym__fenced_code_block_start_backtick] = ACTIONS(2513), - [sym_minus_metadata] = ACTIONS(2513), - [sym__pipe_table_start] = ACTIONS(2513), - [sym__fenced_div_start] = ACTIONS(2513), - [sym_ref_id_specifier] = ACTIONS(2513), - [sym__code_span_start] = ACTIONS(2513), - [sym__html_comment] = ACTIONS(2513), - [sym__autolink] = ACTIONS(2513), - [sym__highlight_span_start] = ACTIONS(2513), - [sym__insert_span_start] = ACTIONS(2513), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2513), - [sym__single_quote_span_open] = ACTIONS(2513), - [sym__double_quote_span_open] = ACTIONS(2513), - [sym__shortcode_open_escaped] = ACTIONS(2513), - [sym__shortcode_open] = ACTIONS(2513), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2513), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2513), - [sym__cite_author_in_text] = ACTIONS(2513), - [sym__cite_suppress_author] = ACTIONS(2513), - [sym__strikeout_open] = ACTIONS(2513), - [sym__subscript_open] = ACTIONS(2513), - [sym__superscript_open] = ACTIONS(2513), - [sym__inline_note_start_token] = ACTIONS(2513), - [sym__strong_emphasis_open_star] = ACTIONS(2513), - [sym__strong_emphasis_open_underscore] = ACTIONS(2513), - [sym__emphasis_open_star] = ACTIONS(2513), - [sym__emphasis_open_underscore] = ACTIONS(2513), - [sym_inline_note_reference] = ACTIONS(2513), - [sym_html_element] = ACTIONS(2513), - [sym__pandoc_lt_str] = ACTIONS(2513), - [sym__pandoc_line_break] = ACTIONS(2513), - [sym_grid_table] = ACTIONS(2513), - [sym__caption_start] = ACTIONS(2513), + [sym_entity_reference] = ACTIONS(2379), + [sym_numeric_character_reference] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_BANG_LBRACK] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(2381), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [aux_sym_pandoc_str_token1] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2379), + [sym__whitespace] = ACTIONS(2379), + [sym__line_ending] = ACTIONS(2379), + [sym__soft_line_ending] = ACTIONS(2379), + [sym__block_close] = ACTIONS(2379), + [sym__block_quote_start] = ACTIONS(2379), + [sym_atx_h1_marker] = ACTIONS(2379), + [sym_atx_h2_marker] = ACTIONS(2379), + [sym_atx_h3_marker] = ACTIONS(2379), + [sym_atx_h4_marker] = ACTIONS(2379), + [sym_atx_h5_marker] = ACTIONS(2379), + [sym_atx_h6_marker] = ACTIONS(2379), + [sym__thematic_break] = ACTIONS(2379), + [sym__list_marker_minus] = ACTIONS(2379), + [sym__list_marker_plus] = ACTIONS(2379), + [sym__list_marker_star] = ACTIONS(2379), + [sym__list_marker_parenthesis] = ACTIONS(2379), + [sym__list_marker_dot] = ACTIONS(2379), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2379), + [sym__list_marker_example] = ACTIONS(2379), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2379), + [sym__fenced_code_block_start_backtick] = ACTIONS(2379), + [sym__minus_metadata_start] = ACTIONS(2379), + [sym__pipe_table_start] = ACTIONS(2379), + [sym__fenced_div_start] = ACTIONS(2379), + [sym_ref_id_specifier] = ACTIONS(2379), + [sym__code_span_start] = ACTIONS(2379), + [sym__html_comment] = ACTIONS(2379), + [sym__autolink] = ACTIONS(2379), + [sym__highlight_span_start] = ACTIONS(2379), + [sym__insert_span_start] = ACTIONS(2379), + [sym__delete_span_start] = ACTIONS(2379), + [sym__edit_comment_span_start] = ACTIONS(2379), + [sym__single_quote_span_open] = ACTIONS(2379), + [sym__double_quote_span_open] = ACTIONS(2379), + [sym__shortcode_open_escaped] = ACTIONS(2379), + [sym__shortcode_open] = ACTIONS(2379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2379), + [sym__cite_author_in_text] = ACTIONS(2379), + [sym__cite_suppress_author] = ACTIONS(2379), + [sym__strikeout_open] = ACTIONS(2379), + [sym__subscript_open] = ACTIONS(2379), + [sym__superscript_open] = ACTIONS(2379), + [sym__inline_note_start_token] = ACTIONS(2379), + [sym__strong_emphasis_open_star] = ACTIONS(2379), + [sym__strong_emphasis_open_underscore] = ACTIONS(2379), + [sym__emphasis_open_star] = ACTIONS(2379), + [sym__emphasis_open_underscore] = ACTIONS(2379), + [sym_inline_note_reference] = ACTIONS(2379), + [sym_html_element] = ACTIONS(2379), + [sym__pandoc_lt_str] = ACTIONS(2379), + [sym__pandoc_line_break] = ACTIONS(2379), + [sym_grid_table] = ACTIONS(2379), + [sym__caption_start] = ACTIONS(2379), }, [STATE(500)] = { - [sym_entity_reference] = ACTIONS(2517), - [sym_numeric_character_reference] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_BANG_LBRACK] = ACTIONS(2517), - [anon_sym_DOLLAR] = ACTIONS(2519), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2517), - [aux_sym_pandoc_str_token1] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2517), - [sym__whitespace] = ACTIONS(2517), - [sym__line_ending] = ACTIONS(2517), - [sym__soft_line_ending] = ACTIONS(2517), - [sym__block_close] = ACTIONS(2517), - [sym__block_quote_start] = ACTIONS(2517), - [sym_atx_h1_marker] = ACTIONS(2517), - [sym_atx_h2_marker] = ACTIONS(2517), - [sym_atx_h3_marker] = ACTIONS(2517), - [sym_atx_h4_marker] = ACTIONS(2517), - [sym_atx_h5_marker] = ACTIONS(2517), - [sym_atx_h6_marker] = ACTIONS(2517), - [sym__thematic_break] = ACTIONS(2517), - [sym__list_marker_minus] = ACTIONS(2517), - [sym__list_marker_plus] = ACTIONS(2517), - [sym__list_marker_star] = ACTIONS(2517), - [sym__list_marker_parenthesis] = ACTIONS(2517), - [sym__list_marker_dot] = ACTIONS(2517), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2517), - [sym__list_marker_example] = ACTIONS(2517), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2517), - [sym__fenced_code_block_start_backtick] = ACTIONS(2517), - [sym_minus_metadata] = ACTIONS(2517), - [sym__pipe_table_start] = ACTIONS(2517), - [sym__fenced_div_start] = ACTIONS(2517), - [sym_ref_id_specifier] = ACTIONS(2517), - [sym__code_span_start] = ACTIONS(2517), - [sym__html_comment] = ACTIONS(2517), - [sym__autolink] = ACTIONS(2517), - [sym__highlight_span_start] = ACTIONS(2517), - [sym__insert_span_start] = ACTIONS(2517), - [sym__delete_span_start] = ACTIONS(2517), - [sym__edit_comment_span_start] = ACTIONS(2517), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2517), - [sym__shortcode_open_escaped] = ACTIONS(2517), - [sym__shortcode_open] = ACTIONS(2517), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2517), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2517), - [sym__cite_author_in_text] = ACTIONS(2517), - [sym__cite_suppress_author] = ACTIONS(2517), - [sym__strikeout_open] = ACTIONS(2517), - [sym__subscript_open] = ACTIONS(2517), - [sym__superscript_open] = ACTIONS(2517), - [sym__inline_note_start_token] = ACTIONS(2517), - [sym__strong_emphasis_open_star] = ACTIONS(2517), - [sym__strong_emphasis_open_underscore] = ACTIONS(2517), - [sym__emphasis_open_star] = ACTIONS(2517), - [sym__emphasis_open_underscore] = ACTIONS(2517), - [sym_inline_note_reference] = ACTIONS(2517), - [sym_html_element] = ACTIONS(2517), - [sym__pandoc_lt_str] = ACTIONS(2517), - [sym__pandoc_line_break] = ACTIONS(2517), - [sym_grid_table] = ACTIONS(2517), - [sym__caption_start] = ACTIONS(2517), + [ts_builtin_sym_end] = ACTIONS(2349), + [sym_entity_reference] = ACTIONS(2349), + [sym_numeric_character_reference] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_BANG_LBRACK] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [aux_sym_pandoc_str_token1] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(2349), + [sym__whitespace] = ACTIONS(2349), + [sym__line_ending] = ACTIONS(2349), + [sym__soft_line_ending] = ACTIONS(2349), + [sym__block_quote_start] = ACTIONS(2349), + [sym_atx_h1_marker] = ACTIONS(2349), + [sym_atx_h2_marker] = ACTIONS(2349), + [sym_atx_h3_marker] = ACTIONS(2349), + [sym_atx_h4_marker] = ACTIONS(2349), + [sym_atx_h5_marker] = ACTIONS(2349), + [sym_atx_h6_marker] = ACTIONS(2349), + [sym__thematic_break] = ACTIONS(2349), + [sym__list_marker_minus] = ACTIONS(2349), + [sym__list_marker_plus] = ACTIONS(2349), + [sym__list_marker_star] = ACTIONS(2349), + [sym__list_marker_parenthesis] = ACTIONS(2349), + [sym__list_marker_dot] = ACTIONS(2349), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2349), + [sym__list_marker_example] = ACTIONS(2349), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2349), + [sym__fenced_code_block_start_backtick] = ACTIONS(2349), + [sym__minus_metadata_start] = ACTIONS(2349), + [sym__pipe_table_start] = ACTIONS(2349), + [sym__fenced_div_start] = ACTIONS(2349), + [sym_ref_id_specifier] = ACTIONS(2349), + [sym__code_span_start] = ACTIONS(2349), + [sym__html_comment] = ACTIONS(2349), + [sym__autolink] = ACTIONS(2349), + [sym__highlight_span_start] = ACTIONS(2349), + [sym__insert_span_start] = ACTIONS(2349), + [sym__delete_span_start] = ACTIONS(2349), + [sym__edit_comment_span_start] = ACTIONS(2349), + [sym__single_quote_span_open] = ACTIONS(2349), + [sym__double_quote_span_open] = ACTIONS(2349), + [sym__shortcode_open_escaped] = ACTIONS(2349), + [sym__shortcode_open] = ACTIONS(2349), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2349), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2349), + [sym__cite_author_in_text] = ACTIONS(2349), + [sym__cite_suppress_author] = ACTIONS(2349), + [sym__strikeout_open] = ACTIONS(2349), + [sym__subscript_open] = ACTIONS(2349), + [sym__superscript_open] = ACTIONS(2349), + [sym__inline_note_start_token] = ACTIONS(2349), + [sym__strong_emphasis_open_star] = ACTIONS(2349), + [sym__strong_emphasis_open_underscore] = ACTIONS(2349), + [sym__emphasis_open_star] = ACTIONS(2349), + [sym__emphasis_open_underscore] = ACTIONS(2349), + [sym_inline_note_reference] = ACTIONS(2349), + [sym_html_element] = ACTIONS(2349), + [sym__pandoc_lt_str] = ACTIONS(2349), + [sym__pandoc_line_break] = ACTIONS(2349), + [sym_grid_table] = ACTIONS(2349), + [sym__caption_start] = ACTIONS(2349), }, [STATE(501)] = { - [sym_entity_reference] = ACTIONS(2521), - [sym_numeric_character_reference] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2521), - [anon_sym_BANG_LBRACK] = ACTIONS(2521), - [anon_sym_DOLLAR] = ACTIONS(2523), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(2521), - [aux_sym_pandoc_str_token1] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2521), - [sym__whitespace] = ACTIONS(2521), - [sym__line_ending] = ACTIONS(2521), - [sym__soft_line_ending] = ACTIONS(2521), - [sym__block_close] = ACTIONS(2521), - [sym__block_quote_start] = ACTIONS(2521), - [sym_atx_h1_marker] = ACTIONS(2521), - [sym_atx_h2_marker] = ACTIONS(2521), - [sym_atx_h3_marker] = ACTIONS(2521), - [sym_atx_h4_marker] = ACTIONS(2521), - [sym_atx_h5_marker] = ACTIONS(2521), - [sym_atx_h6_marker] = ACTIONS(2521), - [sym__thematic_break] = ACTIONS(2521), - [sym__list_marker_minus] = ACTIONS(2521), - [sym__list_marker_plus] = ACTIONS(2521), - [sym__list_marker_star] = ACTIONS(2521), - [sym__list_marker_parenthesis] = ACTIONS(2521), - [sym__list_marker_dot] = ACTIONS(2521), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2521), - [sym__list_marker_example] = ACTIONS(2521), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2521), - [sym__fenced_code_block_start_backtick] = ACTIONS(2521), - [sym_minus_metadata] = ACTIONS(2521), - [sym__pipe_table_start] = ACTIONS(2521), - [sym__fenced_div_start] = ACTIONS(2521), - [sym_ref_id_specifier] = ACTIONS(2521), - [sym__code_span_start] = ACTIONS(2521), - [sym__html_comment] = ACTIONS(2521), - [sym__autolink] = ACTIONS(2521), - [sym__highlight_span_start] = ACTIONS(2521), - [sym__insert_span_start] = ACTIONS(2521), - [sym__delete_span_start] = ACTIONS(2521), - [sym__edit_comment_span_start] = ACTIONS(2521), - [sym__single_quote_span_open] = ACTIONS(2521), - [sym__double_quote_span_open] = ACTIONS(2521), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2521), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2521), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2521), - [sym__cite_author_in_text] = ACTIONS(2521), - [sym__cite_suppress_author] = ACTIONS(2521), - [sym__strikeout_open] = ACTIONS(2521), - [sym__subscript_open] = ACTIONS(2521), - [sym__superscript_open] = ACTIONS(2521), - [sym__inline_note_start_token] = ACTIONS(2521), - [sym__strong_emphasis_open_star] = ACTIONS(2521), - [sym__strong_emphasis_open_underscore] = ACTIONS(2521), - [sym__emphasis_open_star] = ACTIONS(2521), - [sym__emphasis_open_underscore] = ACTIONS(2521), - [sym_inline_note_reference] = ACTIONS(2521), - [sym_html_element] = ACTIONS(2521), - [sym__pandoc_lt_str] = ACTIONS(2521), - [sym__pandoc_line_break] = ACTIONS(2521), - [sym_grid_table] = ACTIONS(2521), - [sym__caption_start] = ACTIONS(2521), + [sym_entity_reference] = ACTIONS(2773), + [sym_numeric_character_reference] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_BANG_LBRACK] = ACTIONS(2773), + [anon_sym_DOLLAR] = ACTIONS(2775), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2773), + [aux_sym_pandoc_str_token1] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2773), + [sym__whitespace] = ACTIONS(2773), + [sym__line_ending] = ACTIONS(2773), + [sym__soft_line_ending] = ACTIONS(2773), + [sym__block_close] = ACTIONS(2773), + [sym__block_quote_start] = ACTIONS(2773), + [sym_atx_h1_marker] = ACTIONS(2773), + [sym_atx_h2_marker] = ACTIONS(2773), + [sym_atx_h3_marker] = ACTIONS(2773), + [sym_atx_h4_marker] = ACTIONS(2773), + [sym_atx_h5_marker] = ACTIONS(2773), + [sym_atx_h6_marker] = ACTIONS(2773), + [sym__thematic_break] = ACTIONS(2773), + [sym__list_marker_minus] = ACTIONS(2773), + [sym__list_marker_plus] = ACTIONS(2773), + [sym__list_marker_star] = ACTIONS(2773), + [sym__list_marker_parenthesis] = ACTIONS(2773), + [sym__list_marker_dot] = ACTIONS(2773), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_example] = ACTIONS(2773), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2773), + [sym__fenced_code_block_start_backtick] = ACTIONS(2773), + [sym__minus_metadata_start] = ACTIONS(2773), + [sym__pipe_table_start] = ACTIONS(2773), + [sym__fenced_div_start] = ACTIONS(2773), + [sym_ref_id_specifier] = ACTIONS(2773), + [sym__code_span_start] = ACTIONS(2773), + [sym__html_comment] = ACTIONS(2773), + [sym__autolink] = ACTIONS(2773), + [sym__highlight_span_start] = ACTIONS(2773), + [sym__insert_span_start] = ACTIONS(2773), + [sym__delete_span_start] = ACTIONS(2773), + [sym__edit_comment_span_start] = ACTIONS(2773), + [sym__single_quote_span_open] = ACTIONS(2773), + [sym__double_quote_span_open] = ACTIONS(2773), + [sym__shortcode_open_escaped] = ACTIONS(2773), + [sym__shortcode_open] = ACTIONS(2773), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2773), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2773), + [sym__cite_author_in_text] = ACTIONS(2773), + [sym__cite_suppress_author] = ACTIONS(2773), + [sym__strikeout_open] = ACTIONS(2773), + [sym__subscript_open] = ACTIONS(2773), + [sym__superscript_open] = ACTIONS(2773), + [sym__inline_note_start_token] = ACTIONS(2773), + [sym__strong_emphasis_open_star] = ACTIONS(2773), + [sym__strong_emphasis_open_underscore] = ACTIONS(2773), + [sym__emphasis_open_star] = ACTIONS(2773), + [sym__emphasis_open_underscore] = ACTIONS(2773), + [sym_inline_note_reference] = ACTIONS(2773), + [sym_html_element] = ACTIONS(2773), + [sym__pandoc_lt_str] = ACTIONS(2773), + [sym__pandoc_line_break] = ACTIONS(2773), + [sym_grid_table] = ACTIONS(2773), + [sym__caption_start] = ACTIONS(2773), }, [STATE(502)] = { - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_entity_reference] = ACTIONS(2267), - [sym_numeric_character_reference] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_BANG_LBRACK] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [aux_sym_pandoc_str_token1] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2267), - [sym__whitespace] = ACTIONS(2267), - [sym__line_ending] = ACTIONS(2267), - [sym__soft_line_ending] = ACTIONS(2267), - [sym__block_quote_start] = ACTIONS(2267), - [sym_atx_h1_marker] = ACTIONS(2267), - [sym_atx_h2_marker] = ACTIONS(2267), - [sym_atx_h3_marker] = ACTIONS(2267), - [sym_atx_h4_marker] = ACTIONS(2267), - [sym_atx_h5_marker] = ACTIONS(2267), - [sym_atx_h6_marker] = ACTIONS(2267), - [sym__thematic_break] = ACTIONS(2267), - [sym__list_marker_minus] = ACTIONS(2267), - [sym__list_marker_plus] = ACTIONS(2267), - [sym__list_marker_star] = ACTIONS(2267), - [sym__list_marker_parenthesis] = ACTIONS(2267), - [sym__list_marker_dot] = ACTIONS(2267), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2267), - [sym__list_marker_example] = ACTIONS(2267), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2267), - [sym__fenced_code_block_start_backtick] = ACTIONS(2267), - [sym_minus_metadata] = ACTIONS(2267), - [sym__pipe_table_start] = ACTIONS(2267), - [sym__fenced_div_start] = ACTIONS(2267), - [sym_ref_id_specifier] = ACTIONS(2267), - [sym__code_span_start] = ACTIONS(2267), - [sym__html_comment] = ACTIONS(2267), - [sym__autolink] = ACTIONS(2267), - [sym__highlight_span_start] = ACTIONS(2267), - [sym__insert_span_start] = ACTIONS(2267), - [sym__delete_span_start] = ACTIONS(2267), - [sym__edit_comment_span_start] = ACTIONS(2267), - [sym__single_quote_span_open] = ACTIONS(2267), - [sym__double_quote_span_open] = ACTIONS(2267), - [sym__shortcode_open_escaped] = ACTIONS(2267), - [sym__shortcode_open] = ACTIONS(2267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2267), - [sym__cite_author_in_text] = ACTIONS(2267), - [sym__cite_suppress_author] = ACTIONS(2267), - [sym__strikeout_open] = ACTIONS(2267), - [sym__subscript_open] = ACTIONS(2267), - [sym__superscript_open] = ACTIONS(2267), - [sym__inline_note_start_token] = ACTIONS(2267), - [sym__strong_emphasis_open_star] = ACTIONS(2267), - [sym__strong_emphasis_open_underscore] = ACTIONS(2267), - [sym__emphasis_open_star] = ACTIONS(2267), - [sym__emphasis_open_underscore] = ACTIONS(2267), - [sym_inline_note_reference] = ACTIONS(2267), - [sym_html_element] = ACTIONS(2267), - [sym__pandoc_lt_str] = ACTIONS(2267), - [sym__pandoc_line_break] = ACTIONS(2267), - [sym_grid_table] = ACTIONS(2267), - [sym__caption_start] = ACTIONS(2267), + [sym_entity_reference] = ACTIONS(2783), + [sym_numeric_character_reference] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_BANG_LBRACK] = ACTIONS(2783), + [anon_sym_DOLLAR] = ACTIONS(2785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2783), + [aux_sym_pandoc_str_token1] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2783), + [sym__whitespace] = ACTIONS(3083), + [sym__line_ending] = ACTIONS(2783), + [sym__soft_line_ending] = ACTIONS(2783), + [sym__block_close] = ACTIONS(2783), + [sym__block_quote_start] = ACTIONS(2783), + [sym_atx_h1_marker] = ACTIONS(2783), + [sym_atx_h2_marker] = ACTIONS(2783), + [sym_atx_h3_marker] = ACTIONS(2783), + [sym_atx_h4_marker] = ACTIONS(2783), + [sym_atx_h5_marker] = ACTIONS(2783), + [sym_atx_h6_marker] = ACTIONS(2783), + [sym__thematic_break] = ACTIONS(2783), + [sym__list_marker_minus] = ACTIONS(2783), + [sym__list_marker_plus] = ACTIONS(2783), + [sym__list_marker_star] = ACTIONS(2783), + [sym__list_marker_parenthesis] = ACTIONS(2783), + [sym__list_marker_dot] = ACTIONS(2783), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_example] = ACTIONS(2783), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2783), + [sym__fenced_code_block_start_backtick] = ACTIONS(2783), + [sym__minus_metadata_start] = ACTIONS(2783), + [sym__pipe_table_start] = ACTIONS(2783), + [sym__fenced_div_start] = ACTIONS(2783), + [sym_ref_id_specifier] = ACTIONS(2783), + [sym__code_span_start] = ACTIONS(2783), + [sym__html_comment] = ACTIONS(2783), + [sym__autolink] = ACTIONS(2783), + [sym__highlight_span_start] = ACTIONS(2783), + [sym__insert_span_start] = ACTIONS(2783), + [sym__delete_span_start] = ACTIONS(2783), + [sym__edit_comment_span_start] = ACTIONS(2783), + [sym__single_quote_span_open] = ACTIONS(2783), + [sym__double_quote_span_open] = ACTIONS(2783), + [sym__shortcode_open_escaped] = ACTIONS(2783), + [sym__shortcode_open] = ACTIONS(2783), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2783), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2783), + [sym__cite_author_in_text] = ACTIONS(2783), + [sym__cite_suppress_author] = ACTIONS(2783), + [sym__strikeout_open] = ACTIONS(2783), + [sym__subscript_open] = ACTIONS(2783), + [sym__superscript_open] = ACTIONS(2783), + [sym__inline_note_start_token] = ACTIONS(2783), + [sym__strong_emphasis_open_star] = ACTIONS(2783), + [sym__strong_emphasis_open_underscore] = ACTIONS(2783), + [sym__emphasis_open_star] = ACTIONS(2783), + [sym__emphasis_open_underscore] = ACTIONS(2783), + [sym_inline_note_reference] = ACTIONS(2783), + [sym_html_element] = ACTIONS(2783), + [sym__pandoc_lt_str] = ACTIONS(2783), + [sym__pandoc_line_break] = ACTIONS(2783), + [sym_grid_table] = ACTIONS(2783), + [sym__caption_start] = ACTIONS(2783), }, [STATE(503)] = { - [sym__atx_heading_content] = STATE(3403), - [sym__inlines] = STATE(3403), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(227), - [sym_entity_reference] = ACTIONS(5), - [sym_numeric_character_reference] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(7), - [anon_sym_BANG_LBRACK] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(11), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [aux_sym_pandoc_str_token1] = ACTIONS(17), - [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), - [sym__line_ending] = ACTIONS(233), - [sym__eof] = ACTIONS(3019), - [sym__code_span_start] = ACTIONS(65), - [sym__html_comment] = ACTIONS(5), - [sym__autolink] = ACTIONS(5), - [sym__highlight_span_start] = ACTIONS(67), - [sym__insert_span_start] = ACTIONS(69), - [sym__delete_span_start] = ACTIONS(71), - [sym__edit_comment_span_start] = ACTIONS(73), - [sym__single_quote_span_open] = ACTIONS(75), - [sym__double_quote_span_open] = ACTIONS(77), - [sym__shortcode_open_escaped] = ACTIONS(79), - [sym__shortcode_open] = ACTIONS(81), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(83), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(85), - [sym__cite_author_in_text] = ACTIONS(87), - [sym__cite_suppress_author] = ACTIONS(89), - [sym__strikeout_open] = ACTIONS(91), - [sym__subscript_open] = ACTIONS(93), - [sym__superscript_open] = ACTIONS(95), - [sym__inline_note_start_token] = ACTIONS(97), - [sym__strong_emphasis_open_star] = ACTIONS(99), - [sym__strong_emphasis_open_underscore] = ACTIONS(101), - [sym__emphasis_open_star] = ACTIONS(103), - [sym__emphasis_open_underscore] = ACTIONS(105), - [sym_inline_note_reference] = ACTIONS(5), - [sym_html_element] = ACTIONS(5), - [sym__pandoc_lt_str] = ACTIONS(19), - [sym__pandoc_line_break] = ACTIONS(5), + [sym_entity_reference] = ACTIONS(2783), + [sym_numeric_character_reference] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_BANG_LBRACK] = ACTIONS(2783), + [anon_sym_DOLLAR] = ACTIONS(2785), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2783), + [aux_sym_pandoc_str_token1] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2783), + [sym__whitespace] = ACTIONS(2783), + [sym__line_ending] = ACTIONS(2783), + [sym__soft_line_ending] = ACTIONS(2783), + [sym__block_close] = ACTIONS(2783), + [sym__block_quote_start] = ACTIONS(2783), + [sym_atx_h1_marker] = ACTIONS(2783), + [sym_atx_h2_marker] = ACTIONS(2783), + [sym_atx_h3_marker] = ACTIONS(2783), + [sym_atx_h4_marker] = ACTIONS(2783), + [sym_atx_h5_marker] = ACTIONS(2783), + [sym_atx_h6_marker] = ACTIONS(2783), + [sym__thematic_break] = ACTIONS(2783), + [sym__list_marker_minus] = ACTIONS(2783), + [sym__list_marker_plus] = ACTIONS(2783), + [sym__list_marker_star] = ACTIONS(2783), + [sym__list_marker_parenthesis] = ACTIONS(2783), + [sym__list_marker_dot] = ACTIONS(2783), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2783), + [sym__list_marker_example] = ACTIONS(2783), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2783), + [sym__fenced_code_block_start_backtick] = ACTIONS(2783), + [sym__minus_metadata_start] = ACTIONS(2783), + [sym__pipe_table_start] = ACTIONS(2783), + [sym__fenced_div_start] = ACTIONS(2783), + [sym_ref_id_specifier] = ACTIONS(2783), + [sym__code_span_start] = ACTIONS(2783), + [sym__html_comment] = ACTIONS(2783), + [sym__autolink] = ACTIONS(2783), + [sym__highlight_span_start] = ACTIONS(2783), + [sym__insert_span_start] = ACTIONS(2783), + [sym__delete_span_start] = ACTIONS(2783), + [sym__edit_comment_span_start] = ACTIONS(2783), + [sym__single_quote_span_open] = ACTIONS(2783), + [sym__double_quote_span_open] = ACTIONS(2783), + [sym__shortcode_open_escaped] = ACTIONS(2783), + [sym__shortcode_open] = ACTIONS(2783), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2783), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2783), + [sym__cite_author_in_text] = ACTIONS(2783), + [sym__cite_suppress_author] = ACTIONS(2783), + [sym__strikeout_open] = ACTIONS(2783), + [sym__subscript_open] = ACTIONS(2783), + [sym__superscript_open] = ACTIONS(2783), + [sym__inline_note_start_token] = ACTIONS(2783), + [sym__strong_emphasis_open_star] = ACTIONS(2783), + [sym__strong_emphasis_open_underscore] = ACTIONS(2783), + [sym__emphasis_open_star] = ACTIONS(2783), + [sym__emphasis_open_underscore] = ACTIONS(2783), + [sym_inline_note_reference] = ACTIONS(2783), + [sym_html_element] = ACTIONS(2783), + [sym__pandoc_lt_str] = ACTIONS(2783), + [sym__pandoc_line_break] = ACTIONS(2783), + [sym_grid_table] = ACTIONS(2783), + [sym__caption_start] = ACTIONS(2783), }, [STATE(504)] = { - [sym_pandoc_paragraph] = STATE(62), - [sym__inlines] = STATE(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__soft_line_break] = STATE(798), - [sym__inline_whitespace] = STATE(798), + [ts_builtin_sym_end] = ACTIONS(2553), + [sym_entity_reference] = ACTIONS(2553), + [sym_numeric_character_reference] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2553), + [anon_sym_BANG_LBRACK] = ACTIONS(2553), + [anon_sym_DOLLAR] = ACTIONS(2555), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [aux_sym_pandoc_str_token1] = ACTIONS(2555), + [anon_sym_PIPE] = ACTIONS(2553), + [sym__whitespace] = ACTIONS(2553), + [sym__line_ending] = ACTIONS(2553), + [sym__soft_line_ending] = ACTIONS(2553), + [sym__block_quote_start] = ACTIONS(2553), + [sym_atx_h1_marker] = ACTIONS(2553), + [sym_atx_h2_marker] = ACTIONS(2553), + [sym_atx_h3_marker] = ACTIONS(2553), + [sym_atx_h4_marker] = ACTIONS(2553), + [sym_atx_h5_marker] = ACTIONS(2553), + [sym_atx_h6_marker] = ACTIONS(2553), + [sym__thematic_break] = ACTIONS(2553), + [sym__list_marker_minus] = ACTIONS(2553), + [sym__list_marker_plus] = ACTIONS(2553), + [sym__list_marker_star] = ACTIONS(2553), + [sym__list_marker_parenthesis] = ACTIONS(2553), + [sym__list_marker_dot] = ACTIONS(2553), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2553), + [sym__list_marker_example] = ACTIONS(2553), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2553), + [sym__fenced_code_block_start_backtick] = ACTIONS(2553), + [sym__minus_metadata_start] = ACTIONS(2553), + [sym__pipe_table_start] = ACTIONS(2553), + [sym__fenced_div_start] = ACTIONS(2553), + [sym_ref_id_specifier] = ACTIONS(2553), + [sym__code_span_start] = ACTIONS(2553), + [sym__html_comment] = ACTIONS(2553), + [sym__autolink] = ACTIONS(2553), + [sym__highlight_span_start] = ACTIONS(2553), + [sym__insert_span_start] = ACTIONS(2553), + [sym__delete_span_start] = ACTIONS(2553), + [sym__edit_comment_span_start] = ACTIONS(2553), + [sym__single_quote_span_open] = ACTIONS(2553), + [sym__double_quote_span_open] = ACTIONS(2553), + [sym__shortcode_open_escaped] = ACTIONS(2553), + [sym__shortcode_open] = ACTIONS(2553), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2553), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2553), + [sym__cite_author_in_text] = ACTIONS(2553), + [sym__cite_suppress_author] = ACTIONS(2553), + [sym__strikeout_open] = ACTIONS(2553), + [sym__subscript_open] = ACTIONS(2553), + [sym__superscript_open] = ACTIONS(2553), + [sym__inline_note_start_token] = ACTIONS(2553), + [sym__strong_emphasis_open_star] = ACTIONS(2553), + [sym__strong_emphasis_open_underscore] = ACTIONS(2553), + [sym__emphasis_open_star] = ACTIONS(2553), + [sym__emphasis_open_underscore] = ACTIONS(2553), + [sym_inline_note_reference] = ACTIONS(2553), + [sym_html_element] = ACTIONS(2553), + [sym__pandoc_lt_str] = ACTIONS(2553), + [sym__pandoc_line_break] = ACTIONS(2553), + [sym_grid_table] = ACTIONS(2553), + [sym__caption_start] = ACTIONS(2553), + }, + [STATE(505)] = { + [sym_entity_reference] = ACTIONS(2709), + [sym_numeric_character_reference] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_BANG_LBRACK] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2709), + [aux_sym_pandoc_str_token1] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2709), + [sym__whitespace] = ACTIONS(2709), + [sym__line_ending] = ACTIONS(2709), + [sym__soft_line_ending] = ACTIONS(2709), + [sym__block_close] = ACTIONS(2709), + [sym__block_quote_start] = ACTIONS(2709), + [sym_atx_h1_marker] = ACTIONS(2709), + [sym_atx_h2_marker] = ACTIONS(2709), + [sym_atx_h3_marker] = ACTIONS(2709), + [sym_atx_h4_marker] = ACTIONS(2709), + [sym_atx_h5_marker] = ACTIONS(2709), + [sym_atx_h6_marker] = ACTIONS(2709), + [sym__thematic_break] = ACTIONS(2709), + [sym__list_marker_minus] = ACTIONS(2709), + [sym__list_marker_plus] = ACTIONS(2709), + [sym__list_marker_star] = ACTIONS(2709), + [sym__list_marker_parenthesis] = ACTIONS(2709), + [sym__list_marker_dot] = ACTIONS(2709), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2709), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2709), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2709), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2709), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2709), + [sym__list_marker_example] = ACTIONS(2709), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2709), + [sym__fenced_code_block_start_backtick] = ACTIONS(2709), + [sym__minus_metadata_start] = ACTIONS(2709), + [sym__pipe_table_start] = ACTIONS(2709), + [sym__fenced_div_start] = ACTIONS(2709), + [sym_ref_id_specifier] = ACTIONS(2709), + [sym__code_span_start] = ACTIONS(2709), + [sym__html_comment] = ACTIONS(2709), + [sym__autolink] = ACTIONS(2709), + [sym__highlight_span_start] = ACTIONS(2709), + [sym__insert_span_start] = ACTIONS(2709), + [sym__delete_span_start] = ACTIONS(2709), + [sym__edit_comment_span_start] = ACTIONS(2709), + [sym__single_quote_span_open] = ACTIONS(2709), + [sym__double_quote_span_open] = ACTIONS(2709), + [sym__shortcode_open_escaped] = ACTIONS(2709), + [sym__shortcode_open] = ACTIONS(2709), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2709), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2709), + [sym__cite_author_in_text] = ACTIONS(2709), + [sym__cite_suppress_author] = ACTIONS(2709), + [sym__strikeout_open] = ACTIONS(2709), + [sym__subscript_open] = ACTIONS(2709), + [sym__superscript_open] = ACTIONS(2709), + [sym__inline_note_start_token] = ACTIONS(2709), + [sym__strong_emphasis_open_star] = ACTIONS(2709), + [sym__strong_emphasis_open_underscore] = ACTIONS(2709), + [sym__emphasis_open_star] = ACTIONS(2709), + [sym__emphasis_open_underscore] = ACTIONS(2709), + [sym_inline_note_reference] = ACTIONS(2709), + [sym_html_element] = ACTIONS(2709), + [sym__pandoc_lt_str] = ACTIONS(2709), + [sym__pandoc_line_break] = ACTIONS(2709), + [sym_grid_table] = ACTIONS(2709), + [sym__caption_start] = ACTIONS(2709), + }, + [STATE(506)] = { + [sym__inlines] = STATE(3877), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(788), + [sym__inline_whitespace] = STATE(788), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3103), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(507)] = { + [sym__inlines] = STATE(3701), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(714), + [sym__inline_whitespace] = STATE(714), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3151), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(508)] = { + [sym__inlines] = STATE(3711), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(715), + [sym__inline_whitespace] = STATE(715), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3155), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(509)] = { + [sym__inlines] = STATE(3748), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(716), + [sym__inline_whitespace] = STATE(716), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3159), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(510)] = { + [sym__inlines] = STATE(3752), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(717), + [sym__inline_whitespace] = STATE(717), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3163), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(511)] = { + [sym__atx_heading_content] = STATE(3389), + [sym__inlines] = STATE(3389), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(235), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -68882,8 +69569,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(115), - [sym__soft_line_ending] = ACTIONS(3021), + [sym__whitespace] = ACTIONS(3165), + [sym__line_ending] = ACTIONS(241), + [sym__eof] = ACTIONS(3167), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -68912,35 +69600,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(505)] = { - [sym_pandoc_paragraph] = STATE(430), - [sym__inlines] = STATE(3467), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__soft_line_break] = STATE(800), - [sym__inline_whitespace] = STATE(800), + [STATE(512)] = { + [sym__atx_heading_content] = STATE(3392), + [sym__inlines] = STATE(3392), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(236), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -68950,8 +69637,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(21), - [sym__soft_line_ending] = ACTIONS(3021), + [sym__whitespace] = ACTIONS(3165), + [sym__line_ending] = ACTIONS(241), + [sym__eof] = ACTIONS(3169), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -68980,306 +69668,1122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(506)] = { - [sym__inlines] = STATE(3748), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(765), - [sym__inline_whitespace] = STATE(765), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3041), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(513)] = { + [sym__inlines] = STATE(4300), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(721), + [sym__inline_whitespace] = STATE(721), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3173), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(507)] = { - [sym__inlines] = STATE(3757), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(766), - [sym__inline_whitespace] = STATE(766), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3089), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(514)] = { + [sym__inlines] = STATE(4322), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(722), + [sym__inline_whitespace] = STATE(722), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3177), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(508)] = { - [sym__inlines] = STATE(3759), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(767), - [sym__inline_whitespace] = STATE(767), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3093), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(515)] = { + [sym__inlines] = STATE(4335), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(723), + [sym__inline_whitespace] = STATE(723), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3181), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(509)] = { - [sym__inlines] = STATE(3780), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(768), - [sym__inline_whitespace] = STATE(768), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3097), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(516)] = { + [sym__inlines] = STATE(4347), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(724), + [sym__inline_whitespace] = STATE(724), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3185), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(517)] = { + [sym__inlines] = STATE(4189), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(796), + [sym__inline_whitespace] = STATE(796), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3189), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(518)] = { + [sym__inlines] = STATE(4191), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(797), + [sym__inline_whitespace] = STATE(797), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3193), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(519)] = { + [sym__inlines] = STATE(4258), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(728), + [sym__inline_whitespace] = STATE(728), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3197), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(520)] = { + [sym__inlines] = STATE(4270), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(729), + [sym__inline_whitespace] = STATE(729), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3201), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(521)] = { + [sym__inlines] = STATE(4291), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(730), + [sym__inline_whitespace] = STATE(730), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3205), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(522)] = { + [sym__inlines] = STATE(4297), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(731), + [sym__inline_whitespace] = STATE(731), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3209), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(523)] = { + [sym__inlines] = STATE(3719), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(713), + [sym__inline_whitespace] = STATE(713), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3213), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(524)] = { + [sym__inlines] = STATE(4393), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(718), + [sym__inline_whitespace] = STATE(718), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3217), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(525)] = { + [sym__inlines] = STATE(3868), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(734), + [sym__inline_whitespace] = STATE(734), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3221), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(526)] = { + [sym__inlines] = STATE(3875), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(735), + [sym__inline_whitespace] = STATE(735), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3225), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(527)] = { + [sym__inlines] = STATE(3880), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(736), + [sym__inline_whitespace] = STATE(736), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3229), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(528)] = { + [sym__inlines] = STATE(3892), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(737), + [sym__inline_whitespace] = STATE(737), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3233), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(510)] = { - [sym__atx_heading_content] = STATE(3424), - [sym__inlines] = STATE(3424), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(351), + [STATE(529)] = { + [sym__atx_heading_content] = STATE(3410), + [sym__inlines] = STATE(3410), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(491), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -69289,9 +70793,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), + [sym__whitespace] = ACTIONS(3165), [sym__line_ending] = ACTIONS(23), - [sym__eof] = ACTIONS(3099), + [sym__eof] = ACTIONS(3235), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -69320,374 +70824,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(511)] = { - [sym__inlines] = STATE(4212), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(779), - [sym__inline_whitespace] = STATE(779), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3103), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(530)] = { + [sym__inlines] = STATE(3759), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(759), + [sym__inline_whitespace] = STATE(759), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3239), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(512)] = { - [sym__inlines] = STATE(4227), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(780), - [sym__inline_whitespace] = STATE(780), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3107), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(531)] = { + [sym__inlines] = STATE(4064), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(740), + [sym__inline_whitespace] = STATE(740), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3243), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(513)] = { - [sym__inlines] = STATE(4231), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(781), - [sym__inline_whitespace] = STATE(781), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3111), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(532)] = { + [sym__inlines] = STATE(4066), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(741), + [sym__inline_whitespace] = STATE(741), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3247), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(514)] = { - [sym__inlines] = STATE(4242), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(782), - [sym__inline_whitespace] = STATE(782), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3115), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(533)] = { + [sym__inlines] = STATE(4069), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(742), + [sym__inline_whitespace] = STATE(742), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3251), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(515)] = { - [sym__inlines] = STATE(4100), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(785), - [sym__inline_whitespace] = STATE(785), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3119), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(534)] = { + [sym__inlines] = STATE(4071), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(743), + [sym__inline_whitespace] = STATE(743), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3255), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(516)] = { - [sym__atx_heading_content] = STATE(3446), - [sym__inlines] = STATE(3446), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(231), + [STATE(535)] = { + [sym__inlines] = STATE(3767), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(766), + [sym__inline_whitespace] = STATE(766), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3259), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(536)] = { + [sym_pandoc_paragraph] = STATE(374), + [sym__inlines] = STATE(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__soft_line_break] = STATE(830), + [sym__inline_whitespace] = STATE(830), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -69697,9 +71270,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), - [sym__line_ending] = ACTIONS(233), - [sym__eof] = ACTIONS(3121), + [sym__whitespace] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(3261), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -69728,1122 +71300,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(517)] = { - [sym__inlines] = STATE(4010), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(793), - [sym__inline_whitespace] = STATE(793), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3125), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(518)] = { - [sym__inlines] = STATE(4026), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(794), - [sym__inline_whitespace] = STATE(794), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3129), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(519)] = { - [sym__inlines] = STATE(4037), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(713), - [sym__inline_whitespace] = STATE(713), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3133), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(520)] = { - [sym__inlines] = STATE(4082), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(750), - [sym__inline_whitespace] = STATE(750), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3137), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(521)] = { - [sym__inlines] = STATE(3952), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(736), - [sym__inline_whitespace] = STATE(736), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3141), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(522)] = { - [sym__inlines] = STATE(3786), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(770), - [sym__inline_whitespace] = STATE(770), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3145), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(523)] = { - [sym__inlines] = STATE(3788), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(771), - [sym__inline_whitespace] = STATE(771), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3149), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(524)] = { - [sym__inlines] = STATE(3790), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(786), - [sym__inline_whitespace] = STATE(786), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3153), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(525)] = { - [sym__inlines] = STATE(3794), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(788), - [sym__inline_whitespace] = STATE(788), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3157), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(537)] = { + [sym__inlines] = STATE(4242), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(746), + [sym__inline_whitespace] = STATE(746), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3263), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3265), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(526)] = { - [sym__inlines] = STATE(3961), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(721), - [sym__inline_whitespace] = STATE(721), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3161), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(538)] = { + [sym__inlines] = STATE(4244), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(747), + [sym__inline_whitespace] = STATE(747), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3269), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(527)] = { - [sym__inlines] = STATE(3964), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(722), - [sym__inline_whitespace] = STATE(722), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3165), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(539)] = { + [sym__inlines] = STATE(4248), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(748), + [sym__inline_whitespace] = STATE(748), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3273), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(528)] = { - [sym__inlines] = STATE(3969), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), + [STATE(540)] = { + [sym__inlines] = STATE(4254), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), [sym__soft_line_break] = STATE(749), [sym__inline_whitespace] = STATE(749), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3169), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(529)] = { - [sym__inlines] = STATE(3977), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(795), - [sym__inline_whitespace] = STATE(795), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3173), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(530)] = { - [sym__inlines] = STATE(3987), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(752), - [sym__inline_whitespace] = STATE(752), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3177), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(531)] = { - [sym__inlines] = STATE(3990), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(763), - [sym__inline_whitespace] = STATE(763), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3181), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(532)] = { - [sym__inlines] = STATE(3966), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(723), - [sym__inline_whitespace] = STATE(723), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3185), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3277), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(533)] = { - [sym__atx_heading_content] = STATE(3367), - [sym__inlines] = STATE(3367), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(408), + [STATE(541)] = { + [sym__atx_heading_content] = STATE(3354), + [sym__inlines] = STATE(3354), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(231), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -70853,9 +71609,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), - [sym__line_ending] = ACTIONS(117), - [sym__eof] = ACTIONS(3187), + [sym__whitespace] = ACTIONS(3165), + [sym__line_ending] = ACTIONS(241), + [sym__eof] = ACTIONS(3279), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -70884,306 +71640,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(534)] = { - [sym__inlines] = STATE(4103), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(707), - [sym__inline_whitespace] = STATE(707), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3191), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(535)] = { - [sym__inlines] = STATE(4105), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(708), - [sym__inline_whitespace] = STATE(708), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3195), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(536)] = { - [sym__inlines] = STATE(4109), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(709), - [sym__inline_whitespace] = STATE(709), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3199), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(537)] = { - [sym__inlines] = STATE(4112), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(710), - [sym__inline_whitespace] = STATE(710), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3203), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(538)] = { - [sym__atx_heading_content] = STATE(3368), - [sym__inlines] = STATE(3368), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(409), + [STATE(542)] = { + [sym__atx_heading_content] = STATE(3372), + [sym__inlines] = STATE(3372), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(494), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -71193,9 +71677,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), + [sym__whitespace] = ACTIONS(3165), [sym__line_ending] = ACTIONS(117), - [sym__eof] = ACTIONS(3205), + [sym__eof] = ACTIONS(3281), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -71224,34 +71708,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(539)] = { - [sym__atx_heading_content] = STATE(3376), - [sym__inlines] = STATE(3376), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(410), + [STATE(543)] = { + [sym__inlines] = STATE(4433), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(754), + [sym__inline_whitespace] = STATE(754), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3285), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(544)] = { + [sym__inlines] = STATE(4476), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(755), + [sym__inline_whitespace] = STATE(755), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3289), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(545)] = { + [sym__inlines] = STATE(4478), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(756), + [sym__inline_whitespace] = STATE(756), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3293), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(546)] = { + [sym__inlines] = STATE(4480), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(757), + [sym__inline_whitespace] = STATE(757), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3297), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(547)] = { + [sym_pandoc_paragraph] = STATE(484), + [sym__inlines] = STATE(3428), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__soft_line_break] = STATE(804), + [sym__inline_whitespace] = STATE(804), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -71261,9 +72018,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), - [sym__line_ending] = ACTIONS(117), - [sym__eof] = ACTIONS(3207), + [sym__whitespace] = ACTIONS(21), + [sym__soft_line_ending] = ACTIONS(3261), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -71292,306 +72048,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(540)] = { - [sym__inlines] = STATE(4266), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(737), - [sym__inline_whitespace] = STATE(737), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3211), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(548)] = { + [sym__inlines] = STATE(4156), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(709), + [sym__inline_whitespace] = STATE(709), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3301), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(541)] = { - [sym__inlines] = STATE(4271), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(738), - [sym__inline_whitespace] = STATE(738), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3215), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(549)] = { + [sym__inlines] = STATE(3963), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(762), + [sym__inline_whitespace] = STATE(762), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3305), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(542)] = { - [sym__inlines] = STATE(4276), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(739), - [sym__inline_whitespace] = STATE(739), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3219), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(550)] = { + [sym__inlines] = STATE(3986), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(763), + [sym__inline_whitespace] = STATE(763), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3309), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(543)] = { - [sym__inlines] = STATE(4278), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(740), - [sym__inline_whitespace] = STATE(740), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3223), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(551)] = { + [sym__inlines] = STATE(3996), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(764), + [sym__inline_whitespace] = STATE(764), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3313), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(544)] = { - [sym__atx_heading_content] = STATE(3398), - [sym__inlines] = STATE(3398), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(411), + [STATE(552)] = { + [sym__inlines] = STATE(3998), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(765), + [sym__inline_whitespace] = STATE(765), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3317), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(553)] = { + [sym__atx_heading_content] = STATE(3446), + [sym__inlines] = STATE(3446), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(385), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -71601,9 +72425,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), + [sym__whitespace] = ACTIONS(3165), [sym__line_ending] = ACTIONS(117), - [sym__eof] = ACTIONS(3225), + [sym__eof] = ACTIONS(3319), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -71632,34 +72456,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(545)] = { - [sym__atx_heading_content] = STATE(3400), - [sym__inlines] = STATE(3400), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(412), + [STATE(554)] = { + [sym__atx_heading_content] = STATE(3387), + [sym__inlines] = STATE(3387), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(234), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -71669,9 +72493,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), - [sym__line_ending] = ACTIONS(117), - [sym__eof] = ACTIONS(3227), + [sym__whitespace] = ACTIONS(3165), + [sym__line_ending] = ACTIONS(241), + [sym__eof] = ACTIONS(3321), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -71700,306 +72524,715 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(546)] = { - [sym__inlines] = STATE(4401), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), + [STATE(555)] = { + [sym__inlines] = STATE(4299), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(770), + [sym__inline_whitespace] = STATE(770), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3325), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(556)] = { + [sym__inlines] = STATE(4308), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(771), + [sym__inline_whitespace] = STATE(771), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3329), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(557)] = { + [sym__inlines] = STATE(4324), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), [sym__soft_line_break] = STATE(772), [sym__inline_whitespace] = STATE(772), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3231), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3333), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(547)] = { - [sym__inlines] = STATE(4404), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), + [STATE(558)] = { + [sym__inlines] = STATE(4345), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), [sym__soft_line_break] = STATE(773), [sym__inline_whitespace] = STATE(773), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3235), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3335), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3337), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(548)] = { - [sym__inlines] = STATE(4418), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), + [STATE(559)] = { + [sym__inlines] = STATE(4209), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(710), + [sym__inline_whitespace] = STATE(710), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3341), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(560)] = { + [sym_pipe_table_row] = STATE(3629), + [sym_pipe_table_cell] = STATE(3364), + [sym_pandoc_span] = STATE(680), + [sym_pandoc_image] = STATE(680), + [sym_pandoc_math] = STATE(680), + [sym_pandoc_display_math] = STATE(680), + [sym_pandoc_code_span] = STATE(680), + [sym_pandoc_single_quote] = STATE(680), + [sym_pandoc_double_quote] = STATE(680), + [sym_insert] = STATE(680), + [sym_delete] = STATE(680), + [sym_edit_comment] = STATE(680), + [sym_highlight] = STATE(680), + [sym__pandoc_attr_specifier] = STATE(680), + [sym__line_with_maybe_spaces] = STATE(3327), + [sym__inline_element] = STATE(680), + [sym_shortcode_escaped] = STATE(680), + [sym_shortcode] = STATE(680), + [sym_citation] = STATE(680), + [sym_inline_note] = STATE(680), + [sym_pandoc_superscript] = STATE(680), + [sym_pandoc_subscript] = STATE(680), + [sym_pandoc_strikeout] = STATE(680), + [sym_pandoc_emph] = STATE(680), + [sym_pandoc_strong] = STATE(680), + [sym_pandoc_str] = STATE(680), + [aux_sym_pipe_table_row_repeat1] = STATE(603), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(680), + [sym_entity_reference] = ACTIONS(3343), + [sym_numeric_character_reference] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_BANG_LBRACK] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(3349), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [aux_sym_pandoc_str_token1] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(3357), + [sym__whitespace] = ACTIONS(3359), + [sym__code_span_start] = ACTIONS(3361), + [sym__html_comment] = ACTIONS(3343), + [sym__autolink] = ACTIONS(3343), + [sym__highlight_span_start] = ACTIONS(3363), + [sym__insert_span_start] = ACTIONS(3365), + [sym__delete_span_start] = ACTIONS(3367), + [sym__edit_comment_span_start] = ACTIONS(3369), + [sym__single_quote_span_open] = ACTIONS(3371), + [sym__double_quote_span_open] = ACTIONS(3373), + [sym__shortcode_open_escaped] = ACTIONS(3375), + [sym__shortcode_open] = ACTIONS(3377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3381), + [sym__cite_author_in_text] = ACTIONS(3383), + [sym__cite_suppress_author] = ACTIONS(3385), + [sym__strikeout_open] = ACTIONS(3387), + [sym__subscript_open] = ACTIONS(3389), + [sym__superscript_open] = ACTIONS(3391), + [sym__inline_note_start_token] = ACTIONS(3393), + [sym__strong_emphasis_open_star] = ACTIONS(3395), + [sym__strong_emphasis_open_underscore] = ACTIONS(3397), + [sym__emphasis_open_star] = ACTIONS(3399), + [sym__emphasis_open_underscore] = ACTIONS(3401), + [sym_inline_note_reference] = ACTIONS(3343), + [sym_html_element] = ACTIONS(3343), + [sym__pandoc_lt_str] = ACTIONS(3357), + [sym__pipe_table_delimiter] = ACTIONS(3403), + [sym__pandoc_line_break] = ACTIONS(3343), + }, + [STATE(561)] = { + [sym__inlines] = STATE(3727), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(777), + [sym__inline_whitespace] = STATE(777), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3405), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3407), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(562)] = { + [sym__inlines] = STATE(3729), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), [sym__soft_line_break] = STATE(778), [sym__inline_whitespace] = STATE(778), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3239), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3411), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(549)] = { - [sym__inlines] = STATE(4461), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(783), - [sym__inline_whitespace] = STATE(783), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3243), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(563)] = { + [sym__inlines] = STATE(3731), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(779), + [sym__inline_whitespace] = STATE(779), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3415), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(550)] = { - [sym__atx_heading_content] = STATE(3401), - [sym__inlines] = STATE(3401), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(413), + [STATE(564)] = { + [sym__inlines] = STATE(3733), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(780), + [sym__inline_whitespace] = STATE(780), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3419), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(565)] = { + [sym_pandoc_paragraph] = STATE(259), + [sym__inlines] = STATE(3303), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__soft_line_break] = STATE(811), + [sym__inline_whitespace] = STATE(811), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -72009,9 +73242,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), - [sym__line_ending] = ACTIONS(117), - [sym__eof] = ACTIONS(3245), + [sym__whitespace] = ACTIONS(239), + [sym__soft_line_ending] = ACTIONS(3261), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -72040,715 +73272,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(551)] = { - [sym_pipe_table_row] = STATE(3588), - [sym_pipe_table_cell] = STATE(3321), - [sym_pandoc_span] = STATE(694), - [sym_pandoc_image] = STATE(694), - [sym_pandoc_math] = STATE(694), - [sym_pandoc_display_math] = STATE(694), - [sym_pandoc_code_span] = STATE(694), - [sym_pandoc_single_quote] = STATE(694), - [sym_pandoc_double_quote] = STATE(694), - [sym_insert] = STATE(694), - [sym_delete] = STATE(694), - [sym_edit_comment] = STATE(694), - [sym_highlight] = STATE(694), - [sym__pandoc_attr_specifier] = STATE(694), - [sym__line_with_maybe_spaces] = STATE(3323), - [sym__inline_element] = STATE(694), - [sym_shortcode_escaped] = STATE(694), - [sym_shortcode] = STATE(694), - [sym_citation] = STATE(694), - [sym_inline_note] = STATE(694), - [sym_pandoc_superscript] = STATE(694), - [sym_pandoc_subscript] = STATE(694), - [sym_pandoc_strikeout] = STATE(694), - [sym_pandoc_emph] = STATE(694), - [sym_pandoc_strong] = STATE(694), - [sym_pandoc_str] = STATE(694), - [aux_sym_pipe_table_row_repeat1] = STATE(596), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(694), - [sym_entity_reference] = ACTIONS(3247), - [sym_numeric_character_reference] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_BANG_LBRACK] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [aux_sym_pandoc_str_token1] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3261), - [sym__whitespace] = ACTIONS(3263), - [sym__code_span_start] = ACTIONS(3265), - [sym__html_comment] = ACTIONS(3247), - [sym__autolink] = ACTIONS(3247), - [sym__highlight_span_start] = ACTIONS(3267), - [sym__insert_span_start] = ACTIONS(3269), - [sym__delete_span_start] = ACTIONS(3271), - [sym__edit_comment_span_start] = ACTIONS(3273), - [sym__single_quote_span_open] = ACTIONS(3275), - [sym__double_quote_span_open] = ACTIONS(3277), - [sym__shortcode_open_escaped] = ACTIONS(3279), - [sym__shortcode_open] = ACTIONS(3281), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3285), - [sym__cite_author_in_text] = ACTIONS(3287), - [sym__cite_suppress_author] = ACTIONS(3289), - [sym__strikeout_open] = ACTIONS(3291), - [sym__subscript_open] = ACTIONS(3293), - [sym__superscript_open] = ACTIONS(3295), - [sym__inline_note_start_token] = ACTIONS(3297), - [sym__strong_emphasis_open_star] = ACTIONS(3299), - [sym__strong_emphasis_open_underscore] = ACTIONS(3301), - [sym__emphasis_open_star] = ACTIONS(3303), - [sym__emphasis_open_underscore] = ACTIONS(3305), - [sym_inline_note_reference] = ACTIONS(3247), - [sym_html_element] = ACTIONS(3247), - [sym__pandoc_lt_str] = ACTIONS(3261), - [sym__pipe_table_delimiter] = ACTIONS(3307), - [sym__pandoc_line_break] = ACTIONS(3247), - }, - [STATE(552)] = { - [sym__inlines] = STATE(3856), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(703), - [sym__inline_whitespace] = STATE(703), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3311), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(553)] = { - [sym__inlines] = STATE(3886), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(704), - [sym__inline_whitespace] = STATE(704), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3315), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(554)] = { - [sym__inlines] = STATE(3908), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(705), - [sym__inline_whitespace] = STATE(705), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3319), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(555)] = { - [sym__inlines] = STATE(3928), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(706), - [sym__inline_whitespace] = STATE(706), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3321), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3323), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(556)] = { - [sym_pipe_table_row] = STATE(3613), - [sym_pipe_table_cell] = STATE(3321), - [sym_pandoc_span] = STATE(694), - [sym_pandoc_image] = STATE(694), - [sym_pandoc_math] = STATE(694), - [sym_pandoc_display_math] = STATE(694), - [sym_pandoc_code_span] = STATE(694), - [sym_pandoc_single_quote] = STATE(694), - [sym_pandoc_double_quote] = STATE(694), - [sym_insert] = STATE(694), - [sym_delete] = STATE(694), - [sym_edit_comment] = STATE(694), - [sym_highlight] = STATE(694), - [sym__pandoc_attr_specifier] = STATE(694), - [sym__line_with_maybe_spaces] = STATE(3323), - [sym__inline_element] = STATE(694), - [sym_shortcode_escaped] = STATE(694), - [sym_shortcode] = STATE(694), - [sym_citation] = STATE(694), - [sym_inline_note] = STATE(694), - [sym_pandoc_superscript] = STATE(694), - [sym_pandoc_subscript] = STATE(694), - [sym_pandoc_strikeout] = STATE(694), - [sym_pandoc_emph] = STATE(694), - [sym_pandoc_strong] = STATE(694), - [sym_pandoc_str] = STATE(694), - [aux_sym_pipe_table_row_repeat1] = STATE(596), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(694), - [sym_entity_reference] = ACTIONS(3247), - [sym_numeric_character_reference] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_BANG_LBRACK] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [aux_sym_pandoc_str_token1] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3261), - [sym__whitespace] = ACTIONS(3263), - [sym__code_span_start] = ACTIONS(3265), - [sym__html_comment] = ACTIONS(3247), - [sym__autolink] = ACTIONS(3247), - [sym__highlight_span_start] = ACTIONS(3267), - [sym__insert_span_start] = ACTIONS(3269), - [sym__delete_span_start] = ACTIONS(3271), - [sym__edit_comment_span_start] = ACTIONS(3273), - [sym__single_quote_span_open] = ACTIONS(3275), - [sym__double_quote_span_open] = ACTIONS(3277), - [sym__shortcode_open_escaped] = ACTIONS(3279), - [sym__shortcode_open] = ACTIONS(3281), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3285), - [sym__cite_author_in_text] = ACTIONS(3287), - [sym__cite_suppress_author] = ACTIONS(3289), - [sym__strikeout_open] = ACTIONS(3291), - [sym__subscript_open] = ACTIONS(3293), - [sym__superscript_open] = ACTIONS(3295), - [sym__inline_note_start_token] = ACTIONS(3297), - [sym__strong_emphasis_open_star] = ACTIONS(3299), - [sym__strong_emphasis_open_underscore] = ACTIONS(3301), - [sym__emphasis_open_star] = ACTIONS(3303), - [sym__emphasis_open_underscore] = ACTIONS(3305), - [sym_inline_note_reference] = ACTIONS(3247), - [sym_html_element] = ACTIONS(3247), - [sym__pandoc_lt_str] = ACTIONS(3261), - [sym__pipe_table_delimiter] = ACTIONS(3307), - [sym__pandoc_line_break] = ACTIONS(3247), - }, - [STATE(557)] = { - [sym__inlines] = STATE(4258), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(717), - [sym__inline_whitespace] = STATE(717), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3327), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(558)] = { - [sym__inlines] = STATE(4267), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(718), - [sym__inline_whitespace] = STATE(718), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3331), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(559)] = { - [sym__inlines] = STATE(4283), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(719), - [sym__inline_whitespace] = STATE(719), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3335), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(560)] = { - [sym__inlines] = STATE(4291), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(720), - [sym__inline_whitespace] = STATE(720), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3339), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(561)] = { - [sym_pandoc_paragraph] = STATE(445), - [sym__inlines] = STATE(3381), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__soft_line_break] = STATE(798), - [sym__inline_whitespace] = STATE(798), + [STATE(566)] = { + [sym__atx_heading_content] = STATE(3467), + [sym__inlines] = STATE(3467), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(419), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -72758,8 +73309,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(115), - [sym__soft_line_ending] = ACTIONS(3021), + [sym__whitespace] = ACTIONS(3165), + [sym__line_ending] = ACTIONS(117), + [sym__eof] = ACTIONS(3421), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -72788,374 +73340,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(562)] = { - [sym__inlines] = STATE(3716), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(731), - [sym__inline_whitespace] = STATE(731), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3343), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(563)] = { - [sym__inlines] = STATE(3718), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(732), - [sym__inline_whitespace] = STATE(732), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3347), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(567)] = { + [sym__inlines] = STATE(3802), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(782), + [sym__inline_whitespace] = STATE(782), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3423), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3425), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(564)] = { - [sym__inlines] = STATE(3720), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(733), - [sym__inline_whitespace] = STATE(733), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3351), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(568)] = { + [sym__inlines] = STATE(3804), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(783), + [sym__inline_whitespace] = STATE(783), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3429), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(565)] = { - [sym__inlines] = STATE(3722), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(734), - [sym__inline_whitespace] = STATE(734), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3355), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(569)] = { + [sym__inlines] = STATE(3806), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(784), + [sym__inline_whitespace] = STATE(784), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3433), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(566)] = { - [sym__inlines] = STATE(3815), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(743), - [sym__inline_whitespace] = STATE(743), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3359), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(570)] = { + [sym__inlines] = STATE(3808), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(785), + [sym__inline_whitespace] = STATE(785), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3435), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3437), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(567)] = { - [sym__atx_heading_content] = STATE(3284), - [sym__inlines] = STATE(3284), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(220), + [STATE(571)] = { + [sym__atx_heading_content] = STATE(3480), + [sym__inlines] = STATE(3480), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(421), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -73165,9 +73649,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), - [sym__line_ending] = ACTIONS(233), - [sym__eof] = ACTIONS(3361), + [sym__whitespace] = ACTIONS(3165), + [sym__line_ending] = ACTIONS(117), + [sym__eof] = ACTIONS(3439), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -73196,306 +73680,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(568)] = { - [sym__inlines] = STATE(3791), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(745), - [sym__inline_whitespace] = STATE(745), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3365), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(569)] = { - [sym__inlines] = STATE(3793), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(746), - [sym__inline_whitespace] = STATE(746), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3369), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(570)] = { - [sym__inlines] = STATE(3795), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(747), - [sym__inline_whitespace] = STATE(747), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3373), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(571)] = { - [sym__inlines] = STATE(3797), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(748), - [sym__inline_whitespace] = STATE(748), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3377), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, [STATE(572)] = { - [sym__atx_heading_content] = STATE(3331), - [sym__inlines] = STATE(3331), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(223), + [sym__atx_heading_content] = STATE(3502), + [sym__inlines] = STATE(3502), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(423), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -73505,9 +73717,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), - [sym__line_ending] = ACTIONS(233), - [sym__eof] = ACTIONS(3379), + [sym__whitespace] = ACTIONS(3165), + [sym__line_ending] = ACTIONS(117), + [sym__eof] = ACTIONS(3441), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -73537,577 +73749,441 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(5), }, [STATE(573)] = { - [sym__inlines] = STATE(3745), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(711), - [sym__inline_whitespace] = STATE(711), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3383), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [sym__inlines] = STATE(3776), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(767), + [sym__inline_whitespace] = STATE(767), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3445), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, [STATE(574)] = { - [sym__inlines] = STATE(3866), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(759), - [sym__inline_whitespace] = STATE(759), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3387), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [sym__inlines] = STATE(3879), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(789), + [sym__inline_whitespace] = STATE(789), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3449), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, [STATE(575)] = { - [sym__inlines] = STATE(3868), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(760), - [sym__inline_whitespace] = STATE(760), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3391), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [sym__inlines] = STATE(3881), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(790), + [sym__inline_whitespace] = STATE(790), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3453), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, [STATE(576)] = { - [sym__inlines] = STATE(3870), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(761), - [sym__inline_whitespace] = STATE(761), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3395), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [sym__inlines] = STATE(3883), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(791), + [sym__inline_whitespace] = STATE(791), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3457), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, [STATE(577)] = { - [sym__inlines] = STATE(3872), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(762), - [sym__inline_whitespace] = STATE(762), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3399), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [sym__inlines] = STATE(3780), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(774), + [sym__inline_whitespace] = STATE(774), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3461), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, [STATE(578)] = { - [sym__inlines] = STATE(3907), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(712), - [sym__inline_whitespace] = STATE(712), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3403), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [sym__inlines] = STATE(4181), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(794), + [sym__inline_whitespace] = STATE(794), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3463), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3465), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, [STATE(579)] = { - [sym__inlines] = STATE(3926), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(715), - [sym__inline_whitespace] = STATE(715), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3407), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(580)] = { - [sym__inlines] = STATE(4001), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(716), - [sym__inline_whitespace] = STATE(716), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3411), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(581)] = { - [sym__atx_heading_content] = STATE(3341), - [sym__inlines] = STATE(3341), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(399), + [sym__atx_heading_content] = STATE(3431), + [sym__inlines] = STATE(3431), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(492), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -74117,9 +74193,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), + [sym__whitespace] = ACTIONS(3165), [sym__line_ending] = ACTIONS(23), - [sym__eof] = ACTIONS(3413), + [sym__eof] = ACTIONS(3467), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -74148,34 +74224,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(582)] = { - [sym__atx_heading_content] = STATE(3428), - [sym__inlines] = STATE(3428), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(229), + [STATE(580)] = { + [sym__atx_heading_content] = STATE(3367), + [sym__inlines] = STATE(3367), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(232), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -74185,9 +74261,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), - [sym__line_ending] = ACTIONS(233), - [sym__eof] = ACTIONS(3415), + [sym__whitespace] = ACTIONS(3165), + [sym__line_ending] = ACTIONS(241), + [sym__eof] = ACTIONS(3469), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -74216,34 +74292,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(583)] = { - [sym__atx_heading_content] = STATE(3357), - [sym__inlines] = STATE(3357), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(397), + [STATE(581)] = { + [sym__inlines] = STATE(4185), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(795), + [sym__inline_whitespace] = STATE(795), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3471), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3473), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(582)] = { + [sym__atx_heading_content] = STATE(3447), + [sym__inlines] = STATE(3447), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(504), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -74253,9 +74397,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), + [sym__whitespace] = ACTIONS(3165), [sym__line_ending] = ACTIONS(23), - [sym__eof] = ACTIONS(3417), + [sym__eof] = ACTIONS(3475), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -74284,34 +74428,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(584)] = { - [sym__atx_heading_content] = STATE(3458), - [sym__inlines] = STATE(3458), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(400), + [STATE(583)] = { + [sym_pandoc_paragraph] = STATE(62), + [sym__inlines] = STATE(3420), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__soft_line_break] = STATE(830), + [sym__inline_whitespace] = STATE(830), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -74321,9 +74466,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), - [sym__line_ending] = ACTIONS(23), - [sym__eof] = ACTIONS(3419), + [sym__whitespace] = ACTIONS(115), + [sym__soft_line_ending] = ACTIONS(3261), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -74352,34 +74496,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(585)] = { - [sym__atx_heading_content] = STATE(3411), - [sym__inlines] = STATE(3411), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(401), + [STATE(584)] = { + [sym__atx_heading_content] = STATE(3328), + [sym__inlines] = STATE(3328), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(375), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -74389,9 +74533,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), + [sym__whitespace] = ACTIONS(3165), [sym__line_ending] = ACTIONS(23), - [sym__eof] = ACTIONS(3421), + [sym__eof] = ACTIONS(3477), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -74420,171 +74564,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(586)] = { - [sym__inlines] = STATE(4295), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(784), - [sym__inline_whitespace] = STATE(784), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3425), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), - }, - [STATE(587)] = { - [sym__inlines] = STATE(4145), - [sym_pandoc_span] = STATE(688), - [sym_pandoc_image] = STATE(688), - [sym_pandoc_math] = STATE(688), - [sym_pandoc_display_math] = STATE(688), - [sym_pandoc_code_span] = STATE(688), - [sym_pandoc_single_quote] = STATE(688), - [sym_pandoc_double_quote] = STATE(688), - [sym_insert] = STATE(688), - [sym_delete] = STATE(688), - [sym_edit_comment] = STATE(688), - [sym_highlight] = STATE(688), - [sym__pandoc_attr_specifier] = STATE(688), - [sym__line] = STATE(3190), - [sym__inline_element] = STATE(688), - [sym_shortcode_escaped] = STATE(688), - [sym_shortcode] = STATE(688), - [sym_citation] = STATE(688), - [sym_inline_note] = STATE(688), - [sym_pandoc_superscript] = STATE(688), - [sym_pandoc_subscript] = STATE(688), - [sym_pandoc_strikeout] = STATE(688), - [sym_pandoc_emph] = STATE(688), - [sym_pandoc_strong] = STATE(688), - [sym_pandoc_str] = STATE(688), - [sym__soft_line_break] = STATE(744), - [sym__inline_whitespace] = STATE(744), - [sym_entity_reference] = ACTIONS(3023), - [sym_numeric_character_reference] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3031), - [aux_sym_insert_token1] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3035), - [aux_sym_pandoc_str_token1] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3039), - [sym__whitespace] = ACTIONS(3429), - [sym__soft_line_ending] = ACTIONS(3043), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3023), - [sym__autolink] = ACTIONS(3023), - [sym__highlight_span_start] = ACTIONS(3047), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3051), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3055), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3059), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3067), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3071), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3075), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3079), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3023), - [sym_html_element] = ACTIONS(3023), - [sym__pandoc_lt_str] = ACTIONS(3039), - [sym__pandoc_line_break] = ACTIONS(3023), + [STATE(585)] = { + [sym__inlines] = STATE(4294), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(705), + [sym__inline_whitespace] = STATE(705), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3479), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3481), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, - [STATE(588)] = { - [sym_pandoc_paragraph] = STATE(203), - [sym__inlines] = STATE(3320), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__soft_line_break] = STATE(802), - [sym__inline_whitespace] = STATE(802), + [STATE(586)] = { + [sym__atx_heading_content] = STATE(3383), + [sym__inlines] = STATE(3383), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(483), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -74594,8 +74669,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(231), - [sym__soft_line_ending] = ACTIONS(3021), + [sym__whitespace] = ACTIONS(3165), + [sym__line_ending] = ACTIONS(23), + [sym__eof] = ACTIONS(3483), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -74624,34 +74700,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, - [STATE(589)] = { - [sym__atx_heading_content] = STATE(3470), - [sym__inlines] = STATE(3470), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(218), + [STATE(587)] = { + [sym__atx_heading_content] = STATE(3390), + [sym__inlines] = STATE(3390), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(485), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -74661,9 +74737,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), - [sym__line_ending] = ACTIONS(233), - [sym__eof] = ACTIONS(3431), + [sym__whitespace] = ACTIONS(3165), + [sym__line_ending] = ACTIONS(23), + [sym__eof] = ACTIONS(3485), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -74692,102 +74768,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_lt_str] = ACTIONS(19), [sym__pandoc_line_break] = ACTIONS(5), }, + [STATE(588)] = { + [sym__inlines] = STATE(3869), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(706), + [sym__inline_whitespace] = STATE(706), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3487), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3489), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, + [STATE(589)] = { + [sym__inlines] = STATE(3898), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(707), + [sym__inline_whitespace] = STATE(707), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3491), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3493), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), + }, [STATE(590)] = { - [sym_pipe_table_row] = STATE(3576), - [sym_pipe_table_cell] = STATE(3321), - [sym_pandoc_span] = STATE(694), - [sym_pandoc_image] = STATE(694), - [sym_pandoc_math] = STATE(694), - [sym_pandoc_display_math] = STATE(694), - [sym_pandoc_code_span] = STATE(694), - [sym_pandoc_single_quote] = STATE(694), - [sym_pandoc_double_quote] = STATE(694), - [sym_insert] = STATE(694), - [sym_delete] = STATE(694), - [sym_edit_comment] = STATE(694), - [sym_highlight] = STATE(694), - [sym__pandoc_attr_specifier] = STATE(694), - [sym__line_with_maybe_spaces] = STATE(3323), - [sym__inline_element] = STATE(694), - [sym_shortcode_escaped] = STATE(694), - [sym_shortcode] = STATE(694), - [sym_citation] = STATE(694), - [sym_inline_note] = STATE(694), - [sym_pandoc_superscript] = STATE(694), - [sym_pandoc_subscript] = STATE(694), - [sym_pandoc_strikeout] = STATE(694), - [sym_pandoc_emph] = STATE(694), - [sym_pandoc_strong] = STATE(694), - [sym_pandoc_str] = STATE(694), - [aux_sym_pipe_table_row_repeat1] = STATE(596), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(694), - [sym_entity_reference] = ACTIONS(3247), - [sym_numeric_character_reference] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_BANG_LBRACK] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [aux_sym_pandoc_str_token1] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3261), - [sym__whitespace] = ACTIONS(3263), - [sym__code_span_start] = ACTIONS(3265), - [sym__html_comment] = ACTIONS(3247), - [sym__autolink] = ACTIONS(3247), - [sym__highlight_span_start] = ACTIONS(3267), - [sym__insert_span_start] = ACTIONS(3269), - [sym__delete_span_start] = ACTIONS(3271), - [sym__edit_comment_span_start] = ACTIONS(3273), - [sym__single_quote_span_open] = ACTIONS(3275), - [sym__double_quote_span_open] = ACTIONS(3277), - [sym__shortcode_open_escaped] = ACTIONS(3279), - [sym__shortcode_open] = ACTIONS(3281), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3285), - [sym__cite_author_in_text] = ACTIONS(3287), - [sym__cite_suppress_author] = ACTIONS(3289), - [sym__strikeout_open] = ACTIONS(3291), - [sym__subscript_open] = ACTIONS(3293), - [sym__superscript_open] = ACTIONS(3295), - [sym__inline_note_start_token] = ACTIONS(3297), - [sym__strong_emphasis_open_star] = ACTIONS(3299), - [sym__strong_emphasis_open_underscore] = ACTIONS(3301), - [sym__emphasis_open_star] = ACTIONS(3303), - [sym__emphasis_open_underscore] = ACTIONS(3305), - [sym_inline_note_reference] = ACTIONS(3247), - [sym_html_element] = ACTIONS(3247), - [sym__pandoc_lt_str] = ACTIONS(3261), - [sym__pipe_table_delimiter] = ACTIONS(3307), - [sym__pandoc_line_break] = ACTIONS(3247), + [sym__inlines] = STATE(4052), + [sym_pandoc_span] = STATE(673), + [sym_pandoc_image] = STATE(673), + [sym_pandoc_math] = STATE(673), + [sym_pandoc_display_math] = STATE(673), + [sym_pandoc_code_span] = STATE(673), + [sym_pandoc_single_quote] = STATE(673), + [sym_pandoc_double_quote] = STATE(673), + [sym_insert] = STATE(673), + [sym_delete] = STATE(673), + [sym_edit_comment] = STATE(673), + [sym_highlight] = STATE(673), + [sym__pandoc_attr_specifier] = STATE(673), + [sym__line] = STATE(3207), + [sym__inline_element] = STATE(673), + [sym_shortcode_escaped] = STATE(673), + [sym_shortcode] = STATE(673), + [sym_citation] = STATE(673), + [sym_inline_note] = STATE(673), + [sym_pandoc_superscript] = STATE(673), + [sym_pandoc_subscript] = STATE(673), + [sym_pandoc_strikeout] = STATE(673), + [sym_pandoc_emph] = STATE(673), + [sym_pandoc_strong] = STATE(673), + [sym_pandoc_str] = STATE(673), + [sym__soft_line_break] = STATE(708), + [sym__inline_whitespace] = STATE(708), + [sym_entity_reference] = ACTIONS(3085), + [sym_numeric_character_reference] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_BANG_LBRACK] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3093), + [aux_sym_insert_token1] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3097), + [aux_sym_pandoc_str_token1] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3101), + [sym__whitespace] = ACTIONS(3497), + [sym__soft_line_ending] = ACTIONS(3105), + [sym__code_span_start] = ACTIONS(3107), + [sym__html_comment] = ACTIONS(3085), + [sym__autolink] = ACTIONS(3085), + [sym__highlight_span_start] = ACTIONS(3109), + [sym__insert_span_start] = ACTIONS(3111), + [sym__delete_span_start] = ACTIONS(3113), + [sym__edit_comment_span_start] = ACTIONS(3115), + [sym__single_quote_span_open] = ACTIONS(3117), + [sym__double_quote_span_open] = ACTIONS(3119), + [sym__shortcode_open_escaped] = ACTIONS(3121), + [sym__shortcode_open] = ACTIONS(3123), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3127), + [sym__cite_author_in_text] = ACTIONS(3129), + [sym__cite_suppress_author] = ACTIONS(3131), + [sym__strikeout_open] = ACTIONS(3133), + [sym__subscript_open] = ACTIONS(3135), + [sym__superscript_open] = ACTIONS(3137), + [sym__inline_note_start_token] = ACTIONS(3139), + [sym__strong_emphasis_open_star] = ACTIONS(3141), + [sym__strong_emphasis_open_underscore] = ACTIONS(3143), + [sym__emphasis_open_star] = ACTIONS(3145), + [sym__emphasis_open_underscore] = ACTIONS(3147), + [sym_inline_note_reference] = ACTIONS(3085), + [sym_html_element] = ACTIONS(3085), + [sym__pandoc_lt_str] = ACTIONS(3101), + [sym__pandoc_line_break] = ACTIONS(3085), }, [STATE(591)] = { - [sym__atx_heading_content] = STATE(3315), - [sym__inlines] = STATE(3315), - [sym_pandoc_span] = STATE(653), - [sym_pandoc_image] = STATE(653), - [sym_pandoc_math] = STATE(653), - [sym_pandoc_display_math] = STATE(653), - [sym_pandoc_code_span] = STATE(653), - [sym_pandoc_single_quote] = STATE(653), - [sym_pandoc_double_quote] = STATE(653), - [sym_insert] = STATE(653), - [sym_delete] = STATE(653), - [sym_edit_comment] = STATE(653), - [sym_highlight] = STATE(653), - [sym__pandoc_attr_specifier] = STATE(653), - [sym__line] = STATE(2983), - [sym__inline_element] = STATE(653), - [sym_shortcode_escaped] = STATE(653), - [sym_shortcode] = STATE(653), - [sym_citation] = STATE(653), - [sym_inline_note] = STATE(653), - [sym_pandoc_superscript] = STATE(653), - [sym_pandoc_subscript] = STATE(653), - [sym_pandoc_strikeout] = STATE(653), - [sym_pandoc_emph] = STATE(653), - [sym_pandoc_strong] = STATE(653), - [sym_pandoc_str] = STATE(653), - [sym__newline] = STATE(395), + [sym__atx_heading_content] = STATE(3378), + [sym__inlines] = STATE(3378), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(233), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(7), @@ -74797,9 +75009,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(15), [aux_sym_pandoc_str_token1] = ACTIONS(17), [anon_sym_PIPE] = ACTIONS(19), - [sym__whitespace] = ACTIONS(3017), - [sym__line_ending] = ACTIONS(23), - [sym__eof] = ACTIONS(3433), + [sym__whitespace] = ACTIONS(3165), + [sym__line_ending] = ACTIONS(241), + [sym__eof] = ACTIONS(3499), [sym__code_span_start] = ACTIONS(65), [sym__html_comment] = ACTIONS(5), [sym__autolink] = ACTIONS(5), @@ -74829,2020 +75041,2224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(5), }, [STATE(592)] = { - [sym__inlines] = STATE(2949), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(869), - [sym__inline_whitespace] = STATE(869), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3451), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym_pipe_table_row] = STATE(3576), + [sym_pipe_table_cell] = STATE(3364), + [sym_pandoc_span] = STATE(680), + [sym_pandoc_image] = STATE(680), + [sym_pandoc_math] = STATE(680), + [sym_pandoc_display_math] = STATE(680), + [sym_pandoc_code_span] = STATE(680), + [sym_pandoc_single_quote] = STATE(680), + [sym_pandoc_double_quote] = STATE(680), + [sym_insert] = STATE(680), + [sym_delete] = STATE(680), + [sym_edit_comment] = STATE(680), + [sym_highlight] = STATE(680), + [sym__pandoc_attr_specifier] = STATE(680), + [sym__line_with_maybe_spaces] = STATE(3327), + [sym__inline_element] = STATE(680), + [sym_shortcode_escaped] = STATE(680), + [sym_shortcode] = STATE(680), + [sym_citation] = STATE(680), + [sym_inline_note] = STATE(680), + [sym_pandoc_superscript] = STATE(680), + [sym_pandoc_subscript] = STATE(680), + [sym_pandoc_strikeout] = STATE(680), + [sym_pandoc_emph] = STATE(680), + [sym_pandoc_strong] = STATE(680), + [sym_pandoc_str] = STATE(680), + [aux_sym_pipe_table_row_repeat1] = STATE(603), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(680), + [sym_entity_reference] = ACTIONS(3343), + [sym_numeric_character_reference] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_BANG_LBRACK] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(3349), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [aux_sym_pandoc_str_token1] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(3357), + [sym__whitespace] = ACTIONS(3359), + [sym__code_span_start] = ACTIONS(3361), + [sym__html_comment] = ACTIONS(3343), + [sym__autolink] = ACTIONS(3343), + [sym__highlight_span_start] = ACTIONS(3363), + [sym__insert_span_start] = ACTIONS(3365), + [sym__delete_span_start] = ACTIONS(3367), + [sym__edit_comment_span_start] = ACTIONS(3369), + [sym__single_quote_span_open] = ACTIONS(3371), + [sym__double_quote_span_open] = ACTIONS(3373), + [sym__shortcode_open_escaped] = ACTIONS(3375), + [sym__shortcode_open] = ACTIONS(3377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3381), + [sym__cite_author_in_text] = ACTIONS(3383), + [sym__cite_suppress_author] = ACTIONS(3385), + [sym__strikeout_open] = ACTIONS(3387), + [sym__subscript_open] = ACTIONS(3389), + [sym__superscript_open] = ACTIONS(3391), + [sym__inline_note_start_token] = ACTIONS(3393), + [sym__strong_emphasis_open_star] = ACTIONS(3395), + [sym__strong_emphasis_open_underscore] = ACTIONS(3397), + [sym__emphasis_open_star] = ACTIONS(3399), + [sym__emphasis_open_underscore] = ACTIONS(3401), + [sym_inline_note_reference] = ACTIONS(3343), + [sym_html_element] = ACTIONS(3343), + [sym__pandoc_lt_str] = ACTIONS(3357), + [sym__pipe_table_delimiter] = ACTIONS(3403), + [sym__pandoc_line_break] = ACTIONS(3343), }, [STATE(593)] = { - [sym_pipe_table_cell] = STATE(3280), - [sym_pandoc_span] = STATE(694), - [sym_pandoc_image] = STATE(694), - [sym_pandoc_math] = STATE(694), - [sym_pandoc_display_math] = STATE(694), - [sym_pandoc_code_span] = STATE(694), - [sym_pandoc_single_quote] = STATE(694), - [sym_pandoc_double_quote] = STATE(694), - [sym_insert] = STATE(694), - [sym_delete] = STATE(694), - [sym_edit_comment] = STATE(694), - [sym_highlight] = STATE(694), - [sym__pandoc_attr_specifier] = STATE(694), - [sym__line_with_maybe_spaces] = STATE(3323), - [sym__inline_element] = STATE(694), - [sym_shortcode_escaped] = STATE(694), - [sym_shortcode] = STATE(694), - [sym_citation] = STATE(694), - [sym_inline_note] = STATE(694), - [sym_pandoc_superscript] = STATE(694), - [sym_pandoc_subscript] = STATE(694), - [sym_pandoc_strikeout] = STATE(694), - [sym_pandoc_emph] = STATE(694), - [sym_pandoc_strong] = STATE(694), - [sym_pandoc_str] = STATE(694), - [aux_sym_pipe_table_row_repeat1] = STATE(597), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(694), - [sym_entity_reference] = ACTIONS(3247), - [sym_numeric_character_reference] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_BANG_LBRACK] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [aux_sym_pandoc_str_token1] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3261), - [sym__whitespace] = ACTIONS(3495), - [sym__line_ending] = ACTIONS(2913), - [sym__code_span_start] = ACTIONS(3265), - [sym__html_comment] = ACTIONS(3247), - [sym__autolink] = ACTIONS(3247), - [sym__highlight_span_start] = ACTIONS(3267), - [sym__insert_span_start] = ACTIONS(3269), - [sym__delete_span_start] = ACTIONS(3271), - [sym__edit_comment_span_start] = ACTIONS(3273), - [sym__single_quote_span_open] = ACTIONS(3275), - [sym__double_quote_span_open] = ACTIONS(3277), - [sym__shortcode_open_escaped] = ACTIONS(3279), - [sym__shortcode_open] = ACTIONS(3281), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3285), - [sym__cite_author_in_text] = ACTIONS(3287), - [sym__cite_suppress_author] = ACTIONS(3289), - [sym__strikeout_open] = ACTIONS(3291), - [sym__subscript_open] = ACTIONS(3293), - [sym__superscript_open] = ACTIONS(3295), - [sym__inline_note_start_token] = ACTIONS(3297), - [sym__strong_emphasis_open_star] = ACTIONS(3299), - [sym__strong_emphasis_open_underscore] = ACTIONS(3301), - [sym__emphasis_open_star] = ACTIONS(3303), - [sym__emphasis_open_underscore] = ACTIONS(3305), - [sym_inline_note_reference] = ACTIONS(3247), - [sym_html_element] = ACTIONS(3247), - [sym__pandoc_lt_str] = ACTIONS(3261), - [sym__pandoc_line_break] = ACTIONS(3247), + [sym_pipe_table_row] = STATE(3589), + [sym_pipe_table_cell] = STATE(3364), + [sym_pandoc_span] = STATE(680), + [sym_pandoc_image] = STATE(680), + [sym_pandoc_math] = STATE(680), + [sym_pandoc_display_math] = STATE(680), + [sym_pandoc_code_span] = STATE(680), + [sym_pandoc_single_quote] = STATE(680), + [sym_pandoc_double_quote] = STATE(680), + [sym_insert] = STATE(680), + [sym_delete] = STATE(680), + [sym_edit_comment] = STATE(680), + [sym_highlight] = STATE(680), + [sym__pandoc_attr_specifier] = STATE(680), + [sym__line_with_maybe_spaces] = STATE(3327), + [sym__inline_element] = STATE(680), + [sym_shortcode_escaped] = STATE(680), + [sym_shortcode] = STATE(680), + [sym_citation] = STATE(680), + [sym_inline_note] = STATE(680), + [sym_pandoc_superscript] = STATE(680), + [sym_pandoc_subscript] = STATE(680), + [sym_pandoc_strikeout] = STATE(680), + [sym_pandoc_emph] = STATE(680), + [sym_pandoc_strong] = STATE(680), + [sym_pandoc_str] = STATE(680), + [aux_sym_pipe_table_row_repeat1] = STATE(603), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(680), + [sym_entity_reference] = ACTIONS(3343), + [sym_numeric_character_reference] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_BANG_LBRACK] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(3349), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [aux_sym_pandoc_str_token1] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(3357), + [sym__whitespace] = ACTIONS(3359), + [sym__code_span_start] = ACTIONS(3361), + [sym__html_comment] = ACTIONS(3343), + [sym__autolink] = ACTIONS(3343), + [sym__highlight_span_start] = ACTIONS(3363), + [sym__insert_span_start] = ACTIONS(3365), + [sym__delete_span_start] = ACTIONS(3367), + [sym__edit_comment_span_start] = ACTIONS(3369), + [sym__single_quote_span_open] = ACTIONS(3371), + [sym__double_quote_span_open] = ACTIONS(3373), + [sym__shortcode_open_escaped] = ACTIONS(3375), + [sym__shortcode_open] = ACTIONS(3377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3381), + [sym__cite_author_in_text] = ACTIONS(3383), + [sym__cite_suppress_author] = ACTIONS(3385), + [sym__strikeout_open] = ACTIONS(3387), + [sym__subscript_open] = ACTIONS(3389), + [sym__superscript_open] = ACTIONS(3391), + [sym__inline_note_start_token] = ACTIONS(3393), + [sym__strong_emphasis_open_star] = ACTIONS(3395), + [sym__strong_emphasis_open_underscore] = ACTIONS(3397), + [sym__emphasis_open_star] = ACTIONS(3399), + [sym__emphasis_open_underscore] = ACTIONS(3401), + [sym_inline_note_reference] = ACTIONS(3343), + [sym_html_element] = ACTIONS(3343), + [sym__pandoc_lt_str] = ACTIONS(3357), + [sym__pipe_table_delimiter] = ACTIONS(3403), + [sym__pandoc_line_break] = ACTIONS(3343), }, [STATE(594)] = { - [sym_pipe_table_cell] = STATE(3445), - [sym_pandoc_span] = STATE(694), - [sym_pandoc_image] = STATE(694), - [sym_pandoc_math] = STATE(694), - [sym_pandoc_display_math] = STATE(694), - [sym_pandoc_code_span] = STATE(694), - [sym_pandoc_single_quote] = STATE(694), - [sym_pandoc_double_quote] = STATE(694), - [sym_insert] = STATE(694), - [sym_delete] = STATE(694), - [sym_edit_comment] = STATE(694), - [sym_highlight] = STATE(694), - [sym__pandoc_attr_specifier] = STATE(694), - [sym__line_with_maybe_spaces] = STATE(3323), - [sym__inline_element] = STATE(694), - [sym_shortcode_escaped] = STATE(694), - [sym_shortcode] = STATE(694), - [sym_citation] = STATE(694), - [sym_inline_note] = STATE(694), - [sym_pandoc_superscript] = STATE(694), - [sym_pandoc_subscript] = STATE(694), - [sym_pandoc_strikeout] = STATE(694), - [sym_pandoc_emph] = STATE(694), - [sym_pandoc_strong] = STATE(694), - [sym_pandoc_str] = STATE(694), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(694), - [sym_entity_reference] = ACTIONS(3247), - [sym_numeric_character_reference] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_BANG_LBRACK] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [aux_sym_pandoc_str_token1] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3261), - [sym__whitespace] = ACTIONS(3497), - [sym__line_ending] = ACTIONS(2913), - [sym__code_span_start] = ACTIONS(3265), - [sym__html_comment] = ACTIONS(3247), - [sym__autolink] = ACTIONS(3247), - [sym__highlight_span_start] = ACTIONS(3267), - [sym__insert_span_start] = ACTIONS(3269), - [sym__delete_span_start] = ACTIONS(3271), - [sym__edit_comment_span_start] = ACTIONS(3273), - [sym__single_quote_span_open] = ACTIONS(3275), - [sym__double_quote_span_open] = ACTIONS(3277), - [sym__shortcode_open_escaped] = ACTIONS(3279), - [sym__shortcode_open] = ACTIONS(3281), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3285), - [sym__cite_author_in_text] = ACTIONS(3287), - [sym__cite_suppress_author] = ACTIONS(3289), - [sym__strikeout_open] = ACTIONS(3291), - [sym__subscript_open] = ACTIONS(3293), - [sym__superscript_open] = ACTIONS(3295), - [sym__inline_note_start_token] = ACTIONS(3297), - [sym__strong_emphasis_open_star] = ACTIONS(3299), - [sym__strong_emphasis_open_underscore] = ACTIONS(3301), - [sym__emphasis_open_star] = ACTIONS(3303), - [sym__emphasis_open_underscore] = ACTIONS(3305), - [sym_inline_note_reference] = ACTIONS(3247), - [sym_html_element] = ACTIONS(3247), - [sym__pandoc_lt_str] = ACTIONS(3261), - [sym__pipe_table_delimiter] = ACTIONS(3499), - [sym__pandoc_line_break] = ACTIONS(3247), + [sym__atx_heading_content] = STATE(3456), + [sym__inlines] = STATE(3456), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line] = STATE(2969), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [sym__newline] = STATE(415), + [sym_entity_reference] = ACTIONS(5), + [sym_numeric_character_reference] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BANG_LBRACK] = ACTIONS(9), + [anon_sym_DOLLAR] = ACTIONS(11), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [aux_sym_pandoc_str_token1] = ACTIONS(17), + [anon_sym_PIPE] = ACTIONS(19), + [sym__whitespace] = ACTIONS(3165), + [sym__line_ending] = ACTIONS(117), + [sym__eof] = ACTIONS(3501), + [sym__code_span_start] = ACTIONS(65), + [sym__html_comment] = ACTIONS(5), + [sym__autolink] = ACTIONS(5), + [sym__highlight_span_start] = ACTIONS(67), + [sym__insert_span_start] = ACTIONS(69), + [sym__delete_span_start] = ACTIONS(71), + [sym__edit_comment_span_start] = ACTIONS(73), + [sym__single_quote_span_open] = ACTIONS(75), + [sym__double_quote_span_open] = ACTIONS(77), + [sym__shortcode_open_escaped] = ACTIONS(79), + [sym__shortcode_open] = ACTIONS(81), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(83), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(85), + [sym__cite_author_in_text] = ACTIONS(87), + [sym__cite_suppress_author] = ACTIONS(89), + [sym__strikeout_open] = ACTIONS(91), + [sym__subscript_open] = ACTIONS(93), + [sym__superscript_open] = ACTIONS(95), + [sym__inline_note_start_token] = ACTIONS(97), + [sym__strong_emphasis_open_star] = ACTIONS(99), + [sym__strong_emphasis_open_underscore] = ACTIONS(101), + [sym__emphasis_open_star] = ACTIONS(103), + [sym__emphasis_open_underscore] = ACTIONS(105), + [sym_inline_note_reference] = ACTIONS(5), + [sym_html_element] = ACTIONS(5), + [sym__pandoc_lt_str] = ACTIONS(19), + [sym__pandoc_line_break] = ACTIONS(5), }, [STATE(595)] = { - [sym_pandoc_span] = STATE(619), - [sym_pandoc_image] = STATE(619), - [sym_pandoc_math] = STATE(619), - [sym_pandoc_display_math] = STATE(619), - [sym_pandoc_code_span] = STATE(619), - [sym_pandoc_single_quote] = STATE(619), - [sym_pandoc_double_quote] = STATE(619), - [sym_insert] = STATE(619), - [sym_delete] = STATE(619), - [sym_edit_comment] = STATE(619), - [sym_highlight] = STATE(619), - [sym__pandoc_attr_specifier] = STATE(619), - [sym__inline_element] = STATE(619), - [sym_shortcode_escaped] = STATE(619), - [sym_shortcode] = STATE(619), - [sym_citation] = STATE(619), - [sym_inline_note] = STATE(619), - [sym_pandoc_superscript] = STATE(619), - [sym_pandoc_subscript] = STATE(619), - [sym_pandoc_strikeout] = STATE(619), - [sym_pandoc_emph] = STATE(619), - [sym_pandoc_strong] = STATE(619), - [sym_pandoc_str] = STATE(619), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(619), - [sym_entity_reference] = ACTIONS(3501), - [sym_numeric_character_reference] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_BANG_LBRACK] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2149), - [aux_sym_pandoc_str_token1] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2153), - [sym__whitespace] = ACTIONS(2899), - [sym__line_ending] = ACTIONS(3503), - [sym__eof] = ACTIONS(3503), - [sym__pipe_table_line_ending] = ACTIONS(3503), - [sym__code_span_start] = ACTIONS(2159), - [sym__html_comment] = ACTIONS(3501), - [sym__autolink] = ACTIONS(3501), - [sym__highlight_span_start] = ACTIONS(2161), - [sym__insert_span_start] = ACTIONS(2163), - [sym__delete_span_start] = ACTIONS(2165), - [sym__edit_comment_span_start] = ACTIONS(2167), - [sym__single_quote_span_open] = ACTIONS(2169), - [sym__double_quote_span_open] = ACTIONS(2171), - [sym__shortcode_open_escaped] = ACTIONS(2173), - [sym__shortcode_open] = ACTIONS(2175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2179), - [sym__cite_author_in_text] = ACTIONS(2181), - [sym__cite_suppress_author] = ACTIONS(2183), - [sym__strikeout_open] = ACTIONS(2185), - [sym__subscript_open] = ACTIONS(2187), - [sym__superscript_open] = ACTIONS(2189), - [sym__inline_note_start_token] = ACTIONS(2191), - [sym__strong_emphasis_open_star] = ACTIONS(2193), - [sym__strong_emphasis_open_underscore] = ACTIONS(2195), - [sym__emphasis_open_star] = ACTIONS(2197), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym_inline_note_reference] = ACTIONS(3501), - [sym_html_element] = ACTIONS(3501), - [sym__pandoc_lt_str] = ACTIONS(2153), - [sym__pipe_table_delimiter] = ACTIONS(3503), - [sym__pandoc_line_break] = ACTIONS(3501), + [sym__inlines] = STATE(3005), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(925), + [sym__inline_whitespace] = STATE(925), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3519), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), }, [STATE(596)] = { [sym_pipe_table_cell] = STATE(3369), - [sym_pandoc_span] = STATE(694), - [sym_pandoc_image] = STATE(694), - [sym_pandoc_math] = STATE(694), - [sym_pandoc_display_math] = STATE(694), - [sym_pandoc_code_span] = STATE(694), - [sym_pandoc_single_quote] = STATE(694), - [sym_pandoc_double_quote] = STATE(694), - [sym_insert] = STATE(694), - [sym_delete] = STATE(694), - [sym_edit_comment] = STATE(694), - [sym_highlight] = STATE(694), - [sym__pandoc_attr_specifier] = STATE(694), - [sym__line_with_maybe_spaces] = STATE(3323), - [sym__inline_element] = STATE(694), - [sym_shortcode_escaped] = STATE(694), - [sym_shortcode] = STATE(694), - [sym_citation] = STATE(694), - [sym_inline_note] = STATE(694), - [sym_pandoc_superscript] = STATE(694), - [sym_pandoc_subscript] = STATE(694), - [sym_pandoc_strikeout] = STATE(694), - [sym_pandoc_emph] = STATE(694), - [sym_pandoc_strong] = STATE(694), - [sym_pandoc_str] = STATE(694), - [aux_sym_pipe_table_row_repeat1] = STATE(597), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(694), - [sym_entity_reference] = ACTIONS(3247), - [sym_numeric_character_reference] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_BANG_LBRACK] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [aux_sym_pandoc_str_token1] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3261), - [sym__whitespace] = ACTIONS(3505), - [sym__line_ending] = ACTIONS(2907), - [sym__code_span_start] = ACTIONS(3265), - [sym__html_comment] = ACTIONS(3247), - [sym__autolink] = ACTIONS(3247), - [sym__highlight_span_start] = ACTIONS(3267), - [sym__insert_span_start] = ACTIONS(3269), - [sym__delete_span_start] = ACTIONS(3271), - [sym__edit_comment_span_start] = ACTIONS(3273), - [sym__single_quote_span_open] = ACTIONS(3275), - [sym__double_quote_span_open] = ACTIONS(3277), - [sym__shortcode_open_escaped] = ACTIONS(3279), - [sym__shortcode_open] = ACTIONS(3281), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3285), - [sym__cite_author_in_text] = ACTIONS(3287), - [sym__cite_suppress_author] = ACTIONS(3289), - [sym__strikeout_open] = ACTIONS(3291), - [sym__subscript_open] = ACTIONS(3293), - [sym__superscript_open] = ACTIONS(3295), - [sym__inline_note_start_token] = ACTIONS(3297), - [sym__strong_emphasis_open_star] = ACTIONS(3299), - [sym__strong_emphasis_open_underscore] = ACTIONS(3301), - [sym__emphasis_open_star] = ACTIONS(3303), - [sym__emphasis_open_underscore] = ACTIONS(3305), - [sym_inline_note_reference] = ACTIONS(3247), - [sym_html_element] = ACTIONS(3247), - [sym__pandoc_lt_str] = ACTIONS(3261), - [sym__pandoc_line_break] = ACTIONS(3247), + [sym_pandoc_span] = STATE(680), + [sym_pandoc_image] = STATE(680), + [sym_pandoc_math] = STATE(680), + [sym_pandoc_display_math] = STATE(680), + [sym_pandoc_code_span] = STATE(680), + [sym_pandoc_single_quote] = STATE(680), + [sym_pandoc_double_quote] = STATE(680), + [sym_insert] = STATE(680), + [sym_delete] = STATE(680), + [sym_edit_comment] = STATE(680), + [sym_highlight] = STATE(680), + [sym__pandoc_attr_specifier] = STATE(680), + [sym__line_with_maybe_spaces] = STATE(3327), + [sym__inline_element] = STATE(680), + [sym_shortcode_escaped] = STATE(680), + [sym_shortcode] = STATE(680), + [sym_citation] = STATE(680), + [sym_inline_note] = STATE(680), + [sym_pandoc_superscript] = STATE(680), + [sym_pandoc_subscript] = STATE(680), + [sym_pandoc_strikeout] = STATE(680), + [sym_pandoc_emph] = STATE(680), + [sym_pandoc_strong] = STATE(680), + [sym_pandoc_str] = STATE(680), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(680), + [sym_entity_reference] = ACTIONS(3343), + [sym_numeric_character_reference] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_BANG_LBRACK] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(3349), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [aux_sym_pandoc_str_token1] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(3357), + [sym__whitespace] = ACTIONS(3563), + [sym__line_ending] = ACTIONS(2965), + [sym__code_span_start] = ACTIONS(3361), + [sym__html_comment] = ACTIONS(3343), + [sym__autolink] = ACTIONS(3343), + [sym__highlight_span_start] = ACTIONS(3363), + [sym__insert_span_start] = ACTIONS(3365), + [sym__delete_span_start] = ACTIONS(3367), + [sym__edit_comment_span_start] = ACTIONS(3369), + [sym__single_quote_span_open] = ACTIONS(3371), + [sym__double_quote_span_open] = ACTIONS(3373), + [sym__shortcode_open_escaped] = ACTIONS(3375), + [sym__shortcode_open] = ACTIONS(3377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3381), + [sym__cite_author_in_text] = ACTIONS(3383), + [sym__cite_suppress_author] = ACTIONS(3385), + [sym__strikeout_open] = ACTIONS(3387), + [sym__subscript_open] = ACTIONS(3389), + [sym__superscript_open] = ACTIONS(3391), + [sym__inline_note_start_token] = ACTIONS(3393), + [sym__strong_emphasis_open_star] = ACTIONS(3395), + [sym__strong_emphasis_open_underscore] = ACTIONS(3397), + [sym__emphasis_open_star] = ACTIONS(3399), + [sym__emphasis_open_underscore] = ACTIONS(3401), + [sym_inline_note_reference] = ACTIONS(3343), + [sym_html_element] = ACTIONS(3343), + [sym__pandoc_lt_str] = ACTIONS(3357), + [sym__pipe_table_delimiter] = ACTIONS(3565), + [sym__pandoc_line_break] = ACTIONS(3343), }, [STATE(597)] = { - [sym_pipe_table_cell] = STATE(3573), - [sym_pandoc_span] = STATE(787), - [sym_pandoc_image] = STATE(787), - [sym_pandoc_math] = STATE(787), - [sym_pandoc_display_math] = STATE(787), - [sym_pandoc_code_span] = STATE(787), - [sym_pandoc_single_quote] = STATE(787), - [sym_pandoc_double_quote] = STATE(787), - [sym_insert] = STATE(787), - [sym_delete] = STATE(787), - [sym_edit_comment] = STATE(787), - [sym_highlight] = STATE(787), - [sym__pandoc_attr_specifier] = STATE(787), - [sym__line_with_maybe_spaces] = STATE(3552), - [sym__inline_element] = STATE(787), - [sym_shortcode_escaped] = STATE(787), - [sym_shortcode] = STATE(787), - [sym_citation] = STATE(787), - [sym_inline_note] = STATE(787), - [sym_pandoc_superscript] = STATE(787), - [sym_pandoc_subscript] = STATE(787), - [sym_pandoc_strikeout] = STATE(787), - [sym_pandoc_emph] = STATE(787), - [sym_pandoc_strong] = STATE(787), - [sym_pandoc_str] = STATE(787), - [aux_sym_pipe_table_row_repeat1] = STATE(597), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(787), - [sym_entity_reference] = ACTIONS(2919), - [sym_numeric_character_reference] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_BANG_LBRACK] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2934), - [aux_sym_pandoc_str_token1] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2940), - [sym__whitespace] = ACTIONS(3507), - [sym__line_ending] = ACTIONS(2946), - [sym__code_span_start] = ACTIONS(2948), - [sym__html_comment] = ACTIONS(2919), - [sym__autolink] = ACTIONS(2919), - [sym__highlight_span_start] = ACTIONS(2951), - [sym__insert_span_start] = ACTIONS(2954), - [sym__delete_span_start] = ACTIONS(2957), - [sym__edit_comment_span_start] = ACTIONS(2960), - [sym__single_quote_span_open] = ACTIONS(2963), - [sym__double_quote_span_open] = ACTIONS(2966), - [sym__shortcode_open_escaped] = ACTIONS(2969), - [sym__shortcode_open] = ACTIONS(2972), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2975), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2978), - [sym__cite_author_in_text] = ACTIONS(2981), - [sym__cite_suppress_author] = ACTIONS(2984), - [sym__strikeout_open] = ACTIONS(2987), - [sym__subscript_open] = ACTIONS(2990), - [sym__superscript_open] = ACTIONS(2993), - [sym__inline_note_start_token] = ACTIONS(2996), - [sym__strong_emphasis_open_star] = ACTIONS(2999), - [sym__strong_emphasis_open_underscore] = ACTIONS(3002), - [sym__emphasis_open_star] = ACTIONS(3005), - [sym__emphasis_open_underscore] = ACTIONS(3008), - [sym_inline_note_reference] = ACTIONS(2919), - [sym_html_element] = ACTIONS(2919), - [sym__pandoc_lt_str] = ACTIONS(2940), - [sym__pandoc_line_break] = ACTIONS(2919), + [sym_pipe_table_cell] = STATE(3457), + [sym_pandoc_span] = STATE(680), + [sym_pandoc_image] = STATE(680), + [sym_pandoc_math] = STATE(680), + [sym_pandoc_display_math] = STATE(680), + [sym_pandoc_code_span] = STATE(680), + [sym_pandoc_single_quote] = STATE(680), + [sym_pandoc_double_quote] = STATE(680), + [sym_insert] = STATE(680), + [sym_delete] = STATE(680), + [sym_edit_comment] = STATE(680), + [sym_highlight] = STATE(680), + [sym__pandoc_attr_specifier] = STATE(680), + [sym__line_with_maybe_spaces] = STATE(3327), + [sym__inline_element] = STATE(680), + [sym_shortcode_escaped] = STATE(680), + [sym_shortcode] = STATE(680), + [sym_citation] = STATE(680), + [sym_inline_note] = STATE(680), + [sym_pandoc_superscript] = STATE(680), + [sym_pandoc_subscript] = STATE(680), + [sym_pandoc_strikeout] = STATE(680), + [sym_pandoc_emph] = STATE(680), + [sym_pandoc_strong] = STATE(680), + [sym_pandoc_str] = STATE(680), + [aux_sym_pipe_table_row_repeat1] = STATE(600), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(680), + [sym_entity_reference] = ACTIONS(3343), + [sym_numeric_character_reference] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_BANG_LBRACK] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(3349), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [aux_sym_pandoc_str_token1] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(3357), + [sym__whitespace] = ACTIONS(3567), + [sym__line_ending] = ACTIONS(2971), + [sym__code_span_start] = ACTIONS(3361), + [sym__html_comment] = ACTIONS(3343), + [sym__autolink] = ACTIONS(3343), + [sym__highlight_span_start] = ACTIONS(3363), + [sym__insert_span_start] = ACTIONS(3365), + [sym__delete_span_start] = ACTIONS(3367), + [sym__edit_comment_span_start] = ACTIONS(3369), + [sym__single_quote_span_open] = ACTIONS(3371), + [sym__double_quote_span_open] = ACTIONS(3373), + [sym__shortcode_open_escaped] = ACTIONS(3375), + [sym__shortcode_open] = ACTIONS(3377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3381), + [sym__cite_author_in_text] = ACTIONS(3383), + [sym__cite_suppress_author] = ACTIONS(3385), + [sym__strikeout_open] = ACTIONS(3387), + [sym__subscript_open] = ACTIONS(3389), + [sym__superscript_open] = ACTIONS(3391), + [sym__inline_note_start_token] = ACTIONS(3393), + [sym__strong_emphasis_open_star] = ACTIONS(3395), + [sym__strong_emphasis_open_underscore] = ACTIONS(3397), + [sym__emphasis_open_star] = ACTIONS(3399), + [sym__emphasis_open_underscore] = ACTIONS(3401), + [sym_inline_note_reference] = ACTIONS(3343), + [sym_html_element] = ACTIONS(3343), + [sym__pandoc_lt_str] = ACTIONS(3357), + [sym__pandoc_line_break] = ACTIONS(3343), }, [STATE(598)] = { - [sym__inlines] = STATE(3005), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(829), - [sym__inline_whitespace] = STATE(829), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3510), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym_pipe_table_cell] = STATE(3457), + [sym_pandoc_span] = STATE(680), + [sym_pandoc_image] = STATE(680), + [sym_pandoc_math] = STATE(680), + [sym_pandoc_display_math] = STATE(680), + [sym_pandoc_code_span] = STATE(680), + [sym_pandoc_single_quote] = STATE(680), + [sym_pandoc_double_quote] = STATE(680), + [sym_insert] = STATE(680), + [sym_delete] = STATE(680), + [sym_edit_comment] = STATE(680), + [sym_highlight] = STATE(680), + [sym__pandoc_attr_specifier] = STATE(680), + [sym__line_with_maybe_spaces] = STATE(3327), + [sym__inline_element] = STATE(680), + [sym_shortcode_escaped] = STATE(680), + [sym_shortcode] = STATE(680), + [sym_citation] = STATE(680), + [sym_inline_note] = STATE(680), + [sym_pandoc_superscript] = STATE(680), + [sym_pandoc_subscript] = STATE(680), + [sym_pandoc_strikeout] = STATE(680), + [sym_pandoc_emph] = STATE(680), + [sym_pandoc_strong] = STATE(680), + [sym_pandoc_str] = STATE(680), + [aux_sym_pipe_table_row_repeat1] = STATE(606), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(680), + [sym_entity_reference] = ACTIONS(3343), + [sym_numeric_character_reference] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_BANG_LBRACK] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(3349), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [aux_sym_pandoc_str_token1] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(3357), + [sym__whitespace] = ACTIONS(3569), + [sym__line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(3361), + [sym__html_comment] = ACTIONS(3343), + [sym__autolink] = ACTIONS(3343), + [sym__highlight_span_start] = ACTIONS(3363), + [sym__insert_span_start] = ACTIONS(3365), + [sym__delete_span_start] = ACTIONS(3367), + [sym__edit_comment_span_start] = ACTIONS(3369), + [sym__single_quote_span_open] = ACTIONS(3371), + [sym__double_quote_span_open] = ACTIONS(3373), + [sym__shortcode_open_escaped] = ACTIONS(3375), + [sym__shortcode_open] = ACTIONS(3377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3381), + [sym__cite_author_in_text] = ACTIONS(3383), + [sym__cite_suppress_author] = ACTIONS(3385), + [sym__strikeout_open] = ACTIONS(3387), + [sym__subscript_open] = ACTIONS(3389), + [sym__superscript_open] = ACTIONS(3391), + [sym__inline_note_start_token] = ACTIONS(3393), + [sym__strong_emphasis_open_star] = ACTIONS(3395), + [sym__strong_emphasis_open_underscore] = ACTIONS(3397), + [sym__emphasis_open_star] = ACTIONS(3399), + [sym__emphasis_open_underscore] = ACTIONS(3401), + [sym_inline_note_reference] = ACTIONS(3343), + [sym_html_element] = ACTIONS(3343), + [sym__pandoc_lt_str] = ACTIONS(3357), + [sym__pandoc_line_break] = ACTIONS(3343), }, [STATE(599)] = { - [sym_pipe_table_cell] = STATE(3281), - [sym_pandoc_span] = STATE(694), - [sym_pandoc_image] = STATE(694), - [sym_pandoc_math] = STATE(694), - [sym_pandoc_display_math] = STATE(694), - [sym_pandoc_code_span] = STATE(694), - [sym_pandoc_single_quote] = STATE(694), - [sym_pandoc_double_quote] = STATE(694), - [sym_insert] = STATE(694), - [sym_delete] = STATE(694), - [sym_edit_comment] = STATE(694), - [sym_highlight] = STATE(694), - [sym__pandoc_attr_specifier] = STATE(694), - [sym__line_with_maybe_spaces] = STATE(3323), - [sym__inline_element] = STATE(694), - [sym_shortcode_escaped] = STATE(694), - [sym_shortcode] = STATE(694), - [sym_citation] = STATE(694), - [sym_inline_note] = STATE(694), - [sym_pandoc_superscript] = STATE(694), - [sym_pandoc_subscript] = STATE(694), - [sym_pandoc_strikeout] = STATE(694), - [sym_pandoc_emph] = STATE(694), - [sym_pandoc_strong] = STATE(694), - [sym_pandoc_str] = STATE(694), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(694), - [sym_entity_reference] = ACTIONS(3247), - [sym_numeric_character_reference] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_BANG_LBRACK] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [aux_sym_pandoc_str_token1] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3261), - [sym__whitespace] = ACTIONS(3497), - [sym__line_ending] = ACTIONS(3011), - [sym__code_span_start] = ACTIONS(3265), - [sym__html_comment] = ACTIONS(3247), - [sym__autolink] = ACTIONS(3247), - [sym__highlight_span_start] = ACTIONS(3267), - [sym__insert_span_start] = ACTIONS(3269), - [sym__delete_span_start] = ACTIONS(3271), - [sym__edit_comment_span_start] = ACTIONS(3273), - [sym__single_quote_span_open] = ACTIONS(3275), - [sym__double_quote_span_open] = ACTIONS(3277), - [sym__shortcode_open_escaped] = ACTIONS(3279), - [sym__shortcode_open] = ACTIONS(3281), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3285), - [sym__cite_author_in_text] = ACTIONS(3287), - [sym__cite_suppress_author] = ACTIONS(3289), - [sym__strikeout_open] = ACTIONS(3291), - [sym__subscript_open] = ACTIONS(3293), - [sym__superscript_open] = ACTIONS(3295), - [sym__inline_note_start_token] = ACTIONS(3297), - [sym__strong_emphasis_open_star] = ACTIONS(3299), - [sym__strong_emphasis_open_underscore] = ACTIONS(3301), - [sym__emphasis_open_star] = ACTIONS(3303), - [sym__emphasis_open_underscore] = ACTIONS(3305), - [sym_inline_note_reference] = ACTIONS(3247), - [sym_html_element] = ACTIONS(3247), - [sym__pandoc_lt_str] = ACTIONS(3261), - [sym__pipe_table_delimiter] = ACTIONS(3499), - [sym__pandoc_line_break] = ACTIONS(3247), + [sym__inlines] = STATE(2968), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(802), + [sym__inline_whitespace] = STATE(802), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3571), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), }, [STATE(600)] = { - [sym_pipe_table_cell] = STATE(3358), - [sym_pandoc_span] = STATE(694), - [sym_pandoc_image] = STATE(694), - [sym_pandoc_math] = STATE(694), - [sym_pandoc_display_math] = STATE(694), - [sym_pandoc_code_span] = STATE(694), - [sym_pandoc_single_quote] = STATE(694), - [sym_pandoc_double_quote] = STATE(694), - [sym_insert] = STATE(694), - [sym_delete] = STATE(694), - [sym_edit_comment] = STATE(694), - [sym_highlight] = STATE(694), - [sym__pandoc_attr_specifier] = STATE(694), - [sym__line_with_maybe_spaces] = STATE(3323), - [sym__inline_element] = STATE(694), - [sym_shortcode_escaped] = STATE(694), - [sym_shortcode] = STATE(694), - [sym_citation] = STATE(694), - [sym_inline_note] = STATE(694), - [sym_pandoc_superscript] = STATE(694), - [sym_pandoc_subscript] = STATE(694), - [sym_pandoc_strikeout] = STATE(694), - [sym_pandoc_emph] = STATE(694), - [sym_pandoc_strong] = STATE(694), - [sym_pandoc_str] = STATE(694), - [aux_sym_pipe_table_row_repeat1] = STATE(597), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(694), - [sym_entity_reference] = ACTIONS(3247), - [sym_numeric_character_reference] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_BANG_LBRACK] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [aux_sym_pandoc_str_token1] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3261), - [sym__whitespace] = ACTIONS(3512), - [sym__line_ending] = ACTIONS(3011), - [sym__code_span_start] = ACTIONS(3265), - [sym__html_comment] = ACTIONS(3247), - [sym__autolink] = ACTIONS(3247), - [sym__highlight_span_start] = ACTIONS(3267), - [sym__insert_span_start] = ACTIONS(3269), - [sym__delete_span_start] = ACTIONS(3271), - [sym__edit_comment_span_start] = ACTIONS(3273), - [sym__single_quote_span_open] = ACTIONS(3275), - [sym__double_quote_span_open] = ACTIONS(3277), - [sym__shortcode_open_escaped] = ACTIONS(3279), - [sym__shortcode_open] = ACTIONS(3281), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3285), - [sym__cite_author_in_text] = ACTIONS(3287), - [sym__cite_suppress_author] = ACTIONS(3289), - [sym__strikeout_open] = ACTIONS(3291), - [sym__subscript_open] = ACTIONS(3293), - [sym__superscript_open] = ACTIONS(3295), - [sym__inline_note_start_token] = ACTIONS(3297), - [sym__strong_emphasis_open_star] = ACTIONS(3299), - [sym__strong_emphasis_open_underscore] = ACTIONS(3301), - [sym__emphasis_open_star] = ACTIONS(3303), - [sym__emphasis_open_underscore] = ACTIONS(3305), - [sym_inline_note_reference] = ACTIONS(3247), - [sym_html_element] = ACTIONS(3247), - [sym__pandoc_lt_str] = ACTIONS(3261), - [sym__pandoc_line_break] = ACTIONS(3247), + [sym_pipe_table_cell] = STATE(3636), + [sym_pandoc_span] = STATE(725), + [sym_pandoc_image] = STATE(725), + [sym_pandoc_math] = STATE(725), + [sym_pandoc_display_math] = STATE(725), + [sym_pandoc_code_span] = STATE(725), + [sym_pandoc_single_quote] = STATE(725), + [sym_pandoc_double_quote] = STATE(725), + [sym_insert] = STATE(725), + [sym_delete] = STATE(725), + [sym_edit_comment] = STATE(725), + [sym_highlight] = STATE(725), + [sym__pandoc_attr_specifier] = STATE(725), + [sym__line_with_maybe_spaces] = STATE(3563), + [sym__inline_element] = STATE(725), + [sym_shortcode_escaped] = STATE(725), + [sym_shortcode] = STATE(725), + [sym_citation] = STATE(725), + [sym_inline_note] = STATE(725), + [sym_pandoc_superscript] = STATE(725), + [sym_pandoc_subscript] = STATE(725), + [sym_pandoc_strikeout] = STATE(725), + [sym_pandoc_emph] = STATE(725), + [sym_pandoc_strong] = STATE(725), + [sym_pandoc_str] = STATE(725), + [aux_sym_pipe_table_row_repeat1] = STATE(600), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(725), + [sym_entity_reference] = ACTIONS(2977), + [sym_numeric_character_reference] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_BANG_LBRACK] = ACTIONS(2983), + [anon_sym_DOLLAR] = ACTIONS(2986), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2992), + [aux_sym_pandoc_str_token1] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2998), + [sym__whitespace] = ACTIONS(3573), + [sym__line_ending] = ACTIONS(3004), + [sym__code_span_start] = ACTIONS(3006), + [sym__html_comment] = ACTIONS(2977), + [sym__autolink] = ACTIONS(2977), + [sym__highlight_span_start] = ACTIONS(3009), + [sym__insert_span_start] = ACTIONS(3012), + [sym__delete_span_start] = ACTIONS(3015), + [sym__edit_comment_span_start] = ACTIONS(3018), + [sym__single_quote_span_open] = ACTIONS(3021), + [sym__double_quote_span_open] = ACTIONS(3024), + [sym__shortcode_open_escaped] = ACTIONS(3027), + [sym__shortcode_open] = ACTIONS(3030), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3033), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3036), + [sym__cite_author_in_text] = ACTIONS(3039), + [sym__cite_suppress_author] = ACTIONS(3042), + [sym__strikeout_open] = ACTIONS(3045), + [sym__subscript_open] = ACTIONS(3048), + [sym__superscript_open] = ACTIONS(3051), + [sym__inline_note_start_token] = ACTIONS(3054), + [sym__strong_emphasis_open_star] = ACTIONS(3057), + [sym__strong_emphasis_open_underscore] = ACTIONS(3060), + [sym__emphasis_open_star] = ACTIONS(3063), + [sym__emphasis_open_underscore] = ACTIONS(3066), + [sym_inline_note_reference] = ACTIONS(2977), + [sym_html_element] = ACTIONS(2977), + [sym__pandoc_lt_str] = ACTIONS(2998), + [sym__pandoc_line_break] = ACTIONS(2977), }, [STATE(601)] = { - [sym_pipe_table_cell] = STATE(3281), - [sym_pandoc_span] = STATE(694), - [sym_pandoc_image] = STATE(694), - [sym_pandoc_math] = STATE(694), - [sym_pandoc_display_math] = STATE(694), - [sym_pandoc_code_span] = STATE(694), - [sym_pandoc_single_quote] = STATE(694), - [sym_pandoc_double_quote] = STATE(694), - [sym_insert] = STATE(694), - [sym_delete] = STATE(694), - [sym_edit_comment] = STATE(694), - [sym_highlight] = STATE(694), - [sym__pandoc_attr_specifier] = STATE(694), - [sym__line_with_maybe_spaces] = STATE(3323), - [sym__inline_element] = STATE(694), - [sym_shortcode_escaped] = STATE(694), - [sym_shortcode] = STATE(694), - [sym_citation] = STATE(694), - [sym_inline_note] = STATE(694), - [sym_pandoc_superscript] = STATE(694), - [sym_pandoc_subscript] = STATE(694), - [sym_pandoc_strikeout] = STATE(694), - [sym_pandoc_emph] = STATE(694), - [sym_pandoc_strong] = STATE(694), - [sym_pandoc_str] = STATE(694), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(694), - [sym_entity_reference] = ACTIONS(3247), - [sym_numeric_character_reference] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_BANG_LBRACK] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [aux_sym_pandoc_str_token1] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3261), - [sym__whitespace] = ACTIONS(3497), - [sym__line_ending] = ACTIONS(2901), - [sym__code_span_start] = ACTIONS(3265), - [sym__html_comment] = ACTIONS(3247), - [sym__autolink] = ACTIONS(3247), - [sym__highlight_span_start] = ACTIONS(3267), - [sym__insert_span_start] = ACTIONS(3269), - [sym__delete_span_start] = ACTIONS(3271), - [sym__edit_comment_span_start] = ACTIONS(3273), - [sym__single_quote_span_open] = ACTIONS(3275), - [sym__double_quote_span_open] = ACTIONS(3277), - [sym__shortcode_open_escaped] = ACTIONS(3279), - [sym__shortcode_open] = ACTIONS(3281), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3285), - [sym__cite_author_in_text] = ACTIONS(3287), - [sym__cite_suppress_author] = ACTIONS(3289), - [sym__strikeout_open] = ACTIONS(3291), - [sym__subscript_open] = ACTIONS(3293), - [sym__superscript_open] = ACTIONS(3295), - [sym__inline_note_start_token] = ACTIONS(3297), - [sym__strong_emphasis_open_star] = ACTIONS(3299), - [sym__strong_emphasis_open_underscore] = ACTIONS(3301), - [sym__emphasis_open_star] = ACTIONS(3303), - [sym__emphasis_open_underscore] = ACTIONS(3305), - [sym_inline_note_reference] = ACTIONS(3247), - [sym_html_element] = ACTIONS(3247), - [sym__pandoc_lt_str] = ACTIONS(3261), - [sym__pipe_table_delimiter] = ACTIONS(3499), - [sym__pandoc_line_break] = ACTIONS(3247), + [sym_pipe_table_cell] = STATE(3423), + [sym_pandoc_span] = STATE(680), + [sym_pandoc_image] = STATE(680), + [sym_pandoc_math] = STATE(680), + [sym_pandoc_display_math] = STATE(680), + [sym_pandoc_code_span] = STATE(680), + [sym_pandoc_single_quote] = STATE(680), + [sym_pandoc_double_quote] = STATE(680), + [sym_insert] = STATE(680), + [sym_delete] = STATE(680), + [sym_edit_comment] = STATE(680), + [sym_highlight] = STATE(680), + [sym__pandoc_attr_specifier] = STATE(680), + [sym__line_with_maybe_spaces] = STATE(3327), + [sym__inline_element] = STATE(680), + [sym_shortcode_escaped] = STATE(680), + [sym_shortcode] = STATE(680), + [sym_citation] = STATE(680), + [sym_inline_note] = STATE(680), + [sym_pandoc_superscript] = STATE(680), + [sym_pandoc_subscript] = STATE(680), + [sym_pandoc_strikeout] = STATE(680), + [sym_pandoc_emph] = STATE(680), + [sym_pandoc_strong] = STATE(680), + [sym_pandoc_str] = STATE(680), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(680), + [sym_entity_reference] = ACTIONS(3343), + [sym_numeric_character_reference] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_BANG_LBRACK] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(3349), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [aux_sym_pandoc_str_token1] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(3357), + [sym__whitespace] = ACTIONS(3563), + [sym__line_ending] = ACTIONS(3075), + [sym__code_span_start] = ACTIONS(3361), + [sym__html_comment] = ACTIONS(3343), + [sym__autolink] = ACTIONS(3343), + [sym__highlight_span_start] = ACTIONS(3363), + [sym__insert_span_start] = ACTIONS(3365), + [sym__delete_span_start] = ACTIONS(3367), + [sym__edit_comment_span_start] = ACTIONS(3369), + [sym__single_quote_span_open] = ACTIONS(3371), + [sym__double_quote_span_open] = ACTIONS(3373), + [sym__shortcode_open_escaped] = ACTIONS(3375), + [sym__shortcode_open] = ACTIONS(3377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3381), + [sym__cite_author_in_text] = ACTIONS(3383), + [sym__cite_suppress_author] = ACTIONS(3385), + [sym__strikeout_open] = ACTIONS(3387), + [sym__subscript_open] = ACTIONS(3389), + [sym__superscript_open] = ACTIONS(3391), + [sym__inline_note_start_token] = ACTIONS(3393), + [sym__strong_emphasis_open_star] = ACTIONS(3395), + [sym__strong_emphasis_open_underscore] = ACTIONS(3397), + [sym__emphasis_open_star] = ACTIONS(3399), + [sym__emphasis_open_underscore] = ACTIONS(3401), + [sym_inline_note_reference] = ACTIONS(3343), + [sym_html_element] = ACTIONS(3343), + [sym__pandoc_lt_str] = ACTIONS(3357), + [sym__pipe_table_delimiter] = ACTIONS(3565), + [sym__pandoc_line_break] = ACTIONS(3343), }, [STATE(602)] = { - [sym_pipe_table_cell] = STATE(3390), - [sym_pandoc_span] = STATE(694), - [sym_pandoc_image] = STATE(694), - [sym_pandoc_math] = STATE(694), - [sym_pandoc_display_math] = STATE(694), - [sym_pandoc_code_span] = STATE(694), - [sym_pandoc_single_quote] = STATE(694), - [sym_pandoc_double_quote] = STATE(694), - [sym_insert] = STATE(694), - [sym_delete] = STATE(694), - [sym_edit_comment] = STATE(694), - [sym_highlight] = STATE(694), - [sym__pandoc_attr_specifier] = STATE(694), - [sym__line_with_maybe_spaces] = STATE(3323), - [sym__inline_element] = STATE(694), - [sym_shortcode_escaped] = STATE(694), - [sym_shortcode] = STATE(694), - [sym_citation] = STATE(694), - [sym_inline_note] = STATE(694), - [sym_pandoc_superscript] = STATE(694), - [sym_pandoc_subscript] = STATE(694), - [sym_pandoc_strikeout] = STATE(694), - [sym_pandoc_emph] = STATE(694), - [sym_pandoc_strong] = STATE(694), - [sym_pandoc_str] = STATE(694), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(694), - [sym_entity_reference] = ACTIONS(3247), - [sym_numeric_character_reference] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_BANG_LBRACK] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [aux_sym_pandoc_str_token1] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3261), - [sym__whitespace] = ACTIONS(3497), - [sym__line_ending] = ACTIONS(2901), - [sym__code_span_start] = ACTIONS(3265), - [sym__html_comment] = ACTIONS(3247), - [sym__autolink] = ACTIONS(3247), - [sym__highlight_span_start] = ACTIONS(3267), - [sym__insert_span_start] = ACTIONS(3269), - [sym__delete_span_start] = ACTIONS(3271), - [sym__edit_comment_span_start] = ACTIONS(3273), - [sym__single_quote_span_open] = ACTIONS(3275), - [sym__double_quote_span_open] = ACTIONS(3277), - [sym__shortcode_open_escaped] = ACTIONS(3279), - [sym__shortcode_open] = ACTIONS(3281), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3285), - [sym__cite_author_in_text] = ACTIONS(3287), - [sym__cite_suppress_author] = ACTIONS(3289), - [sym__strikeout_open] = ACTIONS(3291), - [sym__subscript_open] = ACTIONS(3293), - [sym__superscript_open] = ACTIONS(3295), - [sym__inline_note_start_token] = ACTIONS(3297), - [sym__strong_emphasis_open_star] = ACTIONS(3299), - [sym__strong_emphasis_open_underscore] = ACTIONS(3301), - [sym__emphasis_open_star] = ACTIONS(3303), - [sym__emphasis_open_underscore] = ACTIONS(3305), - [sym_inline_note_reference] = ACTIONS(3247), - [sym_html_element] = ACTIONS(3247), - [sym__pandoc_lt_str] = ACTIONS(3261), - [sym__pipe_table_delimiter] = ACTIONS(3514), - [sym__pandoc_line_break] = ACTIONS(3247), + [sym_pipe_table_cell] = STATE(3471), + [sym_pandoc_span] = STATE(680), + [sym_pandoc_image] = STATE(680), + [sym_pandoc_math] = STATE(680), + [sym_pandoc_display_math] = STATE(680), + [sym_pandoc_code_span] = STATE(680), + [sym_pandoc_single_quote] = STATE(680), + [sym_pandoc_double_quote] = STATE(680), + [sym_insert] = STATE(680), + [sym_delete] = STATE(680), + [sym_edit_comment] = STATE(680), + [sym_highlight] = STATE(680), + [sym__pandoc_attr_specifier] = STATE(680), + [sym__line_with_maybe_spaces] = STATE(3327), + [sym__inline_element] = STATE(680), + [sym_shortcode_escaped] = STATE(680), + [sym_shortcode] = STATE(680), + [sym_citation] = STATE(680), + [sym_inline_note] = STATE(680), + [sym_pandoc_superscript] = STATE(680), + [sym_pandoc_subscript] = STATE(680), + [sym_pandoc_strikeout] = STATE(680), + [sym_pandoc_emph] = STATE(680), + [sym_pandoc_strong] = STATE(680), + [sym_pandoc_str] = STATE(680), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(680), + [sym_entity_reference] = ACTIONS(3343), + [sym_numeric_character_reference] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_BANG_LBRACK] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(3349), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [aux_sym_pandoc_str_token1] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(3357), + [sym__whitespace] = ACTIONS(3563), + [sym__line_ending] = ACTIONS(2965), + [sym__code_span_start] = ACTIONS(3361), + [sym__html_comment] = ACTIONS(3343), + [sym__autolink] = ACTIONS(3343), + [sym__highlight_span_start] = ACTIONS(3363), + [sym__insert_span_start] = ACTIONS(3365), + [sym__delete_span_start] = ACTIONS(3367), + [sym__edit_comment_span_start] = ACTIONS(3369), + [sym__single_quote_span_open] = ACTIONS(3371), + [sym__double_quote_span_open] = ACTIONS(3373), + [sym__shortcode_open_escaped] = ACTIONS(3375), + [sym__shortcode_open] = ACTIONS(3377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3381), + [sym__cite_author_in_text] = ACTIONS(3383), + [sym__cite_suppress_author] = ACTIONS(3385), + [sym__strikeout_open] = ACTIONS(3387), + [sym__subscript_open] = ACTIONS(3389), + [sym__superscript_open] = ACTIONS(3391), + [sym__inline_note_start_token] = ACTIONS(3393), + [sym__strong_emphasis_open_star] = ACTIONS(3395), + [sym__strong_emphasis_open_underscore] = ACTIONS(3397), + [sym__emphasis_open_star] = ACTIONS(3399), + [sym__emphasis_open_underscore] = ACTIONS(3401), + [sym_inline_note_reference] = ACTIONS(3343), + [sym_html_element] = ACTIONS(3343), + [sym__pandoc_lt_str] = ACTIONS(3357), + [sym__pipe_table_delimiter] = ACTIONS(3576), + [sym__pandoc_line_break] = ACTIONS(3343), }, [STATE(603)] = { - [sym__inlines] = STATE(3023), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(805), - [sym__inline_whitespace] = STATE(805), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3516), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym_pipe_table_cell] = STATE(3434), + [sym_pandoc_span] = STATE(680), + [sym_pandoc_image] = STATE(680), + [sym_pandoc_math] = STATE(680), + [sym_pandoc_display_math] = STATE(680), + [sym_pandoc_code_span] = STATE(680), + [sym_pandoc_single_quote] = STATE(680), + [sym_pandoc_double_quote] = STATE(680), + [sym_insert] = STATE(680), + [sym_delete] = STATE(680), + [sym_edit_comment] = STATE(680), + [sym_highlight] = STATE(680), + [sym__pandoc_attr_specifier] = STATE(680), + [sym__line_with_maybe_spaces] = STATE(3327), + [sym__inline_element] = STATE(680), + [sym_shortcode_escaped] = STATE(680), + [sym_shortcode] = STATE(680), + [sym_citation] = STATE(680), + [sym_inline_note] = STATE(680), + [sym_pandoc_superscript] = STATE(680), + [sym_pandoc_subscript] = STATE(680), + [sym_pandoc_strikeout] = STATE(680), + [sym_pandoc_emph] = STATE(680), + [sym_pandoc_strong] = STATE(680), + [sym_pandoc_str] = STATE(680), + [aux_sym_pipe_table_row_repeat1] = STATE(600), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(680), + [sym_entity_reference] = ACTIONS(3343), + [sym_numeric_character_reference] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_BANG_LBRACK] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(3349), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [aux_sym_pandoc_str_token1] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(3357), + [sym__whitespace] = ACTIONS(3578), + [sym__line_ending] = ACTIONS(3081), + [sym__code_span_start] = ACTIONS(3361), + [sym__html_comment] = ACTIONS(3343), + [sym__autolink] = ACTIONS(3343), + [sym__highlight_span_start] = ACTIONS(3363), + [sym__insert_span_start] = ACTIONS(3365), + [sym__delete_span_start] = ACTIONS(3367), + [sym__edit_comment_span_start] = ACTIONS(3369), + [sym__single_quote_span_open] = ACTIONS(3371), + [sym__double_quote_span_open] = ACTIONS(3373), + [sym__shortcode_open_escaped] = ACTIONS(3375), + [sym__shortcode_open] = ACTIONS(3377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3381), + [sym__cite_author_in_text] = ACTIONS(3383), + [sym__cite_suppress_author] = ACTIONS(3385), + [sym__strikeout_open] = ACTIONS(3387), + [sym__subscript_open] = ACTIONS(3389), + [sym__superscript_open] = ACTIONS(3391), + [sym__inline_note_start_token] = ACTIONS(3393), + [sym__strong_emphasis_open_star] = ACTIONS(3395), + [sym__strong_emphasis_open_underscore] = ACTIONS(3397), + [sym__emphasis_open_star] = ACTIONS(3399), + [sym__emphasis_open_underscore] = ACTIONS(3401), + [sym_inline_note_reference] = ACTIONS(3343), + [sym_html_element] = ACTIONS(3343), + [sym__pandoc_lt_str] = ACTIONS(3357), + [sym__pandoc_line_break] = ACTIONS(3343), }, [STATE(604)] = { - [sym_pipe_table_cell] = STATE(3522), - [sym_pandoc_span] = STATE(694), - [sym_pandoc_image] = STATE(694), - [sym_pandoc_math] = STATE(694), - [sym_pandoc_display_math] = STATE(694), - [sym_pandoc_code_span] = STATE(694), - [sym_pandoc_single_quote] = STATE(694), - [sym_pandoc_double_quote] = STATE(694), - [sym_insert] = STATE(694), - [sym_delete] = STATE(694), - [sym_edit_comment] = STATE(694), - [sym_highlight] = STATE(694), - [sym__pandoc_attr_specifier] = STATE(694), - [sym__line_with_maybe_spaces] = STATE(3323), - [sym__inline_element] = STATE(694), - [sym_shortcode_escaped] = STATE(694), - [sym_shortcode] = STATE(694), - [sym_citation] = STATE(694), - [sym_inline_note] = STATE(694), - [sym_pandoc_superscript] = STATE(694), - [sym_pandoc_subscript] = STATE(694), - [sym_pandoc_strikeout] = STATE(694), - [sym_pandoc_emph] = STATE(694), - [sym_pandoc_strong] = STATE(694), - [sym_pandoc_str] = STATE(694), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(694), - [sym_entity_reference] = ACTIONS(3247), - [sym_numeric_character_reference] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_BANG_LBRACK] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [aux_sym_pandoc_str_token1] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3261), - [sym__whitespace] = ACTIONS(3497), - [sym__line_ending] = ACTIONS(3015), - [sym__code_span_start] = ACTIONS(3265), - [sym__html_comment] = ACTIONS(3247), - [sym__autolink] = ACTIONS(3247), - [sym__highlight_span_start] = ACTIONS(3267), - [sym__insert_span_start] = ACTIONS(3269), - [sym__delete_span_start] = ACTIONS(3271), - [sym__edit_comment_span_start] = ACTIONS(3273), - [sym__single_quote_span_open] = ACTIONS(3275), - [sym__double_quote_span_open] = ACTIONS(3277), - [sym__shortcode_open_escaped] = ACTIONS(3279), - [sym__shortcode_open] = ACTIONS(3281), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3285), - [sym__cite_author_in_text] = ACTIONS(3287), - [sym__cite_suppress_author] = ACTIONS(3289), - [sym__strikeout_open] = ACTIONS(3291), - [sym__subscript_open] = ACTIONS(3293), - [sym__superscript_open] = ACTIONS(3295), - [sym__inline_note_start_token] = ACTIONS(3297), - [sym__strong_emphasis_open_star] = ACTIONS(3299), - [sym__strong_emphasis_open_underscore] = ACTIONS(3301), - [sym__emphasis_open_star] = ACTIONS(3303), - [sym__emphasis_open_underscore] = ACTIONS(3305), - [sym_inline_note_reference] = ACTIONS(3247), - [sym_html_element] = ACTIONS(3247), - [sym__pandoc_lt_str] = ACTIONS(3261), - [sym__pipe_table_delimiter] = ACTIONS(3499), - [sym__pandoc_line_break] = ACTIONS(3247), + [sym_pipe_table_cell] = STATE(3489), + [sym_pandoc_span] = STATE(680), + [sym_pandoc_image] = STATE(680), + [sym_pandoc_math] = STATE(680), + [sym_pandoc_display_math] = STATE(680), + [sym_pandoc_code_span] = STATE(680), + [sym_pandoc_single_quote] = STATE(680), + [sym_pandoc_double_quote] = STATE(680), + [sym_insert] = STATE(680), + [sym_delete] = STATE(680), + [sym_edit_comment] = STATE(680), + [sym_highlight] = STATE(680), + [sym__pandoc_attr_specifier] = STATE(680), + [sym__line_with_maybe_spaces] = STATE(3327), + [sym__inline_element] = STATE(680), + [sym_shortcode_escaped] = STATE(680), + [sym_shortcode] = STATE(680), + [sym_citation] = STATE(680), + [sym_inline_note] = STATE(680), + [sym_pandoc_superscript] = STATE(680), + [sym_pandoc_subscript] = STATE(680), + [sym_pandoc_strikeout] = STATE(680), + [sym_pandoc_emph] = STATE(680), + [sym_pandoc_strong] = STATE(680), + [sym_pandoc_str] = STATE(680), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(680), + [sym_entity_reference] = ACTIONS(3343), + [sym_numeric_character_reference] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_BANG_LBRACK] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(3349), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [aux_sym_pandoc_str_token1] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(3357), + [sym__whitespace] = ACTIONS(3563), + [sym__line_ending] = ACTIONS(3071), + [sym__code_span_start] = ACTIONS(3361), + [sym__html_comment] = ACTIONS(3343), + [sym__autolink] = ACTIONS(3343), + [sym__highlight_span_start] = ACTIONS(3363), + [sym__insert_span_start] = ACTIONS(3365), + [sym__delete_span_start] = ACTIONS(3367), + [sym__edit_comment_span_start] = ACTIONS(3369), + [sym__single_quote_span_open] = ACTIONS(3371), + [sym__double_quote_span_open] = ACTIONS(3373), + [sym__shortcode_open_escaped] = ACTIONS(3375), + [sym__shortcode_open] = ACTIONS(3377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3381), + [sym__cite_author_in_text] = ACTIONS(3383), + [sym__cite_suppress_author] = ACTIONS(3385), + [sym__strikeout_open] = ACTIONS(3387), + [sym__subscript_open] = ACTIONS(3389), + [sym__superscript_open] = ACTIONS(3391), + [sym__inline_note_start_token] = ACTIONS(3393), + [sym__strong_emphasis_open_star] = ACTIONS(3395), + [sym__strong_emphasis_open_underscore] = ACTIONS(3397), + [sym__emphasis_open_star] = ACTIONS(3399), + [sym__emphasis_open_underscore] = ACTIONS(3401), + [sym_inline_note_reference] = ACTIONS(3343), + [sym_html_element] = ACTIONS(3343), + [sym__pandoc_lt_str] = ACTIONS(3357), + [sym__pipe_table_delimiter] = ACTIONS(3565), + [sym__pandoc_line_break] = ACTIONS(3343), }, [STATE(605)] = { - [sym__inlines] = STATE(3080), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(837), - [sym__inline_whitespace] = STATE(837), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3518), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym_pipe_table_cell] = STATE(3489), + [sym_pandoc_span] = STATE(680), + [sym_pandoc_image] = STATE(680), + [sym_pandoc_math] = STATE(680), + [sym_pandoc_display_math] = STATE(680), + [sym_pandoc_code_span] = STATE(680), + [sym_pandoc_single_quote] = STATE(680), + [sym_pandoc_double_quote] = STATE(680), + [sym_insert] = STATE(680), + [sym_delete] = STATE(680), + [sym_edit_comment] = STATE(680), + [sym_highlight] = STATE(680), + [sym__pandoc_attr_specifier] = STATE(680), + [sym__line_with_maybe_spaces] = STATE(3327), + [sym__inline_element] = STATE(680), + [sym_shortcode_escaped] = STATE(680), + [sym_shortcode] = STATE(680), + [sym_citation] = STATE(680), + [sym_inline_note] = STATE(680), + [sym_pandoc_superscript] = STATE(680), + [sym_pandoc_subscript] = STATE(680), + [sym_pandoc_strikeout] = STATE(680), + [sym_pandoc_emph] = STATE(680), + [sym_pandoc_strong] = STATE(680), + [sym_pandoc_str] = STATE(680), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(680), + [sym_entity_reference] = ACTIONS(3343), + [sym_numeric_character_reference] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_BANG_LBRACK] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(3349), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [aux_sym_pandoc_str_token1] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(3357), + [sym__whitespace] = ACTIONS(3563), + [sym__line_ending] = ACTIONS(2965), + [sym__code_span_start] = ACTIONS(3361), + [sym__html_comment] = ACTIONS(3343), + [sym__autolink] = ACTIONS(3343), + [sym__highlight_span_start] = ACTIONS(3363), + [sym__insert_span_start] = ACTIONS(3365), + [sym__delete_span_start] = ACTIONS(3367), + [sym__edit_comment_span_start] = ACTIONS(3369), + [sym__single_quote_span_open] = ACTIONS(3371), + [sym__double_quote_span_open] = ACTIONS(3373), + [sym__shortcode_open_escaped] = ACTIONS(3375), + [sym__shortcode_open] = ACTIONS(3377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3381), + [sym__cite_author_in_text] = ACTIONS(3383), + [sym__cite_suppress_author] = ACTIONS(3385), + [sym__strikeout_open] = ACTIONS(3387), + [sym__subscript_open] = ACTIONS(3389), + [sym__superscript_open] = ACTIONS(3391), + [sym__inline_note_start_token] = ACTIONS(3393), + [sym__strong_emphasis_open_star] = ACTIONS(3395), + [sym__strong_emphasis_open_underscore] = ACTIONS(3397), + [sym__emphasis_open_star] = ACTIONS(3399), + [sym__emphasis_open_underscore] = ACTIONS(3401), + [sym_inline_note_reference] = ACTIONS(3343), + [sym_html_element] = ACTIONS(3343), + [sym__pandoc_lt_str] = ACTIONS(3357), + [sym__pipe_table_delimiter] = ACTIONS(3565), + [sym__pandoc_line_break] = ACTIONS(3343), }, [STATE(606)] = { - [sym__inlines] = STATE(2977), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(845), - [sym__inline_whitespace] = STATE(845), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3520), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym_pipe_table_cell] = STATE(3409), + [sym_pandoc_span] = STATE(680), + [sym_pandoc_image] = STATE(680), + [sym_pandoc_math] = STATE(680), + [sym_pandoc_display_math] = STATE(680), + [sym_pandoc_code_span] = STATE(680), + [sym_pandoc_single_quote] = STATE(680), + [sym_pandoc_double_quote] = STATE(680), + [sym_insert] = STATE(680), + [sym_delete] = STATE(680), + [sym_edit_comment] = STATE(680), + [sym_highlight] = STATE(680), + [sym__pandoc_attr_specifier] = STATE(680), + [sym__line_with_maybe_spaces] = STATE(3327), + [sym__inline_element] = STATE(680), + [sym_shortcode_escaped] = STATE(680), + [sym_shortcode] = STATE(680), + [sym_citation] = STATE(680), + [sym_inline_note] = STATE(680), + [sym_pandoc_superscript] = STATE(680), + [sym_pandoc_subscript] = STATE(680), + [sym_pandoc_strikeout] = STATE(680), + [sym_pandoc_emph] = STATE(680), + [sym_pandoc_strong] = STATE(680), + [sym_pandoc_str] = STATE(680), + [aux_sym_pipe_table_row_repeat1] = STATE(600), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(680), + [sym_entity_reference] = ACTIONS(3343), + [sym_numeric_character_reference] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_BANG_LBRACK] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(3349), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [aux_sym_pandoc_str_token1] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(3357), + [sym__whitespace] = ACTIONS(3580), + [sym__line_ending] = ACTIONS(3071), + [sym__code_span_start] = ACTIONS(3361), + [sym__html_comment] = ACTIONS(3343), + [sym__autolink] = ACTIONS(3343), + [sym__highlight_span_start] = ACTIONS(3363), + [sym__insert_span_start] = ACTIONS(3365), + [sym__delete_span_start] = ACTIONS(3367), + [sym__edit_comment_span_start] = ACTIONS(3369), + [sym__single_quote_span_open] = ACTIONS(3371), + [sym__double_quote_span_open] = ACTIONS(3373), + [sym__shortcode_open_escaped] = ACTIONS(3375), + [sym__shortcode_open] = ACTIONS(3377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3381), + [sym__cite_author_in_text] = ACTIONS(3383), + [sym__cite_suppress_author] = ACTIONS(3385), + [sym__strikeout_open] = ACTIONS(3387), + [sym__subscript_open] = ACTIONS(3389), + [sym__superscript_open] = ACTIONS(3391), + [sym__inline_note_start_token] = ACTIONS(3393), + [sym__strong_emphasis_open_star] = ACTIONS(3395), + [sym__strong_emphasis_open_underscore] = ACTIONS(3397), + [sym__emphasis_open_star] = ACTIONS(3399), + [sym__emphasis_open_underscore] = ACTIONS(3401), + [sym_inline_note_reference] = ACTIONS(3343), + [sym_html_element] = ACTIONS(3343), + [sym__pandoc_lt_str] = ACTIONS(3357), + [sym__pandoc_line_break] = ACTIONS(3343), }, [STATE(607)] = { - [sym__inlines] = STATE(3013), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(853), - [sym__inline_whitespace] = STATE(853), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3522), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [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), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(608), + [sym_entity_reference] = ACTIONS(3582), + [sym_numeric_character_reference] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_BANG_LBRACK] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2150), + [aux_sym_pandoc_str_token1] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2154), + [sym__whitespace] = ACTIONS(2963), + [sym__line_ending] = ACTIONS(3584), + [sym__eof] = ACTIONS(3584), + [sym__pipe_table_line_ending] = ACTIONS(3584), + [sym__code_span_start] = ACTIONS(2160), + [sym__html_comment] = ACTIONS(3582), + [sym__autolink] = ACTIONS(3582), + [sym__highlight_span_start] = ACTIONS(2162), + [sym__insert_span_start] = ACTIONS(2164), + [sym__delete_span_start] = ACTIONS(2166), + [sym__edit_comment_span_start] = ACTIONS(2168), + [sym__single_quote_span_open] = ACTIONS(2170), + [sym__double_quote_span_open] = ACTIONS(2172), + [sym__shortcode_open_escaped] = ACTIONS(2174), + [sym__shortcode_open] = ACTIONS(2176), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2178), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2180), + [sym__cite_author_in_text] = ACTIONS(2182), + [sym__cite_suppress_author] = ACTIONS(2184), + [sym__strikeout_open] = ACTIONS(2186), + [sym__subscript_open] = ACTIONS(2188), + [sym__superscript_open] = ACTIONS(2190), + [sym__inline_note_start_token] = ACTIONS(2192), + [sym__strong_emphasis_open_star] = ACTIONS(2194), + [sym__strong_emphasis_open_underscore] = ACTIONS(2196), + [sym__emphasis_open_star] = ACTIONS(2198), + [sym__emphasis_open_underscore] = ACTIONS(2200), + [sym_inline_note_reference] = ACTIONS(3582), + [sym_html_element] = ACTIONS(3582), + [sym__pandoc_lt_str] = ACTIONS(2154), + [sym__pipe_table_delimiter] = ACTIONS(3584), + [sym__pandoc_line_break] = ACTIONS(3582), }, [STATE(608)] = { - [sym__inlines] = STATE(3094), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(861), - [sym__inline_whitespace] = STATE(861), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3524), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [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), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(608), + [sym_entity_reference] = ACTIONS(3586), + [sym_numeric_character_reference] = ACTIONS(3586), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_BANG_LBRACK] = ACTIONS(3592), + [anon_sym_DOLLAR] = ACTIONS(3595), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3598), + [anon_sym_LBRACE] = ACTIONS(3601), + [aux_sym_pandoc_str_token1] = ACTIONS(3604), + [anon_sym_PIPE] = ACTIONS(3607), + [sym__whitespace] = ACTIONS(3610), + [sym__line_ending] = ACTIONS(3613), + [sym__eof] = ACTIONS(3613), + [sym__pipe_table_line_ending] = ACTIONS(3613), + [sym__code_span_start] = ACTIONS(3615), + [sym__html_comment] = ACTIONS(3586), + [sym__autolink] = ACTIONS(3586), + [sym__highlight_span_start] = ACTIONS(3618), + [sym__insert_span_start] = ACTIONS(3621), + [sym__delete_span_start] = ACTIONS(3624), + [sym__edit_comment_span_start] = ACTIONS(3627), + [sym__single_quote_span_open] = ACTIONS(3630), + [sym__double_quote_span_open] = ACTIONS(3633), + [sym__shortcode_open_escaped] = ACTIONS(3636), + [sym__shortcode_open] = ACTIONS(3639), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3642), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3645), + [sym__cite_author_in_text] = ACTIONS(3648), + [sym__cite_suppress_author] = ACTIONS(3651), + [sym__strikeout_open] = ACTIONS(3654), + [sym__subscript_open] = ACTIONS(3657), + [sym__superscript_open] = ACTIONS(3660), + [sym__inline_note_start_token] = ACTIONS(3663), + [sym__strong_emphasis_open_star] = ACTIONS(3666), + [sym__strong_emphasis_open_underscore] = ACTIONS(3669), + [sym__emphasis_open_star] = ACTIONS(3672), + [sym__emphasis_open_underscore] = ACTIONS(3675), + [sym_inline_note_reference] = ACTIONS(3586), + [sym_html_element] = ACTIONS(3586), + [sym__pandoc_lt_str] = ACTIONS(3607), + [sym__pipe_table_delimiter] = ACTIONS(3613), + [sym__pandoc_line_break] = ACTIONS(3586), }, [STATE(609)] = { - [sym_pipe_table_cell] = STATE(3445), - [sym_pandoc_span] = STATE(694), - [sym_pandoc_image] = STATE(694), - [sym_pandoc_math] = STATE(694), - [sym_pandoc_display_math] = STATE(694), - [sym_pandoc_code_span] = STATE(694), - [sym_pandoc_single_quote] = STATE(694), - [sym_pandoc_double_quote] = STATE(694), - [sym_insert] = STATE(694), - [sym_delete] = STATE(694), - [sym_edit_comment] = STATE(694), - [sym_highlight] = STATE(694), - [sym__pandoc_attr_specifier] = STATE(694), - [sym__line_with_maybe_spaces] = STATE(3323), - [sym__inline_element] = STATE(694), - [sym_shortcode_escaped] = STATE(694), - [sym_shortcode] = STATE(694), - [sym_citation] = STATE(694), - [sym_inline_note] = STATE(694), - [sym_pandoc_superscript] = STATE(694), - [sym_pandoc_subscript] = STATE(694), - [sym_pandoc_strikeout] = STATE(694), - [sym_pandoc_emph] = STATE(694), - [sym_pandoc_strong] = STATE(694), - [sym_pandoc_str] = STATE(694), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(694), - [sym_entity_reference] = ACTIONS(3247), - [sym_numeric_character_reference] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_BANG_LBRACK] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [aux_sym_pandoc_str_token1] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3261), - [sym__whitespace] = ACTIONS(3497), - [sym__line_ending] = ACTIONS(2901), - [sym__code_span_start] = ACTIONS(3265), - [sym__html_comment] = ACTIONS(3247), - [sym__autolink] = ACTIONS(3247), - [sym__highlight_span_start] = ACTIONS(3267), - [sym__insert_span_start] = ACTIONS(3269), - [sym__delete_span_start] = ACTIONS(3271), - [sym__edit_comment_span_start] = ACTIONS(3273), - [sym__single_quote_span_open] = ACTIONS(3275), - [sym__double_quote_span_open] = ACTIONS(3277), - [sym__shortcode_open_escaped] = ACTIONS(3279), - [sym__shortcode_open] = ACTIONS(3281), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3285), - [sym__cite_author_in_text] = ACTIONS(3287), - [sym__cite_suppress_author] = ACTIONS(3289), - [sym__strikeout_open] = ACTIONS(3291), - [sym__subscript_open] = ACTIONS(3293), - [sym__superscript_open] = ACTIONS(3295), - [sym__inline_note_start_token] = ACTIONS(3297), - [sym__strong_emphasis_open_star] = ACTIONS(3299), - [sym__strong_emphasis_open_underscore] = ACTIONS(3301), - [sym__emphasis_open_star] = ACTIONS(3303), - [sym__emphasis_open_underscore] = ACTIONS(3305), - [sym_inline_note_reference] = ACTIONS(3247), - [sym_html_element] = ACTIONS(3247), - [sym__pandoc_lt_str] = ACTIONS(3261), - [sym__pipe_table_delimiter] = ACTIONS(3499), - [sym__pandoc_line_break] = ACTIONS(3247), + [sym__inlines] = STATE(3004), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(816), + [sym__inline_whitespace] = STATE(816), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3678), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), }, [STATE(610)] = { - [sym__inlines] = STATE(2968), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(877), - [sym__inline_whitespace] = STATE(877), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3526), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(824), + [sym__inline_whitespace] = STATE(824), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3680), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), }, [STATE(611)] = { - [sym__inlines] = STATE(2994), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(885), - [sym__inline_whitespace] = STATE(885), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3528), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym__inlines] = STATE(2942), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(835), + [sym__inline_whitespace] = STATE(835), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3682), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), }, [STATE(612)] = { - [sym__inlines] = STATE(3015), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(893), - [sym__inline_whitespace] = STATE(893), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3530), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym__inlines] = STATE(2948), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(844), + [sym__inline_whitespace] = STATE(844), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3684), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), }, [STATE(613)] = { - [sym__inlines] = STATE(3043), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(901), - [sym__inline_whitespace] = STATE(901), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3532), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym__inlines] = STATE(2953), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(853), + [sym__inline_whitespace] = STATE(853), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3686), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), }, [STATE(614)] = { - [sym__inlines] = STATE(3059), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(909), - [sym__inline_whitespace] = STATE(909), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3534), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym__inlines] = STATE(2961), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(861), + [sym__inline_whitespace] = STATE(861), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3688), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), }, [STATE(615)] = { - [sym__inlines] = STATE(3078), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(917), - [sym__inline_whitespace] = STATE(917), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3536), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym__inlines] = STATE(2970), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(869), + [sym__inline_whitespace] = STATE(869), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3690), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), }, [STATE(616)] = { - [sym__inlines] = STATE(3088), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(925), - [sym__inline_whitespace] = STATE(925), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3538), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym__inlines] = STATE(2974), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(877), + [sym__inline_whitespace] = STATE(877), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3692), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), }, [STATE(617)] = { - [sym__inlines] = STATE(3102), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(843), - [sym__inline_whitespace] = STATE(843), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3540), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym__inlines] = STATE(2981), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(885), + [sym__inline_whitespace] = STATE(885), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3694), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), }, [STATE(618)] = { - [sym__inlines] = STATE(2940), - [sym_pandoc_span] = STATE(676), - [sym_pandoc_image] = STATE(676), - [sym_pandoc_math] = STATE(676), - [sym_pandoc_display_math] = STATE(676), - [sym_pandoc_code_span] = STATE(676), - [sym_pandoc_single_quote] = STATE(676), - [sym_pandoc_double_quote] = STATE(676), - [sym_insert] = STATE(676), - [sym_delete] = STATE(676), - [sym_edit_comment] = STATE(676), - [sym_highlight] = STATE(676), - [sym__pandoc_attr_specifier] = STATE(676), - [sym__line] = STATE(3034), - [sym__inline_element] = STATE(676), - [sym_shortcode_escaped] = STATE(676), - [sym_shortcode] = STATE(676), - [sym_citation] = STATE(676), - [sym_inline_note] = STATE(676), - [sym_pandoc_superscript] = STATE(676), - [sym_pandoc_subscript] = STATE(676), - [sym_pandoc_strikeout] = STATE(676), - [sym_pandoc_emph] = STATE(676), - [sym_pandoc_strong] = STATE(676), - [sym_pandoc_str] = STATE(676), - [sym__soft_line_break] = STATE(821), - [sym__inline_whitespace] = STATE(821), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_BANG_LBRACK] = ACTIONS(3439), - [anon_sym_DOLLAR] = ACTIONS(3441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [aux_sym_pandoc_str_token1] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3449), - [sym__whitespace] = ACTIONS(3542), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3453), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3455), - [sym__insert_span_start] = ACTIONS(3457), - [sym__delete_span_start] = ACTIONS(3459), - [sym__edit_comment_span_start] = ACTIONS(3461), - [sym__single_quote_span_open] = ACTIONS(3463), - [sym__double_quote_span_open] = ACTIONS(3465), - [sym__shortcode_open_escaped] = ACTIONS(3467), - [sym__shortcode_open] = ACTIONS(3469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3471), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3473), - [sym__cite_author_in_text] = ACTIONS(3475), - [sym__cite_suppress_author] = ACTIONS(3477), - [sym__strikeout_open] = ACTIONS(3479), - [sym__subscript_open] = ACTIONS(3481), - [sym__superscript_open] = ACTIONS(3483), - [sym__inline_note_start_token] = ACTIONS(3485), - [sym__strong_emphasis_open_star] = ACTIONS(3487), - [sym__strong_emphasis_open_underscore] = ACTIONS(3489), - [sym__emphasis_open_star] = ACTIONS(3491), - [sym__emphasis_open_underscore] = ACTIONS(3493), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_lt_str] = ACTIONS(3449), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym__inlines] = STATE(2986), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(893), + [sym__inline_whitespace] = STATE(893), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3696), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), }, [STATE(619)] = { - [sym_pandoc_span] = STATE(619), - [sym_pandoc_image] = STATE(619), - [sym_pandoc_math] = STATE(619), - [sym_pandoc_display_math] = STATE(619), - [sym_pandoc_code_span] = STATE(619), - [sym_pandoc_single_quote] = STATE(619), - [sym_pandoc_double_quote] = STATE(619), - [sym_insert] = STATE(619), - [sym_delete] = STATE(619), - [sym_edit_comment] = STATE(619), - [sym_highlight] = STATE(619), - [sym__pandoc_attr_specifier] = STATE(619), - [sym__inline_element] = STATE(619), - [sym_shortcode_escaped] = STATE(619), - [sym_shortcode] = STATE(619), - [sym_citation] = STATE(619), - [sym_inline_note] = STATE(619), - [sym_pandoc_superscript] = STATE(619), - [sym_pandoc_subscript] = STATE(619), - [sym_pandoc_strikeout] = STATE(619), - [sym_pandoc_emph] = STATE(619), - [sym_pandoc_strong] = STATE(619), - [sym_pandoc_str] = STATE(619), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(619), - [sym_entity_reference] = ACTIONS(3544), - [sym_numeric_character_reference] = ACTIONS(3544), - [anon_sym_LBRACK] = ACTIONS(3547), - [anon_sym_BANG_LBRACK] = ACTIONS(3550), - [anon_sym_DOLLAR] = ACTIONS(3553), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(3559), - [aux_sym_pandoc_str_token1] = ACTIONS(3562), - [anon_sym_PIPE] = ACTIONS(3565), - [sym__whitespace] = ACTIONS(3568), - [sym__line_ending] = ACTIONS(3571), - [sym__eof] = ACTIONS(3571), - [sym__pipe_table_line_ending] = ACTIONS(3571), - [sym__code_span_start] = ACTIONS(3573), - [sym__html_comment] = ACTIONS(3544), - [sym__autolink] = ACTIONS(3544), - [sym__highlight_span_start] = ACTIONS(3576), - [sym__insert_span_start] = ACTIONS(3579), - [sym__delete_span_start] = ACTIONS(3582), - [sym__edit_comment_span_start] = ACTIONS(3585), - [sym__single_quote_span_open] = ACTIONS(3588), - [sym__double_quote_span_open] = ACTIONS(3591), - [sym__shortcode_open_escaped] = ACTIONS(3594), - [sym__shortcode_open] = ACTIONS(3597), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3600), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3603), - [sym__cite_author_in_text] = ACTIONS(3606), - [sym__cite_suppress_author] = ACTIONS(3609), - [sym__strikeout_open] = ACTIONS(3612), - [sym__subscript_open] = ACTIONS(3615), - [sym__superscript_open] = ACTIONS(3618), - [sym__inline_note_start_token] = ACTIONS(3621), - [sym__strong_emphasis_open_star] = ACTIONS(3624), - [sym__strong_emphasis_open_underscore] = ACTIONS(3627), - [sym__emphasis_open_star] = ACTIONS(3630), - [sym__emphasis_open_underscore] = ACTIONS(3633), - [sym_inline_note_reference] = ACTIONS(3544), - [sym_html_element] = ACTIONS(3544), - [sym__pandoc_lt_str] = ACTIONS(3565), - [sym__pipe_table_delimiter] = ACTIONS(3571), - [sym__pandoc_line_break] = ACTIONS(3544), + [sym__inlines] = STATE(2990), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(901), + [sym__inline_whitespace] = STATE(901), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3698), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), }, [STATE(620)] = { - [sym_pipe_table_cell] = STATE(3280), - [sym_pandoc_span] = STATE(694), - [sym_pandoc_image] = STATE(694), - [sym_pandoc_math] = STATE(694), - [sym_pandoc_display_math] = STATE(694), - [sym_pandoc_code_span] = STATE(694), - [sym_pandoc_single_quote] = STATE(694), - [sym_pandoc_double_quote] = STATE(694), - [sym_insert] = STATE(694), - [sym_delete] = STATE(694), - [sym_edit_comment] = STATE(694), - [sym_highlight] = STATE(694), - [sym__pandoc_attr_specifier] = STATE(694), - [sym__line_with_maybe_spaces] = STATE(3323), - [sym__inline_element] = STATE(694), - [sym_shortcode_escaped] = STATE(694), - [sym_shortcode] = STATE(694), - [sym_citation] = STATE(694), - [sym_inline_note] = STATE(694), - [sym_pandoc_superscript] = STATE(694), - [sym_pandoc_subscript] = STATE(694), - [sym_pandoc_strikeout] = STATE(694), - [sym_pandoc_emph] = STATE(694), - [sym_pandoc_strong] = STATE(694), - [sym_pandoc_str] = STATE(694), - [aux_sym_pipe_table_row_repeat1] = STATE(600), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(694), - [sym_entity_reference] = ACTIONS(3247), - [sym_numeric_character_reference] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_BANG_LBRACK] = ACTIONS(3251), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [aux_sym_pandoc_str_token1] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3261), - [sym__whitespace] = ACTIONS(3636), - [sym__line_ending] = ACTIONS(2917), - [sym__code_span_start] = ACTIONS(3265), - [sym__html_comment] = ACTIONS(3247), - [sym__autolink] = ACTIONS(3247), - [sym__highlight_span_start] = ACTIONS(3267), - [sym__insert_span_start] = ACTIONS(3269), - [sym__delete_span_start] = ACTIONS(3271), - [sym__edit_comment_span_start] = ACTIONS(3273), - [sym__single_quote_span_open] = ACTIONS(3275), - [sym__double_quote_span_open] = ACTIONS(3277), - [sym__shortcode_open_escaped] = ACTIONS(3279), - [sym__shortcode_open] = ACTIONS(3281), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3285), - [sym__cite_author_in_text] = ACTIONS(3287), - [sym__cite_suppress_author] = ACTIONS(3289), - [sym__strikeout_open] = ACTIONS(3291), - [sym__subscript_open] = ACTIONS(3293), - [sym__superscript_open] = ACTIONS(3295), - [sym__inline_note_start_token] = ACTIONS(3297), - [sym__strong_emphasis_open_star] = ACTIONS(3299), - [sym__strong_emphasis_open_underscore] = ACTIONS(3301), - [sym__emphasis_open_star] = ACTIONS(3303), - [sym__emphasis_open_underscore] = ACTIONS(3305), - [sym_inline_note_reference] = ACTIONS(3247), - [sym_html_element] = ACTIONS(3247), - [sym__pandoc_lt_str] = ACTIONS(3261), - [sym__pandoc_line_break] = ACTIONS(3247), + [sym__inlines] = STATE(2996), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(909), + [sym__inline_whitespace] = STATE(909), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3700), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), + }, + [STATE(621)] = { + [sym__inlines] = STATE(3001), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(917), + [sym__inline_whitespace] = STATE(917), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3702), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), + }, + [STATE(622)] = { + [sym__inlines] = STATE(3011), + [sym_pandoc_span] = STATE(695), + [sym_pandoc_image] = STATE(695), + [sym_pandoc_math] = STATE(695), + [sym_pandoc_display_math] = STATE(695), + [sym_pandoc_code_span] = STATE(695), + [sym_pandoc_single_quote] = STATE(695), + [sym_pandoc_double_quote] = STATE(695), + [sym_insert] = STATE(695), + [sym_delete] = STATE(695), + [sym_edit_comment] = STATE(695), + [sym_highlight] = STATE(695), + [sym__pandoc_attr_specifier] = STATE(695), + [sym__line] = STATE(2975), + [sym__inline_element] = STATE(695), + [sym_shortcode_escaped] = STATE(695), + [sym_shortcode] = STATE(695), + [sym_citation] = STATE(695), + [sym_inline_note] = STATE(695), + [sym_pandoc_superscript] = STATE(695), + [sym_pandoc_subscript] = STATE(695), + [sym_pandoc_strikeout] = STATE(695), + [sym_pandoc_emph] = STATE(695), + [sym_pandoc_strong] = STATE(695), + [sym_pandoc_str] = STATE(695), + [sym__soft_line_break] = STATE(933), + [sym__inline_whitespace] = STATE(933), + [sym_entity_reference] = ACTIONS(3503), + [sym_numeric_character_reference] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_BANG_LBRACK] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3513), + [aux_sym_pandoc_str_token1] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3517), + [sym__whitespace] = ACTIONS(3704), + [sym__soft_line_ending] = ACTIONS(3261), + [sym__code_span_start] = ACTIONS(3521), + [sym__html_comment] = ACTIONS(3503), + [sym__autolink] = ACTIONS(3503), + [sym__highlight_span_start] = ACTIONS(3523), + [sym__insert_span_start] = ACTIONS(3525), + [sym__delete_span_start] = ACTIONS(3527), + [sym__edit_comment_span_start] = ACTIONS(3529), + [sym__single_quote_span_open] = ACTIONS(3531), + [sym__double_quote_span_open] = ACTIONS(3533), + [sym__shortcode_open_escaped] = ACTIONS(3535), + [sym__shortcode_open] = ACTIONS(3537), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), + [sym__cite_author_in_text] = ACTIONS(3543), + [sym__cite_suppress_author] = ACTIONS(3545), + [sym__strikeout_open] = ACTIONS(3547), + [sym__subscript_open] = ACTIONS(3549), + [sym__superscript_open] = ACTIONS(3551), + [sym__inline_note_start_token] = ACTIONS(3553), + [sym__strong_emphasis_open_star] = ACTIONS(3555), + [sym__strong_emphasis_open_underscore] = ACTIONS(3557), + [sym__emphasis_open_star] = ACTIONS(3559), + [sym__emphasis_open_underscore] = ACTIONS(3561), + [sym_inline_note_reference] = ACTIONS(3503), + [sym_html_element] = ACTIONS(3503), + [sym__pandoc_lt_str] = ACTIONS(3517), + [sym__pandoc_line_break] = ACTIONS(3503), + }, + [STATE(623)] = { + [sym_pipe_table_cell] = STATE(3369), + [sym_pandoc_span] = STATE(680), + [sym_pandoc_image] = STATE(680), + [sym_pandoc_math] = STATE(680), + [sym_pandoc_display_math] = STATE(680), + [sym_pandoc_code_span] = STATE(680), + [sym_pandoc_single_quote] = STATE(680), + [sym_pandoc_double_quote] = STATE(680), + [sym_insert] = STATE(680), + [sym_delete] = STATE(680), + [sym_edit_comment] = STATE(680), + [sym_highlight] = STATE(680), + [sym__pandoc_attr_specifier] = STATE(680), + [sym__line_with_maybe_spaces] = STATE(3327), + [sym__inline_element] = STATE(680), + [sym_shortcode_escaped] = STATE(680), + [sym_shortcode] = STATE(680), + [sym_citation] = STATE(680), + [sym_inline_note] = STATE(680), + [sym_pandoc_superscript] = STATE(680), + [sym_pandoc_subscript] = STATE(680), + [sym_pandoc_strikeout] = STATE(680), + [sym_pandoc_emph] = STATE(680), + [sym_pandoc_strong] = STATE(680), + [sym_pandoc_str] = STATE(680), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(680), + [sym_entity_reference] = ACTIONS(3343), + [sym_numeric_character_reference] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_BANG_LBRACK] = ACTIONS(3347), + [anon_sym_DOLLAR] = ACTIONS(3349), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [aux_sym_pandoc_str_token1] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(3357), + [sym__whitespace] = ACTIONS(3563), + [sym__line_ending] = ACTIONS(2971), + [sym__code_span_start] = ACTIONS(3361), + [sym__html_comment] = ACTIONS(3343), + [sym__autolink] = ACTIONS(3343), + [sym__highlight_span_start] = ACTIONS(3363), + [sym__insert_span_start] = ACTIONS(3365), + [sym__delete_span_start] = ACTIONS(3367), + [sym__edit_comment_span_start] = ACTIONS(3369), + [sym__single_quote_span_open] = ACTIONS(3371), + [sym__double_quote_span_open] = ACTIONS(3373), + [sym__shortcode_open_escaped] = ACTIONS(3375), + [sym__shortcode_open] = ACTIONS(3377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3381), + [sym__cite_author_in_text] = ACTIONS(3383), + [sym__cite_suppress_author] = ACTIONS(3385), + [sym__strikeout_open] = ACTIONS(3387), + [sym__subscript_open] = ACTIONS(3389), + [sym__superscript_open] = ACTIONS(3391), + [sym__inline_note_start_token] = ACTIONS(3393), + [sym__strong_emphasis_open_star] = ACTIONS(3395), + [sym__strong_emphasis_open_underscore] = ACTIONS(3397), + [sym__emphasis_open_star] = ACTIONS(3399), + [sym__emphasis_open_underscore] = ACTIONS(3401), + [sym_inline_note_reference] = ACTIONS(3343), + [sym_html_element] = ACTIONS(3343), + [sym__pandoc_lt_str] = ACTIONS(3357), + [sym__pipe_table_delimiter] = ACTIONS(3565), + [sym__pandoc_line_break] = ACTIONS(3343), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 35, - ACTIONS(2555), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2825), 1, + ACTIONS(2857), 1, aux_sym_target_token1, - ACTIONS(3638), 1, + ACTIONS(3706), 1, aux_sym_pandoc_span_token1, - STATE(1104), 1, + STATE(1269), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3417), 1, + STATE(3370), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76850,7 +77266,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76874,75 +77290,72 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [135] = 35, - ACTIONS(2555), 1, + [135] = 33, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2745), 1, - aux_sym_target_token1, - ACTIONS(3640), 1, + ACTIONS(3710), 1, aux_sym_pandoc_span_token1, - STATE(1361), 1, - sym_target, - STATE(3081), 1, - sym__line, - STATE(3520), 1, - sym__inlines, - ACTIONS(2571), 2, + ACTIONS(3714), 1, + sym__whitespace, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(3712), 2, + sym__soft_line_ending, + aux_sym_target_token1, + ACTIONS(3708), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76950,7 +77363,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76974,75 +77387,73 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [270] = 35, - ACTIONS(2555), 1, + aux_sym__line_repeat1, + [266] = 33, + ACTIONS(3719), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(3722), 1, + aux_sym_pandoc_span_token1, + ACTIONS(3724), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(3729), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(3732), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(3735), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(3738), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(3744), 1, + sym__whitespace, + ACTIONS(3747), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(3750), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(3753), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(3756), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(3759), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(3762), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(3765), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(3768), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(3771), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(3774), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(3777), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(3780), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(3783), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(3786), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(3789), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(3792), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(3795), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(3798), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(3801), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(3804), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(3807), 1, sym__emphasis_open_underscore, - ACTIONS(2745), 1, + ACTIONS(3727), 2, + sym__soft_line_ending, aux_sym_target_token1, - ACTIONS(3642), 1, - aux_sym_pandoc_span_token1, - STATE(1363), 1, - sym_target, - STATE(3081), 1, - sym__line, - STATE(3279), 1, - sym__inlines, - ACTIONS(2571), 2, + ACTIONS(3741), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(3716), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77050,7 +77461,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77074,73 +77485,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [405] = 34, - ACTIONS(2141), 1, + aux_sym__line_repeat1, + [397] = 34, + ACTIONS(2142), 1, anon_sym_LBRACK, - ACTIONS(2143), 1, + ACTIONS(2144), 1, anon_sym_BANG_LBRACK, - ACTIONS(2145), 1, + ACTIONS(2146), 1, anon_sym_DOLLAR, - ACTIONS(2147), 1, + ACTIONS(2148), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2149), 1, + ACTIONS(2150), 1, anon_sym_LBRACE, - ACTIONS(2151), 1, + ACTIONS(2152), 1, aux_sym_pandoc_str_token1, - ACTIONS(2159), 1, + ACTIONS(2160), 1, sym__code_span_start, - ACTIONS(2161), 1, + ACTIONS(2162), 1, sym__highlight_span_start, - ACTIONS(2163), 1, + ACTIONS(2164), 1, sym__insert_span_start, - ACTIONS(2165), 1, + ACTIONS(2166), 1, sym__delete_span_start, - ACTIONS(2167), 1, + ACTIONS(2168), 1, sym__edit_comment_span_start, - ACTIONS(2169), 1, + ACTIONS(2170), 1, sym__single_quote_span_open, - ACTIONS(2171), 1, + ACTIONS(2172), 1, sym__double_quote_span_open, - ACTIONS(2173), 1, + ACTIONS(2174), 1, sym__shortcode_open_escaped, - ACTIONS(2175), 1, + ACTIONS(2176), 1, sym__shortcode_open, - ACTIONS(2177), 1, + ACTIONS(2178), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2179), 1, + ACTIONS(2180), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2181), 1, + ACTIONS(2182), 1, sym__cite_author_in_text, - ACTIONS(2183), 1, + ACTIONS(2184), 1, sym__cite_suppress_author, - ACTIONS(2185), 1, + ACTIONS(2186), 1, sym__strikeout_open, - ACTIONS(2187), 1, + ACTIONS(2188), 1, sym__subscript_open, - ACTIONS(2189), 1, + ACTIONS(2190), 1, sym__superscript_open, - ACTIONS(2191), 1, + ACTIONS(2192), 1, sym__inline_note_start_token, - ACTIONS(2193), 1, + ACTIONS(2194), 1, sym__strong_emphasis_open_star, - ACTIONS(2195), 1, + ACTIONS(2196), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2197), 1, + ACTIONS(2198), 1, sym__emphasis_open_star, - ACTIONS(2199), 1, + ACTIONS(2200), 1, sym__emphasis_open_underscore, - ACTIONS(3644), 1, + ACTIONS(3810), 1, sym__whitespace, - STATE(441), 1, + STATE(365), 1, aux_sym_pipe_table_row_repeat1, - STATE(2956), 1, + STATE(3032), 1, sym_pipe_table_cell, - STATE(3068), 1, + STATE(3056), 1, sym__line_with_maybe_spaces, - ACTIONS(2153), 2, + ACTIONS(2154), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2139), 7, + ACTIONS(2140), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77148,7 +77560,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(595), 24, + STATE(607), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77173,772 +77585,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_with_maybe_spaces_repeat1, - [538] = 35, - ACTIONS(2555), 1, - anon_sym_LBRACK, - ACTIONS(2559), 1, - anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, - anon_sym_DOLLAR, - ACTIONS(2565), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, - anon_sym_LBRACE, - ACTIONS(2569), 1, - aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, - sym__code_span_start, - ACTIONS(2579), 1, - sym__highlight_span_start, - ACTIONS(2581), 1, - sym__insert_span_start, - ACTIONS(2583), 1, - sym__delete_span_start, - ACTIONS(2585), 1, - sym__edit_comment_span_start, - ACTIONS(2587), 1, - sym__single_quote_span_open, - ACTIONS(2589), 1, - sym__double_quote_span_open, - ACTIONS(2591), 1, - sym__shortcode_open_escaped, - ACTIONS(2593), 1, - sym__shortcode_open, - ACTIONS(2595), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, - sym__cite_author_in_text, - ACTIONS(2601), 1, - sym__cite_suppress_author, - ACTIONS(2603), 1, - sym__strikeout_open, - ACTIONS(2605), 1, - sym__subscript_open, - ACTIONS(2607), 1, - sym__superscript_open, - ACTIONS(2609), 1, - sym__inline_note_start_token, - ACTIONS(2611), 1, - sym__strong_emphasis_open_star, - ACTIONS(2613), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, - sym__emphasis_open_star, - ACTIONS(2617), 1, - sym__emphasis_open_underscore, - ACTIONS(2755), 1, - aux_sym_target_token1, - ACTIONS(3646), 1, - aux_sym_pandoc_span_token1, - STATE(1390), 1, - sym_target, - STATE(3081), 1, - sym__line, - STATE(3343), 1, - sym__inlines, - ACTIONS(2571), 2, - sym__pandoc_lt_str, - anon_sym_PIPE, - ACTIONS(2553), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(646), 23, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - [673] = 35, - ACTIONS(2555), 1, - anon_sym_LBRACK, - ACTIONS(2559), 1, - anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, - anon_sym_DOLLAR, - ACTIONS(2565), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, - anon_sym_LBRACE, - ACTIONS(2569), 1, - aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, - sym__code_span_start, - ACTIONS(2579), 1, - sym__highlight_span_start, - ACTIONS(2581), 1, - sym__insert_span_start, - ACTIONS(2583), 1, - sym__delete_span_start, - ACTIONS(2585), 1, - sym__edit_comment_span_start, - ACTIONS(2587), 1, - sym__single_quote_span_open, - ACTIONS(2589), 1, - sym__double_quote_span_open, - ACTIONS(2591), 1, - sym__shortcode_open_escaped, - ACTIONS(2593), 1, - sym__shortcode_open, - ACTIONS(2595), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, - sym__cite_author_in_text, - ACTIONS(2601), 1, - sym__cite_suppress_author, - ACTIONS(2603), 1, - sym__strikeout_open, - ACTIONS(2605), 1, - sym__subscript_open, - ACTIONS(2607), 1, - sym__superscript_open, - ACTIONS(2609), 1, - sym__inline_note_start_token, - ACTIONS(2611), 1, - sym__strong_emphasis_open_star, - ACTIONS(2613), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, - sym__emphasis_open_star, - ACTIONS(2617), 1, - sym__emphasis_open_underscore, - ACTIONS(2755), 1, - aux_sym_target_token1, - ACTIONS(3648), 1, - aux_sym_pandoc_span_token1, - STATE(1392), 1, - sym_target, - STATE(3081), 1, - sym__line, - STATE(3344), 1, - sym__inlines, - ACTIONS(2571), 2, - sym__pandoc_lt_str, - anon_sym_PIPE, - ACTIONS(2553), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(646), 23, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - [808] = 35, - ACTIONS(2555), 1, - anon_sym_LBRACK, - ACTIONS(2559), 1, - anon_sym_BANG_LBRACK, - ACTIONS(2561), 1, - aux_sym_target_token1, - ACTIONS(2563), 1, - anon_sym_DOLLAR, - ACTIONS(2565), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, - anon_sym_LBRACE, - ACTIONS(2569), 1, - aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, - sym__code_span_start, - ACTIONS(2579), 1, - sym__highlight_span_start, - ACTIONS(2581), 1, - sym__insert_span_start, - ACTIONS(2583), 1, - sym__delete_span_start, - ACTIONS(2585), 1, - sym__edit_comment_span_start, - ACTIONS(2587), 1, - sym__single_quote_span_open, - ACTIONS(2589), 1, - sym__double_quote_span_open, - ACTIONS(2591), 1, - sym__shortcode_open_escaped, - ACTIONS(2593), 1, - sym__shortcode_open, - ACTIONS(2595), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, - sym__cite_author_in_text, - ACTIONS(2601), 1, - sym__cite_suppress_author, - ACTIONS(2603), 1, - sym__strikeout_open, - ACTIONS(2605), 1, - sym__subscript_open, - ACTIONS(2607), 1, - sym__superscript_open, - ACTIONS(2609), 1, - sym__inline_note_start_token, - ACTIONS(2611), 1, - sym__strong_emphasis_open_star, - ACTIONS(2613), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, - sym__emphasis_open_star, - ACTIONS(2617), 1, - sym__emphasis_open_underscore, - ACTIONS(3650), 1, - aux_sym_pandoc_span_token1, - STATE(1172), 1, - sym_target, - STATE(3081), 1, - sym__line, - STATE(3364), 1, - sym__inlines, - ACTIONS(2571), 2, - sym__pandoc_lt_str, - anon_sym_PIPE, - ACTIONS(2553), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(646), 23, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - [943] = 35, - ACTIONS(2555), 1, - anon_sym_LBRACK, - ACTIONS(2559), 1, - anon_sym_BANG_LBRACK, - ACTIONS(2561), 1, - aux_sym_target_token1, - ACTIONS(2563), 1, - anon_sym_DOLLAR, - ACTIONS(2565), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, - anon_sym_LBRACE, - ACTIONS(2569), 1, - aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, - sym__code_span_start, - ACTIONS(2579), 1, - sym__highlight_span_start, - ACTIONS(2581), 1, - sym__insert_span_start, - ACTIONS(2583), 1, - sym__delete_span_start, - ACTIONS(2585), 1, - sym__edit_comment_span_start, - ACTIONS(2587), 1, - sym__single_quote_span_open, - ACTIONS(2589), 1, - sym__double_quote_span_open, - ACTIONS(2591), 1, - sym__shortcode_open_escaped, - ACTIONS(2593), 1, - sym__shortcode_open, - ACTIONS(2595), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, - sym__cite_author_in_text, - ACTIONS(2601), 1, - sym__cite_suppress_author, - ACTIONS(2603), 1, - sym__strikeout_open, - ACTIONS(2605), 1, - sym__subscript_open, - ACTIONS(2607), 1, - sym__superscript_open, - ACTIONS(2609), 1, - sym__inline_note_start_token, - ACTIONS(2611), 1, - sym__strong_emphasis_open_star, - ACTIONS(2613), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, - sym__emphasis_open_star, - ACTIONS(2617), 1, - sym__emphasis_open_underscore, - ACTIONS(3652), 1, - aux_sym_pandoc_span_token1, - STATE(1174), 1, - sym_target, - STATE(3081), 1, - sym__line, - STATE(3374), 1, - sym__inlines, - ACTIONS(2571), 2, - sym__pandoc_lt_str, - anon_sym_PIPE, - ACTIONS(2553), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(646), 23, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - [1078] = 35, - ACTIONS(2555), 1, - anon_sym_LBRACK, - ACTIONS(2559), 1, - anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, - anon_sym_DOLLAR, - ACTIONS(2565), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, - anon_sym_LBRACE, - ACTIONS(2569), 1, - aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, - sym__code_span_start, - ACTIONS(2579), 1, - sym__highlight_span_start, - ACTIONS(2581), 1, - sym__insert_span_start, - ACTIONS(2583), 1, - sym__delete_span_start, - ACTIONS(2585), 1, - sym__edit_comment_span_start, - ACTIONS(2587), 1, - sym__single_quote_span_open, - ACTIONS(2589), 1, - sym__double_quote_span_open, - ACTIONS(2591), 1, - sym__shortcode_open_escaped, - ACTIONS(2593), 1, - sym__shortcode_open, - ACTIONS(2595), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, - sym__cite_author_in_text, - ACTIONS(2601), 1, - sym__cite_suppress_author, - ACTIONS(2603), 1, - sym__strikeout_open, - ACTIONS(2605), 1, - sym__subscript_open, - ACTIONS(2607), 1, - sym__superscript_open, - ACTIONS(2609), 1, - sym__inline_note_start_token, - ACTIONS(2611), 1, - sym__strong_emphasis_open_star, - ACTIONS(2613), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, - sym__emphasis_open_star, - ACTIONS(2617), 1, - sym__emphasis_open_underscore, - ACTIONS(2765), 1, - aux_sym_target_token1, - ACTIONS(3654), 1, - aux_sym_pandoc_span_token1, - STATE(1453), 1, - sym_target, - STATE(3081), 1, - sym__line, - STATE(3406), 1, - sym__inlines, - ACTIONS(2571), 2, - sym__pandoc_lt_str, - anon_sym_PIPE, - ACTIONS(2553), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(646), 23, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - [1213] = 35, - ACTIONS(2555), 1, - anon_sym_LBRACK, - ACTIONS(2559), 1, - anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, - anon_sym_DOLLAR, - ACTIONS(2565), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, - anon_sym_LBRACE, - ACTIONS(2569), 1, - aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, - sym__code_span_start, - ACTIONS(2579), 1, - sym__highlight_span_start, - ACTIONS(2581), 1, - sym__insert_span_start, - ACTIONS(2583), 1, - sym__delete_span_start, - ACTIONS(2585), 1, - sym__edit_comment_span_start, - ACTIONS(2587), 1, - sym__single_quote_span_open, - ACTIONS(2589), 1, - sym__double_quote_span_open, - ACTIONS(2591), 1, - sym__shortcode_open_escaped, - ACTIONS(2593), 1, - sym__shortcode_open, - ACTIONS(2595), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, - sym__cite_author_in_text, - ACTIONS(2601), 1, - sym__cite_suppress_author, - ACTIONS(2603), 1, - sym__strikeout_open, - ACTIONS(2605), 1, - sym__subscript_open, - ACTIONS(2607), 1, - sym__superscript_open, - ACTIONS(2609), 1, - sym__inline_note_start_token, - ACTIONS(2611), 1, - sym__strong_emphasis_open_star, - ACTIONS(2613), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, - sym__emphasis_open_star, - ACTIONS(2617), 1, - sym__emphasis_open_underscore, - ACTIONS(2765), 1, - aux_sym_target_token1, - ACTIONS(3656), 1, - aux_sym_pandoc_span_token1, - STATE(1471), 1, - sym_target, - STATE(3081), 1, - sym__line, - STATE(3407), 1, - sym__inlines, - ACTIONS(2571), 2, - sym__pandoc_lt_str, - anon_sym_PIPE, - ACTIONS(2553), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(646), 23, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - [1348] = 32, - ACTIONS(3661), 1, - anon_sym_LBRACK, - ACTIONS(3664), 1, - anon_sym_BANG_LBRACK, - ACTIONS(3667), 1, - anon_sym_DOLLAR, - ACTIONS(3670), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(3673), 1, - anon_sym_LBRACE, - ACTIONS(3676), 1, - aux_sym_pandoc_str_token1, - ACTIONS(3682), 1, - sym__whitespace, - ACTIONS(3687), 1, - sym__code_span_start, - ACTIONS(3690), 1, - sym__highlight_span_start, - ACTIONS(3693), 1, - sym__insert_span_start, - ACTIONS(3696), 1, - sym__delete_span_start, - ACTIONS(3699), 1, - sym__edit_comment_span_start, - ACTIONS(3702), 1, - sym__single_quote_span_open, - ACTIONS(3705), 1, - sym__double_quote_span_open, - ACTIONS(3708), 1, - sym__shortcode_open_escaped, - ACTIONS(3711), 1, - sym__shortcode_open, - ACTIONS(3714), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(3717), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(3720), 1, - sym__cite_author_in_text, - ACTIONS(3723), 1, - sym__cite_suppress_author, - ACTIONS(3726), 1, - sym__strikeout_open, - ACTIONS(3729), 1, - sym__subscript_open, - ACTIONS(3732), 1, - sym__superscript_open, - ACTIONS(3735), 1, - sym__inline_note_start_token, - ACTIONS(3738), 1, - sym__strong_emphasis_open_star, - ACTIONS(3741), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(3744), 1, - sym__emphasis_open_star, - ACTIONS(3747), 1, - sym__emphasis_open_underscore, - ACTIONS(3679), 2, - sym__pandoc_lt_str, - anon_sym_PIPE, - ACTIONS(3685), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(3658), 7, - 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), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - aux_sym__line_repeat1, - [1477] = 35, - ACTIONS(2555), 1, + [530] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2695), 1, + ACTIONS(2795), 1, aux_sym_target_token1, - ACTIONS(3750), 1, + ACTIONS(3812), 1, aux_sym_pandoc_span_token1, - STATE(1063), 1, + STATE(1205), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3473), 1, + STATE(3295), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77946,7 +77661,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77970,75 +77685,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [1612] = 35, - ACTIONS(2555), 1, + [665] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2775), 1, + ACTIONS(2795), 1, aux_sym_target_token1, - ACTIONS(3752), 1, + ACTIONS(3814), 1, aux_sym_pandoc_span_token1, - STATE(1112), 1, + STATE(1220), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3466), 1, + STATE(3296), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78046,7 +77761,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78070,75 +77785,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [1747] = 35, - ACTIONS(2555), 1, + [800] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2775), 1, + ACTIONS(2809), 1, aux_sym_target_token1, - ACTIONS(3754), 1, + ACTIONS(3816), 1, aux_sym_pandoc_span_token1, - STATE(1115), 1, + STATE(1415), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3469), 1, + STATE(3458), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78146,7 +77861,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78170,75 +77885,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [1882] = 35, - ACTIONS(2555), 1, + [935] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2695), 1, + ACTIONS(2809), 1, aux_sym_target_token1, - ACTIONS(3756), 1, + ACTIONS(3818), 1, aux_sym_pandoc_span_token1, - STATE(1065), 1, + STATE(1417), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3336), 1, + STATE(3459), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78246,7 +77961,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78270,75 +77985,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [2017] = 35, - ACTIONS(2555), 1, + [1070] = 32, + ACTIONS(7), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(9), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(11), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(13), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(17), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(65), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(67), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(69), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(71), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(73), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(75), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(77), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(79), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(81), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(83), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(85), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(87), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(89), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(91), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(93), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(95), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(97), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(99), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(103), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(105), 1, sym__emphasis_open_underscore, - ACTIONS(2785), 1, - aux_sym_target_token1, - ACTIONS(3758), 1, - aux_sym_pandoc_span_token1, - STATE(1203), 1, - sym_target, - STATE(3081), 1, - sym__line, - STATE(3516), 1, - sym__inlines, - ACTIONS(2571), 2, + ACTIONS(3822), 1, + sym__whitespace, + ACTIONS(19), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(3712), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(3820), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78346,7 +78057,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(633), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78370,75 +78081,72 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [2152] = 35, - ACTIONS(2555), 1, + aux_sym__line_repeat1, + [1199] = 32, + ACTIONS(3827), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(3830), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(3833), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(3836), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(3839), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(3842), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(3848), 1, + sym__whitespace, + ACTIONS(3851), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(3854), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(3857), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(3860), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(3863), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(3866), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(3869), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(3872), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(3875), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(3878), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(3881), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(3884), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(3887), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(3890), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(3893), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(3896), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(3899), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(3902), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(3905), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(3908), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(3911), 1, sym__emphasis_open_underscore, - ACTIONS(2785), 1, - aux_sym_target_token1, - ACTIONS(3760), 1, - aux_sym_pandoc_span_token1, - STATE(1212), 1, - sym_target, - STATE(3081), 1, - sym__line, - STATE(3517), 1, - sym__inlines, - ACTIONS(2571), 2, + ACTIONS(3845), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(3727), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(3824), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78446,7 +78154,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(633), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78470,75 +78178,175 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [2287] = 35, - ACTIONS(2555), 1, + aux_sym__line_repeat1, + [1328] = 34, + ACTIONS(3345), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(3347), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(3349), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(3351), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(3353), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(3355), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(3361), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(3363), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(3365), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(3367), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(3369), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(3371), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(3373), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(3375), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(3377), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(3379), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(3381), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(3383), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(3385), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(3387), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(3389), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(3391), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(3393), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(3395), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(3397), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(3399), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(3401), 1, sym__emphasis_open_underscore, - ACTIONS(2795), 1, + ACTIONS(3914), 1, + sym__whitespace, + STATE(597), 1, + aux_sym_pipe_table_row_repeat1, + STATE(3327), 1, + sym__line_with_maybe_spaces, + STATE(3434), 1, + sym_pipe_table_cell, + ACTIONS(3357), 2, + sym__pandoc_lt_str, + anon_sym_PIPE, + ACTIONS(3343), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(680), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [1461] = 35, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2427), 1, + anon_sym_DOLLAR, + ACTIONS(2429), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2431), 1, + anon_sym_LBRACE, + ACTIONS(2433), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2441), 1, + sym__code_span_start, + ACTIONS(2443), 1, + sym__highlight_span_start, + ACTIONS(2445), 1, + sym__insert_span_start, + ACTIONS(2447), 1, + sym__delete_span_start, + ACTIONS(2449), 1, + sym__edit_comment_span_start, + ACTIONS(2451), 1, + sym__single_quote_span_open, + ACTIONS(2453), 1, + sym__double_quote_span_open, + ACTIONS(2455), 1, + sym__shortcode_open_escaped, + ACTIONS(2457), 1, + sym__shortcode_open, + ACTIONS(2459), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2461), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2463), 1, + sym__cite_author_in_text, + ACTIONS(2465), 1, + sym__cite_suppress_author, + ACTIONS(2467), 1, + sym__strikeout_open, + ACTIONS(2469), 1, + sym__subscript_open, + ACTIONS(2471), 1, + sym__superscript_open, + ACTIONS(2473), 1, + sym__inline_note_start_token, + ACTIONS(2475), 1, + sym__strong_emphasis_open_star, + ACTIONS(2477), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2479), 1, + sym__emphasis_open_star, + ACTIONS(2481), 1, + sym__emphasis_open_underscore, + ACTIONS(2827), 1, aux_sym_target_token1, - ACTIONS(3762), 1, + ACTIONS(3916), 1, aux_sym_pandoc_span_token1, - STATE(1344), 1, + STATE(1135), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3318), 1, + STATE(3272), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78546,7 +78354,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78570,75 +78378,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [2422] = 35, - ACTIONS(2555), 1, + [1596] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2795), 1, + ACTIONS(2827), 1, aux_sym_target_token1, - ACTIONS(3764), 1, + ACTIONS(3918), 1, aux_sym_pandoc_span_token1, - STATE(1402), 1, + STATE(1144), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3319), 1, + STATE(3324), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78646,7 +78454,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78670,75 +78478,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [2557] = 35, - ACTIONS(2555), 1, + [1731] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2805), 1, + ACTIONS(2837), 1, aux_sym_target_token1, - ACTIONS(3766), 1, + ACTIONS(3920), 1, aux_sym_pandoc_span_token1, - STATE(1443), 1, + STATE(1202), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3354), 1, + STATE(3478), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78746,7 +78554,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78770,75 +78578,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [2692] = 35, - ACTIONS(2555), 1, + [1866] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2815), 1, + ACTIONS(2837), 1, aux_sym_target_token1, - ACTIONS(3768), 1, + ACTIONS(3922), 1, aux_sym_pandoc_span_token1, - STATE(1475), 1, + STATE(1204), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3387), 1, + STATE(3479), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78846,7 +78654,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78870,75 +78678,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [2827] = 35, - ACTIONS(2555), 1, + [2001] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2815), 1, + ACTIONS(2847), 1, aux_sym_target_token1, - ACTIONS(3770), 1, + ACTIONS(3924), 1, aux_sym_pandoc_span_token1, - STATE(1477), 1, + STATE(1233), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3388), 1, + STATE(3278), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78946,7 +78754,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78970,75 +78778,171 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [2962] = 35, - ACTIONS(2555), 1, + [2136] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2673), 1, + ACTIONS(2847), 1, aux_sym_target_token1, - ACTIONS(3772), 1, + ACTIONS(3926), 1, aux_sym_pandoc_span_token1, - STATE(1194), 1, + STATE(1235), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3481), 1, + STATE(3290), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(644), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [2271] = 32, + ACTIONS(7), 1, + anon_sym_LBRACK, + ACTIONS(9), 1, + anon_sym_BANG_LBRACK, + ACTIONS(11), 1, + anon_sym_DOLLAR, + ACTIONS(13), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_pandoc_str_token1, + ACTIONS(65), 1, + sym__code_span_start, + ACTIONS(67), 1, + sym__highlight_span_start, + ACTIONS(69), 1, + sym__insert_span_start, + ACTIONS(71), 1, + sym__delete_span_start, + ACTIONS(73), 1, + sym__edit_comment_span_start, + ACTIONS(75), 1, + sym__single_quote_span_open, + ACTIONS(77), 1, + sym__double_quote_span_open, + ACTIONS(79), 1, + sym__shortcode_open_escaped, + ACTIONS(81), 1, + sym__shortcode_open, + ACTIONS(83), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(85), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(87), 1, + sym__cite_author_in_text, + ACTIONS(89), 1, + sym__cite_suppress_author, + ACTIONS(91), 1, + sym__strikeout_open, + ACTIONS(93), 1, + sym__subscript_open, + ACTIONS(95), 1, + sym__superscript_open, + ACTIONS(97), 1, + sym__inline_note_start_token, + ACTIONS(99), 1, + sym__strong_emphasis_open_star, + ACTIONS(101), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(103), 1, + sym__emphasis_open_star, + ACTIONS(105), 1, + sym__emphasis_open_underscore, + ACTIONS(3822), 1, + sym__whitespace, + ACTIONS(19), 2, + sym__pandoc_lt_str, + anon_sym_PIPE, + ACTIONS(3930), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(3928), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79046,7 +78950,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(632), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79070,75 +78974,74 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [3097] = 35, - ACTIONS(2555), 1, + aux_sym__line_repeat1, + [2400] = 34, + ACTIONS(2967), 1, + sym__pipe_table_delimiter, + ACTIONS(3934), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(3936), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(3938), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(3940), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(3944), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(3948), 1, + sym__whitespace, + ACTIONS(3950), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(3952), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(3954), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(3956), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(3958), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(3960), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(3962), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(3964), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(3966), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(3968), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(3970), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(3972), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(3974), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(3976), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(3978), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(3980), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(3982), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(3984), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(3986), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(3988), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(3990), 1, sym__emphasis_open_underscore, - ACTIONS(2673), 1, - aux_sym_target_token1, - ACTIONS(3774), 1, - aux_sym_pandoc_span_token1, - STATE(1196), 1, - sym_target, - STATE(3081), 1, - sym__line, - STATE(3482), 1, - sym__inlines, - ACTIONS(2571), 2, + STATE(3563), 1, + sym__line_with_maybe_spaces, + STATE(3572), 1, + sym_pipe_table_cell, + ACTIONS(3946), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(3932), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79146,7 +79049,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(725), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79170,75 +79073,76 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [3232] = 35, - ACTIONS(2555), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [2533] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2825), 1, + ACTIONS(2779), 1, aux_sym_target_token1, - ACTIONS(3776), 1, + ACTIONS(3992), 1, aux_sym_pandoc_span_token1, - STATE(1102), 1, + STATE(1073), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3416), 1, + STATE(3357), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79246,7 +79150,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79270,72 +79174,72 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [3367] = 33, - ACTIONS(2555), 1, + [2668] = 33, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(3780), 1, - aux_sym_pandoc_span_token1, - ACTIONS(3784), 1, + ACTIONS(3714), 1, sym__whitespace, - ACTIONS(2571), 2, + ACTIONS(3996), 1, + aux_sym_pandoc_span_token1, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3782), 2, + ACTIONS(3930), 2, sym__soft_line_ending, aux_sym_target_token1, - ACTIONS(3778), 7, + ACTIONS(3994), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79343,7 +79247,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(647), 24, + STATE(625), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79368,72 +79272,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [3498] = 33, - ACTIONS(2555), 1, + [2799] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(3784), 1, - sym__whitespace, - ACTIONS(3788), 1, + ACTIONS(2867), 1, + aux_sym_target_token1, + ACTIONS(3998), 1, aux_sym_pandoc_span_token1, - ACTIONS(2571), 2, + STATE(1310), 1, + sym_target, + STATE(2939), 1, + sym__line, + STATE(3406), 1, + sym__inlines, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3790), 2, - sym__soft_line_ending, - aux_sym_target_token1, - ACTIONS(3786), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79441,7 +79348,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(649), 24, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79465,74 +79372,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [3629] = 34, - ACTIONS(2909), 1, - sym__pipe_table_delimiter, - ACTIONS(3794), 1, + [2934] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(3796), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(3798), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(3800), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3802), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(3808), 1, - sym__whitespace, - ACTIONS(3810), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(3812), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(3814), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(3816), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(3818), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(3820), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(3822), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(3824), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(3826), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(3828), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3830), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3832), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(3834), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(3836), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(3838), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(3840), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(3842), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(3844), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(3846), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3848), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(3850), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - STATE(3552), 1, - sym__line_with_maybe_spaces, - STATE(3560), 1, - sym_pipe_table_cell, - ACTIONS(3806), 2, + ACTIONS(2867), 1, + aux_sym_target_token1, + ACTIONS(4000), 1, + aux_sym_pandoc_span_token1, + STATE(1312), 1, + sym_target, + STATE(2939), 1, + sym__line, + STATE(3407), 1, + sym__inlines, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3792), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79540,7 +79448,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(787), 24, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79564,73 +79472,73 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, - [3762] = 33, - ACTIONS(3855), 1, + [3069] = 34, + ACTIONS(3565), 1, + sym__pipe_table_delimiter, + ACTIONS(3934), 1, anon_sym_LBRACK, - ACTIONS(3858), 1, - aux_sym_pandoc_span_token1, - ACTIONS(3860), 1, + ACTIONS(3936), 1, anon_sym_BANG_LBRACK, - ACTIONS(3863), 1, + ACTIONS(3938), 1, anon_sym_DOLLAR, - ACTIONS(3866), 1, + ACTIONS(3940), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3869), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - ACTIONS(3872), 1, + ACTIONS(3944), 1, aux_sym_pandoc_str_token1, - ACTIONS(3878), 1, + ACTIONS(3948), 1, sym__whitespace, - ACTIONS(3881), 1, + ACTIONS(3950), 1, sym__code_span_start, - ACTIONS(3884), 1, + ACTIONS(3952), 1, sym__highlight_span_start, - ACTIONS(3887), 1, + ACTIONS(3954), 1, sym__insert_span_start, - ACTIONS(3890), 1, + ACTIONS(3956), 1, sym__delete_span_start, - ACTIONS(3893), 1, + ACTIONS(3958), 1, sym__edit_comment_span_start, - ACTIONS(3896), 1, + ACTIONS(3960), 1, sym__single_quote_span_open, - ACTIONS(3899), 1, + ACTIONS(3962), 1, sym__double_quote_span_open, - ACTIONS(3902), 1, + ACTIONS(3964), 1, sym__shortcode_open_escaped, - ACTIONS(3905), 1, + ACTIONS(3966), 1, sym__shortcode_open, - ACTIONS(3908), 1, + ACTIONS(3968), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3911), 1, + ACTIONS(3970), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3914), 1, + ACTIONS(3972), 1, sym__cite_author_in_text, - ACTIONS(3917), 1, + ACTIONS(3974), 1, sym__cite_suppress_author, - ACTIONS(3920), 1, + ACTIONS(3976), 1, sym__strikeout_open, - ACTIONS(3923), 1, + ACTIONS(3978), 1, sym__subscript_open, - ACTIONS(3926), 1, + ACTIONS(3980), 1, sym__superscript_open, - ACTIONS(3929), 1, + ACTIONS(3982), 1, sym__inline_note_start_token, - ACTIONS(3932), 1, + ACTIONS(3984), 1, sym__strong_emphasis_open_star, - ACTIONS(3935), 1, + ACTIONS(3986), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3938), 1, + ACTIONS(3988), 1, sym__emphasis_open_star, - ACTIONS(3941), 1, + ACTIONS(3990), 1, sym__emphasis_open_underscore, - ACTIONS(3685), 2, - sym__soft_line_ending, - aux_sym_target_token1, - ACTIONS(3875), 2, + STATE(3561), 1, + sym_pipe_table_cell, + STATE(3563), 1, + sym__line_with_maybe_spaces, + ACTIONS(3946), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3852), 7, + ACTIONS(3932), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79638,7 +79546,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(649), 24, + STATE(725), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79662,74 +79570,76 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [3893] = 34, - ACTIONS(3249), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [3202] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(3251), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(3253), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(3255), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3257), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(3259), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(3265), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(3267), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(3269), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(3271), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(3273), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(3275), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(3277), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(3279), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(3281), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(3283), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3285), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3287), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(3289), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(3291), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(3293), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(3295), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(3297), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(3299), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(3301), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3303), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(3305), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(3944), 1, - sym__whitespace, - STATE(593), 1, - aux_sym_pipe_table_row_repeat1, - STATE(3323), 1, - sym__line_with_maybe_spaces, - STATE(3369), 1, - sym_pipe_table_cell, - ACTIONS(3261), 2, + ACTIONS(2877), 1, + aux_sym_target_token1, + ACTIONS(4002), 1, + aux_sym_pandoc_span_token1, + STATE(1346), 1, + sym_target, + STATE(2939), 1, + sym__line, + STATE(3452), 1, + sym__inlines, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3247), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79737,7 +79647,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(694), 24, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79761,76 +79671,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, - [4026] = 35, - ACTIONS(2555), 1, + [3337] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2835), 1, + ACTIONS(2877), 1, aux_sym_target_token1, - ACTIONS(3946), 1, + ACTIONS(4004), 1, aux_sym_pandoc_span_token1, - STATE(2137), 1, + STATE(1348), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3452), 1, + STATE(3453), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79838,7 +79747,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79862,75 +79771,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [4161] = 35, - ACTIONS(2555), 1, + [3472] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2835), 1, + ACTIONS(2779), 1, aux_sym_target_token1, - ACTIONS(3948), 1, + ACTIONS(4006), 1, aux_sym_pandoc_span_token1, - STATE(2139), 1, + STATE(1071), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3453), 1, + STATE(3391), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79938,7 +79847,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79962,71 +79871,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [4296] = 32, - ACTIONS(7), 1, + [3607] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(9), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(11), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(13), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(15), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(65), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(67), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(69), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(71), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(73), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(75), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(77), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(79), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(81), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(83), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(85), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(89), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(91), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(93), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(95), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(97), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(99), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(101), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(103), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(3952), 1, - sym__whitespace, - ACTIONS(19), 2, + ACTIONS(2887), 1, + aux_sym_target_token1, + ACTIONS(4008), 1, + aux_sym_pandoc_span_token1, + STATE(1395), 1, + sym_target, + STATE(2939), 1, + sym__line, + STATE(3345), 1, + sym__inlines, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3782), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(3950), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80034,7 +79947,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(659), 24, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80058,74 +79971,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [4425] = 34, - ACTIONS(3499), 1, - sym__pipe_table_delimiter, - ACTIONS(3794), 1, + [3742] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(3796), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(3798), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(3800), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3802), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(3808), 1, - sym__whitespace, - ACTIONS(3810), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(3812), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(3814), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(3816), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(3818), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(3820), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(3822), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(3824), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(3826), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(3828), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3830), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3832), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(3834), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(3836), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(3838), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(3840), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(3842), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(3844), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(3846), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3848), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(3850), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - STATE(3552), 1, - sym__line_with_maybe_spaces, - STATE(3647), 1, - sym_pipe_table_cell, - ACTIONS(3806), 2, + ACTIONS(2887), 1, + aux_sym_target_token1, + ACTIONS(4010), 1, + aux_sym_pandoc_span_token1, + STATE(1399), 1, + sym_target, + STATE(2939), 1, + sym__line, + STATE(3415), 1, + sym__inlines, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3792), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80133,7 +80047,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(787), 24, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80157,76 +80071,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, - [4558] = 35, - ACTIONS(2555), 1, + [3877] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2845), 1, + ACTIONS(2897), 1, aux_sym_target_token1, - ACTIONS(3954), 1, + ACTIONS(4012), 1, aux_sym_pandoc_span_token1, - STATE(975), 1, + STATE(1433), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3483), 1, + STATE(3323), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80234,7 +80147,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80258,75 +80171,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [4693] = 35, - ACTIONS(2555), 1, + [4012] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2845), 1, + ACTIONS(2897), 1, aux_sym_target_token1, - ACTIONS(3956), 1, + ACTIONS(4014), 1, aux_sym_pandoc_span_token1, - STATE(977), 1, + STATE(1435), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3484), 1, + STATE(3326), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80334,7 +80247,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80358,75 +80271,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [4828] = 35, - ACTIONS(2555), 1, + [4147] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2425), 1, + aux_sym_target_token1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2725), 1, - aux_sym_target_token1, - ACTIONS(3958), 1, + ACTIONS(4016), 1, aux_sym_pandoc_span_token1, - STATE(1295), 1, + STATE(1461), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3514), 1, + STATE(3299), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80434,7 +80347,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80458,75 +80371,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [4963] = 35, - ACTIONS(2555), 1, + [4282] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2425), 1, + aux_sym_target_token1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2725), 1, - aux_sym_target_token1, - ACTIONS(3960), 1, + ACTIONS(4018), 1, aux_sym_pandoc_span_token1, - STATE(1299), 1, + STATE(1463), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3519), 1, + STATE(3300), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80534,7 +80447,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80558,71 +80471,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [5098] = 32, - ACTIONS(7), 1, + [4417] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(9), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(11), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(13), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(15), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(65), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(67), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(69), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(71), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(73), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(75), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(77), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(79), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(81), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(83), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(85), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(89), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(91), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(93), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(95), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(97), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(99), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(101), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(103), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(3952), 1, - sym__whitespace, - ACTIONS(19), 2, + ACTIONS(2913), 1, + aux_sym_target_token1, + ACTIONS(4020), 1, + aux_sym_pandoc_span_token1, + STATE(1489), 1, + sym_target, + STATE(2939), 1, + sym__line, + STATE(3422), 1, + sym__inlines, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3790), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(3962), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80630,7 +80547,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(631), 24, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80654,76 +80571,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [5227] = 35, - ACTIONS(2555), 1, + [4552] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2735), 1, + ACTIONS(2913), 1, aux_sym_target_token1, - ACTIONS(3964), 1, + ACTIONS(4022), 1, aux_sym_pandoc_span_token1, - STATE(1331), 1, + STATE(1491), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3404), 1, + STATE(3426), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80731,7 +80647,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80755,75 +80671,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [5362] = 35, - ACTIONS(2555), 1, + [4687] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2735), 1, + ACTIONS(2923), 1, aux_sym_target_token1, - ACTIONS(3966), 1, + ACTIONS(4024), 1, aux_sym_pandoc_span_token1, - STATE(1333), 1, + STATE(1105), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3408), 1, + STATE(3494), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80831,7 +80747,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80855,75 +80771,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [5497] = 35, - ACTIONS(2555), 1, + [4822] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(2805), 1, + ACTIONS(2923), 1, aux_sym_target_token1, - ACTIONS(3968), 1, + ACTIONS(4026), 1, aux_sym_pandoc_span_token1, - STATE(1446), 1, + STATE(1107), 1, sym_target, - STATE(3081), 1, + STATE(2939), 1, sym__line, - STATE(3355), 1, + STATE(3495), 1, sym__inlines, - ACTIONS(2571), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80931,7 +80847,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80955,70 +80871,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [5632] = 32, - ACTIONS(3973), 1, + [4957] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(3976), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(3979), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(3982), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3985), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(3988), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, - sym__whitespace, - ACTIONS(3997), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(4000), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(4003), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(4006), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(4009), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(4015), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(4018), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(4021), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(4024), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4027), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4030), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(4033), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(4036), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(4039), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(4042), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(4045), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(4048), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(4051), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4054), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(4057), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(3685), 2, - sym__soft_line_ending, - aux_sym_inline_note_token1, - ACTIONS(3991), 2, + ACTIONS(2933), 1, + aux_sym_target_token1, + ACTIONS(4028), 1, + aux_sym_pandoc_span_token1, + STATE(2146), 1, + sym_target, + STATE(2939), 1, + sym__line, + STATE(3515), 1, + sym__inlines, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3970), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81026,7 +80947,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(663), 24, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81050,71 +80971,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [5760] = 32, - ACTIONS(4063), 1, + [5092] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(4066), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(4069), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(4072), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(4078), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(4084), 1, - sym__whitespace, - ACTIONS(4087), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(4090), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(4093), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(4096), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(4099), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(4102), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(4105), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(4108), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(4111), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(4114), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4117), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4120), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(4123), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(4126), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(4129), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(4132), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(4135), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(4138), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(4141), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4144), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(4147), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(3685), 2, - sym__soft_line_ending, - sym__strikeout_close, - ACTIONS(4081), 2, + ACTIONS(2933), 1, + aux_sym_target_token1, + ACTIONS(4030), 1, + aux_sym_pandoc_span_token1, + STATE(2148), 1, + sym_target, + STATE(2939), 1, + sym__line, + STATE(3516), 1, + sym__inlines, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4060), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81122,7 +81047,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 24, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81146,71 +81071,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [5888] = 32, - ACTIONS(4152), 1, + [5227] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(4166), 1, - sym__whitespace, - ACTIONS(4168), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(3790), 2, - sym__soft_line_ending, - sym__subscript_close, - ACTIONS(4164), 2, + ACTIONS(2943), 1, + aux_sym_target_token1, + ACTIONS(4032), 1, + aux_sym_pandoc_span_token1, + STATE(967), 1, + sym_target, + STATE(2939), 1, + sym__line, + STATE(3279), 1, + sym__inlines, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4150), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81218,7 +81147,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 24, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81242,71 +81171,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [6016] = 32, - ACTIONS(4213), 1, + [5362] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(4216), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(4219), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(4222), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4225), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(4234), 1, - sym__whitespace, - ACTIONS(4237), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(4243), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(4246), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(4249), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(4252), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(4255), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(4258), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(4261), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(4264), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4267), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4270), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(4273), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(4276), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(4279), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(4282), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(4285), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(4288), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(4291), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4294), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(4297), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(3685), 2, - sym__soft_line_ending, - sym__subscript_close, - ACTIONS(4231), 2, + ACTIONS(2943), 1, + aux_sym_target_token1, + ACTIONS(4034), 1, + aux_sym_pandoc_span_token1, + STATE(978), 1, + sym_target, + STATE(2939), 1, + sym__line, + STATE(3280), 1, + sym__inlines, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4210), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81314,7 +81247,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(666), 24, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81338,71 +81271,75 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [6144] = 32, - ACTIONS(4302), 1, + [5497] = 35, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(4316), 1, - sym__whitespace, - ACTIONS(4318), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(3782), 2, - sym__soft_line_ending, - sym__superscript_close, - ACTIONS(4314), 2, + ACTIONS(2857), 1, + aux_sym_target_token1, + ACTIONS(4036), 1, + aux_sym_pandoc_span_token1, + STATE(1274), 1, + sym_target, + STATE(2939), 1, + sym__line, + STATE(3371), 1, + sym__inlines, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4300), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81410,7 +81347,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(672), 24, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81434,71 +81371,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [6272] = 32, - ACTIONS(4363), 1, + [5632] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4369), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4372), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4375), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4378), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4384), 1, + ACTIONS(4054), 1, sym__whitespace, - ACTIONS(4387), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4390), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4393), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4396), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(4399), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(4402), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(4405), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(4408), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(4411), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(4414), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4417), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4420), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(4423), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(4426), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(4429), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(4435), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(4438), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(4441), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4444), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(4447), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - ACTIONS(3685), 2, + ACTIONS(3712), 2, sym__soft_line_ending, - sym__emphasis_close_star, - ACTIONS(4381), 2, + sym__superscript_close, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4360), 7, + ACTIONS(4038), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81506,7 +81442,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 24, + STATE(694), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81531,70 +81467,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [6400] = 32, - ACTIONS(4452), 1, + [5760] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4466), 1, + ACTIONS(4114), 1, sym__whitespace, - ACTIONS(4468), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - ACTIONS(3782), 2, + ACTIONS(3712), 2, sym__soft_line_ending, sym__emphasis_close_underscore, - ACTIONS(4464), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4450), 7, + ACTIONS(4098), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81602,7 +81538,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(670), 24, + STATE(668), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81627,70 +81563,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [6528] = 32, - ACTIONS(4452), 1, + [5888] = 32, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4164), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(4167), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(4170), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(4173), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(4176), 1, aux_sym_pandoc_str_token1, - ACTIONS(4466), 1, + ACTIONS(4182), 1, sym__whitespace, - ACTIONS(4468), 1, + ACTIONS(4185), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(4188), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(4191), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(4194), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(4197), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(4200), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(4203), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(4206), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(4209), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(4212), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(4215), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(4221), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(4224), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(4227), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(4230), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(4233), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(4236), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(4239), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(4242), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(4245), 1, sym__emphasis_open_underscore, - ACTIONS(3790), 2, + ACTIONS(3727), 2, sym__soft_line_ending, sym__emphasis_close_underscore, - ACTIONS(4464), 2, + ACTIONS(4179), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4510), 7, + ACTIONS(4158), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81698,7 +81634,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(671), 24, + STATE(668), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81723,70 +81659,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [6656] = 32, - ACTIONS(4515), 1, + [6016] = 32, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(4521), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(4524), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4527), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(4530), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(4536), 1, + ACTIONS(4264), 1, sym__whitespace, - ACTIONS(4539), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(4542), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(4545), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(4548), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(4551), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(4554), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(4557), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(4560), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(4563), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(4566), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4569), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4572), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(4575), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(4578), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(4581), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(4584), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(4587), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(4590), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(4593), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4596), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(4599), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(3685), 2, + ACTIONS(3712), 2, sym__soft_line_ending, - sym__emphasis_close_underscore, - ACTIONS(4533), 2, + sym__single_quote_span_close, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4512), 7, + ACTIONS(4248), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81794,7 +81730,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(671), 24, + STATE(687), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81819,70 +81755,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [6784] = 32, - ACTIONS(4302), 1, + [6144] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4316), 1, + ACTIONS(4324), 1, sym__whitespace, - ACTIONS(4318), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - ACTIONS(3790), 2, + ACTIONS(3712), 2, sym__soft_line_ending, - sym__superscript_close, - ACTIONS(4314), 2, + sym__strong_emphasis_close_underscore, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4602), 7, + ACTIONS(4308), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81890,7 +81826,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(675), 24, + STATE(671), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81915,70 +81851,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [6912] = 32, - ACTIONS(4606), 1, + [6272] = 32, + ACTIONS(4371), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4374), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(4377), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(4380), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(4383), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(4386), 1, aux_sym_pandoc_str_token1, - ACTIONS(4620), 1, + ACTIONS(4392), 1, sym__whitespace, - ACTIONS(4622), 1, + ACTIONS(4395), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(4398), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(4401), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(4404), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(4407), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(4410), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(4413), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(4416), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(4419), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(4422), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(4425), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(4431), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(4434), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(4437), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(4440), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(4443), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(4446), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(4449), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(4452), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(4455), 1, sym__emphasis_open_underscore, - ACTIONS(3782), 2, + ACTIONS(3727), 2, sym__soft_line_ending, - sym__strikeout_close, - ACTIONS(4618), 2, + sym__strong_emphasis_close_underscore, + ACTIONS(4389), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4604), 7, + ACTIONS(4368), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81986,7 +81922,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(680), 24, + STATE(671), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82011,70 +81947,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [7040] = 32, - ACTIONS(4667), 1, + [6400] = 32, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(4670), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(4673), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(4676), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4679), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(4682), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(4688), 1, - sym__whitespace, - ACTIONS(4691), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(4694), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(4697), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(4700), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(4703), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(4706), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(4709), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(4712), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(4715), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(4718), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4721), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4724), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(4727), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(4730), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(4733), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(4736), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(4739), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(4742), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(4745), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4748), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(4751), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(3685), 2, - sym__soft_line_ending, - aux_sym_insert_token1, - ACTIONS(4685), 2, + ACTIONS(4460), 1, + sym__whitespace, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4664), 7, + ACTIONS(3712), 2, + sym__soft_line_ending, + aux_sym_insert_token1, + ACTIONS(4458), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82082,7 +82018,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 24, + STATE(676), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82107,70 +82043,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [7168] = 32, - ACTIONS(4757), 1, + [6528] = 32, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(4760), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(4763), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(4766), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4769), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(4772), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(4778), 1, - sym__whitespace, - ACTIONS(4781), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(4784), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(4787), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(4790), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(4793), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(4799), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(4802), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(4805), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(4808), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4811), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4814), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(4817), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(4820), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(4823), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(4826), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(4829), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(4832), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(4835), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4838), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(4841), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(3685), 2, - sym__soft_line_ending, - sym__superscript_close, - ACTIONS(4775), 2, + ACTIONS(4460), 1, + sym__whitespace, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4754), 7, + ACTIONS(3930), 2, + sym__soft_line_ending, + aux_sym_insert_token1, + ACTIONS(4462), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82178,7 +82114,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(675), 24, + STATE(672), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82203,70 +82139,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [7296] = 32, - ACTIONS(3437), 1, + [6656] = 32, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4480), 1, + sym__whitespace, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(4846), 1, - sym__whitespace, - ACTIONS(3449), 2, + ACTIONS(3930), 2, + sym__soft_line_ending, + sym__double_quote_span_close, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3782), 2, - sym__soft_line_ending, - aux_sym_inline_note_token1, - ACTIONS(4844), 7, + ACTIONS(4464), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82299,70 +82235,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [7424] = 32, - ACTIONS(3437), 1, + [6784] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4540), 1, + sym__whitespace, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - ACTIONS(4846), 1, - sym__whitespace, - ACTIONS(3449), 2, + ACTIONS(3930), 2, + sym__soft_line_ending, + sym__emphasis_close_star, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3790), 2, - sym__soft_line_ending, - aux_sym_inline_note_token1, - ACTIONS(4848), 7, + ACTIONS(4524), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82370,7 +82306,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(663), 24, + STATE(681), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82395,70 +82331,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [7552] = 32, - ACTIONS(4852), 1, + [6912] = 32, + ACTIONS(4587), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4590), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4596), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4599), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4602), 1, aux_sym_pandoc_str_token1, - ACTIONS(4866), 1, + ACTIONS(4608), 1, sym__whitespace, - ACTIONS(4868), 1, + ACTIONS(4611), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4614), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4620), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4623), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4626), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4629), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4632), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4635), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4638), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4641), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4644), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4647), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4650), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4653), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4656), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4659), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4662), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4665), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4668), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4671), 1, sym__emphasis_open_underscore, - ACTIONS(3782), 2, + ACTIONS(3727), 2, sym__soft_line_ending, - sym__emphasis_close_star, - ACTIONS(4864), 2, + aux_sym_insert_token1, + ACTIONS(4605), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4850), 7, + ACTIONS(4584), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82466,7 +82402,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(679), 24, + STATE(676), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82491,70 +82427,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [7680] = 32, - ACTIONS(4852), 1, + [7040] = 32, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(4866), 1, + ACTIONS(4480), 1, sym__whitespace, - ACTIONS(4868), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(3790), 2, + ACTIONS(3712), 2, sym__soft_line_ending, - sym__emphasis_close_star, - ACTIONS(4864), 2, + sym__double_quote_span_close, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4910), 7, + ACTIONS(4674), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82562,7 +82498,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(668), 24, + STATE(679), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82587,70 +82523,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [7808] = 32, - ACTIONS(4606), 1, + [7168] = 32, + ACTIONS(4679), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4682), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(4685), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(4688), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(4691), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(4694), 1, aux_sym_pandoc_str_token1, - ACTIONS(4620), 1, + ACTIONS(4700), 1, sym__whitespace, - ACTIONS(4622), 1, + ACTIONS(4703), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(4709), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(4712), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(4715), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(4718), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(4721), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(4724), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(4727), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(4730), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(4733), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(4739), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(4742), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(4745), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(4748), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(4751), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(4754), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(4757), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(4760), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(4763), 1, sym__emphasis_open_underscore, - ACTIONS(3790), 2, - sym__soft_line_ending, - sym__strikeout_close, - ACTIONS(4618), 2, + ACTIONS(3613), 2, + sym__line_ending, + sym__pipe_table_delimiter, + ACTIONS(4697), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4912), 7, + ACTIONS(4676), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82658,7 +82594,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(664), 24, + STATE(678), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82682,71 +82618,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [7936] = 32, - ACTIONS(4916), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [7296] = 32, + ACTIONS(4769), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4772), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4775), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4778), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4781), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4784), 1, aux_sym_pandoc_str_token1, - ACTIONS(4930), 1, + ACTIONS(4790), 1, sym__whitespace, - ACTIONS(4932), 1, + ACTIONS(4793), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4796), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4799), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4802), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4805), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4808), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4811), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4814), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4817), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4820), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4823), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4826), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4829), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4832), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4835), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4838), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4841), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4844), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4847), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4850), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4853), 1, sym__emphasis_open_underscore, - ACTIONS(3782), 2, + ACTIONS(3727), 2, sym__soft_line_ending, - sym__strong_emphasis_close_star, - ACTIONS(4928), 2, + sym__double_quote_span_close, + ACTIONS(4787), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4914), 7, + ACTIONS(4766), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82754,7 +82690,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(683), 24, + STATE(679), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82779,70 +82715,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [8064] = 32, - ACTIONS(4976), 1, + [7424] = 32, + ACTIONS(3345), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(3347), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(3349), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(3351), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(3353), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(3355), 1, aux_sym_pandoc_str_token1, - ACTIONS(4990), 1, - sym__whitespace, - ACTIONS(4992), 1, + ACTIONS(3361), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(3363), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(3365), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(3367), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(3369), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(3371), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(3373), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(3375), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(3377), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(3379), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(3381), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(3383), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(3385), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(3387), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(3389), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(3391), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(3393), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(3395), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(3397), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(3399), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(3401), 1, sym__emphasis_open_underscore, - ACTIONS(3782), 2, - sym__soft_line_ending, - sym__single_quote_span_close, - ACTIONS(4988), 2, + ACTIONS(3563), 1, + sym__whitespace, + ACTIONS(3357), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(4974), 7, + ACTIONS(3584), 2, + sym__line_ending, + sym__pipe_table_delimiter, + ACTIONS(4856), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82850,7 +82786,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(689), 24, + STATE(678), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82874,71 +82810,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_repeat1, - [8192] = 32, - ACTIONS(4916), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [7552] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(4930), 1, + ACTIONS(4540), 1, sym__whitespace, - ACTIONS(4932), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - ACTIONS(3790), 2, + ACTIONS(3712), 2, sym__soft_line_ending, - sym__strong_emphasis_close_star, - ACTIONS(4928), 2, + sym__emphasis_close_star, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5034), 7, + ACTIONS(4858), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82946,7 +82882,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 24, + STATE(700), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82971,70 +82907,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [8320] = 32, - ACTIONS(5039), 1, + [7680] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(5042), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(5045), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(5048), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5051), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(5054), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(5060), 1, + ACTIONS(4324), 1, sym__whitespace, - ACTIONS(5063), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(5066), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(5069), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(5072), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(5075), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(5078), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(5081), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(5084), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(5087), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(5090), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5093), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5096), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(5099), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(5102), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(5105), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(5108), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(5111), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(5114), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(5117), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5120), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(5123), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - ACTIONS(3685), 2, + ACTIONS(3930), 2, sym__soft_line_ending, - sym__strong_emphasis_close_star, - ACTIONS(5057), 2, + sym__strong_emphasis_close_underscore, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5036), 7, + ACTIONS(4860), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83042,7 +82978,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(684), 24, + STATE(670), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83067,70 +83003,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [8448] = 32, - ACTIONS(5128), 1, + [7808] = 32, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(5142), 1, + ACTIONS(4264), 1, sym__whitespace, - ACTIONS(5144), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(3782), 2, + ACTIONS(3930), 2, sym__soft_line_ending, - sym__strong_emphasis_close_underscore, - ACTIONS(5140), 2, + sym__single_quote_span_close, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5126), 7, + ACTIONS(4862), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83138,7 +83074,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(686), 24, + STATE(669), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83163,70 +83099,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [8576] = 32, - ACTIONS(5128), 1, + [7936] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(5142), 1, + ACTIONS(4880), 1, sym__whitespace, - ACTIONS(5144), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - ACTIONS(3790), 2, + ACTIONS(3930), 2, sym__soft_line_ending, - sym__strong_emphasis_close_underscore, - ACTIONS(5140), 2, + sym__strikeout_close, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5186), 7, + ACTIONS(4864), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83234,7 +83170,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(690), 24, + STATE(685), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83259,70 +83195,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [8704] = 32, - ACTIONS(5191), 1, + [8064] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(5194), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(5197), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(5200), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5203), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(5206), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(5212), 1, + ACTIONS(4880), 1, sym__whitespace, - ACTIONS(5215), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(5218), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(5221), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(5224), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(5227), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(5230), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(5233), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(5236), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(5239), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(5242), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5245), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5248), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(5251), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(5254), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(5257), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(5260), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(5263), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(5266), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(5269), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5272), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(5275), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - ACTIONS(3685), 2, + ACTIONS(3712), 2, sym__soft_line_ending, - sym__single_quote_span_close, - ACTIONS(5209), 2, + sym__strikeout_close, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5188), 7, + ACTIONS(4924), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83330,7 +83266,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(687), 24, + STATE(688), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83355,70 +83291,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [8832] = 32, - ACTIONS(3025), 1, + [8192] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4114), 1, + sym__whitespace, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - ACTIONS(5280), 1, - sym__whitespace, - ACTIONS(3039), 2, + ACTIONS(3930), 2, + sym__soft_line_ending, + sym__emphasis_close_underscore, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3782), 2, - sym__soft_line_ending, - aux_sym_insert_token1, - ACTIONS(5278), 7, + ACTIONS(4926), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83426,7 +83362,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(697), 24, + STATE(667), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83451,70 +83387,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [8960] = 32, - ACTIONS(4976), 1, + [8320] = 32, + ACTIONS(4931), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(4934), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(4937), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(4940), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(4943), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(4946), 1, aux_sym_pandoc_str_token1, - ACTIONS(4990), 1, + ACTIONS(4952), 1, sym__whitespace, - ACTIONS(4992), 1, + ACTIONS(4955), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(4958), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(4961), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(4964), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(4967), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(4970), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(4973), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(4976), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(4979), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(4982), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(4985), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(4988), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(4991), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(4994), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(4997), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(5000), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(5003), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(5006), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(5009), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(5012), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(5015), 1, sym__emphasis_open_underscore, - ACTIONS(3790), 2, + ACTIONS(3727), 2, sym__soft_line_ending, sym__single_quote_span_close, - ACTIONS(4988), 2, + ACTIONS(4949), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5282), 7, + ACTIONS(4928), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83547,70 +83483,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [9088] = 32, - ACTIONS(5287), 1, + [8448] = 32, + ACTIONS(5021), 1, anon_sym_LBRACK, - ACTIONS(5290), 1, + ACTIONS(5024), 1, anon_sym_BANG_LBRACK, - ACTIONS(5293), 1, + ACTIONS(5027), 1, anon_sym_DOLLAR, - ACTIONS(5296), 1, + ACTIONS(5030), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5299), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - ACTIONS(5302), 1, + ACTIONS(5036), 1, aux_sym_pandoc_str_token1, - ACTIONS(5308), 1, + ACTIONS(5042), 1, sym__whitespace, - ACTIONS(5311), 1, + ACTIONS(5045), 1, sym__code_span_start, - ACTIONS(5314), 1, + ACTIONS(5048), 1, sym__highlight_span_start, - ACTIONS(5317), 1, + ACTIONS(5051), 1, sym__insert_span_start, - ACTIONS(5320), 1, + ACTIONS(5054), 1, sym__delete_span_start, - ACTIONS(5323), 1, + ACTIONS(5057), 1, sym__edit_comment_span_start, - ACTIONS(5326), 1, + ACTIONS(5060), 1, sym__single_quote_span_open, - ACTIONS(5329), 1, + ACTIONS(5063), 1, sym__double_quote_span_open, - ACTIONS(5332), 1, + ACTIONS(5066), 1, sym__shortcode_open_escaped, - ACTIONS(5335), 1, + ACTIONS(5069), 1, sym__shortcode_open, - ACTIONS(5338), 1, + ACTIONS(5072), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5341), 1, + ACTIONS(5075), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5344), 1, + ACTIONS(5078), 1, sym__cite_author_in_text, - ACTIONS(5347), 1, + ACTIONS(5081), 1, sym__cite_suppress_author, - ACTIONS(5350), 1, + ACTIONS(5084), 1, sym__strikeout_open, - ACTIONS(5353), 1, + ACTIONS(5087), 1, sym__subscript_open, - ACTIONS(5356), 1, + ACTIONS(5090), 1, sym__superscript_open, - ACTIONS(5359), 1, + ACTIONS(5093), 1, sym__inline_note_start_token, - ACTIONS(5362), 1, + ACTIONS(5096), 1, sym__strong_emphasis_open_star, - ACTIONS(5365), 1, + ACTIONS(5099), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5368), 1, + ACTIONS(5102), 1, sym__emphasis_open_star, - ACTIONS(5371), 1, + ACTIONS(5105), 1, sym__emphasis_open_underscore, - ACTIONS(3685), 2, + ACTIONS(3727), 2, sym__soft_line_ending, - sym__strong_emphasis_close_underscore, - ACTIONS(5305), 2, + sym__strikeout_close, + ACTIONS(5039), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5284), 7, + ACTIONS(5018), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83618,7 +83554,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(690), 24, + STATE(688), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83643,70 +83579,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [9216] = 32, - ACTIONS(4152), 1, + [8576] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4166), 1, + ACTIONS(5124), 1, sym__whitespace, - ACTIONS(4168), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - ACTIONS(3782), 2, + ACTIONS(3930), 2, sym__soft_line_ending, sym__subscript_close, - ACTIONS(4164), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5374), 7, + ACTIONS(5108), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83714,7 +83650,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 24, + STATE(690), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83739,70 +83675,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [9344] = 32, - ACTIONS(5379), 1, + [8704] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(5382), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(5385), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(5388), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5391), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(5394), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(5400), 1, + ACTIONS(5124), 1, sym__whitespace, - ACTIONS(5403), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(5406), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(5409), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(5412), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(5415), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(5418), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(5421), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(5424), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(5427), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(5430), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5433), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5436), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(5439), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(5442), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(5445), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(5448), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(5451), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(5454), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(5457), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(5463), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - ACTIONS(3685), 2, + ACTIONS(3712), 2, sym__soft_line_ending, - sym__double_quote_span_close, - ACTIONS(5397), 2, + sym__subscript_close, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5376), 7, + ACTIONS(5168), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83810,7 +83746,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(692), 24, + STATE(691), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83835,70 +83771,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [9472] = 32, - ACTIONS(5469), 1, + [8832] = 32, + ACTIONS(5173), 1, anon_sym_LBRACK, - ACTIONS(5472), 1, + ACTIONS(5176), 1, anon_sym_BANG_LBRACK, - ACTIONS(5475), 1, + ACTIONS(5179), 1, anon_sym_DOLLAR, - ACTIONS(5478), 1, + ACTIONS(5182), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5481), 1, + ACTIONS(5185), 1, anon_sym_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5188), 1, aux_sym_pandoc_str_token1, - ACTIONS(5490), 1, + ACTIONS(5194), 1, sym__whitespace, - ACTIONS(5493), 1, + ACTIONS(5197), 1, sym__code_span_start, - ACTIONS(5496), 1, + ACTIONS(5200), 1, sym__highlight_span_start, - ACTIONS(5499), 1, + ACTIONS(5203), 1, sym__insert_span_start, - ACTIONS(5502), 1, + ACTIONS(5206), 1, sym__delete_span_start, - ACTIONS(5505), 1, + ACTIONS(5209), 1, sym__edit_comment_span_start, - ACTIONS(5508), 1, + ACTIONS(5212), 1, sym__single_quote_span_open, - ACTIONS(5511), 1, + ACTIONS(5215), 1, sym__double_quote_span_open, - ACTIONS(5514), 1, + ACTIONS(5218), 1, sym__shortcode_open_escaped, - ACTIONS(5517), 1, + ACTIONS(5221), 1, sym__shortcode_open, - ACTIONS(5520), 1, + ACTIONS(5224), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5523), 1, + ACTIONS(5227), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5526), 1, + ACTIONS(5230), 1, sym__cite_author_in_text, - ACTIONS(5529), 1, + ACTIONS(5233), 1, sym__cite_suppress_author, - ACTIONS(5532), 1, + ACTIONS(5236), 1, sym__strikeout_open, - ACTIONS(5535), 1, + ACTIONS(5239), 1, sym__subscript_open, - ACTIONS(5538), 1, + ACTIONS(5242), 1, sym__superscript_open, - ACTIONS(5541), 1, + ACTIONS(5245), 1, sym__inline_note_start_token, - ACTIONS(5544), 1, + ACTIONS(5248), 1, sym__strong_emphasis_open_star, - ACTIONS(5547), 1, + ACTIONS(5251), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5550), 1, + ACTIONS(5254), 1, sym__emphasis_open_star, - ACTIONS(5553), 1, + ACTIONS(5257), 1, sym__emphasis_open_underscore, - ACTIONS(3571), 2, - sym__line_ending, - sym__pipe_table_delimiter, - ACTIONS(5487), 2, + ACTIONS(3727), 2, + sym__soft_line_ending, + sym__subscript_close, + ACTIONS(5191), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5466), 7, + ACTIONS(5170), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83906,7 +83842,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(693), 24, + STATE(691), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83930,71 +83866,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, - [9600] = 32, - ACTIONS(3249), 1, + aux_sym__line_repeat1, + [8960] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(3251), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(3253), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(3255), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3257), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(3259), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(3265), 1, + ACTIONS(4054), 1, + sym__whitespace, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(3267), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(3269), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(3271), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(3273), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(3275), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(3277), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(3279), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(3281), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(3283), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3285), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3287), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(3289), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(3291), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(3293), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(3295), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(3297), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(3299), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(3301), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3303), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(3305), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - ACTIONS(3497), 1, - sym__whitespace, - ACTIONS(3261), 2, + ACTIONS(3930), 2, + sym__soft_line_ending, + sym__superscript_close, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3503), 2, - sym__line_ending, - sym__pipe_table_delimiter, - ACTIONS(5556), 7, + ACTIONS(5260), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84002,7 +83938,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(693), 24, + STATE(666), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84026,71 +83962,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, - [9728] = 32, - ACTIONS(5560), 1, + aux_sym__line_repeat1, + [9088] = 32, + ACTIONS(5265), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(5268), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(5271), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(5274), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(5277), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(5280), 1, aux_sym_pandoc_str_token1, - ACTIONS(5574), 1, + ACTIONS(5286), 1, sym__whitespace, - ACTIONS(5576), 1, + ACTIONS(5289), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(5292), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(5295), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(5298), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(5301), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(5304), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(5307), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(5310), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(5313), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(5316), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(5319), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(5322), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(5325), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(5328), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(5331), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(5334), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(5337), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(5340), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(5343), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(5346), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(5349), 1, sym__emphasis_open_underscore, - ACTIONS(3782), 2, + ACTIONS(3727), 2, sym__soft_line_ending, - sym__double_quote_span_close, - ACTIONS(5572), 2, + sym__strong_emphasis_close_star, + ACTIONS(5283), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5558), 7, + ACTIONS(5262), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84098,7 +84034,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(696), 24, + STATE(693), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84123,70 +84059,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [9856] = 32, - ACTIONS(5560), 1, + [9216] = 32, + ACTIONS(5355), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(5358), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(5361), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(5367), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(5370), 1, aux_sym_pandoc_str_token1, - ACTIONS(5574), 1, + ACTIONS(5376), 1, sym__whitespace, - ACTIONS(5576), 1, + ACTIONS(5379), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(5382), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(5385), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(5388), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(5391), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(5394), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(5397), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(5400), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(5403), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(5406), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(5409), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(5412), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(5415), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(5418), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(5421), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(5424), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(5427), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(5430), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(5433), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(5436), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(5439), 1, sym__emphasis_open_underscore, - ACTIONS(3790), 2, + ACTIONS(3727), 2, sym__soft_line_ending, - sym__double_quote_span_close, - ACTIONS(5572), 2, + sym__superscript_close, + ACTIONS(5373), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5618), 7, + ACTIONS(5352), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84194,7 +84130,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(692), 24, + STATE(694), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84219,70 +84155,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [9984] = 32, - ACTIONS(3025), 1, + [9344] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - ACTIONS(5280), 1, + ACTIONS(5444), 1, sym__whitespace, - ACTIONS(3039), 2, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3790), 2, + ACTIONS(3930), 2, sym__soft_line_ending, - aux_sym_insert_token1, - ACTIONS(5620), 7, + aux_sym_inline_note_token1, + ACTIONS(5442), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84290,7 +84226,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(674), 24, + STATE(696), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84315,71 +84251,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, aux_sym__line_repeat1, - [10112] = 33, - ACTIONS(4976), 1, + [9472] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - ACTIONS(5624), 1, - sym__single_quote_span_close, - STATE(3123), 1, - sym__line, - STATE(4297), 1, - sym__inlines, - ACTIONS(4988), 2, + ACTIONS(5444), 1, + sym__whitespace, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(3712), 2, + sym__soft_line_ending, + aux_sym_inline_note_token1, + ACTIONS(5446), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84387,7 +84322,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(697), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84411,71 +84346,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [10241] = 33, - ACTIONS(4976), 1, + aux_sym__line_repeat1, + [9600] = 32, + ACTIONS(5451), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(5454), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(5460), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(5463), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(5466), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(5472), 1, + sym__whitespace, + ACTIONS(5475), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(5478), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(5481), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(5484), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(5487), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(5490), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(5493), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(5496), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(5499), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(5502), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(5505), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(5508), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(5511), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(5514), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(5517), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(5520), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(5523), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(5526), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(5529), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(5532), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(5535), 1, sym__emphasis_open_underscore, - ACTIONS(5626), 1, - sym__single_quote_span_close, - STATE(3123), 1, - sym__line, - STATE(3945), 1, - sym__inlines, - ACTIONS(4988), 2, + ACTIONS(3727), 2, + sym__soft_line_ending, + aux_sym_inline_note_token1, + ACTIONS(5469), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(5448), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84483,7 +84418,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(697), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84507,71 +84442,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [10370] = 33, - ACTIONS(5560), 1, + aux_sym__line_repeat1, + [9728] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(5554), 1, + sym__whitespace, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - ACTIONS(5630), 1, - sym__double_quote_span_close, - STATE(3138), 1, - sym__line, - STATE(3946), 1, - sym__inlines, - ACTIONS(5572), 2, + ACTIONS(3930), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_star, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(5538), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84579,7 +84514,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(699), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84603,71 +84538,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [10499] = 33, - ACTIONS(5560), 1, + aux_sym__line_repeat1, + [9856] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(5554), 1, + sym__whitespace, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - ACTIONS(5632), 1, - sym__double_quote_span_close, - STATE(3138), 1, - sym__line, - STATE(4101), 1, - sym__inlines, - ACTIONS(5572), 2, + ACTIONS(3712), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_star, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(5598), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84675,7 +84610,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(693), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84699,71 +84634,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [10628] = 33, - ACTIONS(4976), 1, + aux_sym__line_repeat1, + [9984] = 32, + ACTIONS(5603), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(5606), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(5609), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(5612), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(5615), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(5618), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(5624), 1, + sym__whitespace, + ACTIONS(5627), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(5630), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(5633), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(5636), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(5639), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(5642), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(5645), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(5648), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(5651), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(5654), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(5657), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(5660), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(5663), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(5666), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(5669), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(5672), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(5675), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(5678), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(5681), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(5684), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(5687), 1, sym__emphasis_open_underscore, - ACTIONS(5634), 1, - sym__single_quote_span_close, - STATE(3123), 1, - sym__line, - STATE(3798), 1, - sym__inlines, - ACTIONS(4988), 2, + ACTIONS(3727), 2, + sym__soft_line_ending, + sym__emphasis_close_star, + ACTIONS(5621), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(5600), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84771,7 +84706,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(700), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84795,71 +84730,72 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [10757] = 33, - ACTIONS(3025), 1, + aux_sym__line_repeat1, + [10112] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5636), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5692), 1, + sym__double_quote_span_close, + STATE(3210), 1, sym__line, - STATE(4048), 1, + STATE(3811), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84867,7 +84803,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84891,71 +84827,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [10886] = 33, - ACTIONS(3025), 1, + [10241] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5638), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5696), 1, + sym__single_quote_span_close, + STATE(3176), 1, sym__line, - STATE(4049), 1, + STATE(4121), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84963,7 +84899,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84987,71 +84923,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [11015] = 33, - ACTIONS(3025), 1, + [10370] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5640), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5698), 1, + sym__double_quote_span_close, + STATE(3210), 1, sym__line, - STATE(4054), 1, + STATE(4145), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85059,7 +84995,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85083,71 +85019,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [11144] = 33, - ACTIONS(3025), 1, + [10499] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5642), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5700), 1, + sym__double_quote_span_close, + STATE(3210), 1, sym__line, - STATE(4061), 1, + STATE(4018), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85155,7 +85091,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85179,71 +85115,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [11273] = 33, - ACTIONS(3025), 1, + [10628] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5644), 1, + ACTIONS(5702), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4176), 1, + STATE(4180), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85251,7 +85187,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85275,71 +85211,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [11402] = 33, - ACTIONS(3025), 1, + [10757] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5646), 1, + ACTIONS(5704), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4177), 1, + STATE(4192), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85347,7 +85283,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85371,71 +85307,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [11531] = 33, - ACTIONS(3025), 1, + [10886] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5648), 1, + ACTIONS(5706), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4178), 1, + STATE(4193), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85443,7 +85379,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85467,71 +85403,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [11660] = 33, - ACTIONS(3025), 1, + [11015] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5650), 1, + ACTIONS(5708), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4179), 1, + STATE(4197), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85539,7 +85475,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85563,71 +85499,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [11789] = 33, - ACTIONS(3025), 1, + [11144] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5652), 1, + ACTIONS(5710), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, STATE(4044), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85635,7 +85571,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85659,71 +85595,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [11918] = 33, - ACTIONS(3025), 1, + [11273] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5654), 1, + ACTIONS(5712), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4079), 1, + STATE(3722), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85731,7 +85667,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85755,71 +85691,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [12047] = 33, - ACTIONS(3025), 1, + [11402] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5656), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5714), 1, + sym__single_quote_span_close, + STATE(3176), 1, sym__line, - STATE(3679), 1, + STATE(3765), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85827,7 +85763,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85851,71 +85787,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [12176] = 33, - ACTIONS(5560), 1, + [11531] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5658), 1, + ACTIONS(5716), 1, sym__double_quote_span_close, - STATE(3138), 1, + STATE(3210), 1, sym__line, - STATE(4307), 1, + STATE(3781), 1, sym__inlines, - ACTIONS(5572), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85923,7 +85859,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85947,71 +85883,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [12305] = 33, - ACTIONS(3025), 1, + [11660] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5660), 1, + ACTIONS(5718), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4080), 1, + STATE(3937), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86019,7 +85955,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86043,71 +85979,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [12434] = 33, - ACTIONS(3025), 1, + [11789] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5662), 1, + ACTIONS(5720), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4084), 1, + STATE(4019), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86115,7 +86051,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86139,71 +86075,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [12563] = 33, - ACTIONS(3025), 1, + [11918] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5664), 1, + ACTIONS(5722), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3674), 1, + STATE(4021), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86211,7 +86147,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86235,71 +86171,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [12692] = 33, - ACTIONS(3025), 1, + [12047] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5666), 1, + ACTIONS(5724), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3675), 1, + STATE(4028), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86307,7 +86243,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86331,71 +86267,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [12821] = 33, - ACTIONS(3025), 1, + [12176] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, + ACTIONS(5726), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3676), 1, + STATE(4029), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86403,7 +86339,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86427,71 +86363,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [12950] = 33, - ACTIONS(3025), 1, + [12305] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5670), 1, + ACTIONS(5728), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3677), 1, + STATE(3989), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86499,7 +86435,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86523,71 +86459,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [13079] = 33, - ACTIONS(3025), 1, + [12434] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5672), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5730), 1, + sym__single_quote_span_close, + STATE(3176), 1, sym__line, - STATE(4142), 1, + STATE(4379), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86595,7 +86531,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86619,71 +86555,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [13208] = 33, - ACTIONS(3025), 1, + [12563] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5674), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5732), 1, + sym__double_quote_span_close, + STATE(3210), 1, sym__line, - STATE(4143), 1, + STATE(4388), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86691,7 +86627,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86715,71 +86651,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [13337] = 33, - ACTIONS(3025), 1, + [12692] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5676), 1, + ACTIONS(5734), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4144), 1, + STATE(3734), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86787,7 +86723,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86811,71 +86747,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [13466] = 33, - ACTIONS(5560), 1, + [12821] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5678), 1, - sym__double_quote_span_close, - STATE(3138), 1, + ACTIONS(5736), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(3806), 1, + STATE(3789), 1, sym__inlines, - ACTIONS(5572), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86883,7 +86819,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86907,71 +86843,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [13595] = 33, - ACTIONS(4976), 1, + [12950] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5680), 1, - sym__single_quote_span_close, - STATE(3123), 1, + ACTIONS(5738), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(3992), 1, + STATE(3798), 1, sym__inlines, - ACTIONS(4988), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86979,7 +86915,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87003,71 +86939,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [13724] = 33, - ACTIONS(5560), 1, + [13079] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5682), 1, - sym__double_quote_span_close, - STATE(3138), 1, + ACTIONS(5740), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(3993), 1, + STATE(3864), 1, sym__inlines, - ACTIONS(5572), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87075,7 +87011,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87099,71 +87035,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [13853] = 33, - ACTIONS(4976), 1, + [13208] = 32, + ACTIONS(3584), 1, + sym__pipe_table_delimiter, + ACTIONS(3934), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(3936), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(3938), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(3940), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(3944), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(3948), 1, + sym__whitespace, + ACTIONS(3950), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(3952), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(3954), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(3956), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(3958), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(3960), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(3962), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(3964), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(3966), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(3968), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(3970), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(3972), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(3974), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(3976), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(3978), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(3980), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(3982), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(3984), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(3986), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(3988), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(3990), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, - sym__single_quote_span_close, - STATE(3123), 1, - sym__line, - STATE(3724), 1, - sym__inlines, - ACTIONS(4988), 2, + ACTIONS(3946), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(5742), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87171,7 +87105,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(758), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87195,71 +87129,72 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [13982] = 33, - ACTIONS(5560), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [13335] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5686), 1, - sym__double_quote_span_close, - STATE(3138), 1, + ACTIONS(5744), 1, + sym__single_quote_span_close, + STATE(3176), 1, sym__line, - STATE(3725), 1, + STATE(4321), 1, sym__inlines, - ACTIONS(5572), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87267,7 +87202,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87291,71 +87226,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14111] = 33, - ACTIONS(4976), 1, + [13464] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5688), 1, - sym__single_quote_span_close, - STATE(3123), 1, + ACTIONS(5746), 1, + sym__double_quote_span_close, + STATE(3210), 1, sym__line, - STATE(4280), 1, + STATE(4344), 1, sym__inlines, - ACTIONS(4988), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87363,7 +87298,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87387,71 +87322,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14240] = 33, - ACTIONS(5560), 1, + [13593] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5690), 1, - sym__double_quote_span_close, - STATE(3138), 1, + ACTIONS(5748), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(4281), 1, + STATE(3724), 1, sym__inlines, - ACTIONS(5572), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87459,7 +87394,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87483,71 +87418,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14369] = 33, - ACTIONS(3025), 1, + [13722] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5692), 1, + ACTIONS(5750), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3749), 1, + STATE(3725), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87555,7 +87490,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87579,71 +87514,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14498] = 33, - ACTIONS(3025), 1, + [13851] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5694), 1, + ACTIONS(5752), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3750), 1, + STATE(3726), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87651,7 +87586,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87675,71 +87610,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14627] = 33, - ACTIONS(3025), 1, + [13980] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5696), 1, + ACTIONS(5754), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3751), 1, + STATE(3730), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87747,7 +87682,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87771,71 +87706,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14756] = 33, - ACTIONS(3025), 1, + [14109] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5698), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5756), 1, + sym__single_quote_span_close, + STATE(3176), 1, sym__line, - STATE(3752), 1, + STATE(3899), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87843,7 +87778,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87867,69 +87802,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [14885] = 32, - ACTIONS(3571), 1, - sym__pipe_table_delimiter, - ACTIONS(5703), 1, + [14238] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(5706), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(5709), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(5712), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5715), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(5718), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(5724), 1, - sym__whitespace, - ACTIONS(5727), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(5730), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(5733), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(5736), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(5739), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(5742), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(5745), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(5748), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(5751), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(5754), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5757), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5760), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(5763), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(5766), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(5769), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(5772), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(5775), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(5778), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(5781), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5784), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(5787), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5721), 2, + ACTIONS(5758), 1, + sym__double_quote_span_close, + STATE(3210), 1, + sym__line, + STATE(3900), 1, + sym__inlines, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5700), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87937,7 +87874,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(735), 24, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87961,72 +87898,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, - [15012] = 33, - ACTIONS(3025), 1, + [14367] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5790), 1, + ACTIONS(5760), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4141), 1, + STATE(3967), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88034,7 +87970,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88058,71 +87994,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [15141] = 33, - ACTIONS(3025), 1, + [14496] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5792), 1, + ACTIONS(5762), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4330), 1, + STATE(3969), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88130,7 +88066,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88154,71 +88090,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [15270] = 33, - ACTIONS(3025), 1, + [14625] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5794), 1, + ACTIONS(5764), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4331), 1, + STATE(3972), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88226,7 +88162,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88250,71 +88186,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [15399] = 33, - ACTIONS(3025), 1, + [14754] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5796), 1, + ACTIONS(5766), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4334), 1, + STATE(3973), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88322,7 +88258,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88346,71 +88282,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [15528] = 33, - ACTIONS(3025), 1, + [14883] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5798), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5768), 1, + sym__single_quote_span_close, + STATE(3176), 1, sym__line, - STATE(4335), 1, + STATE(4073), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88418,7 +88354,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88442,71 +88378,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [15657] = 33, - ACTIONS(4976), 1, + [15012] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5800), 1, - sym__single_quote_span_close, - STATE(3123), 1, + ACTIONS(5770), 1, + sym__double_quote_span_close, + STATE(3210), 1, sym__line, - STATE(3799), 1, + STATE(4074), 1, sym__inlines, - ACTIONS(4988), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88514,7 +88450,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88538,71 +88474,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [15786] = 33, - ACTIONS(5560), 1, + [15141] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5802), 1, - sym__double_quote_span_close, - STATE(3138), 1, + ACTIONS(5772), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(3800), 1, + STATE(4133), 1, sym__inlines, - ACTIONS(5572), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88610,7 +88546,103 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(673), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [15270] = 33, + ACTIONS(3087), 1, + anon_sym_LBRACK, + ACTIONS(3089), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3091), 1, + anon_sym_DOLLAR, + ACTIONS(3093), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3097), 1, + anon_sym_LBRACE, + ACTIONS(3099), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3107), 1, + sym__code_span_start, + ACTIONS(3109), 1, + sym__highlight_span_start, + ACTIONS(3111), 1, + sym__insert_span_start, + ACTIONS(3113), 1, + sym__delete_span_start, + ACTIONS(3115), 1, + sym__edit_comment_span_start, + ACTIONS(3117), 1, + sym__single_quote_span_open, + ACTIONS(3119), 1, + sym__double_quote_span_open, + ACTIONS(3121), 1, + sym__shortcode_open_escaped, + ACTIONS(3123), 1, + sym__shortcode_open, + ACTIONS(3125), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3127), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3129), 1, + sym__cite_author_in_text, + ACTIONS(3131), 1, + sym__cite_suppress_author, + ACTIONS(3133), 1, + sym__strikeout_open, + ACTIONS(3135), 1, + sym__subscript_open, + ACTIONS(3137), 1, + sym__superscript_open, + ACTIONS(3139), 1, + sym__inline_note_start_token, + ACTIONS(3141), 1, + sym__strong_emphasis_open_star, + ACTIONS(3143), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3145), 1, + sym__emphasis_open_star, + ACTIONS(3147), 1, + sym__emphasis_open_underscore, + ACTIONS(5774), 1, + aux_sym_insert_token1, + STATE(3207), 1, + sym__line, + STATE(4138), 1, + sym__inlines, + ACTIONS(3101), 2, + sym__pandoc_lt_str, + anon_sym_PIPE, + ACTIONS(3085), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88634,71 +88666,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [15915] = 33, - ACTIONS(3025), 1, + [15399] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5804), 1, + ACTIONS(5776), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3922), 1, + STATE(4141), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88706,7 +88738,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88730,71 +88762,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16044] = 33, - ACTIONS(3025), 1, + [15528] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5806), 1, + ACTIONS(5778), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4156), 1, + STATE(4142), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88802,7 +88834,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88826,71 +88858,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16173] = 33, - ACTIONS(3025), 1, + [15657] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5808), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5780), 1, + sym__single_quote_span_close, + STATE(3176), 1, sym__line, - STATE(3824), 1, + STATE(4263), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88898,7 +88930,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88922,71 +88954,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16302] = 33, - ACTIONS(3025), 1, + [15786] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5810), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5782), 1, + sym__double_quote_span_close, + STATE(3210), 1, sym__line, - STATE(3825), 1, + STATE(4264), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88994,7 +89026,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89018,71 +89050,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16431] = 33, - ACTIONS(3025), 1, + [15915] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5812), 1, + ACTIONS(5784), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3826), 1, + STATE(4323), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89090,7 +89122,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89114,71 +89146,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16560] = 33, - ACTIONS(3025), 1, + [16044] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5814), 1, + ACTIONS(5786), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3827), 1, + STATE(4325), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89186,7 +89218,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89210,71 +89242,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16689] = 33, - ACTIONS(3025), 1, + [16173] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5816), 1, + ACTIONS(5788), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4032), 1, + STATE(4329), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89282,7 +89314,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89306,71 +89338,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16818] = 33, - ACTIONS(3025), 1, + [16302] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5818), 1, + ACTIONS(5790), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3680), 1, + STATE(4331), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89378,7 +89410,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89402,71 +89434,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [16947] = 33, - ACTIONS(4976), 1, + [16431] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5820), 1, + ACTIONS(5792), 1, sym__single_quote_span_close, - STATE(3123), 1, + STATE(3176), 1, sym__line, - STATE(3918), 1, + STATE(3791), 1, sym__inlines, - ACTIONS(4988), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89474,7 +89506,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89498,71 +89530,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17076] = 33, - ACTIONS(3025), 1, + [16560] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5822), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5794), 1, + sym__double_quote_span_close, + STATE(3210), 1, sym__line, - STATE(4041), 1, + STATE(3793), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89570,7 +89602,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89594,71 +89626,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17205] = 33, - ACTIONS(4976), 1, + [16689] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5824), 1, + ACTIONS(5796), 1, sym__single_quote_span_close, - STATE(3123), 1, + STATE(3176), 1, sym__line, - STATE(3783), 1, + STATE(4482), 1, sym__inlines, - ACTIONS(4988), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89666,7 +89698,103 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(683), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [16818] = 33, + ACTIONS(4250), 1, + anon_sym_LBRACK, + ACTIONS(4252), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4254), 1, + anon_sym_DOLLAR, + ACTIONS(4256), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4258), 1, + anon_sym_LBRACE, + ACTIONS(4260), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4266), 1, + sym__code_span_start, + ACTIONS(4268), 1, + sym__highlight_span_start, + ACTIONS(4270), 1, + sym__insert_span_start, + ACTIONS(4272), 1, + sym__delete_span_start, + ACTIONS(4274), 1, + sym__edit_comment_span_start, + ACTIONS(4276), 1, + sym__single_quote_span_open, + ACTIONS(4278), 1, + sym__double_quote_span_open, + ACTIONS(4280), 1, + sym__shortcode_open_escaped, + ACTIONS(4282), 1, + sym__shortcode_open, + ACTIONS(4284), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4286), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4288), 1, + sym__cite_author_in_text, + ACTIONS(4290), 1, + sym__cite_suppress_author, + ACTIONS(4292), 1, + sym__strikeout_open, + ACTIONS(4294), 1, + sym__subscript_open, + ACTIONS(4296), 1, + sym__superscript_open, + ACTIONS(4298), 1, + sym__inline_note_start_token, + ACTIONS(4300), 1, + sym__strong_emphasis_open_star, + ACTIONS(4302), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4304), 1, + sym__emphasis_open_star, + ACTIONS(4306), 1, + sym__emphasis_open_underscore, + ACTIONS(5798), 1, + sym__single_quote_span_close, + STATE(3176), 1, + sym__line, + STATE(4307), 1, + sym__inlines, + ACTIONS(4262), 2, + sym__pandoc_lt_str, + anon_sym_PIPE, + ACTIONS(5694), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89690,71 +89818,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17334] = 33, - ACTIONS(5560), 1, + [16947] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5826), 1, - sym__double_quote_span_close, - STATE(3138), 1, + ACTIONS(5800), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(3787), 1, + STATE(4507), 1, sym__inlines, - ACTIONS(5572), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89762,7 +89890,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89786,71 +89914,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17463] = 33, - ACTIONS(4976), 1, + [17076] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5828), 1, - sym__single_quote_span_close, - STATE(3123), 1, + ACTIONS(5802), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(3874), 1, + STATE(4508), 1, sym__inlines, - ACTIONS(4988), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89858,7 +89986,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89882,71 +90010,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17592] = 33, - ACTIONS(5560), 1, + [17205] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5830), 1, - sym__double_quote_span_close, - STATE(3138), 1, + ACTIONS(5804), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(3875), 1, + STATE(4509), 1, sym__inlines, - ACTIONS(5572), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89954,7 +90082,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89978,71 +90106,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17721] = 33, - ACTIONS(4976), 1, + [17334] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5832), 1, - sym__single_quote_span_close, - STATE(3123), 1, + ACTIONS(5806), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(4102), 1, + STATE(4149), 1, sym__inlines, - ACTIONS(4988), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90050,7 +90178,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90074,71 +90202,166 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17850] = 33, - ACTIONS(5560), 1, + [17463] = 32, + ACTIONS(3613), 1, + sym__pipe_table_delimiter, + ACTIONS(5811), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(5814), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(5817), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(5820), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(5823), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(5826), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(5832), 1, + sym__whitespace, + ACTIONS(5835), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(5838), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(5841), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(5844), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(5847), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(5850), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(5853), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(5856), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(5859), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(5862), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(5865), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(5868), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(5871), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(5874), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(5877), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(5880), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(5883), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(5886), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(5889), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(5892), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(5895), 1, sym__emphasis_open_underscore, - ACTIONS(5834), 1, - sym__double_quote_span_close, - STATE(3138), 1, + ACTIONS(5829), 2, + sym__pandoc_lt_str, + anon_sym_PIPE, + ACTIONS(5808), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(758), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [17590] = 33, + ACTIONS(3087), 1, + anon_sym_LBRACK, + ACTIONS(3089), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3091), 1, + anon_sym_DOLLAR, + ACTIONS(3093), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3097), 1, + anon_sym_LBRACE, + ACTIONS(3099), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3107), 1, + sym__code_span_start, + ACTIONS(3109), 1, + sym__highlight_span_start, + ACTIONS(3111), 1, + sym__insert_span_start, + ACTIONS(3113), 1, + sym__delete_span_start, + ACTIONS(3115), 1, + sym__edit_comment_span_start, + ACTIONS(3117), 1, + sym__single_quote_span_open, + ACTIONS(3119), 1, + sym__double_quote_span_open, + ACTIONS(3121), 1, + sym__shortcode_open_escaped, + ACTIONS(3123), 1, + sym__shortcode_open, + ACTIONS(3125), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3127), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3129), 1, + sym__cite_author_in_text, + ACTIONS(3131), 1, + sym__cite_suppress_author, + ACTIONS(3133), 1, + sym__strikeout_open, + ACTIONS(3135), 1, + sym__subscript_open, + ACTIONS(3137), 1, + sym__superscript_open, + ACTIONS(3139), 1, + sym__inline_note_start_token, + ACTIONS(3141), 1, + sym__strong_emphasis_open_star, + ACTIONS(3143), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3145), 1, + sym__emphasis_open_star, + ACTIONS(3147), 1, + sym__emphasis_open_underscore, + ACTIONS(5898), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(4118), 1, + STATE(3943), 1, sym__inlines, - ACTIONS(5572), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90146,7 +90369,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90170,71 +90393,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [17979] = 33, - ACTIONS(3025), 1, + [17719] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5836), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5900), 1, + sym__single_quote_span_close, + STATE(3176), 1, sym__line, - STATE(3899), 1, + STATE(4008), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90242,7 +90465,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90266,71 +90489,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18108] = 33, - ACTIONS(3025), 1, + [17848] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5838), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5902), 1, + sym__double_quote_span_close, + STATE(3210), 1, sym__line, - STATE(3900), 1, + STATE(4009), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90338,7 +90561,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90362,71 +90585,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18237] = 33, - ACTIONS(3025), 1, + [17977] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5840), 1, + ACTIONS(5904), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3901), 1, + STATE(4084), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90434,7 +90657,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90458,71 +90681,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18366] = 33, - ACTIONS(3025), 1, + [18106] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5842), 1, + ACTIONS(5906), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3902), 1, + STATE(4095), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90530,7 +90753,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90554,71 +90777,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18495] = 33, - ACTIONS(3025), 1, + [18235] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5844), 1, + ACTIONS(5908), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4042), 1, + STATE(4096), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90626,7 +90849,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90650,71 +90873,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18624] = 33, - ACTIONS(4976), 1, + [18364] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5846), 1, - sym__single_quote_span_close, - STATE(3123), 1, + ACTIONS(5910), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(4463), 1, + STATE(4099), 1, sym__inlines, - ACTIONS(4988), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90722,7 +90945,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90746,71 +90969,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18753] = 33, - ACTIONS(3025), 1, + [18493] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5848), 1, + ACTIONS(5912), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3958), 1, + STATE(3946), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90818,7 +91041,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90842,71 +91065,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [18882] = 33, - ACTIONS(3025), 1, + [18622] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5850), 1, + ACTIONS(5914), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3963), 1, + STATE(3951), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -90914,7 +91137,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90938,71 +91161,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19011] = 33, - ACTIONS(3025), 1, + [18751] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5852), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5916), 1, + sym__single_quote_span_close, + STATE(3176), 1, sym__line, - STATE(3965), 1, + STATE(4349), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91010,7 +91233,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91034,71 +91257,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19140] = 33, - ACTIONS(3025), 1, + [18880] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5854), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5918), 1, + sym__double_quote_span_close, + STATE(3210), 1, sym__line, - STATE(3967), 1, + STATE(4360), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91106,7 +91329,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91130,71 +91353,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19269] = 33, - ACTIONS(5560), 1, + [19009] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5856), 1, - sym__double_quote_span_close, - STATE(3138), 1, + ACTIONS(5920), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(4464), 1, + STATE(3685), 1, sym__inlines, - ACTIONS(5572), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91202,7 +91425,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91226,71 +91449,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19398] = 33, - ACTIONS(3025), 1, + [19138] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5858), 1, + ACTIONS(5922), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3857), 1, + STATE(3686), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91298,7 +91521,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91322,71 +91545,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19527] = 33, - ACTIONS(3025), 1, + [19267] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5860), 1, + ACTIONS(5924), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3858), 1, + STATE(3687), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91394,7 +91617,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91418,71 +91641,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19656] = 33, - ACTIONS(3025), 1, + [19396] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5862), 1, + ACTIONS(5926), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4488), 1, + STATE(3688), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91490,7 +91713,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91514,71 +91737,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19785] = 33, - ACTIONS(3025), 1, + [19525] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, + ACTIONS(5928), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4489), 1, + STATE(3952), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91586,7 +91809,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91610,71 +91833,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [19914] = 33, - ACTIONS(4976), 1, + [19654] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5866), 1, + ACTIONS(5930), 1, sym__single_quote_span_close, - STATE(3123), 1, + STATE(3176), 1, sym__line, - STATE(3968), 1, + STATE(3735), 1, sym__inlines, - ACTIONS(4988), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91682,7 +91905,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91706,71 +91929,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20043] = 33, - ACTIONS(4976), 1, + [19783] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - sym__single_quote_span_close, - STATE(3123), 1, + ACTIONS(5932), 1, + sym__double_quote_span_close, + STATE(3210), 1, sym__line, - STATE(4252), 1, + STATE(3736), 1, sym__inlines, - ACTIONS(4988), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91778,7 +92001,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91802,71 +92025,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20172] = 33, - ACTIONS(5560), 1, + [19912] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5870), 1, - sym__double_quote_span_close, - STATE(3138), 1, + ACTIONS(5934), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(4256), 1, + STATE(3760), 1, sym__inlines, - ACTIONS(5572), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91874,7 +92097,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91898,71 +92121,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20301] = 33, - ACTIONS(5560), 1, + [20041] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - sym__double_quote_span_close, - STATE(3138), 1, + ACTIONS(5936), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(3976), 1, + STATE(3761), 1, sym__inlines, - ACTIONS(5572), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -91970,7 +92193,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91994,71 +92217,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20430] = 33, - ACTIONS(3025), 1, + [20170] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5874), 1, + ACTIONS(5938), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4490), 1, + STATE(3762), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92066,7 +92289,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92090,71 +92313,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20559] = 33, - ACTIONS(3025), 1, + [20299] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, + ACTIONS(5940), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4388), 1, + STATE(3763), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92162,7 +92385,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92186,71 +92409,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20688] = 33, - ACTIONS(3025), 1, + [20428] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5878), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5942), 1, + sym__single_quote_span_close, + STATE(3176), 1, sym__line, - STATE(4390), 1, + STATE(3810), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92258,7 +92481,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92282,71 +92505,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20817] = 33, - ACTIONS(3025), 1, + [20557] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, + ACTIONS(5944), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4392), 1, + STATE(3835), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92354,7 +92577,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92378,71 +92601,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [20946] = 33, - ACTIONS(3025), 1, + [20686] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5882), 1, + ACTIONS(5946), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4396), 1, + STATE(3836), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92450,7 +92673,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92474,71 +92697,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21075] = 33, - ACTIONS(3025), 1, + [20815] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, + ACTIONS(5948), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4491), 1, + STATE(3837), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92546,7 +92769,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92570,71 +92793,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21204] = 33, - ACTIONS(3025), 1, + [20944] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5886), 1, + ACTIONS(5950), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4058), 1, + STATE(3838), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92642,7 +92865,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92666,71 +92889,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21333] = 33, - ACTIONS(3025), 1, + [21073] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5952), 1, + sym__single_quote_span_close, + STATE(3176), 1, sym__line, - STATE(4312), 1, + STATE(3885), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92738,7 +92961,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92762,71 +92985,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21462] = 33, - ACTIONS(3025), 1, + [21202] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5890), 1, - aux_sym_insert_token1, - STATE(3190), 1, + ACTIONS(5954), 1, + sym__double_quote_span_close, + STATE(3210), 1, sym__line, - STATE(3865), 1, + STATE(3886), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92834,7 +93057,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92858,69 +93081,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21591] = 32, - ACTIONS(3503), 1, - sym__pipe_table_delimiter, - ACTIONS(3794), 1, + [21331] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3796), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3798), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3800), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3802), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3808), 1, - sym__whitespace, - ACTIONS(3810), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3812), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3814), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3816), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3818), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3820), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3822), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3824), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3826), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3828), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3830), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3832), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3834), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3836), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3838), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3840), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3842), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3844), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3846), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3848), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3850), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(3806), 2, + ACTIONS(5956), 1, + aux_sym_insert_token1, + STATE(3207), 1, + sym__line, + STATE(3910), 1, + sym__inlines, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5892), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -92928,7 +93153,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(735), 24, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92952,72 +93177,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - aux_sym__line_with_maybe_spaces_repeat1, - [21718] = 33, - ACTIONS(3025), 1, + [21460] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5894), 1, + ACTIONS(5958), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(3867), 1, + STATE(3911), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93025,7 +93249,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93049,71 +93273,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21847] = 33, - ACTIONS(4976), 1, + [21589] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5896), 1, - sym__single_quote_span_close, - STATE(3123), 1, + ACTIONS(5960), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(4087), 1, + STATE(3912), 1, sym__inlines, - ACTIONS(4988), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93121,7 +93345,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93145,71 +93369,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [21976] = 33, - ACTIONS(5560), 1, + [21718] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5898), 1, - sym__double_quote_span_close, - STATE(3138), 1, + ACTIONS(5962), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(4104), 1, + STATE(3913), 1, sym__inlines, - ACTIONS(5572), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93217,7 +93441,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93241,71 +93465,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [22105] = 33, - ACTIONS(4976), 1, + [21847] = 33, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(5900), 1, + ACTIONS(5964), 1, sym__single_quote_span_close, - STATE(3123), 1, + STATE(3176), 1, sym__line, - STATE(4120), 1, + STATE(4204), 1, sym__inlines, - ACTIONS(4988), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93313,7 +93537,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93337,71 +93561,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [22234] = 33, - ACTIONS(5560), 1, + [21976] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - ACTIONS(5902), 1, + ACTIONS(5966), 1, sym__double_quote_span_close, - STATE(3138), 1, + STATE(3210), 1, sym__line, - STATE(4125), 1, + STATE(4207), 1, sym__inlines, - ACTIONS(5572), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93409,7 +93633,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93433,71 +93657,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [22363] = 33, - ACTIONS(3025), 1, + [22105] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5904), 1, + ACTIONS(5968), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4386), 1, + STATE(4314), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93505,7 +93729,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93529,71 +93753,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [22492] = 33, - ACTIONS(3025), 1, + [22234] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5906), 1, + ACTIONS(5970), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4475), 1, + STATE(4315), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93601,7 +93825,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93625,71 +93849,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [22621] = 33, - ACTIONS(3025), 1, + [22363] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(5908), 1, + ACTIONS(5972), 1, aux_sym_insert_token1, - STATE(3190), 1, + STATE(3207), 1, sym__line, - STATE(4040), 1, + STATE(4316), 1, sym__inlines, - ACTIONS(3039), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93697,7 +93921,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93721,69 +93945,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [22750] = 32, - ACTIONS(4852), 1, + [22492] = 33, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + ACTIONS(5974), 1, + aux_sym_insert_token1, + STATE(3207), 1, sym__line, - STATE(3884), 1, + STATE(4318), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93791,7 +94017,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93815,69 +94041,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [22876] = 32, - ACTIONS(4452), 1, + [22621] = 33, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - STATE(3167), 1, + ACTIONS(5976), 1, + sym__double_quote_span_close, + STATE(3210), 1, sym__line, - STATE(3885), 1, + STATE(4483), 1, sym__inlines, - ACTIONS(4464), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93885,7 +94113,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93909,69 +94137,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23002] = 32, - ACTIONS(7), 1, + [22750] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(9), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(11), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(13), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(15), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(65), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(67), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(69), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(71), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(73), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(75), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(77), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(79), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(81), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(83), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(85), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(89), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(91), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(93), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(95), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(97), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(99), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(101), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(103), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(2983), 1, + STATE(3193), 1, sym__line, - STATE(3447), 1, + STATE(4208), 1, sym__inlines, - ACTIONS(19), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -93979,7 +94207,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(653), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94003,69 +94231,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23128] = 32, - ACTIONS(7), 1, + [22876] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(9), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(11), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(13), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(65), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(67), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(69), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(71), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(73), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(75), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(77), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(79), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(81), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(83), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(85), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(89), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(91), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(93), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(95), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(97), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(99), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(101), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(103), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(2983), 1, + STATE(3224), 1, sym__line, - STATE(3495), 1, + STATE(4219), 1, sym__inlines, - ACTIONS(19), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -94073,7 +94301,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(653), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94097,7 +94325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23254] = 32, + [23002] = 32, ACTIONS(7), 1, anon_sym_LBRACK, ACTIONS(9), 1, @@ -94152,9 +94380,9 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(105), 1, sym__emphasis_open_underscore, - STATE(2983), 1, + STATE(2969), 1, sym__line, - STATE(3294), 1, + STATE(3388), 1, sym__inlines, ACTIONS(19), 2, sym__pandoc_lt_str, @@ -94167,7 +94395,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(653), 23, + STATE(641), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94191,69 +94419,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23380] = 32, - ACTIONS(4302), 1, + [23128] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(2975), 1, sym__line, - STATE(3919), 1, + STATE(3043), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -94261,7 +94489,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94285,7 +94513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23506] = 32, + [23254] = 32, ACTIONS(7), 1, anon_sym_LBRACK, ACTIONS(9), 1, @@ -94340,9 +94568,9 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(105), 1, sym__emphasis_open_underscore, - STATE(2983), 1, + STATE(2969), 1, sym__line, - STATE(3500), 1, + STATE(3386), 1, sym__inlines, ACTIONS(19), 2, sym__pandoc_lt_str, @@ -94355,7 +94583,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(653), 23, + STATE(641), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94379,7 +94607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23632] = 32, + [23380] = 32, ACTIONS(7), 1, anon_sym_LBRACK, ACTIONS(9), 1, @@ -94434,9 +94662,9 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(105), 1, sym__emphasis_open_underscore, - STATE(2983), 1, + STATE(2969), 1, sym__line, - STATE(3337), 1, + STATE(3376), 1, sym__inlines, ACTIONS(19), 2, sym__pandoc_lt_str, @@ -94449,7 +94677,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(653), 23, + STATE(641), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94473,69 +94701,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23758] = 32, - ACTIONS(4606), 1, + [23506] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3153), 1, sym__line, - STATE(3756), 1, + STATE(4389), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -94543,7 +94771,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94567,69 +94795,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [23884] = 32, - ACTIONS(3437), 1, + [23632] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3034), 1, + STATE(3190), 1, sym__line, - STATE(3103), 1, + STATE(4116), 1, sym__inlines, - ACTIONS(3449), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -94637,7 +94865,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94661,7 +94889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24010] = 32, + [23758] = 32, ACTIONS(7), 1, anon_sym_LBRACK, ACTIONS(9), 1, @@ -94716,9 +94944,9 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(105), 1, sym__emphasis_open_underscore, - STATE(2983), 1, + STATE(2969), 1, sym__line, - STATE(3412), 1, + STATE(3365), 1, sym__inlines, ACTIONS(19), 2, sym__pandoc_lt_str, @@ -94731,7 +94959,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(653), 23, + STATE(641), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94755,69 +94983,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24136] = 32, - ACTIONS(7), 1, + [23884] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(9), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(11), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(13), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(65), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(67), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(69), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(71), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(73), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(75), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(77), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(79), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(81), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(83), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(85), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(89), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(91), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(93), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(95), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(97), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(99), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(101), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(103), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(2983), 1, + STATE(3141), 1, sym__line, - STATE(3465), 1, + STATE(3799), 1, sym__inlines, - ACTIONS(19), 2, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -94825,7 +95053,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(653), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94849,69 +95077,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24262] = 32, - ACTIONS(4916), 1, + [24010] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3193), 1, sym__line, - STATE(4253), 1, + STATE(3800), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -94919,7 +95147,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94943,69 +95171,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24388] = 32, - ACTIONS(5128), 1, + [24136] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3224), 1, sym__line, - STATE(4361), 1, + STATE(3801), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95013,7 +95241,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95037,69 +95265,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24514] = 32, - ACTIONS(4852), 1, + [24262] = 32, + ACTIONS(7), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(9), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(11), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(13), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(17), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(65), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(67), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(69), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(71), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(73), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(75), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(77), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(79), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(81), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(83), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(85), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(87), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(89), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(91), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(93), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(95), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(97), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(99), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(103), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(105), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(2969), 1, sym__line, - STATE(3740), 1, + STATE(3396), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(19), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95107,7 +95335,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(641), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95131,69 +95359,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24640] = 32, - ACTIONS(7), 1, + [24388] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(9), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(11), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(13), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(15), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(65), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(67), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(69), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(71), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(73), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(75), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(77), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(79), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(81), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(83), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(85), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(89), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(91), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(93), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(95), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(97), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(99), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(101), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(103), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(2983), 1, + STATE(3190), 1, sym__line, - STATE(3574), 1, + STATE(3805), 1, sym__inlines, - ACTIONS(19), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95201,7 +95429,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(653), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95225,69 +95453,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24766] = 32, - ACTIONS(4452), 1, + [24514] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3167), 1, + STATE(3142), 1, sym__line, - STATE(3833), 1, + STATE(3807), 1, sym__inlines, - ACTIONS(4464), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95295,7 +95523,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95319,69 +95547,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [24892] = 32, - ACTIONS(4152), 1, + [24640] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(3184), 1, sym__line, - STATE(3950), 1, + STATE(3809), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95389,7 +95617,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95413,69 +95641,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25018] = 32, - ACTIONS(4606), 1, + [24766] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3153), 1, sym__line, - STATE(3980), 1, + STATE(3822), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95483,7 +95711,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95507,69 +95735,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25144] = 32, - ACTIONS(4152), 1, + [24892] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(2975), 1, sym__line, - STATE(3981), 1, + STATE(3013), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95577,7 +95805,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95601,69 +95829,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25270] = 32, - ACTIONS(4302), 1, + [25018] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3141), 1, sym__line, - STATE(3982), 1, + STATE(4215), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95671,7 +95899,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95695,69 +95923,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25396] = 32, - ACTIONS(4916), 1, + [25144] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3193), 1, sym__line, - STATE(4015), 1, + STATE(4216), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95765,7 +95993,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95789,69 +96017,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25522] = 32, - ACTIONS(5128), 1, + [25270] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3224), 1, sym__line, - STATE(4016), 1, + STATE(4218), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95859,7 +96087,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95883,69 +96111,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25648] = 32, - ACTIONS(4852), 1, + [25396] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(3190), 1, sym__line, - STATE(4017), 1, + STATE(4232), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -95953,7 +96181,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95977,69 +96205,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25774] = 32, - ACTIONS(4452), 1, + [25522] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3167), 1, + STATE(3142), 1, sym__line, - STATE(4018), 1, + STATE(4233), 1, sym__inlines, - ACTIONS(4464), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96047,7 +96275,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96071,69 +96299,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [25900] = 32, - ACTIONS(3437), 1, + [25648] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3002), 1, - sym__inlines, - STATE(3034), 1, + STATE(3184), 1, sym__line, - ACTIONS(3449), 2, + STATE(4234), 1, + sym__inlines, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96141,7 +96369,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96165,69 +96393,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26026] = 32, - ACTIONS(4606), 1, + [25774] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3153), 1, sym__line, - STATE(4154), 1, + STATE(4235), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96235,7 +96463,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96259,69 +96487,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26152] = 32, - ACTIONS(4152), 1, + [25900] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(2975), 1, sym__line, - STATE(4347), 1, + STATE(3091), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96329,7 +96557,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96353,69 +96581,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26278] = 32, - ACTIONS(4302), 1, + [26026] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3141), 1, sym__line, - STATE(4351), 1, + STATE(4053), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96423,7 +96651,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96447,69 +96675,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26404] = 32, - ACTIONS(4916), 1, + [26152] = 32, + ACTIONS(7), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(9), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(11), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(13), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(17), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(65), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(67), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(69), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(71), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(73), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(75), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(77), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(79), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(81), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(83), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(85), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(87), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(89), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(91), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(93), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(95), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(97), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(99), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(103), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(105), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(2969), 1, sym__line, - STATE(4387), 1, + STATE(3597), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(19), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96517,7 +96745,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(641), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96541,69 +96769,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26530] = 32, - ACTIONS(5128), 1, + [26278] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3141), 1, sym__line, - STATE(4398), 1, + STATE(4296), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96611,7 +96839,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96635,69 +96863,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26656] = 32, - ACTIONS(4852), 1, + [26404] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(3193), 1, sym__line, - STATE(4462), 1, + STATE(4506), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96705,7 +96933,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96729,69 +96957,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26782] = 32, - ACTIONS(4452), 1, + [26530] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3167), 1, + STATE(3224), 1, sym__line, - STATE(4484), 1, + STATE(3716), 1, sym__inlines, - ACTIONS(4464), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96799,7 +97027,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96823,69 +97051,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [26908] = 32, - ACTIONS(3437), 1, + [26656] = 32, + ACTIONS(7), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(9), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(11), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(13), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(17), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(65), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(67), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(69), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(71), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(73), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(75), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(77), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(79), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(81), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(83), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(85), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(87), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(89), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(91), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(93), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(95), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(97), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(99), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(103), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(105), 1, sym__emphasis_open_underscore, - STATE(3034), 1, + STATE(2969), 1, sym__line, - STATE(3090), 1, + STATE(3374), 1, sym__inlines, - ACTIONS(3449), 2, + ACTIONS(19), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96893,7 +97121,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(641), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96917,69 +97145,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27034] = 32, - ACTIONS(4606), 1, + [26782] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3190), 1, sym__line, - STATE(3823), 1, + STATE(3834), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -96987,7 +97215,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97011,69 +97239,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27160] = 32, - ACTIONS(4152), 1, + [26908] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(3142), 1, sym__line, - STATE(3834), 1, + STATE(3920), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97081,7 +97309,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97105,69 +97333,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27286] = 32, - ACTIONS(4302), 1, + [27034] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3184), 1, sym__line, - STATE(3840), 1, + STATE(3940), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97175,7 +97403,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97199,69 +97427,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27412] = 32, - ACTIONS(4916), 1, + [27160] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3153), 1, sym__line, - STATE(3844), 1, + STATE(3954), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97269,7 +97497,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97293,69 +97521,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27538] = 32, - ACTIONS(5128), 1, + [27286] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3210), 1, - sym__line, - STATE(3850), 1, + STATE(2943), 1, sym__inlines, - ACTIONS(5140), 2, + STATE(2975), 1, + sym__line, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97363,7 +97591,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97387,69 +97615,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27664] = 32, - ACTIONS(4852), 1, + [27412] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(3141), 1, sym__line, - STATE(3873), 1, + STATE(3825), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97457,7 +97685,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97481,69 +97709,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27790] = 32, - ACTIONS(4452), 1, + [27538] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3167), 1, + STATE(3193), 1, sym__line, - STATE(3887), 1, + STATE(3826), 1, sym__inlines, - ACTIONS(4464), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97551,7 +97779,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97575,69 +97803,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [27916] = 32, - ACTIONS(3437), 1, + [27664] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3034), 1, + STATE(3224), 1, sym__line, - STATE(3098), 1, + STATE(3831), 1, sym__inlines, - ACTIONS(3449), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97645,7 +97873,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97669,69 +97897,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28042] = 32, - ACTIONS(4606), 1, + [27790] = 32, + ACTIONS(7), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(9), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(11), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(13), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(17), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(65), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(67), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(69), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(71), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(73), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(75), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(77), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(79), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(81), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(83), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(85), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(87), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(89), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(91), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(93), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(95), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(97), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(99), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(103), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(105), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(2969), 1, sym__line, - STATE(4262), 1, + STATE(3475), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(19), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97739,7 +97967,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(641), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97763,69 +97991,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28168] = 32, - ACTIONS(4152), 1, + [27916] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(3190), 1, sym__line, - STATE(4265), 1, + STATE(3840), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97833,7 +98061,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97857,69 +98085,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28294] = 32, - ACTIONS(4302), 1, + [28042] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3142), 1, sym__line, - STATE(4272), 1, + STATE(3841), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -97927,7 +98155,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97951,69 +98179,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28420] = 32, - ACTIONS(4916), 1, + [28168] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3184), 1, sym__line, - STATE(4310), 1, + STATE(3844), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98021,7 +98249,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98045,69 +98273,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28546] = 32, - ACTIONS(5128), 1, + [28294] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3153), 1, sym__line, - STATE(4316), 1, + STATE(3845), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98115,7 +98343,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98139,69 +98367,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28672] = 32, - ACTIONS(3437), 1, + [28420] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3034), 1, - sym__line, - STATE(3107), 1, + STATE(2950), 1, sym__inlines, - ACTIONS(3449), 2, + STATE(2975), 1, + sym__line, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98209,7 +98437,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98233,69 +98461,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28798] = 32, - ACTIONS(4452), 1, + [28546] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(3167), 1, + STATE(3141), 1, sym__line, - STATE(4320), 1, + STATE(4397), 1, sym__inlines, - ACTIONS(4464), 2, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98303,7 +98531,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98327,69 +98555,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [28924] = 32, - ACTIONS(3437), 1, + [28672] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(2985), 1, - sym__inlines, - STATE(3034), 1, + STATE(3193), 1, sym__line, - ACTIONS(3449), 2, + STATE(4400), 1, + sym__inlines, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98397,7 +98625,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98421,69 +98649,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29050] = 32, - ACTIONS(4606), 1, + [28798] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3224), 1, sym__line, - STATE(4133), 1, + STATE(4407), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98491,7 +98719,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98515,69 +98743,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29176] = 32, - ACTIONS(4152), 1, + [28924] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(3184), 1, sym__line, - STATE(4136), 1, + STATE(3850), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98585,7 +98813,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98609,69 +98837,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29302] = 32, - ACTIONS(4302), 1, + [29050] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3190), 1, sym__line, - STATE(4140), 1, + STATE(4418), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98679,7 +98907,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98703,69 +98931,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29428] = 32, - ACTIONS(4916), 1, + [29176] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3142), 1, sym__line, - STATE(4155), 1, + STATE(4432), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98773,7 +99001,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98797,69 +99025,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29554] = 32, - ACTIONS(5128), 1, + [29302] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3184), 1, sym__line, - STATE(4161), 1, + STATE(4479), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98867,7 +99095,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98891,69 +99119,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29680] = 32, - ACTIONS(4852), 1, + [29428] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(3153), 1, sym__line, - STATE(4167), 1, + STATE(4481), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -98961,7 +99189,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98985,69 +99213,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29806] = 32, - ACTIONS(4452), 1, + [29554] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3167), 1, - sym__line, - STATE(4182), 1, + STATE(2954), 1, sym__inlines, - ACTIONS(4464), 2, + STATE(2975), 1, + sym__line, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99055,7 +99283,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99079,69 +99307,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [29932] = 32, - ACTIONS(3437), 1, + [29680] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(3034), 1, + STATE(3141), 1, sym__line, - STATE(3036), 1, + STATE(4434), 1, sym__inlines, - ACTIONS(3449), 2, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99149,7 +99377,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99173,69 +99401,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30058] = 32, - ACTIONS(4606), 1, + [29806] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3193), 1, sym__line, - STATE(3814), 1, + STATE(4477), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99243,7 +99471,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99267,69 +99495,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30184] = 32, - ACTIONS(4152), 1, + [29932] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(3142), 1, sym__line, - STATE(3816), 1, + STATE(4229), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99337,7 +99565,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99361,69 +99589,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30310] = 32, - ACTIONS(4302), 1, + [30058] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3190), 1, sym__line, - STATE(3820), 1, + STATE(3690), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99431,7 +99659,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99455,69 +99683,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30436] = 32, - ACTIONS(4916), 1, + [30184] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3142), 1, sym__line, - STATE(3829), 1, + STATE(3691), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99525,7 +99753,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99549,69 +99777,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30562] = 32, - ACTIONS(5128), 1, + [30310] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3184), 1, sym__line, - STATE(3830), 1, + STATE(3692), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99619,7 +99847,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99643,69 +99871,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30688] = 32, - ACTIONS(4852), 1, + [30436] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(3153), 1, sym__line, - STATE(3831), 1, + STATE(3693), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99713,7 +99941,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99737,69 +99965,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30814] = 32, - ACTIONS(4452), 1, + [30562] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3167), 1, - sym__line, - STATE(3832), 1, + STATE(2964), 1, sym__inlines, - ACTIONS(4464), 2, + STATE(2975), 1, + sym__line, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99807,7 +100035,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99831,69 +100059,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [30940] = 32, - ACTIONS(3437), 1, + [30688] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(2934), 1, - sym__inlines, - STATE(3034), 1, + STATE(3141), 1, sym__line, - ACTIONS(3449), 2, + STATE(3915), 1, + sym__inlines, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99901,7 +100129,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99925,69 +100153,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31066] = 32, - ACTIONS(4606), 1, + [30814] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3193), 1, sym__line, - STATE(3998), 1, + STATE(3918), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -99995,7 +100223,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100019,69 +100247,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31192] = 32, - ACTIONS(4152), 1, + [30940] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(3224), 1, sym__line, - STATE(3999), 1, + STATE(3919), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100089,7 +100317,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100113,69 +100341,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31318] = 32, - ACTIONS(4302), 1, + [31066] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3190), 1, sym__line, - STATE(4000), 1, + STATE(3926), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100183,7 +100411,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100207,69 +100435,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31444] = 32, - ACTIONS(4916), 1, + [31192] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3142), 1, sym__line, - STATE(4002), 1, + STATE(3931), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100277,7 +100505,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100301,69 +100529,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31570] = 32, - ACTIONS(5128), 1, + [31318] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3184), 1, sym__line, - STATE(4004), 1, + STATE(3933), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100371,7 +100599,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100395,69 +100623,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31696] = 32, - ACTIONS(4852), 1, + [31444] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(3153), 1, sym__line, - STATE(4005), 1, + STATE(3936), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100465,7 +100693,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100489,69 +100717,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31822] = 32, - ACTIONS(4452), 1, + [31570] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3167), 1, - sym__line, - STATE(4006), 1, + STATE(2971), 1, sym__inlines, - ACTIONS(4464), 2, + STATE(2975), 1, + sym__line, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100559,7 +100787,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100583,69 +100811,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [31948] = 32, - ACTIONS(3437), 1, + [31696] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(2951), 1, - sym__inlines, - STATE(3034), 1, + STATE(3141), 1, sym__line, - ACTIONS(3449), 2, + STATE(3677), 1, + sym__inlines, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100653,7 +100881,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100677,69 +100905,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32074] = 32, - ACTIONS(4606), 1, + [31822] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3193), 1, sym__line, - STATE(4128), 1, + STATE(4091), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100747,7 +100975,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100771,69 +100999,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32200] = 32, - ACTIONS(4152), 1, + [31948] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(3224), 1, sym__line, - STATE(4129), 1, + STATE(4092), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100841,7 +101069,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100865,69 +101093,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32326] = 32, - ACTIONS(4302), 1, + [32074] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3190), 1, sym__line, - STATE(4130), 1, + STATE(4094), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -100935,7 +101163,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -100959,69 +101187,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32452] = 32, - ACTIONS(4916), 1, + [32200] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3142), 1, sym__line, - STATE(4134), 1, + STATE(4097), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101029,7 +101257,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101053,69 +101281,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32578] = 32, - ACTIONS(5128), 1, + [32326] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3184), 1, sym__line, - STATE(4495), 1, + STATE(4098), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101123,7 +101351,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101147,69 +101375,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32704] = 32, - ACTIONS(4852), 1, + [32452] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(3153), 1, sym__line, - STATE(4137), 1, + STATE(4100), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101217,7 +101445,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101241,69 +101469,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32830] = 32, - ACTIONS(4452), 1, + [32578] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3167), 1, + STATE(2975), 1, sym__line, - STATE(4150), 1, + STATE(2976), 1, sym__inlines, - ACTIONS(4464), 2, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101311,7 +101539,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101335,69 +101563,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [32956] = 32, - ACTIONS(3437), 1, + [32704] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(2975), 1, - sym__inlines, - STATE(3034), 1, + STATE(3141), 1, sym__line, - ACTIONS(3449), 2, + STATE(4269), 1, + sym__inlines, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101405,7 +101633,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101429,69 +101657,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33082] = 32, - ACTIONS(4606), 1, + [32830] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3193), 1, sym__line, - STATE(4287), 1, + STATE(4272), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101499,7 +101727,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101523,69 +101751,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33208] = 32, - ACTIONS(4152), 1, + [32956] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(3224), 1, sym__line, - STATE(4293), 1, + STATE(4273), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101593,7 +101821,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101617,69 +101845,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33334] = 32, - ACTIONS(4302), 1, + [33082] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3190), 1, sym__line, - STATE(4296), 1, + STATE(4279), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101687,7 +101915,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101711,69 +101939,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33460] = 32, - ACTIONS(4916), 1, + [33208] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3142), 1, sym__line, - STATE(4303), 1, + STATE(4281), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101781,7 +102009,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101805,69 +102033,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33586] = 32, - ACTIONS(5128), 1, + [33334] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3184), 1, sym__line, - STATE(4304), 1, + STATE(4283), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101875,7 +102103,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101899,69 +102127,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33712] = 32, - ACTIONS(4852), 1, + [33460] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(3153), 1, sym__line, - STATE(4305), 1, + STATE(4285), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -101969,7 +102197,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -101993,69 +102221,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33838] = 32, - ACTIONS(4452), 1, + [33586] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3167), 1, + STATE(2975), 1, sym__line, - STATE(4306), 1, + STATE(2983), 1, sym__inlines, - ACTIONS(4464), 2, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102063,7 +102291,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102087,69 +102315,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [33964] = 32, - ACTIONS(3437), 1, + [33712] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(2995), 1, - sym__inlines, - STATE(3034), 1, + STATE(3141), 1, sym__line, - ACTIONS(3449), 2, + STATE(4486), 1, + sym__inlines, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102157,7 +102385,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102181,69 +102409,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34090] = 32, - ACTIONS(4606), 1, + [33838] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3193), 1, sym__line, - STATE(4467), 1, + STATE(4487), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102251,7 +102479,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102275,69 +102503,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34216] = 32, - ACTIONS(4152), 1, + [33964] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(3224), 1, sym__line, - STATE(4468), 1, + STATE(4488), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102345,7 +102573,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102369,69 +102597,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34342] = 32, - ACTIONS(4302), 1, + [34090] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3190), 1, sym__line, - STATE(4469), 1, + STATE(4490), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102439,7 +102667,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102463,69 +102691,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34468] = 32, - ACTIONS(4916), 1, + [34216] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3142), 1, sym__line, - STATE(4471), 1, + STATE(4491), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102533,7 +102761,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102557,69 +102785,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34594] = 32, - ACTIONS(5128), 1, + [34342] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3184), 1, sym__line, - STATE(4472), 1, + STATE(4492), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102627,7 +102855,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102651,69 +102879,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34720] = 32, - ACTIONS(4852), 1, + [34468] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(3153), 1, sym__line, - STATE(4473), 1, + STATE(4493), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102721,7 +102949,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102745,69 +102973,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34846] = 32, - ACTIONS(4452), 1, + [34594] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3167), 1, + STATE(2975), 1, sym__line, - STATE(4474), 1, + STATE(2988), 1, sym__inlines, - ACTIONS(4464), 2, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102815,7 +103043,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102839,69 +103067,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [34972] = 32, - ACTIONS(3437), 1, + [34720] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(3018), 1, - sym__inlines, - STATE(3034), 1, + STATE(3141), 1, sym__line, - ACTIONS(3449), 2, + STATE(4027), 1, + sym__inlines, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -102909,7 +103137,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -102933,69 +103161,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35098] = 32, - ACTIONS(4606), 1, + [34846] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3193), 1, sym__line, - STATE(3972), 1, + STATE(4035), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103003,7 +103231,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103027,69 +103255,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35224] = 32, - ACTIONS(4152), 1, + [34972] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(3224), 1, sym__line, - STATE(3974), 1, + STATE(4038), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103097,7 +103325,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103121,69 +103349,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35350] = 32, - ACTIONS(4302), 1, + [35098] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3190), 1, sym__line, - STATE(3975), 1, + STATE(4042), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103191,7 +103419,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103215,69 +103443,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35476] = 32, - ACTIONS(4916), 1, + [35224] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3142), 1, sym__line, - STATE(3985), 1, + STATE(4045), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103285,7 +103513,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103309,69 +103537,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35602] = 32, - ACTIONS(5128), 1, + [35350] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3184), 1, sym__line, - STATE(3986), 1, + STATE(4047), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103379,7 +103607,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103403,69 +103631,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35728] = 32, - ACTIONS(4852), 1, + [35476] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(3153), 1, sym__line, - STATE(3996), 1, + STATE(4049), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103473,7 +103701,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103497,69 +103725,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35854] = 32, - ACTIONS(4452), 1, + [35602] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3167), 1, + STATE(2975), 1, sym__line, - STATE(3997), 1, + STATE(2991), 1, sym__inlines, - ACTIONS(4464), 2, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103567,7 +103795,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103591,69 +103819,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [35980] = 32, - ACTIONS(3437), 1, + [35728] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(3034), 1, + STATE(3141), 1, sym__line, - STATE(3049), 1, + STATE(4371), 1, sym__inlines, - ACTIONS(3449), 2, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103661,7 +103889,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103685,69 +103913,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36106] = 32, - ACTIONS(4606), 1, + [35854] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3193), 1, sym__line, - STATE(4317), 1, + STATE(4374), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103755,7 +103983,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103779,69 +104007,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36232] = 32, - ACTIONS(4152), 1, + [35980] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(3224), 1, sym__line, - STATE(4332), 1, + STATE(4382), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103849,7 +104077,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103873,69 +104101,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36358] = 32, - ACTIONS(4302), 1, + [36106] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3190), 1, sym__line, - STATE(4333), 1, + STATE(4395), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -103943,7 +104171,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -103967,69 +104195,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36484] = 32, - ACTIONS(4916), 1, + [36232] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3142), 1, sym__line, - STATE(4342), 1, + STATE(4396), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -104037,7 +104265,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104061,69 +104289,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36610] = 32, - ACTIONS(5128), 1, + [36358] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3184), 1, sym__line, - STATE(4344), 1, + STATE(4399), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -104131,7 +104359,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104155,69 +104383,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36736] = 32, - ACTIONS(4852), 1, + [36484] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(3153), 1, sym__line, - STATE(4357), 1, + STATE(4409), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -104225,7 +104453,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104249,69 +104477,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36862] = 32, - ACTIONS(4452), 1, + [36610] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3167), 1, + STATE(2975), 1, sym__line, - STATE(4358), 1, + STATE(2997), 1, sym__inlines, - ACTIONS(4464), 2, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -104319,7 +104547,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104343,69 +104571,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [36988] = 32, - ACTIONS(3437), 1, + [36736] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(3034), 1, + STATE(3141), 1, sym__line, - STATE(3067), 1, + STATE(3739), 1, sym__inlines, - ACTIONS(3449), 2, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -104413,7 +104641,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104437,69 +104665,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37114] = 32, - ACTIONS(4606), 1, + [36862] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3193), 1, sym__line, - STATE(3728), 1, + STATE(3740), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -104507,7 +104735,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104531,69 +104759,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37240] = 32, - ACTIONS(4152), 1, + [36988] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(3224), 1, sym__line, - STATE(3729), 1, + STATE(3741), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -104601,7 +104829,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104625,69 +104853,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37366] = 32, - ACTIONS(4302), 1, + [37114] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3190), 1, sym__line, - STATE(3730), 1, + STATE(3743), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -104695,7 +104923,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104719,69 +104947,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37492] = 32, - ACTIONS(4916), 1, + [37240] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3142), 1, sym__line, - STATE(3732), 1, + STATE(3744), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -104789,7 +105017,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104813,69 +105041,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37618] = 32, - ACTIONS(5128), 1, + [37366] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3184), 1, sym__line, - STATE(3733), 1, + STATE(3745), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -104883,7 +105111,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -104907,69 +105135,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37744] = 32, - ACTIONS(4852), 1, + [37492] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(3153), 1, sym__line, - STATE(3734), 1, + STATE(3746), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -104977,7 +105205,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -105001,69 +105229,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37870] = 32, - ACTIONS(4452), 1, + [37618] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3167), 1, + STATE(2975), 1, sym__line, - STATE(3735), 1, + STATE(3002), 1, sym__inlines, - ACTIONS(4464), 2, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -105071,7 +105299,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -105095,69 +105323,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [37996] = 32, - ACTIONS(3437), 1, + [37744] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(3034), 1, + STATE(3141), 1, sym__line, - STATE(3079), 1, + STATE(3814), 1, sym__inlines, - ACTIONS(3449), 2, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -105165,7 +105393,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -105189,69 +105417,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38122] = 32, - ACTIONS(4606), 1, + [37870] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3193), 1, sym__line, - STATE(3803), 1, + STATE(3815), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -105259,7 +105487,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -105283,69 +105511,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38248] = 32, - ACTIONS(4152), 1, + [37996] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(3224), 1, sym__line, - STATE(3804), 1, + STATE(3816), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -105353,7 +105581,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -105377,69 +105605,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38374] = 32, - ACTIONS(4302), 1, + [38122] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3190), 1, sym__line, - STATE(3805), 1, + STATE(3818), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -105447,7 +105675,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -105471,69 +105699,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38500] = 32, - ACTIONS(4916), 1, + [38248] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3142), 1, sym__line, - STATE(3807), 1, + STATE(3819), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -105541,7 +105769,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -105565,69 +105793,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38626] = 32, - ACTIONS(5128), 1, + [38374] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3184), 1, sym__line, - STATE(3808), 1, + STATE(3820), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -105635,7 +105863,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -105659,69 +105887,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38752] = 32, - ACTIONS(4852), 1, + [38500] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(3153), 1, sym__line, - STATE(3809), 1, + STATE(3821), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -105729,7 +105957,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -105753,69 +105981,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [38878] = 32, - ACTIONS(4452), 1, + [38626] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3167), 1, + STATE(2975), 1, sym__line, - STATE(3810), 1, + STATE(3007), 1, sym__inlines, - ACTIONS(4464), 2, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -105823,7 +106051,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -105847,69 +106075,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39004] = 32, - ACTIONS(3437), 1, + [38752] = 32, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(3034), 1, + STATE(3141), 1, sym__line, - STATE(3089), 1, + STATE(3889), 1, sym__inlines, - ACTIONS(3449), 2, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -105917,7 +106145,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -105941,69 +106169,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39130] = 32, - ACTIONS(4606), 1, + [38878] = 32, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3184), 1, + STATE(3193), 1, sym__line, - STATE(3878), 1, + STATE(3890), 1, sym__inlines, - ACTIONS(4618), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -106011,7 +106239,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -106035,69 +106263,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39256] = 32, - ACTIONS(4152), 1, + [39004] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3199), 1, + STATE(3224), 1, sym__line, - STATE(3879), 1, + STATE(3891), 1, sym__inlines, - ACTIONS(4164), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -106105,7 +106333,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -106129,69 +106357,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39382] = 32, - ACTIONS(4302), 1, + [39130] = 32, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3217), 1, + STATE(3190), 1, sym__line, - STATE(3880), 1, + STATE(3893), 1, sym__inlines, - ACTIONS(4314), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -106199,7 +106427,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -106223,69 +106451,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39508] = 32, - ACTIONS(4916), 1, + [39256] = 32, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3186), 1, + STATE(3142), 1, sym__line, - STATE(3882), 1, + STATE(3894), 1, sym__inlines, - ACTIONS(4928), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -106293,7 +106521,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -106317,69 +106545,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39634] = 32, - ACTIONS(5128), 1, + [39382] = 32, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - STATE(3210), 1, + STATE(3184), 1, sym__line, - STATE(3883), 1, + STATE(3895), 1, sym__inlines, - ACTIONS(5140), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -106387,7 +106615,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -106411,69 +106639,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39760] = 32, - ACTIONS(4852), 1, + [39508] = 32, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3213), 1, + STATE(3153), 1, sym__line, - STATE(4318), 1, + STATE(3896), 1, sym__inlines, - ACTIONS(4864), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -106481,7 +106709,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -106505,67 +106733,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [39886] = 31, - ACTIONS(4302), 1, + [39634] = 32, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3669), 1, + STATE(2975), 1, sym__line, - ACTIONS(4314), 2, + STATE(3012), 1, + sym__inlines, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5914), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -106573,7 +106803,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(667), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -106597,67 +106827,69 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40009] = 31, - ACTIONS(4976), 1, + [39760] = 32, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3544), 1, + STATE(3224), 1, sym__line, - ACTIONS(4988), 2, + STATE(4497), 1, + sym__inlines, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5622), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -106665,7 +106897,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(682), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -106689,67 +106921,67 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40132] = 31, - ACTIONS(4152), 1, + [39886] = 31, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - STATE(3642), 1, + STATE(3672), 1, sym__line, - ACTIONS(4164), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5922), 7, + ACTIONS(5982), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -106757,7 +106989,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(691), 23, + STATE(686), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -106781,67 +107013,67 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40255] = 31, - ACTIONS(5560), 1, + [40009] = 31, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - STATE(3600), 1, + STATE(3567), 1, sym__line, - ACTIONS(5572), 2, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5628), 7, + ACTIONS(5986), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -106849,7 +107081,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(695), 23, + STATE(684), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -106873,67 +107105,67 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40378] = 31, - ACTIONS(4606), 1, + [40132] = 31, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - STATE(3564), 1, + STATE(3497), 1, sym__line, - ACTIONS(4618), 2, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5916), 7, + ACTIONS(3503), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -106941,7 +107173,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(673), 23, + STATE(695), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -106965,67 +107197,67 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40501] = 31, - ACTIONS(7), 1, + [40255] = 31, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(9), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(11), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(13), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(15), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(65), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(67), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(69), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(71), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(73), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(75), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(77), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(79), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(81), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(83), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(85), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(89), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(91), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(93), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(95), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(97), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(99), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(101), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(103), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - STATE(3510), 1, + STATE(3548), 1, sym__line, - ACTIONS(19), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5), 7, + ACTIONS(5984), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -107033,7 +107265,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(653), 23, + STATE(698), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -107057,67 +107289,67 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40624] = 31, - ACTIONS(3437), 1, + [40378] = 31, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - STATE(3361), 1, + STATE(3309), 1, sym__line, - ACTIONS(3449), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3435), 7, + ACTIONS(2417), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -107125,7 +107357,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(676), 23, + STATE(644), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -107149,67 +107381,67 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40747] = 31, - ACTIONS(2555), 1, + [40501] = 31, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - STATE(3513), 1, + STATE(3652), 1, sym__line, - ACTIONS(2571), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(2553), 7, + ACTIONS(5988), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -107217,7 +107449,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 23, + STATE(682), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -107241,67 +107473,67 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40870] = 31, - ACTIONS(4916), 1, + [40624] = 31, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - STATE(3539), 1, + STATE(3640), 1, sym__line, - ACTIONS(4928), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5918), 7, + ACTIONS(5980), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -107309,7 +107541,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(681), 23, + STATE(692), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -107333,67 +107565,67 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [40993] = 31, - ACTIONS(4852), 1, + [40747] = 31, + ACTIONS(4466), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(4468), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4470), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4472), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4474), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(4482), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(4484), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(4486), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(4488), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(4490), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(4492), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(4494), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(4496), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(4498), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(4504), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(4506), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(4508), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(4510), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(4512), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(4514), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(4520), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - STATE(3545), 1, + STATE(3598), 1, sym__line, - ACTIONS(4864), 2, + ACTIONS(4478), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5910), 7, + ACTIONS(5690), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -107401,7 +107633,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(678), 23, + STATE(674), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -107425,67 +107657,67 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41116] = 31, - ACTIONS(5128), 1, + [40870] = 31, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - STATE(3565), 1, + STATE(3634), 1, sym__line, - ACTIONS(5140), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5920), 7, + ACTIONS(3085), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -107493,7 +107725,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(685), 23, + STATE(673), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -107517,67 +107749,67 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41239] = 31, - ACTIONS(4452), 1, + [40993] = 31, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - STATE(3530), 1, + STATE(3671), 1, sym__line, - ACTIONS(4464), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5912), 7, + ACTIONS(5694), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -107585,7 +107817,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(669), 23, + STATE(683), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -107609,67 +107841,67 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41362] = 31, - ACTIONS(3025), 1, + [41116] = 31, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - STATE(3528), 1, + STATE(3645), 1, sym__line, - ACTIONS(3039), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(3023), 7, + ACTIONS(5978), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -107677,7 +107909,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(688), 23, + STATE(689), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -107701,7 +107933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41485] = 30, + [41239] = 31, ACTIONS(7), 1, anon_sym_LBRACK, ACTIONS(9), 1, @@ -107756,10 +107988,12 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_star, ACTIONS(105), 1, sym__emphasis_open_underscore, + STATE(3363), 1, + sym__line, ACTIONS(19), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5924), 7, + ACTIONS(5), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -107767,7 +108001,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1181), 23, + STATE(641), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -107791,65 +108025,67 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41605] = 30, - ACTIONS(3025), 1, + [41362] = 31, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(3029), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(3031), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3035), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(3045), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(3047), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(3049), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(3051), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(3053), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(3055), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(3057), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(3059), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(3061), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(3063), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3065), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3067), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(3069), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(3071), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(3073), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(3075), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(3077), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(3079), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(3081), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3083), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(3085), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - ACTIONS(3039), 2, + STATE(3646), 1, + sym__line, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5926), 7, + ACTIONS(5990), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -107857,7 +108093,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1743), 23, + STATE(675), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -107881,65 +108117,65 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41725] = 30, - ACTIONS(4606), 1, + [41485] = 30, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(3507), 1, anon_sym_BANG_LBRACK, - ACTIONS(4610), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(4612), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4614), 1, + ACTIONS(3513), 1, anon_sym_LBRACE, - ACTIONS(4616), 1, + ACTIONS(3515), 1, aux_sym_pandoc_str_token1, - ACTIONS(4622), 1, + ACTIONS(3521), 1, sym__code_span_start, - ACTIONS(4624), 1, + ACTIONS(3523), 1, sym__highlight_span_start, - ACTIONS(4626), 1, + ACTIONS(3525), 1, sym__insert_span_start, - ACTIONS(4628), 1, + ACTIONS(3527), 1, sym__delete_span_start, - ACTIONS(4630), 1, + ACTIONS(3529), 1, sym__edit_comment_span_start, - ACTIONS(4632), 1, + ACTIONS(3531), 1, sym__single_quote_span_open, - ACTIONS(4634), 1, + ACTIONS(3533), 1, sym__double_quote_span_open, - ACTIONS(4636), 1, + ACTIONS(3535), 1, sym__shortcode_open_escaped, - ACTIONS(4638), 1, + ACTIONS(3537), 1, sym__shortcode_open, - ACTIONS(4640), 1, + ACTIONS(3539), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4642), 1, + ACTIONS(3541), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4644), 1, + ACTIONS(3543), 1, sym__cite_author_in_text, - ACTIONS(4646), 1, + ACTIONS(3545), 1, sym__cite_suppress_author, - ACTIONS(4648), 1, + ACTIONS(3547), 1, sym__strikeout_open, - ACTIONS(4650), 1, + ACTIONS(3549), 1, sym__subscript_open, - ACTIONS(4652), 1, + ACTIONS(3551), 1, sym__superscript_open, - ACTIONS(4654), 1, + ACTIONS(3553), 1, sym__inline_note_start_token, - ACTIONS(4656), 1, + ACTIONS(3555), 1, sym__strong_emphasis_open_star, - ACTIONS(4658), 1, + ACTIONS(3557), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4660), 1, + ACTIONS(3559), 1, sym__emphasis_open_star, - ACTIONS(4662), 1, + ACTIONS(3561), 1, sym__emphasis_open_underscore, - ACTIONS(4618), 2, + ACTIONS(3517), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5928), 7, + ACTIONS(5992), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -107947,7 +108183,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2306), 23, + STATE(1672), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -107971,65 +108207,65 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41845] = 30, - ACTIONS(4976), 1, + [41605] = 30, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, + ACTIONS(4528), 1, anon_sym_BANG_LBRACK, - ACTIONS(4980), 1, + ACTIONS(4530), 1, anon_sym_DOLLAR, - ACTIONS(4982), 1, + ACTIONS(4532), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(4534), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(4536), 1, aux_sym_pandoc_str_token1, - ACTIONS(4992), 1, + ACTIONS(4542), 1, sym__code_span_start, - ACTIONS(4994), 1, + ACTIONS(4544), 1, sym__highlight_span_start, - ACTIONS(4996), 1, + ACTIONS(4546), 1, sym__insert_span_start, - ACTIONS(4998), 1, + ACTIONS(4548), 1, sym__delete_span_start, - ACTIONS(5000), 1, + ACTIONS(4550), 1, sym__edit_comment_span_start, - ACTIONS(5002), 1, + ACTIONS(4552), 1, sym__single_quote_span_open, - ACTIONS(5004), 1, + ACTIONS(4554), 1, sym__double_quote_span_open, - ACTIONS(5006), 1, + ACTIONS(4556), 1, sym__shortcode_open_escaped, - ACTIONS(5008), 1, + ACTIONS(4558), 1, sym__shortcode_open, - ACTIONS(5010), 1, + ACTIONS(4560), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5012), 1, + ACTIONS(4562), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5014), 1, + ACTIONS(4564), 1, sym__cite_author_in_text, - ACTIONS(5016), 1, + ACTIONS(4566), 1, sym__cite_suppress_author, - ACTIONS(5018), 1, + ACTIONS(4568), 1, sym__strikeout_open, - ACTIONS(5020), 1, + ACTIONS(4570), 1, sym__subscript_open, - ACTIONS(5022), 1, + ACTIONS(4572), 1, sym__superscript_open, - ACTIONS(5024), 1, + ACTIONS(4574), 1, sym__inline_note_start_token, - ACTIONS(5026), 1, + ACTIONS(4576), 1, sym__strong_emphasis_open_star, - ACTIONS(5028), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5030), 1, + ACTIONS(4580), 1, sym__emphasis_open_star, - ACTIONS(5032), 1, + ACTIONS(4582), 1, sym__emphasis_open_underscore, - ACTIONS(4988), 2, + ACTIONS(4538), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5930), 7, + ACTIONS(5994), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -108037,7 +108273,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2166), 23, + STATE(1911), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -108061,65 +108297,65 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [41965] = 30, - ACTIONS(4152), 1, + [41725] = 30, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(4154), 1, + ACTIONS(2423), 1, anon_sym_BANG_LBRACK, - ACTIONS(4156), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR, - ACTIONS(4158), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4160), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(2433), 1, aux_sym_pandoc_str_token1, - ACTIONS(4168), 1, + ACTIONS(2441), 1, sym__code_span_start, - ACTIONS(4170), 1, + ACTIONS(2443), 1, sym__highlight_span_start, - ACTIONS(4172), 1, + ACTIONS(2445), 1, sym__insert_span_start, - ACTIONS(4174), 1, + ACTIONS(2447), 1, sym__delete_span_start, - ACTIONS(4176), 1, + ACTIONS(2449), 1, sym__edit_comment_span_start, - ACTIONS(4178), 1, + ACTIONS(2451), 1, sym__single_quote_span_open, - ACTIONS(4180), 1, + ACTIONS(2453), 1, sym__double_quote_span_open, - ACTIONS(4182), 1, + ACTIONS(2455), 1, sym__shortcode_open_escaped, - ACTIONS(4184), 1, + ACTIONS(2457), 1, sym__shortcode_open, - ACTIONS(4186), 1, + ACTIONS(2459), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4188), 1, + ACTIONS(2461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4190), 1, + ACTIONS(2463), 1, sym__cite_author_in_text, - ACTIONS(4192), 1, + ACTIONS(2465), 1, sym__cite_suppress_author, - ACTIONS(4194), 1, + ACTIONS(2467), 1, sym__strikeout_open, - ACTIONS(4196), 1, + ACTIONS(2469), 1, sym__subscript_open, - ACTIONS(4198), 1, + ACTIONS(2471), 1, sym__superscript_open, - ACTIONS(4200), 1, + ACTIONS(2473), 1, sym__inline_note_start_token, - ACTIONS(4202), 1, + ACTIONS(2475), 1, sym__strong_emphasis_open_star, - ACTIONS(4204), 1, + ACTIONS(2477), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4206), 1, + ACTIONS(2479), 1, sym__emphasis_open_star, - ACTIONS(4208), 1, + ACTIONS(2481), 1, sym__emphasis_open_underscore, - ACTIONS(4164), 2, + ACTIONS(2435), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5932), 7, + ACTIONS(5996), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -108127,7 +108363,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2381), 23, + STATE(1492), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -108151,65 +108387,65 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42085] = 30, - ACTIONS(5560), 1, + [41845] = 30, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(5562), 1, + ACTIONS(4102), 1, anon_sym_BANG_LBRACK, - ACTIONS(5564), 1, + ACTIONS(4104), 1, anon_sym_DOLLAR, - ACTIONS(5566), 1, + ACTIONS(4106), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(4110), 1, aux_sym_pandoc_str_token1, - ACTIONS(5576), 1, + ACTIONS(4116), 1, sym__code_span_start, - ACTIONS(5578), 1, + ACTIONS(4118), 1, sym__highlight_span_start, - ACTIONS(5580), 1, + ACTIONS(4120), 1, sym__insert_span_start, - ACTIONS(5582), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(5584), 1, + ACTIONS(4124), 1, sym__edit_comment_span_start, - ACTIONS(5586), 1, + ACTIONS(4126), 1, sym__single_quote_span_open, - ACTIONS(5588), 1, + ACTIONS(4128), 1, sym__double_quote_span_open, - ACTIONS(5590), 1, + ACTIONS(4130), 1, sym__shortcode_open_escaped, - ACTIONS(5592), 1, + ACTIONS(4132), 1, sym__shortcode_open, - ACTIONS(5594), 1, + ACTIONS(4134), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5596), 1, + ACTIONS(4136), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5598), 1, + ACTIONS(4138), 1, sym__cite_author_in_text, - ACTIONS(5600), 1, + ACTIONS(4140), 1, sym__cite_suppress_author, - ACTIONS(5602), 1, + ACTIONS(4142), 1, sym__strikeout_open, - ACTIONS(5604), 1, + ACTIONS(4144), 1, sym__subscript_open, - ACTIONS(5606), 1, + ACTIONS(4146), 1, sym__superscript_open, - ACTIONS(5608), 1, + ACTIONS(4148), 1, sym__inline_note_start_token, - ACTIONS(5610), 1, + ACTIONS(4150), 1, sym__strong_emphasis_open_star, - ACTIONS(5612), 1, + ACTIONS(4152), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5614), 1, + ACTIONS(4154), 1, sym__emphasis_open_star, - ACTIONS(5616), 1, + ACTIONS(4156), 1, sym__emphasis_open_underscore, - ACTIONS(5572), 2, + ACTIONS(4112), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5934), 7, + ACTIONS(5998), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -108217,7 +108453,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2236), 23, + STATE(1987), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -108241,65 +108477,65 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42205] = 30, - ACTIONS(4302), 1, + [41965] = 30, + ACTIONS(4040), 1, anon_sym_LBRACK, - ACTIONS(4304), 1, + ACTIONS(4042), 1, anon_sym_BANG_LBRACK, - ACTIONS(4306), 1, + ACTIONS(4044), 1, anon_sym_DOLLAR, - ACTIONS(4308), 1, + ACTIONS(4046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4310), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(4050), 1, aux_sym_pandoc_str_token1, - ACTIONS(4318), 1, + ACTIONS(4056), 1, sym__code_span_start, - ACTIONS(4320), 1, + ACTIONS(4058), 1, sym__highlight_span_start, - ACTIONS(4322), 1, + ACTIONS(4060), 1, sym__insert_span_start, - ACTIONS(4324), 1, + ACTIONS(4062), 1, sym__delete_span_start, - ACTIONS(4326), 1, + ACTIONS(4064), 1, sym__edit_comment_span_start, - ACTIONS(4328), 1, + ACTIONS(4066), 1, sym__single_quote_span_open, - ACTIONS(4330), 1, + ACTIONS(4068), 1, sym__double_quote_span_open, - ACTIONS(4332), 1, + ACTIONS(4070), 1, sym__shortcode_open_escaped, - ACTIONS(4334), 1, + ACTIONS(4072), 1, sym__shortcode_open, - ACTIONS(4336), 1, + ACTIONS(4074), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4338), 1, + ACTIONS(4076), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4340), 1, + ACTIONS(4078), 1, sym__cite_author_in_text, - ACTIONS(4342), 1, + ACTIONS(4080), 1, sym__cite_suppress_author, - ACTIONS(4344), 1, + ACTIONS(4082), 1, sym__strikeout_open, - ACTIONS(4346), 1, + ACTIONS(4084), 1, sym__subscript_open, - ACTIONS(4348), 1, + ACTIONS(4086), 1, sym__superscript_open, - ACTIONS(4350), 1, + ACTIONS(4088), 1, sym__inline_note_start_token, - ACTIONS(4352), 1, + ACTIONS(4090), 1, sym__strong_emphasis_open_star, - ACTIONS(4354), 1, + ACTIONS(4092), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4356), 1, + ACTIONS(4094), 1, sym__emphasis_open_star, - ACTIONS(4358), 1, + ACTIONS(4096), 1, sym__emphasis_open_underscore, - ACTIONS(4314), 2, + ACTIONS(4052), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5936), 7, + ACTIONS(6000), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -108307,7 +108543,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1586), 23, + STATE(1595), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -108331,65 +108567,65 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42325] = 30, - ACTIONS(5128), 1, + [42085] = 30, + ACTIONS(5540), 1, anon_sym_LBRACK, - ACTIONS(5130), 1, + ACTIONS(5542), 1, anon_sym_BANG_LBRACK, - ACTIONS(5132), 1, + ACTIONS(5544), 1, anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(5546), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5136), 1, + ACTIONS(5548), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5550), 1, aux_sym_pandoc_str_token1, - ACTIONS(5144), 1, + ACTIONS(5556), 1, sym__code_span_start, - ACTIONS(5146), 1, + ACTIONS(5558), 1, sym__highlight_span_start, - ACTIONS(5148), 1, + ACTIONS(5560), 1, sym__insert_span_start, - ACTIONS(5150), 1, + ACTIONS(5562), 1, sym__delete_span_start, - ACTIONS(5152), 1, + ACTIONS(5564), 1, sym__edit_comment_span_start, - ACTIONS(5154), 1, + ACTIONS(5566), 1, sym__single_quote_span_open, - ACTIONS(5156), 1, + ACTIONS(5568), 1, sym__double_quote_span_open, - ACTIONS(5158), 1, + ACTIONS(5570), 1, sym__shortcode_open_escaped, - ACTIONS(5160), 1, + ACTIONS(5572), 1, sym__shortcode_open, - ACTIONS(5162), 1, + ACTIONS(5574), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5164), 1, + ACTIONS(5576), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5166), 1, + ACTIONS(5578), 1, sym__cite_author_in_text, - ACTIONS(5168), 1, + ACTIONS(5580), 1, sym__cite_suppress_author, - ACTIONS(5170), 1, + ACTIONS(5582), 1, sym__strikeout_open, - ACTIONS(5172), 1, + ACTIONS(5584), 1, sym__subscript_open, - ACTIONS(5174), 1, + ACTIONS(5586), 1, sym__superscript_open, - ACTIONS(5176), 1, + ACTIONS(5588), 1, sym__inline_note_start_token, - ACTIONS(5178), 1, + ACTIONS(5590), 1, sym__strong_emphasis_open_star, - ACTIONS(5180), 1, + ACTIONS(5592), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5182), 1, + ACTIONS(5594), 1, sym__emphasis_open_star, - ACTIONS(5184), 1, + ACTIONS(5596), 1, sym__emphasis_open_underscore, - ACTIONS(5140), 2, + ACTIONS(5552), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5938), 7, + ACTIONS(6002), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -108397,7 +108633,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1818), 23, + STATE(1756), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -108421,65 +108657,65 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42445] = 30, - ACTIONS(4916), 1, + [42205] = 30, + ACTIONS(4310), 1, anon_sym_LBRACK, - ACTIONS(4918), 1, + ACTIONS(4312), 1, anon_sym_BANG_LBRACK, - ACTIONS(4920), 1, + ACTIONS(4314), 1, anon_sym_DOLLAR, - ACTIONS(4922), 1, + ACTIONS(4316), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(4318), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4320), 1, aux_sym_pandoc_str_token1, - ACTIONS(4932), 1, + ACTIONS(4326), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4328), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4330), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4332), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4334), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4336), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4338), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4340), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4342), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4344), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4346), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4348), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4350), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4352), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4354), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4356), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4358), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4360), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4362), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4364), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4366), 1, sym__emphasis_open_underscore, - ACTIONS(4928), 2, + ACTIONS(4322), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5940), 7, + ACTIONS(6004), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -108487,7 +108723,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1748), 23, + STATE(1827), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -108511,65 +108747,65 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42565] = 30, - ACTIONS(4452), 1, + [42325] = 30, + ACTIONS(4250), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4252), 1, anon_sym_BANG_LBRACK, - ACTIONS(4456), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(4458), 1, + ACTIONS(4256), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4460), 1, + ACTIONS(4258), 1, anon_sym_LBRACE, - ACTIONS(4462), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(4468), 1, + ACTIONS(4266), 1, sym__code_span_start, - ACTIONS(4470), 1, + ACTIONS(4268), 1, sym__highlight_span_start, - ACTIONS(4472), 1, + ACTIONS(4270), 1, sym__insert_span_start, - ACTIONS(4474), 1, + ACTIONS(4272), 1, sym__delete_span_start, - ACTIONS(4476), 1, + ACTIONS(4274), 1, sym__edit_comment_span_start, - ACTIONS(4478), 1, + ACTIONS(4276), 1, sym__single_quote_span_open, - ACTIONS(4480), 1, + ACTIONS(4278), 1, sym__double_quote_span_open, - ACTIONS(4482), 1, + ACTIONS(4280), 1, sym__shortcode_open_escaped, - ACTIONS(4484), 1, + ACTIONS(4282), 1, sym__shortcode_open, - ACTIONS(4486), 1, + ACTIONS(4284), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4488), 1, + ACTIONS(4286), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4490), 1, + ACTIONS(4288), 1, sym__cite_author_in_text, - ACTIONS(4492), 1, + ACTIONS(4290), 1, sym__cite_suppress_author, - ACTIONS(4494), 1, + ACTIONS(4292), 1, sym__strikeout_open, - ACTIONS(4496), 1, + ACTIONS(4294), 1, sym__subscript_open, - ACTIONS(4498), 1, + ACTIONS(4296), 1, sym__superscript_open, - ACTIONS(4500), 1, + ACTIONS(4298), 1, sym__inline_note_start_token, - ACTIONS(4502), 1, + ACTIONS(4300), 1, sym__strong_emphasis_open_star, - ACTIONS(4504), 1, + ACTIONS(4302), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4506), 1, + ACTIONS(4304), 1, sym__emphasis_open_star, - ACTIONS(4508), 1, + ACTIONS(4306), 1, sym__emphasis_open_underscore, - ACTIONS(4464), 2, + ACTIONS(4262), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5942), 7, + ACTIONS(6006), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -108577,7 +108813,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1978), 23, + STATE(2175), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -108601,65 +108837,65 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42685] = 30, - ACTIONS(3437), 1, + [42445] = 30, + ACTIONS(4866), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4868), 1, anon_sym_BANG_LBRACK, - ACTIONS(3441), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(3443), 1, + ACTIONS(4872), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3445), 1, + ACTIONS(4874), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(4876), 1, aux_sym_pandoc_str_token1, - ACTIONS(3453), 1, + ACTIONS(4882), 1, sym__code_span_start, - ACTIONS(3455), 1, + ACTIONS(4884), 1, sym__highlight_span_start, - ACTIONS(3457), 1, + ACTIONS(4886), 1, sym__insert_span_start, - ACTIONS(3459), 1, + ACTIONS(4888), 1, sym__delete_span_start, - ACTIONS(3461), 1, + ACTIONS(4890), 1, sym__edit_comment_span_start, - ACTIONS(3463), 1, + ACTIONS(4892), 1, sym__single_quote_span_open, - ACTIONS(3465), 1, + ACTIONS(4894), 1, sym__double_quote_span_open, - ACTIONS(3467), 1, + ACTIONS(4896), 1, sym__shortcode_open_escaped, - ACTIONS(3469), 1, + ACTIONS(4898), 1, sym__shortcode_open, - ACTIONS(3471), 1, + ACTIONS(4900), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3473), 1, + ACTIONS(4902), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3475), 1, + ACTIONS(4904), 1, sym__cite_author_in_text, - ACTIONS(3477), 1, + ACTIONS(4906), 1, sym__cite_suppress_author, - ACTIONS(3479), 1, + ACTIONS(4908), 1, sym__strikeout_open, - ACTIONS(3481), 1, + ACTIONS(4910), 1, sym__subscript_open, - ACTIONS(3483), 1, + ACTIONS(4912), 1, sym__superscript_open, - ACTIONS(3485), 1, + ACTIONS(4914), 1, sym__inline_note_start_token, - ACTIONS(3487), 1, + ACTIONS(4916), 1, sym__strong_emphasis_open_star, - ACTIONS(3489), 1, + ACTIONS(4918), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3491), 1, + ACTIONS(4920), 1, sym__emphasis_open_star, - ACTIONS(3493), 1, + ACTIONS(4922), 1, sym__emphasis_open_underscore, - ACTIONS(3449), 2, + ACTIONS(4878), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5944), 7, + ACTIONS(6008), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -108667,7 +108903,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1665), 23, + STATE(2315), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -108691,65 +108927,65 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42805] = 30, - ACTIONS(4852), 1, + [42565] = 30, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4854), 1, + ACTIONS(5112), 1, anon_sym_BANG_LBRACK, - ACTIONS(4856), 1, + ACTIONS(5114), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(5116), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(5120), 1, aux_sym_pandoc_str_token1, - ACTIONS(4868), 1, + ACTIONS(5126), 1, sym__code_span_start, - ACTIONS(4870), 1, + ACTIONS(5128), 1, sym__highlight_span_start, - ACTIONS(4872), 1, + ACTIONS(5130), 1, sym__insert_span_start, - ACTIONS(4874), 1, + ACTIONS(5132), 1, sym__delete_span_start, - ACTIONS(4876), 1, + ACTIONS(5134), 1, sym__edit_comment_span_start, - ACTIONS(4878), 1, + ACTIONS(5136), 1, sym__single_quote_span_open, - ACTIONS(4880), 1, + ACTIONS(5138), 1, sym__double_quote_span_open, - ACTIONS(4882), 1, + ACTIONS(5140), 1, sym__shortcode_open_escaped, - ACTIONS(4884), 1, + ACTIONS(5142), 1, sym__shortcode_open, - ACTIONS(4886), 1, + ACTIONS(5144), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(5146), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4890), 1, + ACTIONS(5148), 1, sym__cite_author_in_text, - ACTIONS(4892), 1, + ACTIONS(5150), 1, sym__cite_suppress_author, - ACTIONS(4894), 1, + ACTIONS(5152), 1, sym__strikeout_open, - ACTIONS(4896), 1, + ACTIONS(5154), 1, sym__subscript_open, - ACTIONS(4898), 1, + ACTIONS(5156), 1, sym__superscript_open, - ACTIONS(4900), 1, + ACTIONS(5158), 1, sym__inline_note_start_token, - ACTIONS(4902), 1, + ACTIONS(5160), 1, sym__strong_emphasis_open_star, - ACTIONS(4904), 1, + ACTIONS(5162), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4906), 1, + ACTIONS(5164), 1, sym__emphasis_open_star, - ACTIONS(4908), 1, + ACTIONS(5166), 1, sym__emphasis_open_underscore, - ACTIONS(4864), 2, + ACTIONS(5122), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5946), 7, + ACTIONS(6010), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -108757,7 +108993,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1904), 23, + STATE(2390), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -108781,65 +109017,65 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [42925] = 30, - ACTIONS(2555), 1, + [42685] = 30, + ACTIONS(3087), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(3089), 1, anon_sym_BANG_LBRACK, - ACTIONS(2563), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR, - ACTIONS(2565), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2567), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(3099), 1, aux_sym_pandoc_str_token1, - ACTIONS(2577), 1, + ACTIONS(3107), 1, sym__code_span_start, - ACTIONS(2579), 1, + ACTIONS(3109), 1, sym__highlight_span_start, - ACTIONS(2581), 1, + ACTIONS(3111), 1, sym__insert_span_start, - ACTIONS(2583), 1, + ACTIONS(3113), 1, sym__delete_span_start, - ACTIONS(2585), 1, + ACTIONS(3115), 1, sym__edit_comment_span_start, - ACTIONS(2587), 1, + ACTIONS(3117), 1, sym__single_quote_span_open, - ACTIONS(2589), 1, + ACTIONS(3119), 1, sym__double_quote_span_open, - ACTIONS(2591), 1, + ACTIONS(3121), 1, sym__shortcode_open_escaped, - ACTIONS(2593), 1, + ACTIONS(3123), 1, sym__shortcode_open, - ACTIONS(2595), 1, + ACTIONS(3125), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2597), 1, + ACTIONS(3127), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2599), 1, + ACTIONS(3129), 1, sym__cite_author_in_text, - ACTIONS(2601), 1, + ACTIONS(3131), 1, sym__cite_suppress_author, - ACTIONS(2603), 1, + ACTIONS(3133), 1, sym__strikeout_open, - ACTIONS(2605), 1, + ACTIONS(3135), 1, sym__subscript_open, - ACTIONS(2607), 1, + ACTIONS(3137), 1, sym__superscript_open, - ACTIONS(2609), 1, + ACTIONS(3139), 1, sym__inline_note_start_token, - ACTIONS(2611), 1, + ACTIONS(3141), 1, sym__strong_emphasis_open_star, - ACTIONS(2613), 1, + ACTIONS(3143), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2615), 1, + ACTIONS(3145), 1, sym__emphasis_open_star, - ACTIONS(2617), 1, + ACTIONS(3147), 1, sym__emphasis_open_underscore, - ACTIONS(2571), 2, + ACTIONS(3101), 2, sym__pandoc_lt_str, anon_sym_PIPE, - ACTIONS(5948), 7, + ACTIONS(6012), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -108847,7 +109083,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1478), 23, + STATE(1762), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -108871,202 +109107,193 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - [43045] = 3, - ACTIONS(5954), 1, - sym_block_continuation, - ACTIONS(5952), 2, + [42805] = 30, + ACTIONS(4466), 1, + anon_sym_LBRACK, + ACTIONS(4468), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4470), 1, anon_sym_DOLLAR, + ACTIONS(4472), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4474), 1, + anon_sym_LBRACE, + ACTIONS(4476), 1, aux_sym_pandoc_str_token1, - ACTIONS(5950), 40, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4482), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4484), 1, sym__highlight_span_start, + ACTIONS(4486), 1, sym__insert_span_start, + ACTIONS(4488), 1, sym__delete_span_start, + ACTIONS(4490), 1, sym__edit_comment_span_start, + ACTIONS(4492), 1, sym__single_quote_span_open, + ACTIONS(4494), 1, sym__double_quote_span_open, + ACTIONS(4496), 1, sym__shortcode_open_escaped, + ACTIONS(4498), 1, sym__shortcode_open, + ACTIONS(4500), 1, sym__cite_author_in_text_with_open_bracket, + ACTIONS(4502), 1, sym__cite_suppress_author_with_open_bracket, + ACTIONS(4504), 1, sym__cite_author_in_text, + ACTIONS(4506), 1, sym__cite_suppress_author, + ACTIONS(4508), 1, sym__strikeout_open, + ACTIONS(4510), 1, sym__subscript_open, + ACTIONS(4512), 1, sym__superscript_open, + ACTIONS(4514), 1, sym__inline_note_start_token, + ACTIONS(4516), 1, sym__strong_emphasis_open_star, + ACTIONS(4518), 1, sym__strong_emphasis_open_underscore, + ACTIONS(4520), 1, sym__emphasis_open_star, + ACTIONS(4522), 1, sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, + ACTIONS(4478), 2, sym__pandoc_lt_str, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym__caption_start, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [43095] = 4, - ACTIONS(2149), 1, - anon_sym_LBRACE, - STATE(1029), 1, - sym__pandoc_attr_specifier, - ACTIONS(5958), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(5956), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__code_span_start, + ACTIONS(6014), 7, 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_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, + STATE(2245), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [42925] = 30, + ACTIONS(7), 1, anon_sym_LBRACK, + ACTIONS(9), 1, anon_sym_BANG_LBRACK, + ACTIONS(11), 1, + anon_sym_DOLLAR, + ACTIONS(13), 1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [43146] = 4, - ACTIONS(2149), 1, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(996), 1, - sym__pandoc_attr_specifier, - ACTIONS(5962), 2, - anon_sym_DOLLAR, + ACTIONS(17), 1, aux_sym_pandoc_str_token1, - ACTIONS(5960), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(65), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(67), 1, sym__highlight_span_start, + ACTIONS(69), 1, sym__insert_span_start, + ACTIONS(71), 1, sym__delete_span_start, + ACTIONS(73), 1, sym__edit_comment_span_start, + ACTIONS(75), 1, sym__single_quote_span_open, + ACTIONS(77), 1, sym__double_quote_span_open, + ACTIONS(79), 1, sym__shortcode_open_escaped, + ACTIONS(81), 1, sym__shortcode_open, + ACTIONS(83), 1, sym__cite_author_in_text_with_open_bracket, + ACTIONS(85), 1, sym__cite_suppress_author_with_open_bracket, + ACTIONS(87), 1, sym__cite_author_in_text, + ACTIONS(89), 1, sym__cite_suppress_author, + ACTIONS(91), 1, sym__strikeout_open, + ACTIONS(93), 1, sym__subscript_open, + ACTIONS(95), 1, sym__superscript_open, + ACTIONS(97), 1, sym__inline_note_start_token, + ACTIONS(99), 1, sym__strong_emphasis_open_star, + ACTIONS(101), 1, sym__strong_emphasis_open_underscore, + ACTIONS(103), 1, sym__emphasis_open_star, + ACTIONS(105), 1, sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, + ACTIONS(19), 2, sym__pandoc_lt_str, - sym__pipe_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, - [43197] = 3, - ACTIONS(5964), 1, - sym_block_continuation, - ACTIONS(5952), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(5950), 39, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__code_span_start, + ACTIONS(6016), 7, 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_lt_str, - sym__pipe_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, - [43246] = 4, - ACTIONS(5970), 1, - anon_sym_LBRACE, - STATE(1016), 1, - sym_attribute_specifier, - ACTIONS(5968), 2, + STATE(1199), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [43045] = 3, + ACTIONS(6022), 1, + sym_block_continuation, + ACTIONS(6020), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5966), 38, + ACTIONS(6018), 40, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109098,22 +109325,24 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_lt_str, sym__pipe_table_delimiter, sym__pandoc_line_break, + sym__caption_start, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [43297] = 4, - ACTIONS(2149), 1, + [43095] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1017), 1, + STATE(1016), 1, sym__pandoc_attr_specifier, - ACTIONS(5974), 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5972), 38, + ACTIONS(6024), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109152,15 +109381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43348] = 4, - ACTIONS(2149), 1, + [43146] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1018), 1, + STATE(999), 1, sym__pandoc_attr_specifier, - ACTIONS(5978), 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5976), 38, + ACTIONS(6028), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109199,15 +109428,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43399] = 4, - ACTIONS(2149), 1, + [43197] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1011), 1, + STATE(1026), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5980), 38, + ACTIONS(6032), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109246,15 +109475,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43450] = 4, - ACTIONS(2149), 1, + [43248] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(997), 1, + STATE(1027), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5984), 38, + ACTIONS(6036), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109293,15 +109522,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43501] = 4, - ACTIONS(2149), 1, + [43299] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1019), 1, + STATE(1031), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5988), 38, + ACTIONS(6040), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109340,15 +109569,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43552] = 4, - ACTIONS(2149), 1, + [43350] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1020), 1, + STATE(1032), 1, sym__pandoc_attr_specifier, - ACTIONS(5994), 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 38, + ACTIONS(6044), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109387,11 +109616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43603] = 2, - ACTIONS(5998), 2, + [43401] = 4, + ACTIONS(2150), 1, + anon_sym_LBRACE, + STATE(1022), 1, + sym__pandoc_attr_specifier, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5996), 40, + ACTIONS(6048), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109423,24 +109656,22 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_lt_str, sym__pipe_table_delimiter, sym__pandoc_line_break, - sym__caption_start, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [43650] = 4, - ACTIONS(2149), 1, + [43452] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1013), 1, + STATE(1036), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6000), 38, + ACTIONS(6052), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109479,15 +109710,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43701] = 4, - ACTIONS(2149), 1, + [43503] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1022), 1, + STATE(1002), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 2, + ACTIONS(6058), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6056), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__code_span_start, + 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_lt_str, + sym__pipe_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, + [43554] = 4, + ACTIONS(6064), 1, + anon_sym_LBRACE, + STATE(1019), 1, + sym_attribute_specifier, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6004), 38, + ACTIONS(6060), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109526,15 +109804,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43752] = 4, - ACTIONS(2149), 1, + [43605] = 3, + ACTIONS(6066), 1, + sym_block_continuation, + ACTIONS(6020), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6018), 39, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_lt_str, + sym__pipe_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, + [43654] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, STATE(1023), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 2, + ACTIONS(6070), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6068), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__code_span_start, + 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_lt_str, + sym__pipe_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, + [43705] = 4, + ACTIONS(2150), 1, + anon_sym_LBRACE, + STATE(1025), 1, + sym__pandoc_attr_specifier, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6008), 38, + ACTIONS(6072), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109573,15 +109944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43803] = 4, - ACTIONS(2149), 1, + [43756] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, STATE(1024), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6012), 38, + ACTIONS(6076), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109620,15 +109991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43854] = 4, - ACTIONS(2149), 1, + [43807] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1025), 1, + STATE(1044), 1, sym__pandoc_attr_specifier, - ACTIONS(6018), 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6016), 38, + ACTIONS(6080), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109667,15 +110038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43905] = 4, - ACTIONS(2149), 1, + [43858] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1030), 1, + STATE(1045), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 38, + ACTIONS(6084), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109714,15 +110085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43956] = 4, - ACTIONS(2149), 1, + [43909] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1031), 1, + STATE(1034), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6024), 38, + ACTIONS(6088), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109761,15 +110132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [44007] = 4, - ACTIONS(2149), 1, + [43960] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1032), 1, + STATE(1001), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 38, + ACTIONS(6092), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109808,15 +110179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [44058] = 4, - ACTIONS(2149), 1, + [44011] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1034), 1, + STATE(1038), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6032), 38, + ACTIONS(6096), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109855,15 +110226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [44109] = 4, - ACTIONS(2149), 1, + [44062] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1035), 1, + STATE(1039), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6036), 38, + ACTIONS(6100), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109902,15 +110273,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [44160] = 4, - ACTIONS(2149), 1, + [44113] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1036), 1, + STATE(1014), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6040), 38, + ACTIONS(6104), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109949,15 +110320,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [44211] = 4, - ACTIONS(2149), 1, + [44164] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, STATE(1037), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6044), 38, + ACTIONS(6108), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -109996,15 +110367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [44262] = 4, - ACTIONS(2149), 1, + [44215] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1042), 1, + STATE(1033), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6048), 38, + ACTIONS(6112), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110043,15 +110414,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [44313] = 4, - ACTIONS(2149), 1, + [44266] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(1043), 1, + STATE(1020), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6052), 38, + ACTIONS(6116), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110090,15 +110461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [44364] = 4, - ACTIONS(2149), 1, + [44317] = 4, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(998), 1, + STATE(1021), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6056), 38, + ACTIONS(6120), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110137,15 +110508,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, + [44368] = 2, + ACTIONS(6126), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6124), 40, + 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_lt_str, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym__caption_start, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + anon_sym_PIPE, + sym__whitespace, [44415] = 4, - ACTIONS(2149), 1, + ACTIONS(2150), 1, anon_sym_LBRACE, - STATE(999), 1, + STATE(1003), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6060), 38, + ACTIONS(6128), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110184,18 +110600,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [44466] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(1260), 1, - sym__pandoc_attr_specifier, - ACTIONS(5990), 2, + [44466] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5988), 37, + ACTIONS(6132), 39, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -110222,25 +110634,27 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, - [44516] = 4, - ACTIONS(2567), 1, + [44512] = 4, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1121), 1, + STATE(1125), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 4, + ACTIONS(6098), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6040), 35, + ACTIONS(6096), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110276,17 +110690,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [44566] = 4, - ACTIONS(2567), 1, + [44562] = 4, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1122), 1, + STATE(1126), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 4, + ACTIONS(6102), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6044), 35, + ACTIONS(6100), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110322,17 +110736,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [44616] = 4, - ACTIONS(2567), 1, + [44612] = 4, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1131), 1, + STATE(1138), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 4, + ACTIONS(6082), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6048), 35, + ACTIONS(6080), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110368,17 +110782,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [44666] = 4, - ACTIONS(2567), 1, + [44662] = 4, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1152), 1, + STATE(1139), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 4, + ACTIONS(6086), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6052), 35, + ACTIONS(6084), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110414,11 +110828,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [44716] = 2, - ACTIONS(6066), 2, + [44712] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6064), 39, + ACTIONS(6136), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110458,11 +110872,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44762] = 2, - ACTIONS(6070), 2, + [44758] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6068), 39, + ACTIONS(6140), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110502,11 +110916,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44808] = 2, - ACTIONS(6074), 2, + [44804] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6072), 39, + ACTIONS(6144), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110546,11 +110960,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44854] = 2, - ACTIONS(6078), 2, + [44850] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6076), 39, + ACTIONS(6148), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110590,11 +111004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44900] = 2, - ACTIONS(6082), 2, + [44896] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6080), 39, + ACTIONS(6152), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110634,11 +111048,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44946] = 2, - ACTIONS(6086), 2, + [44942] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6084), 39, + ACTIONS(6156), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110678,14 +111092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44992] = 2, - ACTIONS(5994), 2, + [44988] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(1317), 1, + sym__pandoc_attr_specifier, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 39, + ACTIONS(6120), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -110712,21 +111130,19 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, [45038] = 2, - ACTIONS(6090), 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6088), 39, + ACTIONS(6068), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110767,10 +111183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [45084] = 2, - ACTIONS(6094), 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6092), 39, + ACTIONS(6160), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110810,18 +111226,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45130] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(1267), 1, - sym__pandoc_attr_specifier, - ACTIONS(6006), 2, + [45130] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6004), 37, + ACTIONS(6164), 39, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -110848,19 +111260,21 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, - [45180] = 2, - ACTIONS(6098), 2, + [45176] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6096), 39, + ACTIONS(6168), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110900,11 +111314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45226] = 2, - ACTIONS(6102), 2, + [45222] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6100), 39, + ACTIONS(6172), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110944,11 +111358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45272] = 2, - ACTIONS(6106), 2, + [45268] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6104), 39, + ACTIONS(6176), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -110988,11 +111402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45318] = 2, - ACTIONS(6110), 2, + [45314] = 2, + ACTIONS(6182), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6108), 39, + ACTIONS(6180), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111032,11 +111446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45364] = 2, - ACTIONS(6114), 2, + [45360] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6112), 39, + ACTIONS(6184), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111076,11 +111490,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45410] = 2, - ACTIONS(6118), 2, + [45406] = 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6116), 39, + ACTIONS(6188), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111120,11 +111534,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45456] = 2, - ACTIONS(6122), 2, + [45452] = 2, + ACTIONS(6194), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6120), 39, + ACTIONS(6192), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111164,11 +111578,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45502] = 2, - ACTIONS(6126), 2, + [45498] = 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6124), 39, + ACTIONS(6196), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111208,11 +111622,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45548] = 2, - ACTIONS(6130), 2, + [45544] = 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6128), 39, + ACTIONS(6200), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111252,11 +111666,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45594] = 2, - ACTIONS(6134), 2, + [45590] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6132), 39, + ACTIONS(6204), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111296,11 +111710,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45640] = 2, - ACTIONS(6022), 2, + [45636] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 39, + ACTIONS(6044), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111340,11 +111754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45686] = 2, - ACTIONS(6138), 2, + [45682] = 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6136), 39, + ACTIONS(6208), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111384,11 +111798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45732] = 2, - ACTIONS(6030), 2, + [45728] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 39, + ACTIONS(6088), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111428,11 +111842,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45778] = 2, - ACTIONS(6142), 2, + [45774] = 2, + ACTIONS(6214), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6140), 39, + ACTIONS(6212), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111472,11 +111886,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45824] = 2, - ACTIONS(6146), 2, + [45820] = 2, + ACTIONS(6218), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6144), 39, + ACTIONS(6216), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111516,11 +111930,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45870] = 2, - ACTIONS(6150), 2, + [45866] = 2, + ACTIONS(6222), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6148), 39, + ACTIONS(6220), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111560,11 +111974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45916] = 2, - ACTIONS(6154), 2, + [45912] = 2, + ACTIONS(6226), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6152), 39, + ACTIONS(6224), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111604,11 +112018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45962] = 2, - ACTIONS(6158), 2, + [45958] = 2, + ACTIONS(6230), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6156), 39, + ACTIONS(6228), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111648,11 +112062,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46008] = 2, - ACTIONS(6162), 2, + [46004] = 2, + ACTIONS(6234), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6160), 39, + ACTIONS(6232), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111692,11 +112106,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46054] = 2, - ACTIONS(6166), 2, + [46050] = 2, + ACTIONS(6238), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6164), 39, + ACTIONS(6236), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111736,18 +112150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46100] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(1268), 1, - sym__pandoc_attr_specifier, - ACTIONS(6010), 2, + [46096] = 2, + ACTIONS(6242), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6008), 37, + ACTIONS(6240), 39, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -111774,19 +112184,21 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, - [46150] = 2, - ACTIONS(6170), 2, + [46142] = 2, + ACTIONS(6246), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6168), 39, + ACTIONS(6244), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111826,11 +112238,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46196] = 2, - ACTIONS(6174), 2, + [46188] = 2, + ACTIONS(6250), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6172), 39, + ACTIONS(6248), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111870,11 +112282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46242] = 2, - ACTIONS(6178), 2, + [46234] = 2, + ACTIONS(6254), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6176), 39, + ACTIONS(6252), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111914,11 +112326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46288] = 2, - ACTIONS(6182), 2, + [46280] = 2, + ACTIONS(6258), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6180), 39, + ACTIONS(6256), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -111958,11 +112370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46334] = 2, - ACTIONS(6186), 2, + [46326] = 2, + ACTIONS(6262), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6184), 39, + ACTIONS(6260), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112002,11 +112414,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46380] = 2, - ACTIONS(6190), 2, + [46372] = 2, + ACTIONS(6266), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6188), 39, + ACTIONS(6264), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112046,11 +112458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46426] = 2, - ACTIONS(6194), 2, + [46418] = 2, + ACTIONS(6270), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6192), 39, + ACTIONS(6268), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112090,11 +112502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46472] = 2, - ACTIONS(6198), 2, + [46464] = 2, + ACTIONS(6274), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6196), 39, + ACTIONS(6272), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112134,11 +112546,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46518] = 2, - ACTIONS(6202), 2, + [46510] = 2, + ACTIONS(6278), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6200), 39, + ACTIONS(6276), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112178,11 +112590,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46564] = 2, - ACTIONS(6206), 2, + [46556] = 2, + ACTIONS(6282), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6204), 39, + ACTIONS(6280), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112222,11 +112634,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46610] = 2, - ACTIONS(6210), 2, + [46602] = 2, + ACTIONS(6286), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6208), 39, + ACTIONS(6284), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112266,11 +112678,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46656] = 2, - ACTIONS(6214), 2, + [46648] = 2, + ACTIONS(6290), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6212), 39, + ACTIONS(6288), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112310,11 +112722,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46702] = 2, - ACTIONS(6218), 2, + [46694] = 2, + ACTIONS(6294), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6216), 39, + ACTIONS(6292), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112354,11 +112766,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46748] = 2, - ACTIONS(6222), 2, + [46740] = 2, + ACTIONS(6298), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6220), 39, + ACTIONS(6296), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112398,11 +112810,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46794] = 2, - ACTIONS(6226), 2, + [46786] = 2, + ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6224), 39, + ACTIONS(6300), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112442,11 +112854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46840] = 2, - ACTIONS(6230), 2, + [46832] = 2, + ACTIONS(6306), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6228), 39, + ACTIONS(6304), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112486,11 +112898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46886] = 2, - ACTIONS(6234), 2, + [46878] = 2, + ACTIONS(6310), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6232), 39, + ACTIONS(6308), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112530,11 +112942,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46932] = 2, - ACTIONS(6238), 2, + [46924] = 2, + ACTIONS(6314), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6236), 39, + ACTIONS(6312), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112574,11 +112986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46978] = 2, - ACTIONS(6242), 2, + [46970] = 2, + ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6240), 39, + ACTIONS(6316), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112618,11 +113030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47024] = 2, - ACTIONS(6246), 2, + [47016] = 2, + ACTIONS(6322), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6244), 39, + ACTIONS(6320), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112662,11 +113074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47070] = 2, - ACTIONS(6250), 2, + [47062] = 2, + ACTIONS(6326), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6248), 39, + ACTIONS(6324), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112706,11 +113118,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47116] = 2, - ACTIONS(6254), 2, + [47108] = 2, + ACTIONS(6330), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6252), 39, + ACTIONS(6328), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112750,11 +113162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47162] = 2, - ACTIONS(6258), 2, + [47154] = 2, + ACTIONS(6334), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6256), 39, + ACTIONS(6332), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112794,11 +113206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47208] = 2, - ACTIONS(6262), 2, + [47200] = 2, + ACTIONS(6338), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6260), 39, + ACTIONS(6336), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112838,11 +113250,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47254] = 2, - ACTIONS(6266), 2, + [47246] = 2, + ACTIONS(6342), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6264), 39, + ACTIONS(6340), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112882,11 +113294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47300] = 2, - ACTIONS(6270), 2, + [47292] = 2, + ACTIONS(6346), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6268), 39, + ACTIONS(6344), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112926,11 +113338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47346] = 2, - ACTIONS(6274), 2, + [47338] = 2, + ACTIONS(6350), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6272), 39, + ACTIONS(6348), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -112970,11 +113382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47392] = 2, - ACTIONS(6278), 2, + [47384] = 2, + ACTIONS(6354), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6276), 39, + ACTIONS(6352), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -113014,17 +113426,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47438] = 4, - ACTIONS(2567), 1, + [47430] = 4, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1120), 1, + STATE(1124), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 4, + ACTIONS(6110), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6036), 35, + ACTIONS(6108), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113060,11 +113472,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [47488] = 2, - ACTIONS(6282), 2, + [47480] = 2, + ACTIONS(6358), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6280), 39, + ACTIONS(6356), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -113104,11 +113516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47534] = 2, - ACTIONS(6286), 2, + [47526] = 2, + ACTIONS(6362), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6284), 39, + ACTIONS(6360), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -113148,11 +113560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47580] = 2, - ACTIONS(6290), 2, + [47572] = 2, + ACTIONS(6366), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6288), 39, + ACTIONS(6364), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -113192,11 +113604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47626] = 2, - ACTIONS(6294), 2, + [47618] = 2, + ACTIONS(6370), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6292), 39, + ACTIONS(6368), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -113236,11 +113648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47672] = 2, - ACTIONS(6298), 2, + [47664] = 2, + ACTIONS(6374), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6296), 39, + ACTIONS(6372), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -113280,11 +113692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47718] = 2, - ACTIONS(6302), 2, + [47710] = 2, + ACTIONS(6378), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6300), 39, + ACTIONS(6376), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -113324,11 +113736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47764] = 2, - ACTIONS(6306), 2, + [47756] = 2, + ACTIONS(6382), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6304), 39, + ACTIONS(6380), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -113368,11 +113780,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47810] = 2, - ACTIONS(6310), 2, + [47802] = 2, + ACTIONS(6386), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6308), 39, + ACTIONS(6384), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -113412,11 +113824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47856] = 2, - ACTIONS(6314), 2, + [47848] = 2, + ACTIONS(6390), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6312), 39, + ACTIONS(6388), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -113456,14 +113868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [47902] = 2, - ACTIONS(6318), 2, + [47894] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(1320), 1, + sym__pandoc_attr_specifier, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6316), 39, + ACTIONS(6048), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -113490,24 +113906,26 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [47948] = 2, - ACTIONS(6322), 2, + [47944] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(1323), 1, + sym__pandoc_attr_specifier, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6320), 39, + ACTIONS(6068), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -113534,25 +113952,23 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, [47994] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1307), 1, + STATE(1336), 1, sym__pandoc_attr_specifier, - ACTIONS(5958), 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5956), 37, + ACTIONS(6076), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -113593,12 +114009,12 @@ static const uint16_t ts_small_parse_table[] = { [48044] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1308), 1, + STATE(1339), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 37, + ACTIONS(6072), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -113639,12 +114055,12 @@ static const uint16_t ts_small_parse_table[] = { [48094] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1318), 1, + STATE(1349), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6024), 37, + ACTIONS(6032), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -113685,12 +114101,12 @@ static const uint16_t ts_small_parse_table[] = { [48144] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1334), 1, + STATE(1350), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 37, + ACTIONS(6036), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -113728,18 +114144,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48194] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(1252), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 2, + [48194] = 2, + ACTIONS(6126), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5984), 37, + ACTIONS(6124), 39, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -113766,23 +114178,25 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, - [48244] = 4, + [48240] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1447), 1, + STATE(1364), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6056), 37, + ACTIONS(6040), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -113820,15 +114234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48294] = 4, + [48290] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1150), 1, + STATE(1365), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6060), 37, + ACTIONS(6044), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -113866,14 +114280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48344] = 2, - ACTIONS(6324), 2, + [48340] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(1369), 1, + sym__pandoc_attr_specifier, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2901), 39, + ACTIONS(6112), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -113900,25 +114318,23 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, [48390] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1270), 1, + STATE(1370), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6012), 37, + ACTIONS(6088), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -113959,12 +114375,12 @@ static const uint16_t ts_small_parse_table[] = { [48440] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1266), 1, + STATE(1400), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5980), 37, + ACTIONS(6028), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114005,12 +114421,12 @@ static const uint16_t ts_small_parse_table[] = { [48490] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1130), 1, + STATE(1513), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6000), 37, + ACTIONS(6092), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114051,12 +114467,12 @@ static const uint16_t ts_small_parse_table[] = { [48540] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1271), 1, + STATE(1131), 1, sym__pandoc_attr_specifier, - ACTIONS(6018), 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6016), 37, + ACTIONS(6056), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114097,12 +114513,12 @@ static const uint16_t ts_small_parse_table[] = { [48590] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1247), 1, + STATE(1137), 1, sym__pandoc_attr_specifier, - ACTIONS(5962), 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5960), 37, + ACTIONS(6128), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114141,14 +114557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [48640] = 4, - ACTIONS(6326), 1, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1254), 1, - sym_attribute_specifier, - ACTIONS(5968), 2, + STATE(1175), 1, + sym__pandoc_attr_specifier, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5966), 37, + ACTIONS(6104), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114189,12 +114605,12 @@ static const uint16_t ts_small_parse_table[] = { [48690] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1255), 1, + STATE(1420), 1, sym__pandoc_attr_specifier, - ACTIONS(5974), 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5972), 37, + ACTIONS(6052), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114235,12 +114651,12 @@ static const uint16_t ts_small_parse_table[] = { [48740] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1256), 1, + STATE(1436), 1, sym__pandoc_attr_specifier, - ACTIONS(5978), 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5976), 37, + ACTIONS(6108), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114281,12 +114697,12 @@ static const uint16_t ts_small_parse_table[] = { [48790] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1132), 1, + STATE(1443), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6032), 37, + ACTIONS(6096), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114327,12 +114743,12 @@ static const uint16_t ts_small_parse_table[] = { [48840] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1133), 1, + STATE(1450), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6036), 37, + ACTIONS(6100), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114373,12 +114789,12 @@ static const uint16_t ts_small_parse_table[] = { [48890] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1140), 1, + STATE(1179), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6040), 37, + ACTIONS(6024), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114419,12 +114835,12 @@ static const uint16_t ts_small_parse_table[] = { [48940] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1142), 1, + STATE(1544), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6044), 37, + ACTIONS(6080), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114463,14 +114879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [48990] = 4, - ACTIONS(15), 1, + ACTIONS(6392), 1, anon_sym_LBRACE, - STATE(1262), 1, - sym__pandoc_attr_specifier, - ACTIONS(5994), 2, + STATE(1307), 1, + sym_attribute_specifier, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 37, + ACTIONS(6060), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114509,10 +114925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [49040] = 2, - ACTIONS(5998), 2, + ACTIONS(6394), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5996), 39, + ACTIONS(2965), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -114555,12 +114971,12 @@ static const uint16_t ts_small_parse_table[] = { [49086] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1148), 1, + STATE(1550), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6048), 37, + ACTIONS(6084), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114601,12 +115017,12 @@ static const uint16_t ts_small_parse_table[] = { [49136] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1151), 1, + STATE(1308), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6052), 37, + ACTIONS(6116), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114645,16 +115061,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [49186] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1504), 1, + STATE(1515), 1, sym__pandoc_attr_specifier, - ACTIONS(5962), 4, + ACTIONS(6030), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5960), 35, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114691,16 +115107,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49236] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1508), 1, + STATE(1518), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 4, + ACTIONS(6094), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5984), 35, + ACTIONS(6092), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114737,9 +115153,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49286] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1511), 1, + STATE(1521), 1, sym__pandoc_attr_specifier, ACTIONS(6058), 4, aux_sym_pandoc_span_token1, @@ -114783,16 +115199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49336] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1514), 1, + STATE(1524), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 4, + ACTIONS(6130), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6060), 35, + ACTIONS(6128), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114829,16 +115245,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49386] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1529), 1, + STATE(1538), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 4, + ACTIONS(6106), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5980), 35, + ACTIONS(6104), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114875,16 +115291,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49436] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1533), 1, + STATE(1542), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 4, + ACTIONS(6026), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6000), 35, + ACTIONS(6024), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114921,16 +115337,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49486] = 4, - ACTIONS(6328), 1, + ACTIONS(6396), 1, anon_sym_LBRACE, - STATE(1539), 1, + STATE(1547), 1, sym_attribute_specifier, - ACTIONS(5968), 4, + ACTIONS(6062), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5966), 35, + ACTIONS(6060), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114967,16 +115383,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49536] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1540), 1, + STATE(1548), 1, sym__pandoc_attr_specifier, - ACTIONS(5974), 4, + ACTIONS(6118), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5972), 35, + ACTIONS(6116), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115013,16 +115429,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49586] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1541), 1, + STATE(1549), 1, sym__pandoc_attr_specifier, - ACTIONS(5978), 4, + ACTIONS(6122), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5976), 35, + ACTIONS(6120), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115059,16 +115475,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49636] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1544), 1, + STATE(1551), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 4, + ACTIONS(6050), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5988), 35, + ACTIONS(6048), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115105,16 +115521,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49686] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1545), 1, + STATE(1552), 1, sym__pandoc_attr_specifier, - ACTIONS(5994), 4, + ACTIONS(6070), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5992), 35, + ACTIONS(6068), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115151,16 +115567,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49736] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1548), 1, + STATE(1305), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 4, + ACTIONS(6078), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6004), 35, + ACTIONS(6076), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115197,16 +115613,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49786] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1351), 1, + STATE(1354), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 4, + ACTIONS(6074), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6008), 35, + ACTIONS(6072), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115243,16 +115659,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49836] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1116), 1, + STATE(1117), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 4, + ACTIONS(6034), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6012), 35, + ACTIONS(6032), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115289,16 +115705,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49886] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1547), 1, + STATE(1111), 1, sym__pandoc_attr_specifier, - ACTIONS(6018), 4, + ACTIONS(6038), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6016), 35, + ACTIONS(6036), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115335,16 +115751,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49936] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1531), 1, + STATE(1541), 1, sym__pandoc_attr_specifier, - ACTIONS(5958), 4, + ACTIONS(6042), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5956), 35, + ACTIONS(6040), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115381,16 +115797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [49986] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1532), 1, + STATE(1543), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 4, + ACTIONS(6046), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6020), 35, + ACTIONS(6044), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115427,16 +115843,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, [50036] = 4, - ACTIONS(2567), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - STATE(1110), 1, + STATE(1113), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 4, + ACTIONS(6114), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6024), 35, + ACTIONS(6112), 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_lt_str, + 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, + [50086] = 4, + ACTIONS(2431), 1, + anon_sym_LBRACE, + STATE(1114), 1, + sym__pandoc_attr_specifier, + ACTIONS(6090), 4, + aux_sym_pandoc_span_token1, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + sym__whitespace, + ACTIONS(6088), 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_lt_str, + 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, + [50136] = 4, + ACTIONS(2431), 1, + anon_sym_LBRACE, + STATE(1123), 1, + sym__pandoc_attr_specifier, + ACTIONS(6054), 4, + aux_sym_pandoc_span_token1, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + sym__whitespace, + ACTIONS(6052), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115472,17 +115980,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [50086] = 4, - ACTIONS(2567), 1, + [50186] = 2, + ACTIONS(6400), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6398), 39, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_lt_str, + sym__pipe_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(1113), 1, + anon_sym_PIPE, + sym__whitespace, + [50232] = 4, + ACTIONS(4048), 1, + anon_sym_LBRACE, + STATE(1686), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 4, + ACTIONS(6034), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6032), 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__superscript_close, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_lt_str, + 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, + [50281] = 2, + ACTIONS(6254), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6028), 35, + ACTIONS(6252), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115517,18 +116110,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - [50136] = 4, - ACTIONS(2567), 1, + [50326] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(1119), 1, + STATE(2206), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 4, - aux_sym_pandoc_span_token1, + ACTIONS(6082), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6032), 35, + ACTIONS(6080), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115561,17 +116154,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - [50186] = 2, - ACTIONS(6332), 2, + [50375] = 2, + ACTIONS(6278), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6330), 39, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(6276), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115598,25 +116191,22 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - 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, - [50232] = 4, - ACTIONS(4984), 1, - anon_sym_LBRACE, - STATE(2261), 1, - sym__pandoc_attr_specifier, - ACTIONS(6038), 2, + [50420] = 2, + ACTIONS(6282), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6036), 36, + sym__whitespace, + ACTIONS(6280), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115626,7 +116216,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, @@ -115650,19 +116239,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [50281] = 4, - ACTIONS(3445), 1, + [50465] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(1758), 1, + STATE(2207), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 3, + ACTIONS(6086), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6012), 35, + ACTIONS(6084), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115696,18 +116286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, + aux_sym_insert_token1, anon_sym_PIPE, - [50330] = 4, - ACTIONS(3445), 1, + [50514] = 4, + ACTIONS(4258), 1, anon_sym_LBRACE, - STATE(1759), 1, + STATE(2223), 1, sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6016), 35, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115717,6 +116306,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, @@ -115741,15 +116331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, anon_sym_PIPE, - [50379] = 2, - ACTIONS(6206), 4, + sym__whitespace, + [50563] = 2, + ACTIONS(6250), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6204), 36, + ACTIONS(6248), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115786,16 +116376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [50424] = 4, - ACTIONS(3445), 1, + [50608] = 4, + ACTIONS(4258), 1, anon_sym_LBRACE, - STATE(1763), 1, + STATE(2225), 1, sym__pandoc_attr_specifier, - ACTIONS(5958), 3, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(5956), 35, + ACTIONS(6092), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115805,6 +116394,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, @@ -115829,18 +116419,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, anon_sym_PIPE, - [50473] = 4, - ACTIONS(3445), 1, + sym__whitespace, + [50657] = 4, + ACTIONS(4258), 1, anon_sym_LBRACE, - STATE(1764), 1, + STATE(2226), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 3, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6020), 35, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115850,6 +116439,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, @@ -115874,15 +116464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, anon_sym_PIPE, - [50522] = 2, - ACTIONS(6210), 4, + sym__whitespace, + [50706] = 2, + ACTIONS(6286), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6208), 36, + ACTIONS(6284), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115919,16 +116509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [50567] = 4, - ACTIONS(3445), 1, + [50751] = 4, + ACTIONS(4258), 1, anon_sym_LBRACE, - STATE(1765), 1, + STATE(2227), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6024), 35, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115938,6 +116527,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, @@ -115962,18 +116552,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, anon_sym_PIPE, - [50616] = 4, - ACTIONS(3445), 1, + sym__whitespace, + [50800] = 4, + ACTIONS(4258), 1, anon_sym_LBRACE, - STATE(1766), 1, + STATE(2238), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6028), 35, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115983,6 +116572,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, @@ -116007,15 +116597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, anon_sym_PIPE, - [50665] = 2, - ACTIONS(6178), 4, + sym__whitespace, + [50849] = 2, + ACTIONS(6290), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6176), 36, + ACTIONS(6288), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116052,13 +116642,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [50710] = 2, - ACTIONS(6214), 4, + [50894] = 2, + ACTIONS(6294), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6212), 36, + ACTIONS(6292), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116095,16 +116685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [50755] = 4, - ACTIONS(3445), 1, - anon_sym_LBRACE, - STATE(1772), 1, - sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + [50939] = 2, + ACTIONS(6298), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6032), 35, + ACTIONS(6296), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116137,16 +116724,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [50804] = 2, - ACTIONS(6218), 4, + [50984] = 2, + ACTIONS(6302), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6216), 36, + ACTIONS(6300), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116183,13 +116771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [50849] = 2, - ACTIONS(6222), 4, - aux_sym_pandoc_span_token1, + [51029] = 4, + ACTIONS(4258), 1, + anon_sym_LBRACE, + STATE(2256), 1, + sym__pandoc_attr_specifier, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6220), 36, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116199,6 +116789,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, @@ -116222,17 +116813,16 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [50894] = 2, - ACTIONS(6226), 4, + sym__whitespace, + [51078] = 2, + ACTIONS(6306), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6224), 36, + ACTIONS(6304), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116269,13 +116859,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [50939] = 2, - ACTIONS(6230), 4, + [51123] = 2, + ACTIONS(6386), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6228), 36, + ACTIONS(6384), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116312,13 +116902,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [50984] = 2, - ACTIONS(6234), 4, + [51168] = 2, + ACTIONS(6310), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6232), 36, + ACTIONS(6308), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116355,14 +116945,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [51029] = 2, - ACTIONS(6314), 4, - aux_sym_pandoc_span_token1, + [51213] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6312), 36, + ACTIONS(6160), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116394,17 +116984,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [51074] = 2, - ACTIONS(6238), 4, + sym__whitespace, + [51258] = 2, + ACTIONS(6314), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6236), 36, + ACTIONS(6312), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116441,15 +117031,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [51119] = 4, - ACTIONS(4924), 1, - anon_sym_LBRACE, - STATE(1811), 1, - sym__pandoc_attr_specifier, - ACTIONS(5982), 2, + [51303] = 2, + ACTIONS(6318), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5980), 36, + sym__whitespace, + ACTIONS(6316), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116471,7 +117059,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -116483,17 +117070,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [51168] = 2, - ACTIONS(6138), 2, + [51348] = 4, + ACTIONS(4258), 1, + anon_sym_LBRACE, + STATE(2260), 1, + sym__pandoc_attr_specifier, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6136), 38, - sym__line_ending, + ACTIONS(6040), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116502,6 +117092,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, @@ -116526,16 +117117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [51213] = 2, - ACTIONS(6242), 4, - aux_sym_pandoc_span_token1, + [51397] = 4, + ACTIONS(4258), 1, + anon_sym_LBRACE, + STATE(2261), 1, + sym__pandoc_attr_specifier, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6240), 36, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116545,6 +117137,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, @@ -116568,17 +117161,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [51258] = 2, - ACTIONS(6246), 4, - aux_sym_pandoc_span_token1, + sym__whitespace, + [51446] = 4, + ACTIONS(4258), 1, + anon_sym_LBRACE, + STATE(2262), 1, + sym__pandoc_attr_specifier, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6244), 36, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116588,6 +117182,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, @@ -116611,15 +117206,14 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [51303] = 2, - ACTIONS(6030), 2, + sym__whitespace, + [51495] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 38, + ACTIONS(6164), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -116658,13 +117252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [51348] = 2, - ACTIONS(6250), 4, + [51540] = 2, + ACTIONS(6322), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6248), 36, + ACTIONS(6320), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116701,14 +117295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [51393] = 2, - ACTIONS(6218), 2, + [51585] = 2, + ACTIONS(6326), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6216), 38, - sym__line_ending, + sym__whitespace, + ACTIONS(6324), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116740,15 +117334,15 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [51438] = 2, - ACTIONS(6222), 2, + [51630] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6220), 38, + ACTIONS(6168), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -116787,17 +117381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [51483] = 4, - ACTIONS(3035), 1, - anon_sym_LBRACE, - STATE(2147), 1, - sym__pandoc_attr_specifier, - ACTIONS(5962), 3, + [51675] = 2, + ACTIONS(6330), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(5960), 35, + ACTIONS(6328), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116830,109 +117421,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_PIPE, - [51532] = 4, - ACTIONS(3035), 1, anon_sym_LBRACE, - STATE(2148), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(5984), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - 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, - [51581] = 4, - ACTIONS(3035), 1, - anon_sym_LBRACE, - STATE(2149), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6056), 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_lt_str, - 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, - [51630] = 4, - ACTIONS(3035), 1, - anon_sym_LBRACE, - STATE(2150), 1, - sym__pandoc_attr_specifier, - ACTIONS(6062), 3, + [51720] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6060), 35, + ACTIONS(6132), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116965,103 +117464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_PIPE, - [51679] = 4, - ACTIONS(3035), 1, anon_sym_LBRACE, - STATE(2161), 1, - sym__pandoc_attr_specifier, - ACTIONS(5982), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(5980), 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_lt_str, - 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, - [51728] = 4, - ACTIONS(3035), 1, - anon_sym_LBRACE, - STATE(2163), 1, - sym__pandoc_attr_specifier, - ACTIONS(6002), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6000), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__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_lt_str, - 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, - [51777] = 2, - ACTIONS(6226), 2, + [51765] = 2, + ACTIONS(6334), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6224), 38, + ACTIONS(6332), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -117100,15 +117510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [51822] = 4, - ACTIONS(4924), 1, + [51810] = 4, + ACTIONS(4258), 1, anon_sym_LBRACE, - STATE(1813), 1, + STATE(2263), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6000), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117118,6 +117528,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, @@ -117130,7 +117541,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -117145,11 +117555,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51871] = 2, - ACTIONS(6230), 2, + [51859] = 2, + ACTIONS(6378), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6228), 38, + ACTIONS(6376), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -117188,11 +117598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [51916] = 2, - ACTIONS(6234), 2, + [51904] = 2, + ACTIONS(6382), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6232), 38, + ACTIONS(6380), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -117231,14 +117641,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [51961] = 2, - ACTIONS(6314), 2, + [51949] = 4, + ACTIONS(3353), 1, + anon_sym_LBRACE, + STATE(1885), 1, + sym__pandoc_attr_specifier, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6312), 38, + ACTIONS(6032), 36, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117265,20 +117677,20 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, - [52006] = 2, - ACTIONS(6238), 2, + [51998] = 2, + ACTIONS(6338), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6236), 38, + ACTIONS(6336), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -117317,14 +117729,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52051] = 2, - ACTIONS(6242), 2, + [52043] = 4, + ACTIONS(4258), 1, + anon_sym_LBRACE, + STATE(2269), 1, + sym__pandoc_attr_specifier, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6240), 38, - sym__line_ending, + ACTIONS(6052), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117333,6 +117747,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, @@ -117357,17 +117772,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52096] = 2, - ACTIONS(6246), 2, + [52092] = 4, + ACTIONS(4258), 1, + anon_sym_LBRACE, + STATE(2270), 1, + sym__pandoc_attr_specifier, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6244), 38, - sym__line_ending, + ACTIONS(6108), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117376,6 +117792,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, @@ -117400,17 +117817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52141] = 2, - ACTIONS(6250), 2, + [52141] = 4, + ACTIONS(4258), 1, + anon_sym_LBRACE, + STATE(2271), 1, + sym__pandoc_attr_specifier, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6248), 38, - sym__line_ending, + ACTIONS(6096), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117419,6 +117837,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, @@ -117443,17 +117862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52186] = 2, - ACTIONS(6332), 2, + [52190] = 4, + ACTIONS(4258), 1, + anon_sym_LBRACE, + STATE(2272), 1, + sym__pandoc_attr_specifier, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6330), 38, - sym__line_ending, + ACTIONS(6100), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117462,6 +117882,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, @@ -117486,17 +117907,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52231] = 2, - ACTIONS(6094), 2, + [52239] = 4, + ACTIONS(4258), 1, + anon_sym_LBRACE, + STATE(2278), 1, + sym__pandoc_attr_specifier, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6092), 38, - sym__line_ending, + ACTIONS(6080), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117505,6 +117927,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, @@ -117529,17 +117952,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52276] = 2, - ACTIONS(6254), 2, + [52288] = 4, + ACTIONS(4258), 1, + anon_sym_LBRACE, + STATE(2279), 1, + sym__pandoc_attr_specifier, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6252), 38, - sym__line_ending, + ACTIONS(6084), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117548,6 +117972,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, @@ -117572,17 +117997,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52321] = 2, - ACTIONS(6254), 4, - aux_sym_pandoc_span_token1, + [52337] = 4, + ACTIONS(3353), 1, + anon_sym_LBRACE, + STATE(2036), 1, + sym__pandoc_attr_specifier, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6252), 36, - sym__soft_line_ending, + ACTIONS(6052), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117609,20 +118035,20 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + 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, - [52366] = 2, - ACTIONS(6142), 2, + sym__whitespace, + [52386] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6140), 38, + ACTIONS(6172), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -117661,11 +118087,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52411] = 2, - ACTIONS(6146), 2, + [52431] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6144), 38, + ACTIONS(6176), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -117704,11 +118130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52456] = 2, - ACTIONS(6334), 2, + [52476] = 2, + ACTIONS(6404), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2946), 38, + ACTIONS(6402), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -117747,11 +118173,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52501] = 2, - ACTIONS(6282), 2, + [52521] = 2, + ACTIONS(6182), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6280), 38, + ACTIONS(6180), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -117790,11 +118216,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52546] = 2, - ACTIONS(6286), 2, + [52566] = 4, + ACTIONS(3353), 1, + anon_sym_LBRACE, + STATE(1887), 1, + sym__pandoc_attr_specifier, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6284), 38, + ACTIONS(6036), 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__pandoc_lt_str, + sym__pipe_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, + [52615] = 2, + ACTIONS(6186), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6184), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -117833,14 +118304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52591] = 2, - ACTIONS(6258), 4, - aux_sym_pandoc_span_token1, + [52660] = 2, + ACTIONS(6342), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6256), 36, + ACTIONS(6340), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117872,20 +118343,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [52636] = 4, - ACTIONS(6336), 1, - anon_sym_LBRACE, - STATE(1821), 1, - sym_attribute_specifier, - ACTIONS(5968), 2, + sym__whitespace, + [52705] = 2, + ACTIONS(6390), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5966), 36, + ACTIONS(6388), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117906,7 +118375,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -117919,18 +118387,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52685] = 4, - ACTIONS(6338), 1, - anon_sym_LBRACE, - STATE(1837), 1, - sym_attribute_specifier, - ACTIONS(5968), 2, + [52750] = 2, + ACTIONS(6346), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5966), 36, + ACTIONS(6344), 38, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117957,24 +118424,24 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [52734] = 4, - ACTIONS(3257), 1, + [52795] = 4, + ACTIONS(3353), 1, anon_sym_LBRACE, - STATE(1862), 1, + STATE(2038), 1, sym__pandoc_attr_specifier, - ACTIONS(5974), 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5972), 36, + ACTIONS(6108), 36, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -118011,15 +118478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [52783] = 4, - ACTIONS(4924), 1, + [52844] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(1822), 1, + STATE(2294), 1, sym__pandoc_attr_specifier, - ACTIONS(5974), 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5972), 36, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118030,6 +118497,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, @@ -118041,7 +118509,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -118056,16 +118523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [52832] = 4, - ACTIONS(4924), 1, - anon_sym_LBRACE, - STATE(1823), 1, - sym__pandoc_attr_specifier, - ACTIONS(5978), 2, + [52893] = 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5976), 36, + ACTIONS(6188), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118086,7 +118551,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -118099,18 +118563,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52881] = 4, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(1863), 1, - sym__pandoc_attr_specifier, - ACTIONS(5978), 2, + [52938] = 2, + ACTIONS(6194), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5976), 36, + ACTIONS(6192), 38, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118137,25 +118600,23 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [52930] = 4, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(1864), 1, - sym__pandoc_attr_specifier, - ACTIONS(5990), 2, + [52983] = 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5988), 36, + ACTIONS(6196), 38, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118182,25 +118643,23 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [52979] = 4, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(1865), 1, - sym__pandoc_attr_specifier, - ACTIONS(5994), 2, + [53028] = 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 36, + ACTIONS(6200), 38, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118227,25 +118686,23 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [53028] = 4, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(1870), 1, - sym__pandoc_attr_specifier, - ACTIONS(6006), 2, + [53073] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6004), 36, + ACTIONS(6204), 38, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118272,25 +118729,25 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [53077] = 4, - ACTIONS(3257), 1, + [53118] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(1872), 1, + STATE(2295), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6008), 36, - sym__line_ending, + ACTIONS(6092), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118300,6 +118757,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, @@ -118317,7 +118775,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -118326,16 +118783,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53126] = 4, - ACTIONS(3257), 1, + [53167] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(1875), 1, + STATE(2296), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6012), 36, - sym__line_ending, + ACTIONS(6056), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118345,6 +118802,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, @@ -118362,7 +118820,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -118371,16 +118828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53175] = 4, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(1876), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 2, + [53216] = 2, + ACTIONS(6330), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6016), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6328), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118407,25 +118862,23 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - 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, - [53224] = 4, - ACTIONS(3257), 1, anon_sym_LBRACE, - STATE(1883), 1, - sym__pandoc_attr_specifier, - ACTIONS(5958), 2, + anon_sym_PIPE, + [53261] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5956), 36, + ACTIONS(6044), 38, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118452,25 +118905,23 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [53273] = 4, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(1896), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 2, + [53306] = 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 36, + ACTIONS(6208), 38, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118497,25 +118948,25 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [53322] = 4, - ACTIONS(3257), 1, + [53351] = 4, + ACTIONS(4258), 1, anon_sym_LBRACE, - STATE(1898), 1, + STATE(2240), 1, sym__pandoc_attr_specifier, ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, ACTIONS(6024), 36, - sym__line_ending, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118524,6 +118975,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, @@ -118542,7 +118994,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -118551,15 +119002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53371] = 4, - ACTIONS(3257), 1, + [53400] = 4, + ACTIONS(3353), 1, anon_sym_LBRACE, - STATE(1899), 1, + STATE(1883), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 36, + ACTIONS(6072), 36, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -118596,16 +119047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53420] = 4, - ACTIONS(4924), 1, - anon_sym_LBRACE, - STATE(1824), 1, - sym__pandoc_attr_specifier, - ACTIONS(5990), 2, + [53449] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5988), 36, + ACTIONS(6088), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118626,7 +119075,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -118639,18 +119087,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [53469] = 4, - ACTIONS(3445), 1, - anon_sym_LBRACE, - STATE(1773), 1, - sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + [53494] = 2, + ACTIONS(6134), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6036), 35, + ACTIONS(6132), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118683,18 +119129,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [53518] = 4, - ACTIONS(4924), 1, + [53539] = 4, + ACTIONS(6406), 1, anon_sym_LBRACE, - STATE(1825), 1, - sym__pandoc_attr_specifier, - ACTIONS(5994), 2, + STATE(2248), 1, + sym_attribute_specifier, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 36, + ACTIONS(6060), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118704,6 +119151,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, @@ -118716,7 +119164,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -118731,16 +119178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53567] = 4, - ACTIONS(3445), 1, + [53588] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(1774), 1, + STATE(2297), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6040), 35, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118751,6 +119197,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, @@ -118774,18 +119221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, anon_sym_PIPE, - [53616] = 4, - ACTIONS(4924), 1, - anon_sym_LBRACE, - STATE(1826), 1, - sym__pandoc_attr_specifier, - ACTIONS(6006), 2, + sym__whitespace, + [53637] = 2, + ACTIONS(6214), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6004), 36, + ACTIONS(6212), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118806,7 +119251,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -118819,16 +119263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [53665] = 2, - ACTIONS(6318), 4, - aux_sym_pandoc_span_token1, + [53682] = 2, + ACTIONS(6218), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6316), 36, + ACTIONS(6216), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118860,15 +119305,15 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [53710] = 2, - ACTIONS(6342), 2, + sym__whitespace, + [53727] = 2, + ACTIONS(6400), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6340), 38, + ACTIONS(6398), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -118907,14 +119352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [53755] = 2, - ACTIONS(6258), 2, + [53772] = 4, + ACTIONS(4474), 1, + anon_sym_LBRACE, + STATE(2308), 1, + sym__pandoc_attr_specifier, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6256), 38, - sym__line_ending, + ACTIONS(6104), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118924,6 +119371,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, @@ -118947,19 +119395,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [53800] = 4, - ACTIONS(6344), 1, + [53821] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(2169), 1, - sym_attribute_specifier, - ACTIONS(5968), 3, + STATE(2310), 1, + sym__pandoc_attr_specifier, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(5966), 35, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118970,6 +119416,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, @@ -118993,19 +119440,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [53849] = 4, - ACTIONS(3035), 1, + sym__whitespace, + [53870] = 4, + ACTIONS(3353), 1, anon_sym_LBRACE, - STATE(2170), 1, + STATE(1905), 1, sym__pandoc_attr_specifier, - ACTIONS(5974), 3, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(5972), 35, - sym__soft_line_ending, + ACTIONS(6040), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119032,24 +119478,24 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, - [53898] = 4, - ACTIONS(3035), 1, + sym__whitespace, + [53919] = 4, + ACTIONS(6408), 1, anon_sym_LBRACE, - STATE(2171), 1, - sym__pandoc_attr_specifier, - ACTIONS(5978), 3, + STATE(2318), 1, + sym_attribute_specifier, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(5976), 35, + ACTIONS(6060), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119060,6 +119506,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, @@ -119083,18 +119530,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [53947] = 4, - ACTIONS(3035), 1, + sym__whitespace, + [53968] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(2172), 1, + STATE(2319), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 3, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(5988), 35, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119105,6 +119551,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, @@ -119128,17 +119575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [53996] = 4, - ACTIONS(4924), 1, + sym__whitespace, + [54017] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(1827), 1, + STATE(2320), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6008), 36, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119149,6 +119596,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, @@ -119160,7 +119608,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -119175,16 +119622,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [54045] = 4, - ACTIONS(3035), 1, + [54066] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(2173), 1, + STATE(2321), 1, sym__pandoc_attr_specifier, - ACTIONS(5994), 3, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(5992), 35, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119195,6 +119641,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, @@ -119218,19 +119665,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [54094] = 4, - ACTIONS(3035), 1, - anon_sym_LBRACE, - STATE(2174), 1, - sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + sym__whitespace, + [54115] = 2, + ACTIONS(6358), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6004), 35, + ACTIONS(6356), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119263,19 +119707,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_PIPE, - [54143] = 4, - ACTIONS(3035), 1, anon_sym_LBRACE, - STATE(2175), 1, - sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + anon_sym_PIPE, + sym__whitespace, + [54160] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6008), 35, + ACTIONS(6136), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119308,18 +119750,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [54192] = 4, - ACTIONS(3035), 1, + sym__whitespace, + [54205] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(2176), 1, + STATE(2322), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 3, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6012), 35, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119330,6 +119772,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, @@ -119353,18 +119796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [54241] = 4, - ACTIONS(3035), 1, + sym__whitespace, + [54254] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(2177), 1, + STATE(2323), 1, sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6016), 35, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119375,6 +119817,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, @@ -119398,18 +119841,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [54290] = 4, - ACTIONS(3035), 1, + sym__whitespace, + [54303] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(2181), 1, + STATE(2324), 1, sym__pandoc_attr_specifier, - ACTIONS(5958), 3, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(5956), 35, + ACTIONS(6072), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119420,6 +119862,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, @@ -119443,19 +119886,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [54339] = 4, - ACTIONS(3035), 1, + sym__whitespace, + [54352] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(2182), 1, + STATE(2325), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 3, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, + ACTIONS(6032), 36, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__double_quote_span_close, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_lt_str, + 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(6020), 35, + [54401] = 2, + ACTIONS(6412), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6410), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119488,18 +119973,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [54388] = 4, - ACTIONS(3035), 1, + sym__whitespace, + [54446] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(2183), 1, + STATE(2326), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6024), 35, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119510,6 +119995,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, @@ -119533,18 +120019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [54437] = 4, - ACTIONS(3035), 1, + sym__whitespace, + [54495] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(2184), 1, + STATE(2331), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6028), 35, + ACTIONS(6040), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119555,6 +120040,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, @@ -119578,16 +120064,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [54486] = 2, - ACTIONS(6318), 2, + sym__whitespace, + [54544] = 4, + ACTIONS(4474), 1, + anon_sym_LBRACE, + STATE(2332), 1, + sym__pandoc_attr_specifier, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6316), 38, - sym__line_ending, + ACTIONS(6044), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119597,6 +120085,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, @@ -119620,17 +120109,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54531] = 2, - ACTIONS(6262), 2, + [54593] = 4, + ACTIONS(4474), 1, + anon_sym_LBRACE, + STATE(2334), 1, + sym__pandoc_attr_specifier, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6260), 38, - sym__line_ending, + ACTIONS(6112), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119640,6 +120130,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, @@ -119663,18 +120154,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54576] = 4, - ACTIONS(4924), 1, + [54642] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(1828), 1, + STATE(2335), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6012), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119685,6 +120175,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, @@ -119696,7 +120187,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -119711,16 +120201,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [54625] = 4, - ACTIONS(4924), 1, + [54691] = 4, + ACTIONS(3353), 1, anon_sym_LBRACE, - STATE(1829), 1, + STATE(1906), 1, sym__pandoc_attr_specifier, - ACTIONS(6018), 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6016), 36, - sym__soft_line_ending, + ACTIONS(6044), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119741,13 +120231,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_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -119756,14 +120246,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [54674] = 2, - ACTIONS(6266), 2, + [54740] = 4, + ACTIONS(4474), 1, + anon_sym_LBRACE, + STATE(2341), 1, + sym__pandoc_attr_specifier, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6264), 38, - sym__line_ending, + ACTIONS(6052), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119773,6 +120265,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, @@ -119796,18 +120289,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54719] = 4, - ACTIONS(4924), 1, + [54789] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(1833), 1, + STATE(2342), 1, sym__pandoc_attr_specifier, - ACTIONS(5958), 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5956), 36, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119818,6 +120310,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, @@ -119829,7 +120322,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -119844,15 +120336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [54768] = 4, - ACTIONS(4924), 1, + [54838] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(1834), 1, + STATE(2343), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 36, + ACTIONS(6096), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119863,6 +120355,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, @@ -119874,7 +120367,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -119889,15 +120381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [54817] = 4, - ACTIONS(4924), 1, + [54887] = 4, + ACTIONS(4474), 1, anon_sym_LBRACE, - STATE(1835), 1, + STATE(2344), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6024), 36, + ACTIONS(6100), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119908,6 +120400,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, @@ -119919,7 +120412,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -119934,14 +120426,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [54866] = 2, - ACTIONS(6070), 2, + [54936] = 4, + ACTIONS(4474), 1, + anon_sym_LBRACE, + STATE(2350), 1, + sym__pandoc_attr_specifier, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6068), 38, - sym__line_ending, + ACTIONS(6080), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119951,6 +120445,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, @@ -119974,17 +120469,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54911] = 2, - ACTIONS(6270), 2, + [54985] = 4, + ACTIONS(4258), 1, + anon_sym_LBRACE, + STATE(2249), 1, + sym__pandoc_attr_specifier, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6268), 38, - sym__line_ending, + ACTIONS(6116), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119993,6 +120489,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, @@ -120017,17 +120514,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54956] = 2, - ACTIONS(6322), 2, + [55034] = 4, + ACTIONS(4474), 1, + anon_sym_LBRACE, + STATE(2351), 1, + sym__pandoc_attr_specifier, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6320), 38, - sym__line_ending, + ACTIONS(6084), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120037,6 +120535,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, @@ -120060,17 +120559,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55001] = 2, - ACTIONS(6274), 2, + [55083] = 4, + ACTIONS(3353), 1, + anon_sym_LBRACE, + STATE(1917), 1, + sym__pandoc_attr_specifier, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6272), 38, + ACTIONS(6112), 36, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120097,23 +120597,25 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, - [55046] = 2, - ACTIONS(6074), 2, + [55132] = 4, + ACTIONS(4874), 1, + anon_sym_LBRACE, + STATE(2369), 1, + sym__pandoc_attr_specifier, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6072), 38, - sym__line_ending, + ACTIONS(6028), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120130,6 +120632,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, @@ -120146,17 +120649,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55091] = 2, - ACTIONS(6078), 2, + [55181] = 4, + ACTIONS(4874), 1, + anon_sym_LBRACE, + STATE(2370), 1, + sym__pandoc_attr_specifier, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6076), 38, - sym__line_ending, + ACTIONS(6092), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120173,6 +120677,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, @@ -120189,17 +120694,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55136] = 2, - ACTIONS(6082), 2, + [55230] = 4, + ACTIONS(4874), 1, + anon_sym_LBRACE, + STATE(2371), 1, + sym__pandoc_attr_specifier, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6080), 38, - sym__line_ending, + ACTIONS(6056), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120216,6 +120722,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, @@ -120232,18 +120739,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55181] = 4, - ACTIONS(4924), 1, + [55279] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(1836), 1, + STATE(2372), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 36, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120261,11 +120767,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -120280,16 +120786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [55230] = 4, - ACTIONS(3445), 1, + [55328] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(1775), 1, + STATE(2383), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6044), 35, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120307,6 +120812,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, @@ -120323,17 +120829,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, anon_sym_PIPE, - [55279] = 4, - ACTIONS(4924), 1, + sym__whitespace, + [55377] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(1843), 1, + STATE(2385), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6032), 36, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120351,11 +120857,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -120370,14 +120876,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [55328] = 2, - ACTIONS(6290), 2, + [55426] = 4, + ACTIONS(3353), 1, + anon_sym_LBRACE, + STATE(1920), 1, + sym__pandoc_attr_specifier, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6288), 38, + ACTIONS(6088), 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__pandoc_lt_str, + sym__pipe_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, + [55475] = 4, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(2393), 1, + sym_attribute_specifier, + ACTIONS(6062), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6060), 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_lt_str, + 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, + [55524] = 2, + ACTIONS(6334), 4, + aux_sym_pandoc_span_token1, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + sym__whitespace, + ACTIONS(6332), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120409,19 +121005,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [55373] = 4, - ACTIONS(4924), 1, + [55569] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(1844), 1, + STATE(2394), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6036), 36, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120439,11 +121035,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -120458,59 +121054,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [55422] = 4, - ACTIONS(4924), 1, + [55618] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(1845), 1, + STATE(2395), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6040), 36, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - 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, - [55471] = 2, - ACTIONS(6294), 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6292), 38, - sym__line_ending, + ACTIONS(6120), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120527,6 +121080,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, @@ -120543,19 +121097,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55516] = 4, - ACTIONS(3445), 1, + [55667] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(1781), 1, + STATE(2396), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6048), 35, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120573,6 +121125,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, @@ -120589,60 +121142,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [55565] = 2, - ACTIONS(6346), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(2917), 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__pandoc_lt_str, - sym__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, - [55610] = 4, - ACTIONS(4924), 1, + [55716] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(1846), 1, + STATE(2397), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6044), 36, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120660,11 +121170,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -120679,13 +121189,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [55659] = 2, - ACTIONS(6262), 4, + [55765] = 2, + ACTIONS(6338), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6260), 36, + ACTIONS(6336), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120722,15 +121232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [55704] = 4, - ACTIONS(4924), 1, + [55810] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(1852), 1, + STATE(2398), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6048), 36, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120748,49 +121258,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - 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, - [55753] = 2, - ACTIONS(6350), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6348), 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__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -120807,19 +121275,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55798] = 4, - ACTIONS(3035), 1, + [55859] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(2188), 1, + STATE(2399), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6032), 35, + ACTIONS(6072), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120837,6 +121303,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, @@ -120853,18 +121320,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [55847] = 4, - ACTIONS(3035), 1, + sym__whitespace, + [55908] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(2189), 1, + STATE(2400), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6036), 35, + ACTIONS(6032), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120882,6 +121348,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, @@ -120898,18 +121365,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [55896] = 4, - ACTIONS(3035), 1, + sym__whitespace, + [55957] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(2190), 1, + STATE(2401), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6040), 35, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120927,6 +121393,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, @@ -120943,18 +121410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [55945] = 4, - ACTIONS(3035), 1, + sym__whitespace, + [56006] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(2191), 1, + STATE(2406), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6044), 35, + ACTIONS(6040), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120972,6 +121438,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, @@ -120988,16 +121455,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [55994] = 2, - ACTIONS(6278), 2, + sym__whitespace, + [56055] = 4, + ACTIONS(4874), 1, + anon_sym_LBRACE, + STATE(2407), 1, + sym__pandoc_attr_specifier, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6276), 38, - sym__line_ending, + ACTIONS(6044), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121014,6 +121483,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, @@ -121030,19 +121500,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [56039] = 4, - ACTIONS(3035), 1, + [56104] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(2197), 1, + STATE(2408), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6048), 35, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121060,6 +121528,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, @@ -121076,18 +121545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [56088] = 4, - ACTIONS(3035), 1, + sym__whitespace, + [56153] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(2198), 1, + STATE(2409), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6052), 35, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121105,6 +121573,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, @@ -121121,18 +121590,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [56137] = 4, - ACTIONS(4924), 1, - anon_sym_LBRACE, - STATE(1853), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 2, + sym__whitespace, + [56202] = 2, + ACTIONS(6416), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6052), 36, - sym__soft_line_ending, + ACTIONS(3004), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121153,7 +121620,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -121166,15 +121632,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [56186] = 2, - ACTIONS(6266), 4, + [56247] = 2, + ACTIONS(6342), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6264), 36, + ACTIONS(6340), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121211,15 +121678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [56231] = 4, - ACTIONS(5136), 1, + [56292] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(1874), 1, + STATE(2415), 1, sym__pandoc_attr_specifier, - ACTIONS(5962), 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5960), 36, + ACTIONS(6052), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121237,12 +121704,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -121256,16 +121723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56280] = 4, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(2021), 1, - sym__pandoc_attr_specifier, - ACTIONS(6034), 2, + [56341] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6032), 36, + ACTIONS(6140), 38, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121292,25 +121757,23 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [56329] = 4, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(2026), 1, - sym__pandoc_attr_specifier, - ACTIONS(6038), 2, + [56386] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6036), 36, + ACTIONS(6144), 38, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121337,25 +121800,25 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [56378] = 4, - ACTIONS(3257), 1, + [56431] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(2027), 1, + STATE(2416), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6040), 36, - sym__line_ending, + ACTIONS(6108), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121372,6 +121835,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, @@ -121382,7 +121846,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -121391,16 +121854,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56427] = 4, - ACTIONS(3257), 1, + [56480] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(2029), 1, + STATE(2417), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6044), 36, - sym__line_ending, + ACTIONS(6096), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121417,6 +121880,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, @@ -121427,7 +121891,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -121436,16 +121899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56476] = 4, - ACTIONS(5136), 1, - anon_sym_LBRACE, - STATE(1877), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 2, + [56529] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5984), 36, + ACTIONS(6148), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121467,7 +121928,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -121479,18 +121939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [56525] = 4, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(2039), 1, - sym__pandoc_attr_specifier, - ACTIONS(6050), 2, + [56574] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6048), 36, + ACTIONS(6152), 38, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121517,25 +121976,25 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [56574] = 4, - ACTIONS(3257), 1, + [56619] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(2040), 1, + STATE(2418), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6052), 36, - sym__line_ending, + ACTIONS(6100), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121552,6 +122011,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, @@ -121562,7 +122022,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -121571,15 +122030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56623] = 4, - ACTIONS(5136), 1, + [56668] = 4, + ACTIONS(4874), 1, anon_sym_LBRACE, - STATE(1879), 1, + STATE(1557), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6056), 36, + ACTIONS(6080), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121597,12 +122056,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -121616,14 +122075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56672] = 2, - ACTIONS(6066), 2, + [56717] = 4, + ACTIONS(4874), 1, + anon_sym_LBRACE, + STATE(1558), 1, + sym__pandoc_attr_specifier, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6064), 38, - sym__line_ending, + ACTIONS(6084), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121640,6 +122101,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, @@ -121656,17 +122118,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [56717] = 2, - ACTIONS(6270), 4, + [56766] = 4, + ACTIONS(6418), 1, + sym__whitespace, + ACTIONS(6420), 1, + sym_block_continuation, + ACTIONS(2405), 3, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6268), 36, - sym__soft_line_ending, + ACTIONS(2403), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121702,16 +122165,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [56762] = 4, - ACTIONS(5136), 1, + [56815] = 4, + ACTIONS(6422), 1, anon_sym_LBRACE, - STATE(1881), 1, - sym__pandoc_attr_specifier, + STATE(1870), 1, + sym_attribute_specifier, ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, ACTIONS(6060), 36, - sym__soft_line_ending, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121733,12 +122196,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_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -121747,13 +122210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56811] = 2, - ACTIONS(6322), 4, - aux_sym_pandoc_span_token1, + [56864] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1574), 1, + sym__pandoc_attr_specifier, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6320), 36, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121772,6 +122237,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, @@ -121786,18 +122252,64 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [56913] = 4, + ACTIONS(5118), 1, anon_sym_LBRACE, + STATE(1575), 1, + sym__pandoc_attr_specifier, + ACTIONS(6094), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6092), 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_lt_str, + 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, - [56856] = 2, - ACTIONS(6086), 2, + sym__whitespace, + [56962] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1576), 1, + sym__pandoc_attr_specifier, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6084), 38, - sym__line_ending, + ACTIONS(6056), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121815,6 +122327,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, @@ -121830,18 +122343,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [57011] = 4, + ACTIONS(5118), 1, anon_sym_LBRACE, + STATE(1577), 1, + sym__pandoc_attr_specifier, + ACTIONS(6130), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6128), 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_lt_str, + 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, - [56901] = 4, - ACTIONS(5136), 1, + [57060] = 4, + ACTIONS(5118), 1, anon_sym_LBRACE, - STATE(1894), 1, + STATE(1588), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5980), 36, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121860,11 +122417,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -121878,15 +122435,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56950] = 4, - ACTIONS(5136), 1, + [57109] = 4, + ACTIONS(5118), 1, anon_sym_LBRACE, - STATE(1897), 1, + STATE(1590), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6000), 36, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121905,16 +122462,61 @@ static 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_inline_note_reference, + sym_html_element, + sym__pandoc_lt_str, + 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, + [57158] = 4, + ACTIONS(3353), 1, + anon_sym_LBRACE, + STATE(1871), 1, + sym__pandoc_attr_specifier, + ACTIONS(6118), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6116), 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__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -121923,13 +122525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56999] = 2, - ACTIONS(6274), 4, - aux_sym_pandoc_span_token1, + [57207] = 4, + ACTIONS(6424), 1, + anon_sym_LBRACE, + STATE(1598), 1, + sym_attribute_specifier, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6272), 36, + ACTIONS(6060), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121948,6 +122552,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, @@ -121962,20 +122567,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [57044] = 4, - ACTIONS(3445), 1, + sym__whitespace, + [57256] = 4, + ACTIONS(5118), 1, anon_sym_LBRACE, - STATE(1782), 1, + STATE(1599), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6052), 35, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121994,6 +122597,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, @@ -122009,16 +122613,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, anon_sym_PIPE, - [57093] = 2, - ACTIONS(5994), 2, + sym__whitespace, + [57305] = 4, + ACTIONS(3353), 1, + anon_sym_LBRACE, + STATE(1642), 1, + sym__pandoc_attr_specifier, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 38, + ACTIONS(6028), 36, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122045,26 +122651,25 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, - [57138] = 4, - ACTIONS(3445), 1, + [57354] = 4, + ACTIONS(3353), 1, anon_sym_LBRACE, - STATE(1729), 1, + STATE(1645), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 3, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6060), 35, - sym__soft_line_ending, + ACTIONS(6092), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122091,22 +122696,25 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, anon_sym_PIPE, - [57187] = 2, - ACTIONS(6150), 2, + sym__whitespace, + [57403] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1600), 1, + sym__pandoc_attr_specifier, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6148), 38, - sym__line_ending, + ACTIONS(6120), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122124,6 +122732,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, @@ -122139,17 +122748,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [57232] = 2, - ACTIONS(6154), 2, + [57452] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1601), 1, + sym__pandoc_attr_specifier, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6152), 38, - sym__line_ending, + ACTIONS(6048), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122167,6 +122777,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, @@ -122182,17 +122793,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [57277] = 2, - ACTIONS(6158), 2, + [57501] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1602), 1, + sym__pandoc_attr_specifier, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6156), 38, - sym__line_ending, + ACTIONS(6068), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122210,6 +122822,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, @@ -122225,17 +122838,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [57322] = 2, - ACTIONS(6306), 2, + [57550] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1603), 1, + sym__pandoc_attr_specifier, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6304), 38, - sym__line_ending, + ACTIONS(6076), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122253,6 +122867,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, @@ -122268,17 +122883,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [57367] = 2, - ACTIONS(6310), 2, + [57599] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1604), 1, + sym__pandoc_attr_specifier, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6308), 38, - sym__line_ending, + ACTIONS(6072), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122296,6 +122912,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, @@ -122311,17 +122928,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [57412] = 2, - ACTIONS(6134), 2, + [57648] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1605), 1, + sym__pandoc_attr_specifier, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6132), 38, - sym__line_ending, + ACTIONS(6032), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122339,6 +122957,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, @@ -122354,17 +122973,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [57457] = 2, - ACTIONS(6162), 2, + [57697] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1606), 1, + sym__pandoc_attr_specifier, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6160), 38, - sym__line_ending, + ACTIONS(6036), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122382,6 +123002,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, @@ -122397,17 +123018,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [57502] = 2, - ACTIONS(6354), 2, + [57746] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1610), 1, + sym__pandoc_attr_specifier, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6352), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(6040), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122425,6 +123047,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, @@ -122440,17 +123063,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [57547] = 2, - ACTIONS(6166), 2, + [57795] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1611), 1, + sym__pandoc_attr_specifier, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6164), 38, - sym__line_ending, + ACTIONS(6044), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122468,6 +123092,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, @@ -122483,17 +123108,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [57592] = 2, - ACTIONS(6098), 2, + [57844] = 4, + ACTIONS(3097), 1, + anon_sym_LBRACE, + STATE(2156), 1, + sym__pandoc_attr_specifier, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6096), 38, - sym__line_ending, + sym__whitespace, + ACTIONS(6028), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122526,18 +123153,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, + anon_sym_PIPE, + [57893] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, + STATE(2157), 1, + sym__pandoc_attr_specifier, + ACTIONS(6094), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + sym__whitespace, + ACTIONS(6092), 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_lt_str, + 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, + [57942] = 4, + ACTIONS(3097), 1, + anon_sym_LBRACE, + STATE(2158), 1, + sym__pandoc_attr_specifier, + ACTIONS(6058), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, sym__whitespace, - [57637] = 4, - ACTIONS(6356), 1, + ACTIONS(6056), 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_lt_str, + 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, + [57991] = 4, + ACTIONS(5118), 1, anon_sym_LBRACE, - STATE(1907), 1, - sym_attribute_specifier, - ACTIONS(5968), 2, + STATE(1612), 1, + sym__pandoc_attr_specifier, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5966), 36, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122556,11 +123272,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -122574,15 +123290,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [57686] = 4, - ACTIONS(5136), 1, + [58040] = 4, + ACTIONS(5118), 1, anon_sym_LBRACE, - STATE(1908), 1, + STATE(1613), 1, sym__pandoc_attr_specifier, - ACTIONS(5974), 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5972), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122601,11 +123317,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -122619,14 +123335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [57735] = 2, - ACTIONS(6022), 2, + [58089] = 4, + ACTIONS(3097), 1, + anon_sym_LBRACE, + STATE(2159), 1, + sym__pandoc_attr_specifier, + ACTIONS(6130), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 38, - sym__line_ending, + sym__whitespace, + ACTIONS(6128), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122659,17 +123378,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [57780] = 2, - ACTIONS(6170), 2, + [58138] = 4, + ACTIONS(3097), 1, + anon_sym_LBRACE, + STATE(2170), 1, + sym__pandoc_attr_specifier, + ACTIONS(6106), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6168), 38, - sym__line_ending, + sym__whitespace, + ACTIONS(6104), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122702,17 +123423,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, + anon_sym_PIPE, + [58187] = 4, + ACTIONS(3353), 1, anon_sym_LBRACE, + STATE(1872), 1, + sym__pandoc_attr_specifier, + ACTIONS(6122), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6120), 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__pandoc_lt_str, + sym__pipe_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, - [57825] = 2, - ACTIONS(6174), 2, + [58236] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1619), 1, + sym__pandoc_attr_specifier, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6172), 38, - sym__line_ending, + ACTIONS(6052), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122730,6 +123497,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, @@ -122745,16 +123513,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [57870] = 2, - ACTIONS(6278), 4, - aux_sym_pandoc_span_token1, + [58285] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1620), 1, + sym__pandoc_attr_specifier, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6276), 36, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122773,6 +123542,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, @@ -122787,18 +123557,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [57915] = 2, - ACTIONS(6178), 2, + sym__whitespace, + [58334] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1621), 1, + sym__pandoc_attr_specifier, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6176), 38, - sym__line_ending, + ACTIONS(6096), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122816,6 +123587,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, @@ -122831,17 +123603,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [57960] = 2, - ACTIONS(6182), 2, + [58383] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1622), 1, + sym__pandoc_attr_specifier, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6180), 38, - sym__line_ending, + ACTIONS(6100), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122859,6 +123632,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, @@ -122874,16 +123648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [58005] = 2, - ACTIONS(6332), 4, - aux_sym_pandoc_span_token1, + [58432] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(1628), 1, + sym__pandoc_attr_specifier, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6330), 36, + ACTIONS(6080), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122902,6 +123677,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, @@ -122916,18 +123692,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [58050] = 2, - ACTIONS(6186), 2, + sym__whitespace, + [58481] = 4, + ACTIONS(5118), 1, + anon_sym_LBRACE, + STATE(2421), 1, + sym__pandoc_attr_specifier, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6184), 38, - sym__line_ending, + ACTIONS(6084), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122945,6 +123722,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, @@ -122960,16 +123738,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [58530] = 4, + ACTIONS(3353), 1, anon_sym_LBRACE, + STATE(1877), 1, + sym__pandoc_attr_specifier, + ACTIONS(6050), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6048), 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__pandoc_lt_str, + sym__pipe_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, - [58095] = 2, - ACTIONS(6282), 4, - aux_sym_pandoc_span_token1, + [58579] = 4, + ACTIONS(3097), 1, + anon_sym_LBRACE, + STATE(2172), 1, + sym__pandoc_attr_specifier, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6280), 36, + ACTIONS(6024), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123002,20 +123827,64 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, + anon_sym_PIPE, + [58628] = 4, + ACTIONS(3353), 1, anon_sym_LBRACE, + STATE(1648), 1, + sym__pandoc_attr_specifier, + ACTIONS(6058), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6056), 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__pandoc_lt_str, + sym__pipe_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, - [58140] = 4, - ACTIONS(4924), 1, + sym__whitespace, + [58677] = 4, + ACTIONS(3353), 1, anon_sym_LBRACE, - STATE(1797), 1, + STATE(1650), 1, sym__pandoc_attr_specifier, - ACTIONS(5962), 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5960), 36, - sym__soft_line_ending, + ACTIONS(6128), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -123036,13 +123905,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_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -123051,16 +123920,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58189] = 4, - ACTIONS(4984), 1, + [58726] = 4, + ACTIONS(3353), 1, anon_sym_LBRACE, - STATE(2215), 1, + STATE(1722), 1, sym__pandoc_attr_specifier, - ACTIONS(5962), 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5960), 36, - sym__soft_line_ending, + ACTIONS(6104), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -123069,7 +123938,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, @@ -123088,6 +123956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -123096,15 +123965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58238] = 4, - ACTIONS(4984), 1, + [58775] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2216), 1, + STATE(1646), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5984), 36, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123114,7 +123983,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, @@ -123125,6 +123993,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, @@ -123141,15 +124010,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58287] = 4, - ACTIONS(4984), 1, + [58824] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2217), 1, + STATE(1647), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6056), 36, + ACTIONS(6092), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123159,7 +124028,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, @@ -123170,6 +124038,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, @@ -123186,16 +124055,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58336] = 4, - ACTIONS(4984), 1, + [58873] = 4, + ACTIONS(3353), 1, anon_sym_LBRACE, - STATE(2218), 1, + STATE(1728), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6060), 36, - sym__soft_line_ending, + ACTIONS(6024), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -123204,7 +124073,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, @@ -123223,6 +124091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -123231,15 +124100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58385] = 4, - ACTIONS(5136), 1, + [58922] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(1909), 1, + STATE(1649), 1, sym__pandoc_attr_specifier, - ACTIONS(5978), 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5976), 36, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123259,10 +124128,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -123276,15 +124145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58434] = 4, - ACTIONS(5136), 1, + [58971] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(1911), 1, + STATE(1651), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5988), 36, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123304,10 +124173,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -123321,15 +124190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58483] = 4, - ACTIONS(4984), 1, + [59020] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2229), 1, + STATE(1662), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5980), 36, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123339,7 +124208,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, @@ -123350,6 +124218,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, @@ -123366,15 +124235,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58532] = 4, - ACTIONS(4984), 1, + [59069] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2231), 1, + STATE(1666), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6000), 36, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123384,7 +124253,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, @@ -123395,6 +124263,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, @@ -123411,14 +124280,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58581] = 2, - ACTIONS(6190), 2, + [59118] = 4, + ACTIONS(3353), 1, + anon_sym_LBRACE, + STATE(1879), 1, + sym__pandoc_attr_specifier, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6188), 38, + ACTIONS(6068), 36, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -123445,24 +124316,24 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, - [58626] = 4, - ACTIONS(6358), 1, + [59167] = 4, + ACTIONS(6426), 1, anon_sym_LBRACE, - STATE(2239), 1, + STATE(1676), 1, sym_attribute_specifier, - ACTIONS(5968), 2, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5966), 36, + ACTIONS(6060), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123472,7 +124343,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, @@ -123483,6 +124353,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, @@ -123499,15 +124370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58675] = 4, - ACTIONS(4984), 1, + [59216] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2240), 1, + STATE(1677), 1, sym__pandoc_attr_specifier, - ACTIONS(5974), 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5972), 36, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123517,7 +124388,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, @@ -123528,6 +124398,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, @@ -123544,15 +124415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58724] = 4, - ACTIONS(4984), 1, + [59265] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2241), 1, + STATE(1678), 1, sym__pandoc_attr_specifier, - ACTIONS(5978), 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5976), 36, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123562,7 +124433,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, @@ -123573,6 +124443,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, @@ -123589,15 +124460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58773] = 4, - ACTIONS(4984), 1, + [59314] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2242), 1, + STATE(1680), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5988), 36, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123607,7 +124478,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, @@ -123618,6 +124488,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, @@ -123634,15 +124505,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58822] = 4, - ACTIONS(4984), 1, + [59363] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2243), 1, + STATE(1681), 1, sym__pandoc_attr_specifier, - ACTIONS(5994), 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 36, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123652,7 +124523,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, @@ -123663,6 +124533,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, @@ -123679,15 +124550,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58871] = 4, - ACTIONS(4984), 1, + [59412] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2244), 1, + STATE(1683), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6004), 36, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123697,7 +124568,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, @@ -123708,6 +124578,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, @@ -123724,15 +124595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58920] = 4, - ACTIONS(4984), 1, - anon_sym_LBRACE, - STATE(2245), 1, - sym__pandoc_attr_specifier, - ACTIONS(6010), 2, + [59461] = 2, + ACTIONS(6390), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6008), 36, + sym__whitespace, + ACTIONS(6388), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123742,7 +124611,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, @@ -123766,18 +124634,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [58969] = 4, - ACTIONS(4984), 1, + [59506] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2246), 1, + STATE(1684), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6012), 36, + ACTIONS(6072), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123787,7 +124656,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, @@ -123798,6 +124666,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, @@ -123814,15 +124683,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59018] = 4, - ACTIONS(4984), 1, - anon_sym_LBRACE, - STATE(2247), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 2, + [59555] = 2, + ACTIONS(6242), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6016), 36, + sym__whitespace, + ACTIONS(6240), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123832,7 +124699,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, @@ -123856,18 +124722,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [59067] = 4, - ACTIONS(4984), 1, + [59600] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2251), 1, + STATE(1687), 1, sym__pandoc_attr_specifier, - ACTIONS(5958), 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5956), 36, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123877,7 +124744,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, @@ -123888,6 +124754,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, @@ -123904,16 +124771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59116] = 4, - ACTIONS(4984), 1, - anon_sym_LBRACE, - STATE(2252), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 2, + [59649] = 2, + ACTIONS(6222), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 36, + ACTIONS(6220), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -123922,7 +124787,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, @@ -123947,18 +124811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [59165] = 4, - ACTIONS(5136), 1, - anon_sym_LBRACE, - STATE(1912), 1, - sym__pandoc_attr_specifier, - ACTIONS(5994), 2, + [59694] = 2, + ACTIONS(6226), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 36, + ACTIONS(6224), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -123980,7 +124843,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -123992,17 +124854,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [59214] = 4, - ACTIONS(5136), 1, + [59739] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(1913), 1, + STATE(1692), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6004), 36, + ACTIONS(6040), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124022,10 +124885,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -124039,15 +124902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59263] = 4, - ACTIONS(4984), 1, + [59788] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2253), 1, + STATE(1693), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6024), 36, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124057,7 +124920,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, @@ -124068,6 +124930,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, @@ -124084,59 +124947,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59312] = 4, - ACTIONS(4984), 1, + [59837] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2254), 1, + STATE(1695), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6028), 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_lt_str, - 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, - [59361] = 2, - ACTIONS(6194), 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6192), 38, - sym__line_ending, + ACTIONS(6112), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -124155,6 +124975,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, @@ -124169,18 +124990,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [59406] = 4, - ACTIONS(4984), 1, + [59886] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2260), 1, + STATE(1696), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6032), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124190,7 +125010,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, @@ -124201,6 +125020,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, @@ -124217,60 +125037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59455] = 4, - ACTIONS(3445), 1, + [59935] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(1740), 1, + STATE(2197), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 3, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5980), 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_lt_str, - 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, - [59504] = 4, - ACTIONS(4984), 1, - anon_sym_LBRACE, - STATE(2262), 1, - sym__pandoc_attr_specifier, - ACTIONS(6042), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6040), 36, + ACTIONS(6052), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124280,7 +125056,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, @@ -124305,17 +125080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [59553] = 4, - ACTIONS(4984), 1, + [59984] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2263), 1, + STATE(1703), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6044), 36, + ACTIONS(6052), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124325,7 +125100,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, @@ -124336,6 +125110,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, @@ -124352,15 +125127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59602] = 4, - ACTIONS(4984), 1, + [60033] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2269), 1, + STATE(1704), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6048), 36, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124370,7 +125145,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, @@ -124381,6 +125155,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, @@ -124397,15 +125172,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59651] = 4, - ACTIONS(4984), 1, + [60082] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2270), 1, + STATE(1705), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6052), 36, + ACTIONS(6096), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124415,7 +125190,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, @@ -124426,6 +125200,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, @@ -124442,11 +125217,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59700] = 2, - ACTIONS(6198), 2, + [60131] = 2, + ACTIONS(6230), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6196), 38, + ACTIONS(6228), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -124485,14 +125260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [59745] = 2, - ACTIONS(6202), 2, + [60176] = 4, + ACTIONS(4048), 1, + anon_sym_LBRACE, + STATE(1706), 1, + sym__pandoc_attr_specifier, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6200), 38, - sym__line_ending, + ACTIONS(6100), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -124511,6 +125288,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, @@ -124525,16 +125303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [59790] = 2, - ACTIONS(6286), 4, + [60225] = 2, + ACTIONS(6346), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6284), 36, + ACTIONS(6344), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124571,16 +125348,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [59835] = 4, - ACTIONS(5568), 1, - anon_sym_LBRACE, - STATE(2285), 1, - sym__pandoc_attr_specifier, - ACTIONS(5962), 2, + [60270] = 2, + ACTIONS(6234), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5960), 36, + ACTIONS(6232), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -124590,7 +125365,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, @@ -124614,62 +125388,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [59884] = 4, - ACTIONS(5568), 1, anon_sym_LBRACE, - STATE(2286), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(5984), 36, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__double_quote_span_close, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - 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, - [59933] = 4, - ACTIONS(5136), 1, + [60315] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(1914), 1, + STATE(1712), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6008), 36, + ACTIONS(6080), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124689,10 +125419,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -124706,15 +125436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59982] = 4, - ACTIONS(5136), 1, + [60364] = 4, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(1915), 1, + STATE(1713), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6012), 36, + ACTIONS(6084), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124734,10 +125464,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -124751,16 +125481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60031] = 4, - ACTIONS(5568), 1, - anon_sym_LBRACE, - STATE(2287), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 2, + [60413] = 2, + ACTIONS(6238), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6056), 36, + ACTIONS(6236), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -124770,7 +125498,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, @@ -124794,62 +125521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [60080] = 4, - ACTIONS(5568), 1, anon_sym_LBRACE, - STATE(2288), 1, - sym__pandoc_attr_specifier, - ACTIONS(6062), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6060), 36, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__double_quote_span_close, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - 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, - [60129] = 4, - ACTIONS(5568), 1, + [60458] = 4, + ACTIONS(4258), 1, anon_sym_LBRACE, - STATE(2299), 1, + STATE(2250), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5980), 36, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124859,8 +125542,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, @@ -124886,103 +125569,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60178] = 4, - ACTIONS(5568), 1, + [60507] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(2301), 1, + STATE(2198), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6000), 36, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__double_quote_span_close, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - 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, - [60227] = 2, - ACTIONS(6206), 2, + ACTIONS(6110), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6204), 38, - 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_lt_str, - sym__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, - [60272] = 4, - ACTIONS(6360), 1, - anon_sym_LBRACE, - STATE(2309), 1, - sym_attribute_specifier, - ACTIONS(5968), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(5966), 36, + ACTIONS(6108), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124993,7 +125589,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, @@ -125017,17 +125612,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [60321] = 4, - ACTIONS(5568), 1, + [60556] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2310), 1, + STATE(1732), 1, sym__pandoc_attr_specifier, - ACTIONS(5974), 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5972), 36, + sym__whitespace, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125038,7 +125634,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, @@ -125062,17 +125657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [60370] = 4, - ACTIONS(5568), 1, + [60605] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2311), 1, + STATE(1734), 1, sym__pandoc_attr_specifier, - ACTIONS(5978), 2, + ACTIONS(6094), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5976), 36, + sym__whitespace, + ACTIONS(6092), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125083,7 +125679,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, @@ -125107,17 +125702,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [60419] = 4, - ACTIONS(5568), 1, + [60654] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2312), 1, + STATE(1737), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 2, + ACTIONS(6058), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5988), 36, + sym__whitespace, + ACTIONS(6056), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125128,7 +125724,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, @@ -125152,17 +125747,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [60468] = 4, - ACTIONS(5568), 1, + [60703] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2313), 1, + STATE(1738), 1, sym__pandoc_attr_specifier, - ACTIONS(5994), 2, + ACTIONS(6130), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 36, + sym__whitespace, + ACTIONS(6128), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125173,7 +125769,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, @@ -125197,17 +125792,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [60517] = 4, - ACTIONS(5568), 1, + [60752] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2315), 1, + STATE(1749), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 2, + ACTIONS(6106), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6004), 36, + sym__whitespace, + ACTIONS(6104), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125218,7 +125814,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, @@ -125242,17 +125837,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [60566] = 4, - ACTIONS(5568), 1, + [60801] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2316), 1, + STATE(1751), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 2, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6008), 36, + sym__whitespace, + ACTIONS(6024), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125263,7 +125859,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, @@ -125287,17 +125882,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [60615] = 4, - ACTIONS(5568), 1, + [60850] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(2318), 1, + STATE(2199), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 2, + ACTIONS(6098), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6012), 36, + sym__whitespace, + ACTIONS(6096), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125308,7 +125904,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, @@ -125332,17 +125927,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [60664] = 4, - ACTIONS(5568), 1, + [60899] = 4, + ACTIONS(6428), 1, anon_sym_LBRACE, - STATE(2319), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 2, + STATE(1759), 1, + sym_attribute_specifier, + ACTIONS(6062), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6016), 36, + sym__whitespace, + ACTIONS(6060), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125353,7 +125949,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, @@ -125377,17 +125972,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [60713] = 4, - ACTIONS(5136), 1, + [60948] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(1916), 1, + STATE(1760), 1, sym__pandoc_attr_specifier, - ACTIONS(6018), 2, + ACTIONS(6118), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6016), 36, + sym__whitespace, + ACTIONS(6116), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125410,7 +126006,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -125422,17 +126017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [60762] = 4, - ACTIONS(5136), 1, + [60997] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(1920), 1, + STATE(1761), 1, sym__pandoc_attr_specifier, - ACTIONS(5958), 2, + ACTIONS(6122), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5956), 36, + sym__whitespace, + ACTIONS(6120), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125455,7 +126051,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -125467,18 +126062,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [60811] = 4, - ACTIONS(5568), 1, - anon_sym_LBRACE, - STATE(2323), 1, - sym__pandoc_attr_specifier, - ACTIONS(5958), 2, + [61046] = 2, + ACTIONS(6242), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5956), 36, + ACTIONS(6240), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -125488,7 +126081,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, @@ -125512,17 +126104,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [60860] = 4, - ACTIONS(5568), 1, + [61091] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2324), 1, + STATE(1763), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 2, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 36, + sym__whitespace, + ACTIONS(6048), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125533,7 +126127,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, @@ -125557,17 +126150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [60909] = 4, - ACTIONS(5568), 1, + [61140] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2325), 1, + STATE(1764), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 2, + ACTIONS(6070), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6024), 36, + sym__whitespace, + ACTIONS(6068), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125578,7 +126172,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, @@ -125602,18 +126195,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [60958] = 4, - ACTIONS(5568), 1, - anon_sym_LBRACE, - STATE(2326), 1, - sym__pandoc_attr_specifier, - ACTIONS(6030), 2, + [61189] = 2, + ACTIONS(6246), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 36, + ACTIONS(6244), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -125623,7 +126214,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, @@ -125647,16 +126237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61007] = 2, - ACTIONS(6210), 2, + [61234] = 4, + ACTIONS(3353), 1, + anon_sym_LBRACE, + STATE(2061), 1, + sym__pandoc_attr_specifier, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6208), 38, + ACTIONS(6080), 36, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -125683,24 +126276,25 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, - [61052] = 4, - ACTIONS(5568), 1, + [61283] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2333), 1, + STATE(1765), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 2, + ACTIONS(6078), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6032), 36, + sym__whitespace, + ACTIONS(6076), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125711,7 +126305,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, @@ -125735,17 +126328,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [61101] = 4, - ACTIONS(5568), 1, + [61332] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2334), 1, + STATE(1766), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 2, + ACTIONS(6074), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6036), 36, + sym__whitespace, + ACTIONS(6072), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125756,7 +126350,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, @@ -125780,17 +126373,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [61150] = 4, - ACTIONS(5568), 1, + [61381] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2335), 1, + STATE(1767), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 2, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6040), 36, + sym__whitespace, + ACTIONS(6032), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125801,7 +126395,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, @@ -125825,17 +126418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [61199] = 4, - ACTIONS(5568), 1, + [61430] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2336), 1, + STATE(1768), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 2, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6044), 36, + sym__whitespace, + ACTIONS(6036), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125846,7 +126440,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, @@ -125870,17 +126463,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [61248] = 4, - ACTIONS(5568), 1, + [61479] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2342), 1, + STATE(1772), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 2, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6048), 36, + sym__whitespace, + ACTIONS(6040), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125891,7 +126485,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, @@ -125915,17 +126508,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [61297] = 4, - ACTIONS(5568), 1, + [61528] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2343), 1, + STATE(1773), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 2, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6052), 36, + sym__whitespace, + ACTIONS(6044), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125936,7 +126530,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, @@ -125960,15 +126553,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [61346] = 2, - ACTIONS(6290), 4, - aux_sym_pandoc_span_token1, + [61577] = 4, + ACTIONS(3513), 1, + anon_sym_LBRACE, + STATE(1774), 1, + sym__pandoc_attr_specifier, + ACTIONS(6114), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6288), 36, + ACTIONS(6112), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126001,19 +126597,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - [61391] = 4, - ACTIONS(4614), 1, + [61626] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2360), 1, + STATE(1775), 1, sym__pandoc_attr_specifier, - ACTIONS(5962), 2, + ACTIONS(6090), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5960), 36, + sym__whitespace, + ACTIONS(6088), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126031,7 +126627,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, @@ -126048,18 +126643,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [61440] = 4, - ACTIONS(4614), 1, - anon_sym_LBRACE, - STATE(2361), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 2, + [61675] = 2, + ACTIONS(6250), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5984), 36, + ACTIONS(6248), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -126076,7 +126669,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, @@ -126093,18 +126685,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61489] = 4, - ACTIONS(5136), 1, - anon_sym_LBRACE, - STATE(1921), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 2, + [61720] = 2, + ACTIONS(6254), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 36, + ACTIONS(6252), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -126126,7 +126717,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -126138,18 +126728,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61538] = 4, - ACTIONS(5136), 1, + [61765] = 4, + ACTIONS(3353), 1, anon_sym_LBRACE, - STATE(1923), 1, + STATE(2062), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6024), 36, - sym__soft_line_ending, + ACTIONS(6084), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -126171,12 +126762,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_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -126185,16 +126776,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [61587] = 4, - ACTIONS(4614), 1, - anon_sym_LBRACE, - STATE(2362), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 2, + [61814] = 2, + ACTIONS(6258), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6056), 36, + ACTIONS(6256), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -126211,7 +126800,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, @@ -126228,17 +126816,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61636] = 4, - ACTIONS(4614), 1, + [61859] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(2363), 1, + STATE(2200), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 2, + ACTIONS(6102), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6060), 36, + sym__whitespace, + ACTIONS(6100), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126256,7 +126846,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, @@ -126273,17 +126862,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, + [61908] = 2, + ACTIONS(6246), 4, + aux_sym_pandoc_span_token1, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, sym__whitespace, - [61685] = 4, - ACTIONS(4614), 1, + ACTIONS(6244), 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_inline_note_reference, + sym_html_element, + sym__pandoc_lt_str, + 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, + [61953] = 4, + ACTIONS(4258), 1, anon_sym_LBRACE, - STATE(2374), 1, + STATE(2251), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5980), 36, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126293,6 +126925,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, @@ -126301,7 +126934,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, @@ -126320,16 +126952,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [61734] = 4, - ACTIONS(4614), 1, - anon_sym_LBRACE, - STATE(2376), 1, - sym__pandoc_attr_specifier, - ACTIONS(6002), 2, + [62002] = 2, + ACTIONS(6262), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6000), 36, + ACTIONS(6260), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -126346,7 +126976,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, @@ -126363,18 +126992,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61783] = 4, - ACTIONS(3257), 1, + [62047] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(1629), 1, + STATE(1782), 1, sym__pandoc_attr_specifier, - ACTIONS(5962), 2, + ACTIONS(6110), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5960), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6108), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -126401,22 +127032,24 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [61832] = 2, - ACTIONS(6174), 4, - aux_sym_pandoc_span_token1, + [62096] = 4, + ACTIONS(3513), 1, + anon_sym_LBRACE, + STATE(1783), 1, + sym__pandoc_attr_specifier, + ACTIONS(6098), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6172), 36, + ACTIONS(6096), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126449,64 +127082,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - [61877] = 4, - ACTIONS(4614), 1, + [62145] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2385), 1, + STATE(1784), 1, sym__pandoc_attr_specifier, - ACTIONS(5974), 2, + ACTIONS(6102), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5972), 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_lt_str, - 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, - [61926] = 4, - ACTIONS(4614), 1, - anon_sym_LBRACE, - STATE(2386), 1, - sym__pandoc_attr_specifier, - ACTIONS(5978), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(5976), 36, + ACTIONS(6100), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126524,7 +127112,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, @@ -126541,62 +127128,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [61975] = 4, - ACTIONS(4614), 1, + [62194] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2387), 1, + STATE(1790), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 2, + ACTIONS(6082), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5988), 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_lt_str, - 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, - [62024] = 4, - ACTIONS(4614), 1, - anon_sym_LBRACE, - STATE(2388), 1, - sym__pandoc_attr_specifier, - ACTIONS(5994), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(5992), 36, + ACTIONS(6080), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126614,7 +127157,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, @@ -126631,62 +127173,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [62073] = 4, - ACTIONS(4614), 1, + [62243] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(2389), 1, + STATE(1791), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 2, + ACTIONS(6086), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6004), 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_lt_str, - 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, - [62122] = 4, - ACTIONS(4614), 1, - anon_sym_LBRACE, - STATE(2390), 1, - sym__pandoc_attr_specifier, - ACTIONS(6010), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6008), 36, + ACTIONS(6084), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126704,7 +127202,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, @@ -126721,18 +127218,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [62171] = 4, - ACTIONS(4614), 1, + [62292] = 4, + ACTIONS(3353), 1, anon_sym_LBRACE, - STATE(2392), 1, + STATE(1882), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6012), 36, - sym__soft_line_ending, + ACTIONS(6076), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -126749,7 +127246,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, @@ -126760,6 +127256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -126768,16 +127265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [62220] = 4, - ACTIONS(4614), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 2, + [62341] = 2, + ACTIONS(6266), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6016), 36, + ACTIONS(6264), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -126794,7 +127289,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, @@ -126811,18 +127305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62269] = 4, - ACTIONS(4614), 1, - anon_sym_LBRACE, - STATE(2397), 1, - sym__pandoc_attr_specifier, - ACTIONS(5958), 2, + [62386] = 2, + ACTIONS(6270), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5956), 36, + ACTIONS(6268), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -126839,7 +127332,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, @@ -126856,18 +127348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62318] = 4, - ACTIONS(4614), 1, - anon_sym_LBRACE, - STATE(2398), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 2, + [62431] = 2, + ACTIONS(6274), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 36, + ACTIONS(6272), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -126884,7 +127375,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, @@ -126901,17 +127391,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62367] = 4, - ACTIONS(4614), 1, - anon_sym_LBRACE, - STATE(2399), 1, - sym__pandoc_attr_specifier, - ACTIONS(6026), 2, + [62476] = 2, + ACTIONS(6350), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6024), 36, + sym__whitespace, + ACTIONS(6348), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126929,7 +127418,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, @@ -126945,13 +127433,14 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [62416] = 4, - ACTIONS(4614), 1, + [62521] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(2400), 1, + STATE(1806), 1, sym__pandoc_attr_specifier, ACTIONS(6030), 2, anon_sym_DOLLAR, @@ -126974,11 +127463,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -126993,16 +127482,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [62465] = 4, - ACTIONS(3257), 1, + [62570] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1634), 1, + STATE(1807), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5984), 36, - sym__line_ending, + ACTIONS(6092), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -127023,13 +127512,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_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -127038,16 +127527,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [62514] = 4, - ACTIONS(4614), 1, - anon_sym_LBRACE, - STATE(2406), 1, - sym__pandoc_attr_specifier, - ACTIONS(6034), 2, + [62619] = 2, + ACTIONS(6278), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6032), 36, + ACTIONS(6276), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -127064,7 +127551,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, @@ -127081,18 +127567,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62563] = 4, - ACTIONS(4614), 1, - anon_sym_LBRACE, - STATE(2407), 1, - sym__pandoc_attr_specifier, - ACTIONS(6038), 2, + [62664] = 2, + ACTIONS(6282), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6036), 36, + ACTIONS(6280), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -127109,7 +127594,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, @@ -127126,17 +127610,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62612] = 4, - ACTIONS(4614), 1, + [62709] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(2408), 1, + STATE(1808), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6040), 36, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127154,11 +127639,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -127173,15 +127658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [62661] = 4, - ACTIONS(4614), 1, + [62758] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(2409), 1, + STATE(1809), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6044), 36, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127199,11 +127684,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -127218,15 +127703,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [62710] = 4, - ACTIONS(4614), 1, + [62807] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(2415), 1, + STATE(1820), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6048), 36, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127244,11 +127729,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -127263,15 +127748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [62759] = 4, - ACTIONS(4614), 1, + [62856] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(2416), 1, + STATE(1822), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6052), 36, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127289,11 +127774,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -127308,16 +127793,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [62808] = 4, - ACTIONS(6362), 1, - sym__whitespace, - ACTIONS(6364), 1, - sym_block_continuation, - ACTIONS(2323), 3, + [62905] = 2, + ACTIONS(6354), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2321), 35, + sym__whitespace, + ACTIONS(6352), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -127353,16 +127836,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [62857] = 4, - ACTIONS(3257), 1, + [62950] = 4, + ACTIONS(6430), 1, anon_sym_LBRACE, - STATE(1638), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 2, + STATE(1830), 1, + sym_attribute_specifier, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6056), 36, - sym__line_ending, + ACTIONS(6060), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -127383,13 +127866,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_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -127398,15 +127881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [62906] = 4, - ACTIONS(4160), 1, + [62999] = 4, + ACTIONS(4258), 1, anon_sym_LBRACE, - STATE(1565), 1, + STATE(2252), 1, sym__pandoc_attr_specifier, - ACTIONS(5962), 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5960), 36, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127416,6 +127899,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, @@ -127425,7 +127909,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, @@ -127443,15 +127926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [62955] = 4, - ACTIONS(4160), 1, + [63048] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1566), 1, + STATE(1831), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5984), 36, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127470,10 +127953,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -127488,15 +127971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [63004] = 4, - ACTIONS(4160), 1, - anon_sym_LBRACE, - STATE(1567), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 2, + [63097] = 2, + ACTIONS(6400), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6056), 36, + sym__whitespace, + ACTIONS(6398), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127515,7 +127996,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, @@ -127530,18 +128010,64 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, + [63142] = 4, + ACTIONS(6432), 1, + anon_sym_LBRACE, + STATE(2178), 1, + sym_attribute_specifier, + ACTIONS(6062), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, sym__whitespace, - [63053] = 4, - ACTIONS(4160), 1, + ACTIONS(6060), 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_lt_str, + 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, + [63191] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1568), 1, + STATE(1832), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6060), 36, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127560,10 +128086,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -127578,15 +128104,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [63102] = 4, - ACTIONS(4160), 1, + [63240] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1579), 1, + STATE(1833), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5980), 36, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127605,10 +128131,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -127623,15 +128149,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [63151] = 4, - ACTIONS(4160), 1, + [63289] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(1581), 1, + STATE(2179), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 2, + ACTIONS(6118), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6000), 36, + sym__whitespace, + ACTIONS(6116), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127650,7 +128177,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, @@ -127666,18 +128192,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [63200] = 4, - ACTIONS(3257), 1, + [63338] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(1640), 1, + STATE(2180), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 2, + ACTIONS(6122), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6060), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6120), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -127704,24 +128231,23 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [63249] = 4, - ACTIONS(6366), 1, + [63387] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1589), 1, - sym_attribute_specifier, - ACTIONS(5968), 2, + STATE(1834), 1, + sym__pandoc_attr_specifier, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5966), 36, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127740,10 +128266,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -127758,15 +128284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [63298] = 4, - ACTIONS(4160), 1, + [63436] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1590), 1, + STATE(1835), 1, sym__pandoc_attr_specifier, - ACTIONS(5974), 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5972), 36, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127785,10 +128311,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -127803,15 +128329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [63347] = 4, - ACTIONS(4160), 1, + [63485] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1591), 1, + STATE(1836), 1, sym__pandoc_attr_specifier, - ACTIONS(5978), 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5976), 36, + ACTIONS(6072), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127830,10 +128356,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -127848,15 +128374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [63396] = 4, - ACTIONS(4160), 1, + [63534] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1592), 1, + STATE(1837), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5988), 36, + ACTIONS(6032), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127875,10 +128401,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -127893,15 +128419,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [63445] = 4, - ACTIONS(4160), 1, + [63583] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1593), 1, + STATE(1838), 1, sym__pandoc_attr_specifier, - ACTIONS(5994), 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 36, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127920,10 +128446,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -127938,15 +128464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [63494] = 4, - ACTIONS(4160), 1, + [63632] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1594), 1, + STATE(1842), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6004), 36, + ACTIONS(6040), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127965,10 +128491,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -127983,15 +128509,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [63543] = 4, - ACTIONS(4160), 1, + [63681] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(1595), 1, + STATE(2181), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 2, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6008), 36, + sym__whitespace, + ACTIONS(6048), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128010,7 +128537,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, @@ -128026,17 +128552,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [63592] = 4, - ACTIONS(4160), 1, + [63730] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(1596), 1, + STATE(2182), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 2, + ACTIONS(6070), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6012), 36, + sym__whitespace, + ACTIONS(6068), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128055,7 +128582,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, @@ -128071,17 +128597,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [63641] = 4, - ACTIONS(4160), 1, + [63779] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(1597), 1, + STATE(2183), 1, sym__pandoc_attr_specifier, - ACTIONS(6018), 2, + ACTIONS(6078), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6016), 36, + sym__whitespace, + ACTIONS(6076), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128100,7 +128627,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, @@ -128116,17 +128642,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [63690] = 4, - ACTIONS(4160), 1, + [63828] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(1601), 1, + STATE(2184), 1, sym__pandoc_attr_specifier, - ACTIONS(5958), 2, + ACTIONS(6074), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5956), 36, + sym__whitespace, + ACTIONS(6072), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128145,7 +128672,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, @@ -128161,17 +128687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [63739] = 4, - ACTIONS(4160), 1, + [63877] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1602), 1, + STATE(1843), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 36, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128190,10 +128716,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -128208,15 +128734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [63788] = 4, - ACTIONS(4160), 1, + [63926] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1603), 1, + STATE(1844), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6024), 36, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128235,10 +128761,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -128253,15 +128779,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [63837] = 4, - ACTIONS(4160), 1, + [63975] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(1604), 1, + STATE(2185), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 2, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 36, + sym__whitespace, + ACTIONS(6032), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128280,7 +128807,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, @@ -128296,18 +128822,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, + [64024] = 4, + ACTIONS(3097), 1, + anon_sym_LBRACE, + STATE(2186), 1, + sym__pandoc_attr_specifier, + ACTIONS(6038), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, sym__whitespace, - [63886] = 4, - ACTIONS(3257), 1, + ACTIONS(6036), 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_lt_str, + 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, + [64073] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1689), 1, + STATE(1845), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5980), 36, + ACTIONS(6088), 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_close_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_lt_str, + 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, + [64122] = 2, + ACTIONS(6158), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6156), 38, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -128334,24 +128948,24 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [63935] = 4, - ACTIONS(4160), 1, + [64167] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1610), 1, + STATE(1851), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6032), 36, + ACTIONS(6052), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128370,10 +128984,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -128388,15 +129002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [63984] = 4, - ACTIONS(4160), 1, + [64216] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1611), 1, + STATE(1852), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6036), 36, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128415,10 +129029,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -128433,15 +129047,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [64033] = 4, - ACTIONS(4160), 1, + [64265] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1612), 1, + STATE(1853), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6040), 36, + ACTIONS(6096), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128460,10 +129074,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -128478,15 +129092,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [64082] = 4, - ACTIONS(4160), 1, + [64314] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1613), 1, + STATE(1854), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6044), 36, + ACTIONS(6100), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128505,10 +129119,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -128523,15 +129137,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [64131] = 4, - ACTIONS(4160), 1, + [64363] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(1619), 1, + STATE(1860), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6048), 36, + ACTIONS(6080), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128550,10 +129164,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -128568,15 +129182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [64180] = 4, - ACTIONS(4160), 1, + [64412] = 4, + ACTIONS(5548), 1, anon_sym_LBRACE, - STATE(2418), 1, + STATE(1861), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6052), 36, + ACTIONS(6084), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128595,10 +129209,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -128613,16 +129227,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [64229] = 4, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(1715), 1, - sym__pandoc_attr_specifier, - ACTIONS(6002), 2, + [64461] = 2, + ACTIONS(6358), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6000), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6356), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -128649,24 +129261,24 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - 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, - [64278] = 4, - ACTIONS(4310), 1, + [64506] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1637), 1, + STATE(1881), 1, sym__pandoc_attr_specifier, - ACTIONS(5962), 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5960), 36, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128686,10 +129298,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -128703,15 +129315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [64327] = 4, - ACTIONS(5136), 1, + [64555] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1924), 1, + STATE(1884), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 36, + ACTIONS(6092), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128748,14 +129360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [64376] = 2, - ACTIONS(6102), 2, + [64604] = 4, + ACTIONS(4318), 1, + anon_sym_LBRACE, + STATE(1886), 1, + sym__pandoc_attr_specifier, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6100), 38, - sym__line_ending, + ACTIONS(6056), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -128777,6 +129391,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -128788,18 +129403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64421] = 4, - ACTIONS(5136), 1, + [64653] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1931), 1, + STATE(1888), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6032), 36, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128836,15 +129450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [64470] = 4, - ACTIONS(4310), 1, + [64702] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1639), 1, + STATE(1900), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5984), 36, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128864,10 +129478,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -128881,15 +129495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [64519] = 4, - ACTIONS(5136), 1, + [64751] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1932), 1, + STATE(1904), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6036), 36, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128926,15 +129540,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [64568] = 4, - ACTIONS(5136), 1, + [64800] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(1933), 1, + STATE(2190), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 2, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6040), 36, + sym__whitespace, + ACTIONS(6040), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128957,7 +129572,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -128969,17 +129583,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [64617] = 4, - ACTIONS(5136), 1, + [64849] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(1934), 1, + STATE(2191), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 2, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6044), 36, + sym__whitespace, + ACTIONS(6044), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129002,7 +129617,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129014,17 +129628,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, + [64898] = 4, + ACTIONS(3097), 1, + anon_sym_LBRACE, + STATE(2192), 1, + sym__pandoc_attr_specifier, + ACTIONS(6114), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, sym__whitespace, - [64666] = 4, - ACTIONS(5136), 1, + ACTIONS(6112), 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_lt_str, + 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, + [64947] = 4, + ACTIONS(3097), 1, anon_sym_LBRACE, - STATE(1940), 1, + STATE(2193), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 2, + ACTIONS(6090), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6048), 36, + sym__whitespace, + ACTIONS(6088), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129047,7 +129707,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129059,18 +129718,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, + anon_sym_PIPE, + [64996] = 2, + ACTIONS(6286), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6284), 38, + 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_lt_str, + sym__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, - [64715] = 4, - ACTIONS(5136), 1, + [65041] = 2, + ACTIONS(6370), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6368), 38, + 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_lt_str, + sym__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(1941), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 2, + anon_sym_PIPE, + sym__whitespace, + [65086] = 2, + ACTIONS(6290), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6052), 36, + ACTIONS(6288), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -129092,7 +129835,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129104,17 +129846,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64764] = 4, - ACTIONS(4310), 1, + [65131] = 4, + ACTIONS(6434), 1, anon_sym_LBRACE, - STATE(1641), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 2, + STATE(1914), 1, + sym_attribute_specifier, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6056), 36, + ACTIONS(6060), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129134,10 +129877,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129151,15 +129894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [64813] = 4, - ACTIONS(4310), 1, + [65180] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1642), 1, + STATE(1915), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6060), 36, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129179,10 +129922,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129196,15 +129939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [64862] = 4, - ACTIONS(4310), 1, + [65229] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1655), 1, + STATE(1916), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5980), 36, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129224,10 +129967,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129241,15 +129984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [64911] = 4, - ACTIONS(4310), 1, + [65278] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1658), 1, + STATE(1918), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6000), 36, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129269,10 +130012,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129286,14 +130029,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [64960] = 2, - ACTIONS(6214), 2, + [65327] = 4, + ACTIONS(4318), 1, + anon_sym_LBRACE, + STATE(1919), 1, + sym__pandoc_attr_specifier, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6212), 38, - sym__line_ending, + ACTIONS(6068), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -129315,6 +130060,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129326,18 +130072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65005] = 4, - ACTIONS(6368), 1, + [65376] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1669), 1, - sym_attribute_specifier, - ACTIONS(5968), 2, + STATE(1921), 1, + sym__pandoc_attr_specifier, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5966), 36, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129357,10 +130102,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129374,14 +130119,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [65054] = 2, - ACTIONS(6106), 2, + [65425] = 4, + ACTIONS(4318), 1, + anon_sym_LBRACE, + STATE(1922), 1, + sym__pandoc_attr_specifier, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6104), 38, - sym__line_ending, + ACTIONS(6072), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -129403,6 +130150,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129414,18 +130162,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65099] = 4, - ACTIONS(4860), 1, + [65474] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1956), 1, + STATE(1923), 1, sym__pandoc_attr_specifier, - ACTIONS(5962), 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5960), 36, + ACTIONS(6032), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129448,8 +130195,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -129462,16 +130209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [65148] = 4, - ACTIONS(4860), 1, - anon_sym_LBRACE, - STATE(1958), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 2, + [65523] = 2, + ACTIONS(6374), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5984), 36, + ACTIONS(6372), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -129494,7 +130239,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -129505,17 +130249,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65197] = 4, - ACTIONS(4310), 1, + [65568] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1670), 1, + STATE(1924), 1, sym__pandoc_attr_specifier, - ACTIONS(5974), 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5972), 36, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129535,10 +130280,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129552,16 +130297,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [65246] = 4, - ACTIONS(4860), 1, - anon_sym_LBRACE, - STATE(1959), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 2, + [65617] = 2, + ACTIONS(6350), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6056), 36, + ACTIONS(6348), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -129584,7 +130327,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -129595,17 +130337,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65295] = 4, - ACTIONS(4860), 1, + [65662] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1960), 1, + STATE(1929), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6060), 36, + ACTIONS(6040), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129628,8 +130371,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -129642,15 +130385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [65344] = 4, - ACTIONS(4860), 1, + [65711] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1971), 1, + STATE(1930), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5980), 36, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129673,8 +130416,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -129687,15 +130430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [65393] = 4, - ACTIONS(4860), 1, + [65760] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1973), 1, + STATE(1931), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6000), 36, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129718,8 +130461,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -129732,16 +130475,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [65442] = 4, - ACTIONS(3445), 1, + [65809] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1742), 1, + STATE(1932), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 3, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6000), 35, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129764,6 +130506,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129775,18 +130518,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, anon_sym_PIPE, - [65491] = 4, - ACTIONS(4310), 1, - anon_sym_LBRACE, - STATE(1671), 1, - sym__pandoc_attr_specifier, - ACTIONS(5978), 2, + sym__whitespace, + [65858] = 2, + ACTIONS(6294), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5976), 36, + ACTIONS(6292), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -129805,7 +130546,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, @@ -129820,17 +130560,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65540] = 4, - ACTIONS(4310), 1, + [65903] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1673), 1, + STATE(1938), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5988), 36, + ACTIONS(6052), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129850,10 +130591,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129867,15 +130608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [65589] = 4, - ACTIONS(4310), 1, + [65952] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1674), 1, + STATE(1939), 1, sym__pandoc_attr_specifier, - ACTIONS(5994), 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 36, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129895,10 +130636,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129912,15 +130653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [65638] = 4, - ACTIONS(4310), 1, + [66001] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1676), 1, + STATE(1940), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6004), 36, + ACTIONS(6096), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129940,10 +130681,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -129957,15 +130698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [65687] = 4, - ACTIONS(4310), 1, + [66050] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1677), 1, + STATE(1941), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6008), 36, + ACTIONS(6100), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129985,10 +130726,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -130002,15 +130743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [65736] = 4, - ACTIONS(4310), 1, + [66099] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1679), 1, + STATE(1947), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6012), 36, + ACTIONS(6080), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130030,10 +130771,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -130047,15 +130788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [65785] = 4, - ACTIONS(6370), 1, + [66148] = 4, + ACTIONS(4318), 1, anon_sym_LBRACE, - STATE(1981), 1, - sym_attribute_specifier, - ACTIONS(5968), 2, + STATE(1948), 1, + sym__pandoc_attr_specifier, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5966), 36, + ACTIONS(6084), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130078,8 +130819,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -130092,16 +130833,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [65834] = 4, - ACTIONS(4860), 1, - anon_sym_LBRACE, - STATE(1982), 1, - sym__pandoc_attr_specifier, - ACTIONS(5974), 2, + [66197] = 2, + ACTIONS(6298), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5972), 36, + ACTIONS(6296), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -130124,7 +130863,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -130135,17 +130873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65883] = 4, - ACTIONS(4860), 1, + [66242] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(1983), 1, + STATE(1965), 1, sym__pandoc_attr_specifier, - ACTIONS(5978), 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5976), 36, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130182,15 +130921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [65932] = 4, - ACTIONS(4310), 1, + [66291] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(1680), 1, + STATE(1966), 1, sym__pandoc_attr_specifier, - ACTIONS(6018), 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6016), 36, + ACTIONS(6092), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130210,11 +130949,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -130227,15 +130966,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [65981] = 4, - ACTIONS(4860), 1, + [66340] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(1984), 1, + STATE(1967), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5988), 36, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130272,15 +131011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66030] = 4, - ACTIONS(4860), 1, + [66389] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(1985), 1, + STATE(1968), 1, sym__pandoc_attr_specifier, - ACTIONS(5994), 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 36, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130317,15 +131056,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66079] = 4, - ACTIONS(4860), 1, + [66438] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(1986), 1, + STATE(1979), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6004), 36, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130362,15 +131101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66128] = 4, - ACTIONS(4860), 1, + [66487] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(1987), 1, + STATE(1982), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6008), 36, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130407,16 +131146,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66177] = 4, - ACTIONS(4860), 1, - anon_sym_LBRACE, - STATE(1988), 1, - sym__pandoc_attr_specifier, - ACTIONS(6014), 2, + [66536] = 2, + ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6012), 36, + ACTIONS(6300), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -130439,7 +131176,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -130450,17 +131186,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66226] = 4, - ACTIONS(4860), 1, + [66581] = 4, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(1989), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 2, + STATE(1990), 1, + sym_attribute_specifier, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6016), 36, + ACTIONS(6060), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130497,15 +131234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66275] = 4, - ACTIONS(4860), 1, + [66630] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(1993), 1, + STATE(1991), 1, sym__pandoc_attr_specifier, - ACTIONS(5958), 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5956), 36, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130542,15 +131279,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66324] = 4, - ACTIONS(4860), 1, + [66679] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(1994), 1, + STATE(1992), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 36, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130587,15 +131324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66373] = 4, - ACTIONS(4310), 1, + [66728] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(1685), 1, + STATE(1993), 1, sym__pandoc_attr_specifier, - ACTIONS(5958), 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5956), 36, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130615,11 +131352,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -130632,15 +131369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66422] = 4, - ACTIONS(4860), 1, + [66777] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(1995), 1, + STATE(1994), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6024), 36, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130677,15 +131414,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66471] = 4, - ACTIONS(4860), 1, + [66826] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(1996), 1, + STATE(1995), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 36, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130722,14 +131459,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66520] = 2, - ACTIONS(6090), 2, + [66875] = 4, + ACTIONS(4534), 1, + anon_sym_LBRACE, + STATE(1996), 1, + sym__pandoc_attr_specifier, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6088), 38, - sym__line_ending, + ACTIONS(6072), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -130752,6 +131491,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -130762,13 +131502,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66565] = 4, - ACTIONS(4860), 1, + [66924] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(2002), 1, + STATE(1997), 1, sym__pandoc_attr_specifier, ACTIONS(6034), 2, anon_sym_DOLLAR, @@ -130810,10 +131549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66614] = 4, - ACTIONS(4860), 1, + [66973] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(2003), 1, + STATE(1998), 1, sym__pandoc_attr_specifier, ACTIONS(6038), 2, anon_sym_DOLLAR, @@ -130855,10 +131594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66663] = 4, - ACTIONS(4860), 1, + [67022] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(2004), 1, + STATE(2002), 1, sym__pandoc_attr_specifier, ACTIONS(6042), 2, anon_sym_DOLLAR, @@ -130900,10 +131639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66712] = 4, - ACTIONS(4860), 1, + [67071] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(2005), 1, + STATE(2003), 1, sym__pandoc_attr_specifier, ACTIONS(6046), 2, anon_sym_DOLLAR, @@ -130945,15 +131684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66761] = 4, - ACTIONS(4860), 1, + [67120] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(2011), 1, + STATE(2004), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6048), 36, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130990,60 +131729,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66810] = 4, - ACTIONS(4310), 1, + [67169] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(1686), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6020), 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__superscript_close, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - 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, - [66859] = 4, - ACTIONS(4860), 1, - anon_sym_LBRACE, - STATE(2012), 1, + STATE(2005), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6052), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131080,11 +131774,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [66908] = 2, - ACTIONS(6110), 2, + [67218] = 2, + ACTIONS(6306), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6108), 38, + ACTIONS(6304), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -131123,60 +131817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66953] = 4, - ACTIONS(4460), 1, + [67263] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(2032), 1, - sym__pandoc_attr_specifier, - ACTIONS(5962), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(5960), 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_lt_str, - 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, - [67002] = 4, - ACTIONS(4460), 1, - anon_sym_LBRACE, - STATE(2035), 1, + STATE(2011), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5984), 36, + ACTIONS(6052), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131200,8 +131849,8 @@ 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_lt_str, @@ -131213,15 +131862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67051] = 4, - ACTIONS(4460), 1, + [67312] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(2038), 1, + STATE(2012), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6056), 36, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131245,8 +131894,8 @@ 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_lt_str, @@ -131258,15 +131907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67100] = 4, - ACTIONS(4460), 1, + [67361] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(2041), 1, + STATE(2013), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6060), 36, + ACTIONS(6096), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131290,8 +131939,8 @@ 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_lt_str, @@ -131303,15 +131952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67149] = 4, - ACTIONS(4460), 1, + [67410] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(2052), 1, + STATE(2014), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5980), 36, + ACTIONS(6100), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131335,8 +131984,8 @@ 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_lt_str, @@ -131348,15 +131997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67198] = 4, - ACTIONS(4460), 1, + [67459] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(2054), 1, + STATE(2020), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6000), 36, + ACTIONS(6080), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131380,8 +132029,8 @@ 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_lt_str, @@ -131393,15 +132042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67247] = 4, - ACTIONS(4310), 1, + [67508] = 4, + ACTIONS(4534), 1, anon_sym_LBRACE, - STATE(1687), 1, + STATE(2021), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6024), 36, + ACTIONS(6084), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131421,11 +132070,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -131438,11 +132087,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67296] = 2, - ACTIONS(6114), 2, + [67557] = 2, + ACTIONS(6386), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6112), 38, + ACTIONS(6384), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -131481,60 +132130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67341] = 4, - ACTIONS(6372), 1, - anon_sym_LBRACE, - STATE(2061), 1, - sym_attribute_specifier, - ACTIONS(5968), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(5966), 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_lt_str, - 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, - [67390] = 4, - ACTIONS(4460), 1, + [67602] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2062), 1, + STATE(2037), 1, sym__pandoc_attr_specifier, - ACTIONS(5974), 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5972), 36, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131571,15 +132175,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67439] = 4, - ACTIONS(4460), 1, + [67651] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2063), 1, + STATE(2040), 1, sym__pandoc_attr_specifier, - ACTIONS(5978), 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5976), 36, + ACTIONS(6092), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131616,15 +132220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67488] = 4, - ACTIONS(4460), 1, + [67700] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2064), 1, + STATE(2043), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5988), 36, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131661,15 +132265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67537] = 4, - ACTIONS(4460), 1, + [67749] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2065), 1, + STATE(2046), 1, sym__pandoc_attr_specifier, - ACTIONS(5994), 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 36, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131706,15 +132310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67586] = 4, - ACTIONS(4460), 1, + [67798] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2066), 1, + STATE(2059), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6004), 36, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131751,15 +132355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67635] = 4, - ACTIONS(4460), 1, + [67847] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2067), 1, + STATE(2063), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6008), 36, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131796,61 +132400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67684] = 4, - ACTIONS(4310), 1, - anon_sym_LBRACE, - STATE(1688), 1, - sym__pandoc_attr_specifier, - ACTIONS(6030), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6028), 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__superscript_close, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - 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, - [67733] = 4, - ACTIONS(4460), 1, - anon_sym_LBRACE, - STATE(2068), 1, - sym__pandoc_attr_specifier, - ACTIONS(6014), 2, + [67896] = 2, + ACTIONS(6310), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6012), 36, + ACTIONS(6308), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -131874,7 +132431,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -131884,17 +132440,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67782] = 4, - ACTIONS(4460), 1, + [67941] = 4, + ACTIONS(6438), 1, anon_sym_LBRACE, - STATE(2069), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 2, + STATE(2070), 1, + sym_attribute_specifier, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6016), 36, + ACTIONS(6060), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131931,15 +132488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67831] = 4, - ACTIONS(4460), 1, + [67990] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2073), 1, + STATE(2071), 1, sym__pandoc_attr_specifier, - ACTIONS(5958), 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5956), 36, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131976,15 +132533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67880] = 4, - ACTIONS(4460), 1, + [68039] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2074), 1, + STATE(2072), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 36, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132021,15 +132578,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67929] = 4, - ACTIONS(4460), 1, + [68088] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2075), 1, + STATE(2073), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6024), 36, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132066,15 +132623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [67978] = 4, - ACTIONS(4460), 1, + [68137] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2076), 1, + STATE(2074), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 36, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132111,13 +132668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [68027] = 2, - ACTIONS(6342), 4, - aux_sym_pandoc_span_token1, + [68186] = 4, + ACTIONS(4108), 1, + anon_sym_LBRACE, + STATE(2075), 1, + sym__pandoc_attr_specifier, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6340), 36, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132142,6 +132701,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -132150,18 +132710,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [68072] = 2, - ACTIONS(6118), 2, + sym__whitespace, + [68235] = 4, + ACTIONS(4108), 1, + anon_sym_LBRACE, + STATE(2076), 1, + sym__pandoc_attr_specifier, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6116), 38, - sym__line_ending, + ACTIONS(6072), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -132185,6 +132746,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -132194,17 +132756,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68117] = 2, - ACTIONS(6298), 2, + [68284] = 4, + ACTIONS(4108), 1, + anon_sym_LBRACE, + STATE(2077), 1, + sym__pandoc_attr_specifier, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6296), 38, - sym__line_ending, + ACTIONS(6032), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -132228,6 +132791,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -132237,18 +132801,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68162] = 4, - ACTIONS(4460), 1, + [68333] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2082), 1, + STATE(2078), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6032), 36, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132285,15 +132848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [68211] = 4, - ACTIONS(4460), 1, + [68382] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2083), 1, + STATE(2081), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6036), 36, + ACTIONS(6040), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132330,15 +132893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [68260] = 4, - ACTIONS(4460), 1, + [68431] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2084), 1, + STATE(2082), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6040), 36, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132375,15 +132938,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [68309] = 4, - ACTIONS(4460), 1, + [68480] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2085), 1, + STATE(2083), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6044), 36, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132420,15 +132983,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [68358] = 4, - ACTIONS(4460), 1, + [68529] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(2091), 1, + STATE(2084), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6048), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132465,15 +133028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [68407] = 4, - ACTIONS(4460), 1, - anon_sym_LBRACE, - STATE(2092), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 2, + [68578] = 2, + ACTIONS(6412), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6052), 36, + sym__whitespace, + ACTIONS(6410), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132498,7 +133059,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -132507,14 +133067,15 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [68456] = 2, - ACTIONS(6122), 2, + [68623] = 2, + ACTIONS(6362), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6120), 38, + ACTIONS(6360), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -132553,13 +133114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68501] = 2, - ACTIONS(6066), 4, - aux_sym_pandoc_span_token1, + [68668] = 4, + ACTIONS(4108), 1, + anon_sym_LBRACE, + STATE(2090), 1, + sym__pandoc_attr_specifier, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6064), 36, + ACTIONS(6052), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132584,6 +133147,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -132592,19 +133156,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [68546] = 4, - ACTIONS(4310), 1, + sym__whitespace, + [68717] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(1695), 1, + STATE(2091), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6032), 36, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132624,12 +133187,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -132641,14 +133204,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [68595] = 2, - ACTIONS(6126), 2, + [68766] = 4, + ACTIONS(4108), 1, + anon_sym_LBRACE, + STATE(2092), 1, + sym__pandoc_attr_specifier, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6124), 38, - sym__line_ending, + ACTIONS(6096), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -132672,6 +133237,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -132681,18 +133247,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68640] = 4, - ACTIONS(4924), 1, + [68815] = 4, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(1798), 1, + STATE(2093), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5984), 36, + ACTIONS(6100), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132714,10 +133279,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -132729,14 +133294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [68689] = 2, - ACTIONS(6294), 4, - aux_sym_pandoc_span_token1, + [68864] = 4, + ACTIONS(3353), 1, + anon_sym_LBRACE, + STATE(2039), 1, + sym__pandoc_attr_specifier, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6292), 36, - sym__soft_line_ending, + ACTIONS(6096), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -132763,22 +133330,24 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + 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, - [68734] = 2, - ACTIONS(6298), 4, - aux_sym_pandoc_span_token1, + sym__whitespace, + [68913] = 4, + ACTIONS(4108), 1, + anon_sym_LBRACE, + STATE(2099), 1, + sym__pandoc_attr_specifier, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6296), 36, + ACTIONS(6080), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132803,6 +133372,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -132811,17 +133381,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [68779] = 2, - ACTIONS(6302), 4, - aux_sym_pandoc_span_token1, + sym__whitespace, + [68962] = 4, + ACTIONS(4108), 1, + anon_sym_LBRACE, + STATE(2100), 1, + sym__pandoc_attr_specifier, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6300), 36, + ACTIONS(6084), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132846,6 +133417,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -132854,17 +133426,16 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [68824] = 2, - ACTIONS(6070), 4, + sym__whitespace, + [69011] = 2, + ACTIONS(6138), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6068), 36, + ACTIONS(6136), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132901,14 +133472,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [68869] = 2, - ACTIONS(6074), 4, - aux_sym_pandoc_span_token1, + [69056] = 4, + ACTIONS(3353), 1, + anon_sym_LBRACE, + STATE(2041), 1, + sym__pandoc_attr_specifier, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6072), 36, - sym__soft_line_ending, + ACTIONS(6100), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -132935,21 +133508,23 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + 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, - [68914] = 2, - ACTIONS(6078), 4, - aux_sym_pandoc_span_token1, + sym__whitespace, + [69105] = 4, + ACTIONS(4258), 1, + anon_sym_LBRACE, + STATE(2253), 1, + sym__pandoc_attr_specifier, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, @@ -132960,6 +133535,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, @@ -132983,19 +133559,16 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [68959] = 4, - ACTIONS(4310), 1, - anon_sym_LBRACE, - STATE(1696), 1, - sym__pandoc_attr_specifier, - ACTIONS(6038), 2, + sym__whitespace, + [69154] = 2, + ACTIONS(6362), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6036), 36, + sym__whitespace, + ACTIONS(6360), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133015,7 +133588,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, @@ -133029,16 +133601,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [69008] = 2, - ACTIONS(6082), 4, + [69199] = 2, + ACTIONS(6366), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6080), 36, + ACTIONS(6364), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133075,13 +133648,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [69053] = 2, - ACTIONS(6306), 4, + [69244] = 2, + ACTIONS(6370), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6304), 36, + ACTIONS(6368), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133118,13 +133691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [69098] = 2, - ACTIONS(6310), 4, + [69289] = 2, + ACTIONS(6142), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6308), 36, + ACTIONS(6140), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133161,14 +133734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [69143] = 2, - ACTIONS(6130), 2, + [69334] = 2, + ACTIONS(6146), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6128), 38, - sym__line_ending, + sym__whitespace, + ACTIONS(6144), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -133200,19 +133773,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [69188] = 4, - ACTIONS(4924), 1, - anon_sym_LBRACE, - STATE(1799), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 2, + [69379] = 2, + ACTIONS(6150), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6056), 36, + sym__whitespace, + ACTIONS(6148), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133234,7 +133805,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -133246,16 +133816,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [69237] = 2, - ACTIONS(6086), 4, + [69424] = 2, + ACTIONS(6154), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6084), 36, + ACTIONS(6152), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133292,13 +133863,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [69282] = 2, - ACTIONS(6186), 4, + [69469] = 2, + ACTIONS(6374), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6184), 36, + ACTIONS(6372), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133335,16 +133906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [69327] = 4, - ACTIONS(6374), 1, - anon_sym_LBRACE, - STATE(1751), 1, - sym_attribute_specifier, - ACTIONS(5968), 3, + [69514] = 2, + ACTIONS(6378), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5966), 35, + ACTIONS(6376), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133377,19 +133945,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [69376] = 4, - ACTIONS(4310), 1, anon_sym_LBRACE, - STATE(1697), 1, - sym__pandoc_attr_specifier, - ACTIONS(6042), 2, + anon_sym_PIPE, + [69559] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6040), 36, + ACTIONS(6068), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -133408,7 +133975,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, @@ -133423,15 +133989,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69425] = 2, - ACTIONS(5994), 4, - aux_sym_pandoc_span_token1, + [69604] = 4, + ACTIONS(4258), 1, + anon_sym_LBRACE, + STATE(2254), 1, + sym__pandoc_attr_specifier, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(5992), 36, + ACTIONS(6072), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133441,6 +134010,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, @@ -133464,19 +134034,16 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [69470] = 4, - ACTIONS(4924), 1, - anon_sym_LBRACE, - STATE(1800), 1, - sym__pandoc_attr_specifier, - ACTIONS(6062), 2, + sym__whitespace, + [69653] = 2, + ACTIONS(6158), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6060), 36, + sym__whitespace, + ACTIONS(6156), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133498,7 +134065,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -133510,19 +134076,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [69519] = 4, - ACTIONS(3445), 1, anon_sym_LBRACE, - STATE(1752), 1, - sym__pandoc_attr_specifier, - ACTIONS(5974), 3, + anon_sym_PIPE, + [69698] = 2, + ACTIONS(6382), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5972), 35, + ACTIONS(6380), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133555,16 +134119,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [69568] = 2, - ACTIONS(6090), 4, + [69743] = 2, + ACTIONS(6258), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6088), 36, + ACTIONS(6256), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133601,16 +134166,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [69613] = 4, - ACTIONS(3445), 1, - anon_sym_LBRACE, - STATE(1753), 1, - sym__pandoc_attr_specifier, - ACTIONS(5978), 3, + [69788] = 2, + ACTIONS(6070), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5976), 35, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133643,19 +134205,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [69662] = 4, - ACTIONS(3445), 1, + [69833] = 4, + ACTIONS(4258), 1, anon_sym_LBRACE, - STATE(1754), 1, + STATE(2255), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 3, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(5988), 35, + ACTIONS(6032), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133665,6 +134227,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, @@ -133689,16 +134252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, anon_sym_PIPE, - [69711] = 2, - ACTIONS(6094), 4, - aux_sym_pandoc_span_token1, + sym__whitespace, + [69882] = 2, + ACTIONS(6366), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6092), 36, + ACTIONS(6364), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -133730,17 +134293,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [69756] = 2, - ACTIONS(6190), 4, + sym__whitespace, + [69927] = 2, + ACTIONS(6162), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6188), 36, + ACTIONS(6160), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133777,16 +134340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [69801] = 4, - ACTIONS(4310), 1, - anon_sym_LBRACE, - STATE(1698), 1, - sym__pandoc_attr_specifier, - ACTIONS(6046), 2, + [69972] = 2, + ACTIONS(6314), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6044), 36, + ACTIONS(6312), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -133805,7 +134366,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, @@ -133820,16 +134380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69850] = 2, - ACTIONS(6194), 4, - aux_sym_pandoc_span_token1, + [70017] = 2, + ACTIONS(6440), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6192), 36, - sym__soft_line_ending, + ACTIONS(2975), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -133861,17 +134422,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [69895] = 2, - ACTIONS(6098), 4, + sym__whitespace, + [70062] = 2, + ACTIONS(6166), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6096), 36, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133908,14 +134469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [69940] = 2, - ACTIONS(6102), 4, - aux_sym_pandoc_span_token1, + [70107] = 2, + ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6100), 36, + ACTIONS(6316), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -133947,17 +134508,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [69985] = 2, - ACTIONS(6106), 4, + sym__whitespace, + [70152] = 2, + ACTIONS(6262), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6104), 36, + ACTIONS(6260), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133994,13 +134555,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70030] = 2, - ACTIONS(6110), 4, + [70197] = 2, + ACTIONS(6170), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6108), 36, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134037,13 +134598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70075] = 2, - ACTIONS(6114), 4, + [70242] = 2, + ACTIONS(6174), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6112), 36, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134080,13 +134641,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70120] = 2, - ACTIONS(6118), 4, + [70287] = 2, + ACTIONS(6178), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6116), 36, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134123,13 +134684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70165] = 2, - ACTIONS(6122), 4, + [70332] = 2, + ACTIONS(6182), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6120), 36, + ACTIONS(6180), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134166,15 +134727,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70210] = 4, - ACTIONS(4310), 1, - anon_sym_LBRACE, - STATE(1704), 1, - sym__pandoc_attr_specifier, - ACTIONS(6050), 2, + [70377] = 2, + ACTIONS(6186), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6048), 36, + sym__whitespace, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134194,7 +134753,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, @@ -134208,16 +134766,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [70259] = 2, - ACTIONS(6126), 4, + [70422] = 2, + ACTIONS(6190), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6124), 36, + ACTIONS(6188), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134254,13 +134813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70304] = 2, - ACTIONS(6130), 4, + [70467] = 2, + ACTIONS(6194), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6128), 36, + ACTIONS(6192), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134297,13 +134856,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70349] = 2, - ACTIONS(6134), 4, + [70512] = 2, + ACTIONS(6198), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6132), 36, + ACTIONS(6196), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134340,13 +134899,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70394] = 2, - ACTIONS(6022), 4, + [70557] = 2, + ACTIONS(6202), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6020), 36, + ACTIONS(6200), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134383,13 +134942,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70439] = 2, - ACTIONS(6138), 4, + [70602] = 2, + ACTIONS(6206), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6136), 36, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134426,14 +134985,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70484] = 2, - ACTIONS(6198), 4, - aux_sym_pandoc_span_token1, + [70647] = 2, + ACTIONS(6354), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6196), 36, + ACTIONS(6352), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -134465,17 +135024,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70529] = 2, - ACTIONS(6202), 4, + sym__whitespace, + [70692] = 2, + ACTIONS(6046), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6200), 36, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134512,13 +135071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70574] = 2, - ACTIONS(6030), 4, + [70737] = 2, + ACTIONS(6210), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6028), 36, + ACTIONS(6208), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134555,15 +135114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70619] = 4, - ACTIONS(4310), 1, - anon_sym_LBRACE, - STATE(1705), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 2, + [70782] = 2, + ACTIONS(6266), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6052), 36, + sym__whitespace, + ACTIONS(6264), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134583,7 +135140,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, @@ -134597,19 +135153,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [70668] = 4, - ACTIONS(3445), 1, anon_sym_LBRACE, - STATE(1755), 1, - sym__pandoc_attr_specifier, - ACTIONS(5994), 3, + anon_sym_PIPE, + [70827] = 2, + ACTIONS(6270), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5992), 35, + ACTIONS(6268), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134642,19 +135196,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [70717] = 4, - ACTIONS(3445), 1, anon_sym_LBRACE, - STATE(1756), 1, - sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + anon_sym_PIPE, + [70872] = 2, + ACTIONS(6090), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6004), 35, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134687,16 +135239,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [70766] = 2, - ACTIONS(6142), 4, + [70917] = 2, + ACTIONS(6274), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6140), 36, + ACTIONS(6272), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134733,14 +135286,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70811] = 2, - ACTIONS(6146), 4, - aux_sym_pandoc_span_token1, + [70962] = 2, + ACTIONS(6322), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6144), 36, + ACTIONS(6320), 38, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -134772,17 +135325,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70856] = 2, - ACTIONS(6150), 4, + sym__whitespace, + [71007] = 2, + ACTIONS(6214), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6148), 36, + ACTIONS(6212), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134819,13 +135372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70901] = 2, - ACTIONS(6154), 4, + [71052] = 2, + ACTIONS(6218), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6152), 36, + ACTIONS(6216), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134862,13 +135415,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70946] = 2, - ACTIONS(6158), 4, + [71097] = 2, + ACTIONS(6222), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6156), 36, + ACTIONS(6220), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134905,16 +135458,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [70991] = 4, - ACTIONS(3445), 1, + [71142] = 2, + ACTIONS(6226), 4, + aux_sym_pandoc_span_token1, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + sym__whitespace, + ACTIONS(6224), 36, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_lt_str, + 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(1757), 1, - sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + anon_sym_PIPE, + [71187] = 2, + ACTIONS(6230), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6008), 35, + ACTIONS(6228), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134947,14 +135540,15 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [71040] = 2, - ACTIONS(6302), 2, + [71232] = 2, + ACTIONS(6326), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6300), 38, + ACTIONS(6324), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -134993,13 +135587,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71085] = 2, - ACTIONS(6162), 4, + [71277] = 2, + ACTIONS(6234), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6160), 36, + ACTIONS(6232), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135036,13 +135630,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [71130] = 2, - ACTIONS(6166), 4, + [71322] = 2, + ACTIONS(6238), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6164), 36, + ACTIONS(6236), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135079,16 +135673,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [71175] = 4, - ACTIONS(3445), 1, + [71367] = 2, + ACTIONS(6444), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6442), 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__pandoc_lt_str, + sym__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, + [71412] = 4, + ACTIONS(3513), 1, anon_sym_LBRACE, - STATE(1724), 1, + STATE(1781), 1, sym__pandoc_attr_specifier, - ACTIONS(5962), 3, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5960), 35, + ACTIONS(6052), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135124,13 +135761,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, aux_sym_inline_note_token1, anon_sym_PIPE, - [71224] = 2, - ACTIONS(6182), 4, - aux_sym_pandoc_span_token1, + [71461] = 2, + ACTIONS(6266), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6180), 36, + ACTIONS(6264), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135155,6 +135790,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -135163,17 +135799,15 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [71269] = 2, - ACTIONS(6170), 4, - aux_sym_pandoc_span_token1, + sym__whitespace, + [71505] = 2, + ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6168), 36, + ACTIONS(6316), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135191,6 +135825,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, @@ -135206,20 +135841,15 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [71314] = 4, - ACTIONS(3445), 1, - anon_sym_LBRACE, - STATE(1727), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 3, + sym__whitespace, + [71549] = 2, + ACTIONS(6322), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(5984), 35, + ACTIONS(6320), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135237,6 +135867,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, @@ -135253,18 +135884,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [71363] = 4, - ACTIONS(3445), 1, anon_sym_LBRACE, - STATE(1728), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 3, + anon_sym_PIPE, + sym__whitespace, + [71593] = 2, + ACTIONS(6326), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6056), 35, + ACTIONS(6324), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135282,6 +135909,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, @@ -135298,17 +135926,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [71412] = 4, - ACTIONS(6376), 1, anon_sym_LBRACE, - STATE(2384), 1, - sym_attribute_specifier, - ACTIONS(5968), 2, + anon_sym_PIPE, + sym__whitespace, + [71637] = 2, + ACTIONS(6330), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5966), 36, + ACTIONS(6328), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135343,13 +135968,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71461] = 2, - ACTIONS(6266), 2, + [71681] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6264), 37, + ACTIONS(6132), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135367,6 +135993,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, @@ -135374,7 +136001,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -135387,11 +136013,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71505] = 2, - ACTIONS(6266), 2, + [71725] = 2, + ACTIONS(6334), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6264), 37, + ACTIONS(6332), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135429,11 +136055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71549] = 2, - ACTIONS(6270), 2, + [71769] = 2, + ACTIONS(6338), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6268), 37, + ACTIONS(6336), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135471,11 +136097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71593] = 2, - ACTIONS(6322), 2, + [71813] = 2, + ACTIONS(6342), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6320), 37, + ACTIONS(6340), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135513,11 +136139,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71637] = 2, - ACTIONS(6274), 2, + [71857] = 2, + ACTIONS(6390), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6272), 37, + ACTIONS(6388), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135555,11 +136181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71681] = 2, - ACTIONS(6066), 2, + [71901] = 2, + ACTIONS(6346), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6064), 37, + ACTIONS(6344), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135577,8 +136203,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, @@ -135597,14 +136223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71725] = 3, - ACTIONS(6378), 1, - sym__whitespace, - ACTIONS(2539), 3, - aux_sym_pandoc_span_token1, + [71945] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2537), 35, + ACTIONS(6136), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135622,6 +136246,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, @@ -135636,16 +136261,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [71771] = 2, - ACTIONS(6070), 2, + sym__whitespace, + [71989] = 3, + ACTIONS(6446), 1, + sym__whitespace, + ACTIONS(2785), 3, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6068), 37, - sym__soft_line_ending, + ACTIONS(2783), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135663,7 +136290,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, @@ -135678,15 +136304,15 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [71815] = 2, - ACTIONS(6074), 2, + [72035] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6072), 37, + ACTIONS(6140), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135724,11 +136350,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71859] = 2, - ACTIONS(6078), 2, + [72079] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6076), 37, + ACTIONS(6144), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135766,11 +136392,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71903] = 2, - ACTIONS(6082), 2, + [72123] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6080), 37, + ACTIONS(6148), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135808,11 +136434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71947] = 2, - ACTIONS(6278), 2, + [72167] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6276), 37, + ACTIONS(6152), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135830,8 +136456,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, @@ -135850,11 +136476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71991] = 2, - ACTIONS(6332), 2, + [72211] = 2, + ACTIONS(6350), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6330), 37, + ACTIONS(6348), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135892,11 +136518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72035] = 2, - ACTIONS(6086), 2, + [72255] = 2, + ACTIONS(6354), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6084), 37, + ACTIONS(6352), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135914,8 +136540,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, @@ -135934,11 +136560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72079] = 2, - ACTIONS(5994), 2, + [72299] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 37, + ACTIONS(6156), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135976,11 +136602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72123] = 2, - ACTIONS(6090), 2, + [72343] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6088), 37, + ACTIONS(6068), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136018,11 +136644,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72167] = 2, - ACTIONS(6094), 2, + [72387] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6092), 37, + ACTIONS(6160), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136060,11 +136686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72211] = 2, - ACTIONS(6098), 2, + [72431] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6096), 37, + ACTIONS(6164), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136102,11 +136728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72255] = 2, - ACTIONS(6102), 2, + [72475] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6100), 37, + ACTIONS(6168), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136144,11 +136770,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72299] = 2, - ACTIONS(6106), 2, + [72519] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6104), 37, + ACTIONS(6172), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136186,11 +136812,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72343] = 2, - ACTIONS(6110), 2, + [72563] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6108), 37, + ACTIONS(6176), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136228,11 +136854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72387] = 2, - ACTIONS(6114), 2, + [72607] = 2, + ACTIONS(6182), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6112), 37, + ACTIONS(6180), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136270,11 +136896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72431] = 2, - ACTIONS(6118), 2, + [72651] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6116), 37, + ACTIONS(6184), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136312,11 +136938,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72475] = 2, - ACTIONS(6122), 2, + [72695] = 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6120), 37, + ACTIONS(6188), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136354,11 +136980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72519] = 2, - ACTIONS(6126), 2, + [72739] = 2, + ACTIONS(6194), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6124), 37, + ACTIONS(6192), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136396,11 +137022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72563] = 2, - ACTIONS(6130), 2, + [72783] = 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6128), 37, + ACTIONS(6196), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136438,11 +137064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72607] = 2, - ACTIONS(6134), 2, + [72827] = 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6132), 37, + ACTIONS(6200), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136480,11 +137106,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72651] = 2, - ACTIONS(6022), 2, + [72871] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 37, + ACTIONS(6204), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136522,11 +137148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72695] = 2, - ACTIONS(6138), 2, + [72915] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6136), 37, + ACTIONS(6044), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136564,11 +137190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72739] = 2, - ACTIONS(6030), 2, + [72959] = 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 37, + ACTIONS(6208), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136606,11 +137232,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72783] = 2, - ACTIONS(6142), 2, + [73003] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6140), 37, + ACTIONS(6088), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136648,11 +137274,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72827] = 2, - ACTIONS(6146), 2, + [73047] = 2, + ACTIONS(6214), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6144), 37, + ACTIONS(6212), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136690,11 +137316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72871] = 2, - ACTIONS(6282), 2, + [73091] = 2, + ACTIONS(6218), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6280), 37, + ACTIONS(6216), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136712,8 +137338,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, @@ -136732,11 +137358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72915] = 2, - ACTIONS(6286), 2, + [73135] = 2, + ACTIONS(6400), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6284), 37, + ACTIONS(6398), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136774,11 +137400,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72959] = 2, - ACTIONS(6342), 2, + [73179] = 2, + ACTIONS(6358), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6340), 37, + ACTIONS(6356), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136796,9 +137422,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, @@ -136816,11 +137442,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73003] = 2, - ACTIONS(6290), 2, + [73223] = 2, + ACTIONS(6412), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6288), 37, + ACTIONS(6410), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136838,9 +137464,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, @@ -136858,11 +137484,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73047] = 2, - ACTIONS(6294), 2, + [73267] = 2, + ACTIONS(6362), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6292), 37, + ACTIONS(6360), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136900,11 +137526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73091] = 2, - ACTIONS(6150), 2, + [73311] = 2, + ACTIONS(6366), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6148), 37, + ACTIONS(6364), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136922,8 +137548,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, @@ -136942,11 +137568,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73135] = 2, - ACTIONS(6154), 2, + [73355] = 2, + ACTIONS(6222), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6152), 37, + ACTIONS(6220), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136984,11 +137610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73179] = 2, - ACTIONS(6158), 2, + [73399] = 2, + ACTIONS(6226), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6156), 37, + ACTIONS(6224), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137026,11 +137652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73223] = 2, - ACTIONS(6162), 2, + [73443] = 2, + ACTIONS(6230), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6160), 37, + ACTIONS(6228), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137068,11 +137694,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73267] = 2, - ACTIONS(6166), 2, + [73487] = 2, + ACTIONS(6234), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6164), 37, + ACTIONS(6232), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137110,11 +137736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73311] = 2, - ACTIONS(6170), 2, + [73531] = 2, + ACTIONS(6238), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6168), 37, + ACTIONS(6236), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137152,11 +137778,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73355] = 2, - ACTIONS(6174), 2, + [73575] = 2, + ACTIONS(6242), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6172), 37, + ACTIONS(6240), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137194,11 +137820,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73399] = 2, - ACTIONS(6178), 2, + [73619] = 2, + ACTIONS(6246), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6176), 37, + ACTIONS(6244), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137236,11 +137862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73443] = 2, - ACTIONS(6182), 2, + [73663] = 2, + ACTIONS(6250), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6180), 37, + ACTIONS(6248), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137278,11 +137904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73487] = 2, - ACTIONS(6186), 2, + [73707] = 2, + ACTIONS(6254), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6184), 37, + ACTIONS(6252), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137320,11 +137946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73531] = 2, - ACTIONS(6190), 2, + [73751] = 2, + ACTIONS(6258), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6188), 37, + ACTIONS(6256), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137362,11 +137988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73575] = 2, - ACTIONS(6194), 2, + [73795] = 2, + ACTIONS(6262), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6192), 37, + ACTIONS(6260), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137404,11 +138030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73619] = 2, - ACTIONS(6198), 2, + [73839] = 2, + ACTIONS(6266), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6196), 37, + ACTIONS(6264), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137446,11 +138072,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73663] = 2, - ACTIONS(6202), 2, + [73883] = 2, + ACTIONS(6270), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6200), 37, + ACTIONS(6268), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137488,11 +138114,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73707] = 2, - ACTIONS(6206), 2, + [73927] = 2, + ACTIONS(6274), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6204), 37, + ACTIONS(6272), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137530,11 +138156,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73751] = 2, - ACTIONS(6210), 2, + [73971] = 2, + ACTIONS(6278), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6208), 37, + ACTIONS(6276), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137572,11 +138198,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73795] = 2, - ACTIONS(6214), 2, + [74015] = 2, + ACTIONS(6282), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6212), 37, + ACTIONS(6280), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137614,53 +138240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73839] = 2, - ACTIONS(6298), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6296), 37, - 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_lt_str, - sym__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, - [73883] = 2, - ACTIONS(6302), 2, + [74059] = 2, + ACTIONS(6286), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6300), 37, + ACTIONS(6284), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137678,8 +138262,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, @@ -137698,11 +138282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73927] = 2, - ACTIONS(6306), 2, + [74103] = 2, + ACTIONS(6370), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6304), 37, + ACTIONS(6368), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137740,11 +138324,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73971] = 2, - ACTIONS(6310), 2, + [74147] = 2, + ACTIONS(6374), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6308), 37, + ACTIONS(6372), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137782,11 +138366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74015] = 2, - ACTIONS(6218), 2, + [74191] = 2, + ACTIONS(6378), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6216), 37, + ACTIONS(6376), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137804,8 +138388,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, @@ -137824,11 +138408,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74059] = 2, - ACTIONS(6222), 2, + [74235] = 2, + ACTIONS(6382), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6220), 37, + ACTIONS(6380), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137846,8 +138430,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, @@ -137866,11 +138450,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74103] = 2, - ACTIONS(6226), 2, + [74279] = 2, + ACTIONS(6290), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6224), 37, + ACTIONS(6288), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137908,11 +138492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74147] = 2, - ACTIONS(6230), 2, + [74323] = 2, + ACTIONS(6294), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6228), 37, + ACTIONS(6292), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137950,11 +138534,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74191] = 2, - ACTIONS(6234), 2, + [74367] = 2, + ACTIONS(6298), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6232), 37, + ACTIONS(6296), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137992,11 +138576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74235] = 2, - ACTIONS(6314), 2, + [74411] = 2, + ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6312), 37, + ACTIONS(6300), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138034,11 +138618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74279] = 2, - ACTIONS(6238), 2, + [74455] = 2, + ACTIONS(6306), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6236), 37, + ACTIONS(6304), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138076,11 +138660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74323] = 2, - ACTIONS(6242), 2, + [74499] = 2, + ACTIONS(6386), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6240), 37, + ACTIONS(6384), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138118,11 +138702,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74367] = 2, - ACTIONS(6246), 2, + [74543] = 2, + ACTIONS(6310), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6244), 37, + ACTIONS(6308), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138160,11 +138744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74411] = 2, - ACTIONS(6250), 2, + [74587] = 2, + ACTIONS(6314), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6248), 37, + ACTIONS(6312), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138202,11 +138786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74455] = 2, - ACTIONS(6262), 2, + [74631] = 2, + ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6260), 37, + ACTIONS(6316), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138224,8 +138808,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, @@ -138244,11 +138828,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74499] = 2, - ACTIONS(6258), 2, + [74675] = 2, + ACTIONS(6322), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6256), 37, + ACTIONS(6320), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138286,11 +138870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74543] = 2, - ACTIONS(6318), 2, + [74719] = 2, + ACTIONS(6314), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6316), 37, + ACTIONS(6312), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138308,8 +138892,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, @@ -138328,11 +138912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74587] = 2, - ACTIONS(6262), 2, + [74763] = 2, + ACTIONS(6330), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6260), 37, + ACTIONS(6328), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138370,11 +138954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74631] = 2, - ACTIONS(6266), 2, + [74807] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6264), 37, + ACTIONS(6132), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138412,11 +138996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74675] = 2, - ACTIONS(6270), 2, + [74851] = 2, + ACTIONS(6334), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6268), 37, + ACTIONS(6332), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138454,11 +139038,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74719] = 2, - ACTIONS(6322), 2, + [74895] = 2, + ACTIONS(6338), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6320), 37, + ACTIONS(6336), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138496,11 +139080,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74763] = 2, - ACTIONS(6274), 2, + [74939] = 2, + ACTIONS(6342), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6272), 37, + ACTIONS(6340), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138538,11 +139122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74807] = 2, - ACTIONS(6066), 2, + [74983] = 2, + ACTIONS(6390), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6064), 37, + ACTIONS(6388), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138561,8 +139145,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, @@ -138580,12 +139164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74851] = 2, - ACTIONS(6086), 2, + [75027] = 2, + ACTIONS(6346), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6084), 37, - sym__line_ending, + ACTIONS(6344), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138603,6 +139187,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, @@ -138612,7 +139197,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -138622,11 +139206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74895] = 2, - ACTIONS(6070), 2, + [75071] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6068), 37, + ACTIONS(6136), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138664,11 +139248,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74939] = 2, - ACTIONS(6074), 2, + [75115] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6072), 37, + ACTIONS(6140), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138706,11 +139290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74983] = 2, - ACTIONS(6078), 2, + [75159] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6076), 37, + ACTIONS(6144), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138748,11 +139332,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75027] = 2, - ACTIONS(6082), 2, + [75203] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6080), 37, + ACTIONS(6148), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138790,12 +139374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75071] = 2, - ACTIONS(5994), 2, + [75247] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 37, - sym__line_ending, + ACTIONS(6152), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138814,6 +139398,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, @@ -138822,7 +139407,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -138832,12 +139416,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75115] = 2, - ACTIONS(6278), 2, + [75291] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6276), 37, - sym__soft_line_ending, + ACTIONS(6156), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138855,7 +139439,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, @@ -138865,6 +139448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -138874,11 +139458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75159] = 2, - ACTIONS(6332), 2, + [75335] = 2, + ACTIONS(6350), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6330), 37, + ACTIONS(6348), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138916,11 +139500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75203] = 2, - ACTIONS(6086), 2, + [75379] = 2, + ACTIONS(6354), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6084), 37, + ACTIONS(6352), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138939,8 +139523,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, @@ -138958,11 +139542,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75247] = 2, - ACTIONS(6090), 2, + [75423] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6088), 37, + ACTIONS(6068), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -139000,11 +139584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75291] = 2, - ACTIONS(5994), 2, + [75467] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 37, + ACTIONS(6156), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139042,12 +139626,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75335] = 2, - ACTIONS(6094), 2, + [75511] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6092), 37, - sym__line_ending, + ACTIONS(6068), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139066,6 +139650,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, @@ -139074,7 +139659,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -139084,12 +139668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75379] = 2, - ACTIONS(6090), 2, + [75555] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6088), 37, - sym__soft_line_ending, + ACTIONS(6160), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139108,7 +139692,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, @@ -139117,6 +139700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -139126,11 +139710,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75423] = 2, - ACTIONS(6094), 2, + [75599] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6092), 37, + ACTIONS(6160), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139168,11 +139752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75467] = 2, - ACTIONS(6098), 2, + [75643] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6096), 37, + ACTIONS(6164), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -139210,12 +139794,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75511] = 2, - ACTIONS(6102), 2, + [75687] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6100), 37, - sym__line_ending, + ACTIONS(6164), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139234,6 +139818,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, @@ -139242,7 +139827,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -139252,11 +139836,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75555] = 2, - ACTIONS(6098), 2, + [75731] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6096), 37, + ACTIONS(6168), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139294,11 +139878,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75599] = 2, - ACTIONS(6102), 2, + [75775] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6100), 37, + ACTIONS(6172), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139336,11 +139920,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75643] = 2, - ACTIONS(6106), 2, + [75819] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6104), 37, + ACTIONS(6176), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139378,11 +139962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75687] = 2, - ACTIONS(6110), 2, + [75863] = 2, + ACTIONS(6182), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6108), 37, + ACTIONS(6180), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139420,11 +140004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75731] = 2, - ACTIONS(6114), 2, + [75907] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6112), 37, + ACTIONS(6184), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139462,11 +140046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75775] = 2, - ACTIONS(6118), 2, + [75951] = 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6116), 37, + ACTIONS(6188), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139504,11 +140088,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75819] = 2, - ACTIONS(6122), 2, + [75995] = 2, + ACTIONS(6194), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6120), 37, + ACTIONS(6192), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139546,11 +140130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75863] = 2, - ACTIONS(6126), 2, + [76039] = 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6124), 37, + ACTIONS(6196), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139588,11 +140172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75907] = 2, - ACTIONS(6130), 2, + [76083] = 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6128), 37, + ACTIONS(6200), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139630,11 +140214,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75951] = 2, - ACTIONS(6134), 2, + [76127] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6132), 37, + ACTIONS(6204), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139672,11 +140256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75995] = 2, - ACTIONS(6022), 2, + [76171] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 37, + ACTIONS(6044), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139714,11 +140298,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76039] = 2, - ACTIONS(6138), 2, + [76215] = 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6136), 37, + ACTIONS(6208), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139756,11 +140340,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76083] = 2, - ACTIONS(6106), 2, + [76259] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6104), 37, + ACTIONS(6168), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -139798,12 +140382,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76127] = 2, - ACTIONS(6030), 2, + [76303] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 37, - sym__soft_line_ending, + ACTIONS(6172), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139822,7 +140406,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, @@ -139831,6 +140414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -139840,12 +140424,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76171] = 2, - ACTIONS(6110), 2, + [76347] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6108), 37, - sym__line_ending, + ACTIONS(6088), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139864,6 +140448,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, @@ -139872,7 +140457,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -139882,11 +140466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76215] = 2, - ACTIONS(6114), 2, + [76391] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6112), 37, + ACTIONS(6176), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -139924,11 +140508,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76259] = 2, - ACTIONS(6142), 2, + [76435] = 2, + ACTIONS(6214), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6140), 37, + ACTIONS(6212), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139966,11 +140550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76303] = 2, - ACTIONS(6146), 2, + [76479] = 2, + ACTIONS(6218), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6144), 37, + ACTIONS(6216), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140008,11 +140592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76347] = 2, - ACTIONS(6282), 2, + [76523] = 2, + ACTIONS(6400), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6280), 37, + ACTIONS(6398), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140050,11 +140634,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76391] = 2, - ACTIONS(6286), 2, + [76567] = 2, + ACTIONS(6358), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6284), 37, + ACTIONS(6356), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140092,12 +140676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76435] = 2, - ACTIONS(6342), 3, + [76611] = 2, + ACTIONS(6412), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6340), 36, + ACTIONS(6410), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140134,11 +140718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [76479] = 2, - ACTIONS(6118), 2, + [76655] = 2, + ACTIONS(6182), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6116), 37, + ACTIONS(6180), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -140176,11 +140760,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76523] = 2, - ACTIONS(6290), 2, + [76699] = 2, + ACTIONS(6362), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6288), 37, + ACTIONS(6360), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140218,11 +140802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76567] = 2, - ACTIONS(6294), 2, + [76743] = 2, + ACTIONS(6366), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6292), 37, + ACTIONS(6364), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140260,11 +140844,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76611] = 2, - ACTIONS(6150), 2, + [76787] = 2, + ACTIONS(6222), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6148), 37, + ACTIONS(6220), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140302,11 +140886,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76655] = 2, - ACTIONS(6154), 2, + [76831] = 2, + ACTIONS(6226), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6152), 37, + ACTIONS(6224), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140344,11 +140928,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76699] = 2, - ACTIONS(6158), 2, + [76875] = 2, + ACTIONS(6230), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6156), 37, + ACTIONS(6228), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140386,11 +140970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76743] = 2, - ACTIONS(6122), 2, + [76919] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6120), 37, + ACTIONS(6184), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -140428,11 +141012,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76787] = 2, - ACTIONS(6162), 2, + [76963] = 2, + ACTIONS(6234), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6160), 37, + ACTIONS(6232), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140470,11 +141054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76831] = 2, - ACTIONS(6166), 2, + [77007] = 2, + ACTIONS(6238), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6164), 37, + ACTIONS(6236), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140512,11 +141096,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76875] = 2, - ACTIONS(6126), 2, + [77051] = 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6124), 37, + ACTIONS(6188), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -140554,11 +141138,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76919] = 2, - ACTIONS(6170), 2, + [77095] = 2, + ACTIONS(6242), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6168), 37, + ACTIONS(6240), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140596,11 +141180,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76963] = 2, - ACTIONS(6174), 2, + [77139] = 2, + ACTIONS(6246), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6172), 37, + ACTIONS(6244), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140638,11 +141222,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77007] = 2, - ACTIONS(6130), 2, + [77183] = 2, + ACTIONS(6194), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6128), 37, + ACTIONS(6192), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -140680,11 +141264,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77051] = 2, - ACTIONS(6178), 2, + [77227] = 2, + ACTIONS(6250), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6176), 37, + ACTIONS(6248), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140722,11 +141306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77095] = 2, - ACTIONS(6182), 2, + [77271] = 2, + ACTIONS(6254), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6180), 37, + ACTIONS(6252), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140764,11 +141348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77139] = 2, - ACTIONS(6134), 2, + [77315] = 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6132), 37, + ACTIONS(6196), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -140806,11 +141390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77183] = 2, - ACTIONS(6186), 2, + [77359] = 2, + ACTIONS(6258), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6184), 37, + ACTIONS(6256), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140848,11 +141432,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77227] = 2, - ACTIONS(6190), 2, + [77403] = 2, + ACTIONS(6262), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6188), 37, + ACTIONS(6260), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140890,11 +141474,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77271] = 2, - ACTIONS(6194), 2, + [77447] = 2, + ACTIONS(6266), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6192), 37, + ACTIONS(6264), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140932,11 +141516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77315] = 2, - ACTIONS(6198), 2, + [77491] = 2, + ACTIONS(6270), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6196), 37, + ACTIONS(6268), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140974,11 +141558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77359] = 2, - ACTIONS(6202), 2, + [77535] = 2, + ACTIONS(6274), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6200), 37, + ACTIONS(6272), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141016,12 +141600,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77403] = 2, - ACTIONS(6206), 2, + [77579] = 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6204), 37, - sym__soft_line_ending, + ACTIONS(6200), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141040,7 +141624,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, @@ -141049,6 +141632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -141058,11 +141642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77447] = 2, - ACTIONS(6210), 2, + [77623] = 2, + ACTIONS(6278), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6208), 37, + ACTIONS(6276), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141100,12 +141684,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77491] = 2, - ACTIONS(6022), 2, + [77667] = 2, + ACTIONS(6282), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 37, - sym__line_ending, + ACTIONS(6280), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141124,6 +141708,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, @@ -141132,7 +141717,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -141142,12 +141726,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77535] = 2, - ACTIONS(6214), 2, + [77711] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6212), 37, - sym__soft_line_ending, + ACTIONS(6204), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141166,7 +141750,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, @@ -141175,6 +141758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -141184,11 +141768,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77579] = 2, - ACTIONS(6298), 2, + [77755] = 2, + ACTIONS(6286), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6296), 37, + ACTIONS(6284), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141207,8 +141791,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, @@ -141226,11 +141810,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77623] = 2, - ACTIONS(6302), 2, + [77799] = 2, + ACTIONS(6370), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6300), 37, + ACTIONS(6368), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141268,11 +141852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77667] = 2, - ACTIONS(6306), 2, + [77843] = 2, + ACTIONS(6374), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6304), 37, + ACTIONS(6372), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141310,11 +141894,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77711] = 2, - ACTIONS(6310), 2, + [77887] = 2, + ACTIONS(6378), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6308), 37, + ACTIONS(6376), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141352,11 +141936,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77755] = 2, - ACTIONS(6218), 2, + [77931] = 2, + ACTIONS(6382), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6216), 37, + ACTIONS(6380), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141375,8 +141959,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, @@ -141394,11 +141978,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77799] = 2, - ACTIONS(6222), 2, + [77975] = 2, + ACTIONS(6290), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6220), 37, + ACTIONS(6288), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141436,11 +142020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77843] = 2, - ACTIONS(6226), 2, + [78019] = 2, + ACTIONS(6294), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6224), 37, + ACTIONS(6292), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141478,11 +142062,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77887] = 2, - ACTIONS(6230), 2, + [78063] = 2, + ACTIONS(6298), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6228), 37, + ACTIONS(6296), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141520,11 +142104,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77931] = 2, - ACTIONS(6234), 2, + [78107] = 2, + ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6232), 37, + ACTIONS(6300), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141562,11 +142146,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77975] = 2, - ACTIONS(6314), 2, + [78151] = 2, + ACTIONS(6306), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6312), 37, + ACTIONS(6304), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141604,11 +142188,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78019] = 2, - ACTIONS(6238), 2, + [78195] = 2, + ACTIONS(6386), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6236), 37, + ACTIONS(6384), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141646,11 +142230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78063] = 2, - ACTIONS(6242), 2, + [78239] = 2, + ACTIONS(6310), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6240), 37, + ACTIONS(6308), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141688,11 +142272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78107] = 2, - ACTIONS(6246), 2, + [78283] = 2, + ACTIONS(6314), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6244), 37, + ACTIONS(6312), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141730,11 +142314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78151] = 2, - ACTIONS(6250), 2, + [78327] = 2, + ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6248), 37, + ACTIONS(6316), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141772,11 +142356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78195] = 2, - ACTIONS(6254), 2, + [78371] = 2, + ACTIONS(6322), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6252), 37, + ACTIONS(6320), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141814,11 +142398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78239] = 2, - ACTIONS(6258), 2, + [78415] = 2, + ACTIONS(6326), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6256), 37, + ACTIONS(6324), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141856,11 +142440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78283] = 2, - ACTIONS(6318), 2, + [78459] = 2, + ACTIONS(6330), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6316), 37, + ACTIONS(6328), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141898,11 +142482,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78327] = 2, - ACTIONS(6262), 2, + [78503] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6260), 37, + ACTIONS(6132), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141940,11 +142524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78371] = 2, - ACTIONS(6266), 2, + [78547] = 2, + ACTIONS(6334), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6264), 37, + ACTIONS(6332), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141982,11 +142566,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78415] = 2, - ACTIONS(6270), 2, + [78591] = 2, + ACTIONS(6338), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6268), 37, + ACTIONS(6336), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142024,11 +142608,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78459] = 2, - ACTIONS(6322), 2, + [78635] = 2, + ACTIONS(6342), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6320), 37, + ACTIONS(6340), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142066,11 +142650,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78503] = 2, - ACTIONS(6274), 2, + [78679] = 2, + ACTIONS(6390), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6272), 37, + ACTIONS(6388), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142108,12 +142692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78547] = 2, - ACTIONS(6066), 3, + [78723] = 2, + ACTIONS(6346), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6064), 36, + ACTIONS(6344), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142133,6 +142716,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, @@ -142148,14 +142732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [78591] = 2, - ACTIONS(6138), 2, + sym__whitespace, + [78767] = 2, + ACTIONS(6138), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6136), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(6136), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142182,7 +142767,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -142190,13 +142774,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [78635] = 2, - ACTIONS(6030), 2, + [78811] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 37, + ACTIONS(6044), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -142234,13 +142818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78679] = 2, - ACTIONS(6070), 3, + [78855] = 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6068), 36, - sym__soft_line_ending, + ACTIONS(6208), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142267,6 +142850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -142274,14 +142858,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [78723] = 2, - ACTIONS(6074), 3, + sym__whitespace, + [78899] = 2, + ACTIONS(6142), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6072), 36, + ACTIONS(6140), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142318,12 +142902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [78767] = 2, - ACTIONS(6078), 3, + [78943] = 2, + ACTIONS(6146), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6076), 36, + ACTIONS(6144), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142360,12 +142944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [78811] = 2, - ACTIONS(6082), 3, + [78987] = 2, + ACTIONS(6150), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6080), 36, + ACTIONS(6148), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142402,53 +142986,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [78855] = 2, - ACTIONS(6142), 2, + [79031] = 2, + ACTIONS(6154), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6140), 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__pandoc_lt_str, - sym__pipe_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, - [78899] = 2, - ACTIONS(6278), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6276), 37, + ACTIONS(6152), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142468,7 +143011,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, @@ -142484,13 +143026,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [78943] = 2, - ACTIONS(6146), 2, + [79075] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6144), 37, + ACTIONS(6088), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -142528,11 +143070,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78987] = 2, - ACTIONS(6332), 2, + [79119] = 2, + ACTIONS(6350), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6330), 37, + ACTIONS(6348), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142570,12 +143112,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79031] = 2, - ACTIONS(6086), 3, + [79163] = 2, + ACTIONS(6354), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6084), 36, + ACTIONS(6352), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142595,6 +143136,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, @@ -142610,13 +143152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [79075] = 2, - ACTIONS(6282), 2, + sym__whitespace, + [79207] = 2, + ACTIONS(6214), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6280), 37, + ACTIONS(6212), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -142654,12 +143196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79119] = 2, - ACTIONS(6286), 2, + [79251] = 2, + ACTIONS(6158), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6284), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(6156), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142686,7 +143229,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -142694,15 +143236,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [79163] = 2, - ACTIONS(5994), 3, + [79295] = 2, + ACTIONS(6218), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(5992), 36, - sym__soft_line_ending, + ACTIONS(6216), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142729,6 +143270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -142736,14 +143278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [79207] = 2, - ACTIONS(6090), 3, + sym__whitespace, + [79339] = 2, + ACTIONS(6070), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6088), 36, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142780,12 +143322,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79251] = 2, - ACTIONS(6094), 3, + [79383] = 2, + ACTIONS(6400), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, + ACTIONS(6398), 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__pandoc_lt_str, + sym__pipe_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(6092), 36, + [79427] = 2, + ACTIONS(6358), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6356), 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__pandoc_lt_str, + sym__pipe_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, + [79471] = 2, + ACTIONS(6162), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + sym__whitespace, + ACTIONS(6160), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142822,12 +143448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79295] = 2, - ACTIONS(6098), 3, + [79515] = 2, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6096), 36, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142864,12 +143490,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79339] = 2, - ACTIONS(6102), 3, + [79559] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6100), 36, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142906,12 +143532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79383] = 2, - ACTIONS(6106), 3, + [79603] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6104), 36, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142948,12 +143574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79427] = 2, - ACTIONS(6110), 3, + [79647] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6108), 36, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142990,12 +143616,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79471] = 2, - ACTIONS(6114), 3, + [79691] = 2, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6112), 36, + ACTIONS(6180), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143032,12 +143658,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79515] = 2, - ACTIONS(6118), 3, + [79735] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6116), 36, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143074,12 +143700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79559] = 2, - ACTIONS(6122), 3, + [79779] = 2, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6120), 36, + ACTIONS(6188), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143116,12 +143742,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79603] = 2, - ACTIONS(6126), 3, + [79823] = 2, + ACTIONS(6194), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6124), 36, + ACTIONS(6192), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143158,12 +143784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79647] = 2, - ACTIONS(6130), 3, + [79867] = 2, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6128), 36, + ACTIONS(6196), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143200,12 +143826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79691] = 2, - ACTIONS(6134), 3, + [79911] = 2, + ACTIONS(6202), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6132), 36, + ACTIONS(6200), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143242,12 +143868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79735] = 2, - ACTIONS(6022), 3, + [79955] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6020), 36, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143284,12 +143910,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79779] = 2, - ACTIONS(6138), 3, + [79999] = 2, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6136), 36, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143326,12 +143952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79823] = 2, - ACTIONS(6030), 3, + [80043] = 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6028), 36, + ACTIONS(6208), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143368,12 +143994,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79867] = 2, - ACTIONS(6342), 3, + [80087] = 2, + ACTIONS(6090), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6340), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143407,15 +144033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - [79911] = 2, - ACTIONS(6142), 3, + [80131] = 2, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6140), 36, + ACTIONS(6212), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143452,12 +144078,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79955] = 2, - ACTIONS(6146), 3, + [80175] = 2, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6144), 36, + ACTIONS(6216), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143494,11 +144120,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [79999] = 2, - ACTIONS(6282), 2, + [80219] = 2, + ACTIONS(6400), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6280), 37, + ACTIONS(6398), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143536,11 +144162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80043] = 2, - ACTIONS(6286), 2, + [80263] = 2, + ACTIONS(6358), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6284), 37, + ACTIONS(6356), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143578,11 +144204,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80087] = 2, - ACTIONS(6342), 2, + [80307] = 2, + ACTIONS(6412), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6340), 37, + ACTIONS(6410), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143620,11 +144246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80131] = 2, - ACTIONS(6290), 2, + [80351] = 2, + ACTIONS(6362), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6288), 37, + ACTIONS(6360), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143662,11 +144288,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80175] = 2, - ACTIONS(6294), 2, + [80395] = 2, + ACTIONS(6366), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6292), 37, + ACTIONS(6364), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143704,12 +144330,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80219] = 2, - ACTIONS(6150), 3, + [80439] = 2, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6148), 36, + ACTIONS(6220), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143746,12 +144372,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80263] = 2, - ACTIONS(6154), 3, + [80483] = 2, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6152), 36, + ACTIONS(6224), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143788,12 +144414,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80307] = 2, - ACTIONS(6158), 3, + [80527] = 2, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6156), 36, + ACTIONS(6228), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143830,12 +144456,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80351] = 2, - ACTIONS(6162), 3, + [80571] = 2, + ACTIONS(6412), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6160), 36, + ACTIONS(6410), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143869,15 +144495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [80395] = 2, - ACTIONS(6166), 3, + [80615] = 2, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6164), 36, + ACTIONS(6232), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143914,12 +144540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80439] = 2, - ACTIONS(6170), 3, + [80659] = 2, + ACTIONS(6238), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6168), 36, + ACTIONS(6236), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143956,12 +144582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80483] = 2, - ACTIONS(6174), 3, + [80703] = 2, + ACTIONS(6242), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6172), 36, + ACTIONS(6240), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143998,12 +144624,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80527] = 2, - ACTIONS(6178), 3, + [80747] = 2, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6176), 36, + ACTIONS(6244), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144040,12 +144666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80571] = 2, - ACTIONS(6182), 3, + [80791] = 2, + ACTIONS(6250), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6180), 36, + ACTIONS(6248), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144082,12 +144708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80615] = 2, - ACTIONS(6186), 3, + [80835] = 2, + ACTIONS(6254), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6184), 36, + ACTIONS(6252), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144124,12 +144750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80659] = 2, - ACTIONS(6190), 3, + [80879] = 2, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6188), 36, + ACTIONS(6256), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144166,12 +144792,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80703] = 2, - ACTIONS(6194), 3, + [80923] = 2, + ACTIONS(6262), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6192), 36, + ACTIONS(6260), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144208,12 +144834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80747] = 2, - ACTIONS(6198), 3, + [80967] = 2, + ACTIONS(6266), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6196), 36, + ACTIONS(6264), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144250,12 +144876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80791] = 2, - ACTIONS(6202), 3, + [81011] = 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6200), 36, + ACTIONS(6268), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144292,12 +144918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80835] = 2, - ACTIONS(6206), 3, + [81055] = 2, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6204), 36, + ACTIONS(6272), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144334,12 +144960,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80879] = 2, - ACTIONS(6210), 3, + [81099] = 2, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6208), 36, + ACTIONS(6276), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144376,12 +145002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80923] = 2, - ACTIONS(6214), 3, + [81143] = 2, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6212), 36, + ACTIONS(6280), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144418,11 +145044,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [80967] = 2, - ACTIONS(6298), 2, + [81187] = 2, + ACTIONS(6286), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6296), 37, + sym__whitespace, + ACTIONS(6284), 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_inline_note_reference, + sym_html_element, + sym__pandoc_lt_str, + sym__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, + [81231] = 2, + ACTIONS(6370), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6368), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144460,11 +145128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81011] = 2, - ACTIONS(6302), 2, + [81275] = 2, + ACTIONS(6374), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6300), 37, + ACTIONS(6372), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144502,11 +145170,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81055] = 2, - ACTIONS(6306), 2, + [81319] = 2, + ACTIONS(6378), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6304), 37, + ACTIONS(6376), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144544,11 +145212,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81099] = 2, - ACTIONS(6310), 2, + [81363] = 2, + ACTIONS(6382), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6308), 37, + ACTIONS(6380), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144586,12 +145254,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81143] = 2, - ACTIONS(6218), 3, + [81407] = 2, + ACTIONS(6290), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6216), 36, + ACTIONS(6288), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144628,12 +145296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81187] = 2, - ACTIONS(6222), 3, + [81451] = 2, + ACTIONS(6294), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6220), 36, + ACTIONS(6292), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144670,12 +145338,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81231] = 2, - ACTIONS(6226), 3, + [81495] = 2, + ACTIONS(6298), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6224), 36, + ACTIONS(6296), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144712,12 +145380,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81275] = 2, - ACTIONS(6230), 3, + [81539] = 2, + ACTIONS(6302), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6228), 36, + ACTIONS(6300), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144754,12 +145422,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81319] = 2, - ACTIONS(6234), 3, + [81583] = 2, + ACTIONS(6306), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6232), 36, + ACTIONS(6304), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144796,12 +145464,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81363] = 2, - ACTIONS(6314), 3, + [81627] = 2, + ACTIONS(6386), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6312), 36, + ACTIONS(6384), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144838,12 +145506,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81407] = 2, - ACTIONS(6238), 3, + [81671] = 2, + ACTIONS(6310), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6236), 36, + ACTIONS(6308), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144880,12 +145548,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81451] = 2, - ACTIONS(6242), 3, + [81715] = 2, + ACTIONS(6314), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6240), 36, + ACTIONS(6312), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144922,12 +145590,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81495] = 2, - ACTIONS(6246), 3, + [81759] = 2, + ACTIONS(6318), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6244), 36, + ACTIONS(6316), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144964,12 +145632,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81539] = 2, - ACTIONS(6250), 3, + [81803] = 2, + ACTIONS(6322), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6248), 36, + ACTIONS(6320), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145006,12 +145674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81583] = 2, - ACTIONS(6254), 3, + [81847] = 2, + ACTIONS(6326), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6252), 36, + ACTIONS(6324), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145048,12 +145716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81627] = 2, - ACTIONS(6258), 3, + [81891] = 2, + ACTIONS(6330), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6256), 36, + ACTIONS(6328), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145090,12 +145758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81671] = 2, - ACTIONS(6318), 3, + [81935] = 2, + ACTIONS(6134), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6316), 36, + ACTIONS(6132), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145132,12 +145800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81715] = 2, - ACTIONS(6262), 3, + [81979] = 2, + ACTIONS(6334), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6260), 36, + ACTIONS(6332), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145174,12 +145842,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81759] = 2, - ACTIONS(6266), 3, + [82023] = 2, + ACTIONS(6338), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6264), 36, + ACTIONS(6336), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145216,12 +145884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81803] = 2, - ACTIONS(6270), 3, + [82067] = 2, + ACTIONS(6342), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6268), 36, + ACTIONS(6340), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145258,12 +145926,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81847] = 2, - ACTIONS(6322), 3, + [82111] = 2, + ACTIONS(6390), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6320), 36, + ACTIONS(6388), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145300,12 +145968,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81891] = 2, - ACTIONS(6274), 3, + [82155] = 2, + ACTIONS(6346), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6272), 36, + ACTIONS(6344), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145342,11 +146010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [81935] = 2, - ACTIONS(6066), 2, + [82199] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6064), 37, + ACTIONS(6136), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145384,11 +146052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81979] = 2, - ACTIONS(6070), 2, + [82243] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6068), 37, + ACTIONS(6140), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145426,11 +146094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82023] = 2, - ACTIONS(6074), 2, + [82287] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6072), 37, + ACTIONS(6144), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145468,11 +146136,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82067] = 2, - ACTIONS(6078), 2, + [82331] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6076), 37, + ACTIONS(6148), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145510,11 +146178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82111] = 2, - ACTIONS(6082), 2, + [82375] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6080), 37, + ACTIONS(6152), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145552,12 +146220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82155] = 2, - ACTIONS(6278), 3, + [82419] = 2, + ACTIONS(6350), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6276), 36, + ACTIONS(6348), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145594,12 +146262,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [82199] = 2, - ACTIONS(6332), 3, + [82463] = 2, + ACTIONS(6354), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6330), 36, + ACTIONS(6352), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145636,11 +146304,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [82243] = 2, - ACTIONS(6086), 2, + [82507] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6084), 37, + ACTIONS(6156), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145678,11 +146346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82287] = 2, - ACTIONS(5994), 2, + [82551] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 37, + ACTIONS(6068), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145720,11 +146388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82331] = 2, - ACTIONS(6090), 2, + [82595] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6088), 37, + ACTIONS(6160), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145762,11 +146430,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82375] = 2, - ACTIONS(6094), 2, + [82639] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6092), 37, + ACTIONS(6164), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145804,11 +146472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82419] = 2, - ACTIONS(6098), 2, + [82683] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6096), 37, + ACTIONS(6168), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145846,11 +146514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82463] = 2, - ACTIONS(6102), 2, + [82727] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6100), 37, + ACTIONS(6172), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145888,11 +146556,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82507] = 2, - ACTIONS(6106), 2, + [82771] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6104), 37, + ACTIONS(6176), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145930,11 +146598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82551] = 2, - ACTIONS(6110), 2, + [82815] = 2, + ACTIONS(6182), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6108), 37, + ACTIONS(6180), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145972,11 +146640,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82595] = 2, - ACTIONS(6114), 2, + [82859] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6112), 37, + ACTIONS(6184), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146014,11 +146682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82639] = 2, - ACTIONS(6118), 2, + [82903] = 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6116), 37, + ACTIONS(6188), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146056,11 +146724,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82683] = 2, - ACTIONS(6122), 2, + [82947] = 2, + ACTIONS(6194), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6120), 37, + ACTIONS(6192), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146098,11 +146766,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82727] = 2, - ACTIONS(6126), 2, + [82991] = 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6124), 37, + ACTIONS(6196), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146140,11 +146808,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82771] = 2, - ACTIONS(6130), 2, + [83035] = 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6128), 37, + ACTIONS(6200), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146182,11 +146850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82815] = 2, - ACTIONS(6134), 2, + [83079] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6132), 37, + ACTIONS(6204), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146224,11 +146892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82859] = 2, - ACTIONS(6022), 2, + [83123] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 37, + ACTIONS(6044), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146266,11 +146934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82903] = 2, - ACTIONS(6138), 2, + [83167] = 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6136), 37, + ACTIONS(6208), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146308,11 +146976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82947] = 2, - ACTIONS(6030), 2, + [83211] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 37, + ACTIONS(6088), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146350,11 +147018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82991] = 2, - ACTIONS(6142), 2, + [83255] = 2, + ACTIONS(6214), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6140), 37, + ACTIONS(6212), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146392,11 +147060,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83035] = 2, - ACTIONS(6146), 2, + [83299] = 2, + ACTIONS(6218), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6144), 37, + ACTIONS(6216), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146434,12 +147102,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83079] = 2, - ACTIONS(6282), 3, + [83343] = 2, + ACTIONS(6400), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6280), 36, + ACTIONS(6398), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146476,12 +147144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [83123] = 2, - ACTIONS(6286), 3, + [83387] = 2, + ACTIONS(6358), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6284), 36, + ACTIONS(6356), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146518,11 +147186,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [83167] = 2, - ACTIONS(6342), 2, + [83431] = 2, + ACTIONS(6412), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6340), 37, + ACTIONS(6410), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146560,12 +147228,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83211] = 2, - ACTIONS(6290), 3, + [83475] = 2, + ACTIONS(6362), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6288), 36, + ACTIONS(6360), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146602,12 +147270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [83255] = 2, - ACTIONS(6294), 3, + [83519] = 2, + ACTIONS(6366), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6292), 36, + ACTIONS(6364), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146644,95 +147312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [83299] = 2, - ACTIONS(6150), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6148), 37, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - sym__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, - [83343] = 2, - ACTIONS(6154), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6152), 37, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - sym__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, - [83387] = 2, - ACTIONS(6158), 2, + [83563] = 2, + ACTIONS(6222), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6156), 37, + ACTIONS(6220), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146770,11 +147354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83431] = 2, - ACTIONS(6162), 2, + [83607] = 2, + ACTIONS(6226), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6160), 37, + ACTIONS(6224), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146812,11 +147396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83475] = 2, - ACTIONS(6166), 2, + [83651] = 2, + ACTIONS(6230), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6164), 37, + ACTIONS(6228), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146854,11 +147438,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83519] = 2, - ACTIONS(6170), 2, + [83695] = 2, + ACTIONS(6234), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6168), 37, + ACTIONS(6232), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146896,11 +147480,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83563] = 2, - ACTIONS(6174), 2, + [83739] = 2, + ACTIONS(6238), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6172), 37, + ACTIONS(6236), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146938,11 +147522,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83607] = 2, - ACTIONS(6178), 2, + [83783] = 2, + ACTIONS(6242), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6176), 37, + ACTIONS(6240), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146980,11 +147564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83651] = 2, - ACTIONS(6182), 2, + [83827] = 2, + ACTIONS(6246), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6180), 37, + ACTIONS(6244), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147022,11 +147606,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83695] = 2, - ACTIONS(6186), 2, + [83871] = 2, + ACTIONS(6250), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6184), 37, + ACTIONS(6248), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147064,11 +147648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83739] = 2, - ACTIONS(6190), 2, + [83915] = 2, + ACTIONS(6254), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6188), 37, + ACTIONS(6252), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147106,11 +147690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83783] = 2, - ACTIONS(6194), 2, + [83959] = 2, + ACTIONS(6258), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6192), 37, + ACTIONS(6256), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147148,11 +147732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83827] = 2, - ACTIONS(6198), 2, + [84003] = 2, + ACTIONS(6262), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6196), 37, + ACTIONS(6260), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147190,11 +147774,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83871] = 2, - ACTIONS(6202), 2, + [84047] = 2, + ACTIONS(6266), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6200), 37, + ACTIONS(6264), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147232,11 +147816,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83915] = 2, - ACTIONS(6206), 2, + [84091] = 2, + ACTIONS(6270), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6204), 37, + ACTIONS(6268), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147274,11 +147858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83959] = 2, - ACTIONS(6210), 2, + [84135] = 2, + ACTIONS(6274), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6208), 37, + ACTIONS(6272), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147316,12 +147900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84003] = 2, - ACTIONS(6150), 2, + [84179] = 2, + ACTIONS(6278), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6148), 37, - sym__line_ending, + ACTIONS(6276), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -147342,13 +147926,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_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -147358,11 +147942,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84047] = 2, - ACTIONS(6214), 2, + [84223] = 2, + ACTIONS(6282), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6212), 37, + ACTIONS(6280), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147400,12 +147984,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84091] = 2, - ACTIONS(6298), 3, + [84267] = 2, + ACTIONS(6286), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6296), 36, + ACTIONS(6284), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147427,6 +148010,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -147440,14 +148024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [84135] = 2, - ACTIONS(6302), 3, + sym__whitespace, + [84311] = 2, + ACTIONS(6370), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6300), 36, + ACTIONS(6368), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147484,12 +148068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [84179] = 2, - ACTIONS(6306), 3, + [84355] = 2, + ACTIONS(6374), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6304), 36, + ACTIONS(6372), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147526,12 +148110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [84223] = 2, - ACTIONS(6310), 3, + [84399] = 2, + ACTIONS(6378), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6308), 36, + ACTIONS(6376), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147568,11 +148152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [84267] = 2, - ACTIONS(6218), 2, + [84443] = 2, + ACTIONS(6382), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6216), 37, + sym__whitespace, + ACTIONS(6380), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147594,7 +148179,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -147608,13 +148192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [84311] = 2, - ACTIONS(6222), 2, + [84487] = 2, + ACTIONS(6290), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6220), 37, + ACTIONS(6288), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147652,11 +148236,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84355] = 2, - ACTIONS(6226), 2, + [84531] = 2, + ACTIONS(6294), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6224), 37, + ACTIONS(6292), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147694,11 +148278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84399] = 2, - ACTIONS(6230), 2, + [84575] = 2, + ACTIONS(6298), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6228), 37, + ACTIONS(6296), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147736,11 +148320,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84443] = 2, - ACTIONS(6234), 2, + [84619] = 2, + ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6232), 37, + ACTIONS(6300), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147778,11 +148362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84487] = 2, - ACTIONS(6314), 2, + [84663] = 2, + ACTIONS(6306), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6312), 37, + ACTIONS(6304), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147820,11 +148404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84531] = 2, - ACTIONS(6238), 2, + [84707] = 2, + ACTIONS(6386), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6236), 37, + ACTIONS(6384), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147862,11 +148446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84575] = 2, - ACTIONS(6242), 2, + [84751] = 2, + ACTIONS(6310), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6240), 37, + ACTIONS(6308), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147904,11 +148488,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84619] = 2, - ACTIONS(6246), 2, + [84795] = 2, + ACTIONS(6314), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6244), 37, + ACTIONS(6312), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147946,11 +148530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84663] = 2, - ACTIONS(6250), 2, + [84839] = 2, + ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6248), 37, + ACTIONS(6316), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147988,11 +148572,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84707] = 2, - ACTIONS(6254), 2, + [84883] = 2, + ACTIONS(6322), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6252), 37, + ACTIONS(6320), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148030,11 +148614,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84751] = 2, - ACTIONS(6258), 2, + [84927] = 2, + ACTIONS(6326), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6256), 37, + ACTIONS(6324), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148072,11 +148656,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84795] = 2, - ACTIONS(6318), 2, + [84971] = 2, + ACTIONS(6330), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6316), 37, + ACTIONS(6328), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148114,11 +148698,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84839] = 2, - ACTIONS(6262), 2, + [85015] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6260), 37, + ACTIONS(6132), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148156,11 +148740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84883] = 2, - ACTIONS(6266), 2, + [85059] = 2, + ACTIONS(6334), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6264), 37, + ACTIONS(6332), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148198,11 +148782,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84927] = 2, - ACTIONS(6270), 2, + [85103] = 2, + ACTIONS(6338), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6268), 37, + ACTIONS(6336), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148240,11 +148824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84971] = 2, - ACTIONS(6322), 2, + [85147] = 2, + ACTIONS(6342), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6320), 37, + ACTIONS(6340), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148282,11 +148866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85015] = 2, - ACTIONS(6274), 2, + [85191] = 2, + ACTIONS(6390), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6272), 37, + ACTIONS(6388), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148324,11 +148908,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85059] = 2, - ACTIONS(6066), 2, + [85235] = 2, + ACTIONS(6346), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6064), 37, + ACTIONS(6344), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148350,8 +148934,8 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -148366,12 +148950,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85103] = 2, - ACTIONS(6154), 2, + [85279] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6152), 37, - sym__line_ending, + ACTIONS(6136), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -148393,12 +148977,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_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -148408,11 +148992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85147] = 2, - ACTIONS(6158), 2, + [85323] = 2, + ACTIONS(6222), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6156), 37, + ACTIONS(6220), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -148450,11 +149034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85191] = 2, - ACTIONS(6162), 2, + [85367] = 2, + ACTIONS(6226), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6160), 37, + ACTIONS(6224), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -148492,11 +149076,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85235] = 2, - ACTIONS(6166), 2, + [85411] = 2, + ACTIONS(6230), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6164), 37, + ACTIONS(6228), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -148534,11 +149118,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85279] = 2, - ACTIONS(6070), 2, + [85455] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6068), 37, + ACTIONS(6140), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148576,11 +149160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85323] = 2, - ACTIONS(6074), 2, + [85499] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6072), 37, + ACTIONS(6144), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148618,11 +149202,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85367] = 2, - ACTIONS(6078), 2, + [85543] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6076), 37, + ACTIONS(6148), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148660,11 +149244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85411] = 2, - ACTIONS(6082), 2, + [85587] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6080), 37, + ACTIONS(6152), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148702,11 +149286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85455] = 2, - ACTIONS(6170), 2, + [85631] = 2, + ACTIONS(6234), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6168), 37, + ACTIONS(6232), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -148744,11 +149328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85499] = 2, - ACTIONS(6278), 2, + [85675] = 2, + ACTIONS(6350), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6276), 37, + ACTIONS(6348), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148786,11 +149370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85543] = 2, - ACTIONS(6174), 2, + [85719] = 2, + ACTIONS(6238), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6172), 37, + ACTIONS(6236), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -148828,11 +149412,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85587] = 2, - ACTIONS(6332), 2, + [85763] = 2, + ACTIONS(6354), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6330), 37, + ACTIONS(6352), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148870,11 +149454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85631] = 2, - ACTIONS(6086), 2, + [85807] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6084), 37, + ACTIONS(6156), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148912,11 +149496,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85675] = 2, - ACTIONS(6178), 2, + [85851] = 2, + ACTIONS(6242), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6176), 37, + ACTIONS(6240), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -148954,11 +149538,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85719] = 2, - ACTIONS(6182), 2, + [85895] = 2, + ACTIONS(6246), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6180), 37, + ACTIONS(6244), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -148996,11 +149580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85763] = 2, - ACTIONS(5994), 2, + [85939] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 37, + ACTIONS(6068), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149038,11 +149622,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85807] = 2, - ACTIONS(6186), 2, + [85983] = 2, + ACTIONS(6250), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6184), 37, + ACTIONS(6248), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -149080,11 +149664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85851] = 2, - ACTIONS(6090), 2, + [86027] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6088), 37, + ACTIONS(6160), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149122,11 +149706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85895] = 2, - ACTIONS(6190), 2, + [86071] = 2, + ACTIONS(6254), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6188), 37, + ACTIONS(6252), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -149164,11 +149748,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85939] = 2, - ACTIONS(6094), 2, + [86115] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6092), 37, + ACTIONS(6164), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149206,11 +149790,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85983] = 2, - ACTIONS(6194), 2, + [86159] = 2, + ACTIONS(6258), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6192), 37, + ACTIONS(6256), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -149248,12 +149832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86027] = 2, - ACTIONS(6198), 2, + [86203] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6196), 37, - sym__line_ending, + ACTIONS(6168), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -149275,12 +149859,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_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -149290,11 +149874,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86071] = 2, - ACTIONS(6098), 2, + [86247] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6096), 37, + ACTIONS(6172), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149332,11 +149916,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86115] = 2, - ACTIONS(6102), 2, + [86291] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6100), 37, + ACTIONS(6176), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149374,11 +149958,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86159] = 2, - ACTIONS(6106), 2, + [86335] = 2, + ACTIONS(6182), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6104), 37, + ACTIONS(6180), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149416,11 +150000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86203] = 2, - ACTIONS(6110), 2, + [86379] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6108), 37, + ACTIONS(6184), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149458,11 +150042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86247] = 2, - ACTIONS(6114), 2, + [86423] = 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6112), 37, + ACTIONS(6188), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149500,11 +150084,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86291] = 2, - ACTIONS(6118), 2, + [86467] = 2, + ACTIONS(6194), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6116), 37, + ACTIONS(6192), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149542,11 +150126,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86335] = 2, - ACTIONS(6122), 2, + [86511] = 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6120), 37, + ACTIONS(6196), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149584,11 +150168,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86379] = 2, - ACTIONS(6126), 2, + [86555] = 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6124), 37, + ACTIONS(6200), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149626,11 +150210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86423] = 2, - ACTIONS(6130), 2, + [86599] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6128), 37, + ACTIONS(6204), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149668,11 +150252,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86467] = 2, - ACTIONS(6134), 2, + [86643] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6132), 37, + ACTIONS(6044), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149710,11 +150294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86511] = 2, - ACTIONS(6022), 2, + [86687] = 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 37, + ACTIONS(6208), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149752,12 +150336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86555] = 2, - ACTIONS(6138), 2, + [86731] = 2, + ACTIONS(6262), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6136), 37, - sym__soft_line_ending, + ACTIONS(6260), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -149779,12 +150363,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_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -149794,11 +150378,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86599] = 2, - ACTIONS(6202), 2, + [86775] = 2, + ACTIONS(6266), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6200), 37, + ACTIONS(6264), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -149836,11 +150420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86643] = 2, - ACTIONS(6030), 2, + [86819] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 37, + ACTIONS(6088), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149878,11 +150462,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86687] = 2, - ACTIONS(6206), 2, + [86863] = 2, + ACTIONS(6270), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6204), 37, + ACTIONS(6268), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -149920,11 +150504,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86731] = 2, - ACTIONS(6210), 2, + [86907] = 2, + ACTIONS(6274), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6208), 37, + ACTIONS(6272), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -149962,11 +150546,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86775] = 2, - ACTIONS(6142), 2, + [86951] = 2, + ACTIONS(6214), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6140), 37, + ACTIONS(6212), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150004,11 +150588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86819] = 2, - ACTIONS(6146), 2, + [86995] = 2, + ACTIONS(6218), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6144), 37, + ACTIONS(6216), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150046,11 +150630,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86863] = 2, - ACTIONS(6282), 2, + [87039] = 2, + ACTIONS(6400), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6280), 37, + ACTIONS(6398), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150088,11 +150672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86907] = 2, - ACTIONS(6286), 2, + [87083] = 2, + ACTIONS(6358), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6284), 37, + ACTIONS(6356), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150130,11 +150714,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86951] = 2, - ACTIONS(6342), 2, + [87127] = 2, + ACTIONS(6412), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6340), 37, + ACTIONS(6410), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150172,11 +150756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86995] = 2, - ACTIONS(6290), 2, + [87171] = 2, + ACTIONS(6362), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6288), 37, + ACTIONS(6360), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150214,11 +150798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87039] = 2, - ACTIONS(6294), 2, + [87215] = 2, + ACTIONS(6366), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6292), 37, + ACTIONS(6364), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150256,11 +150840,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87083] = 2, - ACTIONS(6150), 2, + [87259] = 2, + ACTIONS(6222), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6148), 37, + ACTIONS(6220), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150298,11 +150882,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87127] = 2, - ACTIONS(6154), 2, + [87303] = 2, + ACTIONS(6226), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6152), 37, + ACTIONS(6224), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150340,11 +150924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87171] = 2, - ACTIONS(6158), 2, + [87347] = 2, + ACTIONS(6230), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6156), 37, + ACTIONS(6228), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150382,11 +150966,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87215] = 2, - ACTIONS(6214), 2, + [87391] = 2, + ACTIONS(6278), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6212), 37, + ACTIONS(6276), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -150424,53 +151008,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87259] = 2, - ACTIONS(6162), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6160), 37, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - sym__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, - [87303] = 2, - ACTIONS(6166), 2, + [87435] = 2, + ACTIONS(6234), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6164), 37, + ACTIONS(6232), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150508,11 +151050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87347] = 2, - ACTIONS(6170), 2, + [87479] = 2, + ACTIONS(6238), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6168), 37, + ACTIONS(6236), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150550,12 +151092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87391] = 2, - ACTIONS(6174), 2, + [87523] = 2, + ACTIONS(6282), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6172), 37, - sym__soft_line_ending, + ACTIONS(6280), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -150577,12 +151119,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_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -150592,11 +151134,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87435] = 2, - ACTIONS(6178), 2, + [87567] = 2, + ACTIONS(6242), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6176), 37, + ACTIONS(6240), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150634,11 +151176,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87479] = 2, - ACTIONS(6182), 2, + [87611] = 2, + ACTIONS(6246), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6180), 37, + ACTIONS(6244), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150676,11 +151218,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87523] = 2, - ACTIONS(6186), 2, + [87655] = 2, + ACTIONS(6250), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6184), 37, + ACTIONS(6248), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150718,11 +151260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87567] = 2, - ACTIONS(6190), 2, + [87699] = 2, + ACTIONS(6254), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6188), 37, + ACTIONS(6252), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150760,11 +151302,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87611] = 2, - ACTIONS(6194), 2, + [87743] = 2, + ACTIONS(6286), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6192), 37, + ACTIONS(6284), 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__pandoc_lt_str, + sym__pipe_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, + [87787] = 2, + ACTIONS(6258), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6256), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150802,11 +151386,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87655] = 2, - ACTIONS(6198), 2, + [87831] = 2, + ACTIONS(6262), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6196), 37, + ACTIONS(6260), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150844,11 +151428,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87699] = 2, - ACTIONS(6202), 2, + [87875] = 2, + ACTIONS(6266), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6200), 37, + ACTIONS(6264), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150886,12 +151470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87743] = 2, - ACTIONS(6298), 2, + [87919] = 2, + ACTIONS(6270), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6296), 37, - sym__line_ending, + ACTIONS(6268), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -150913,12 +151497,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_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -150928,11 +151512,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87787] = 2, - ACTIONS(6206), 2, + [87963] = 2, + ACTIONS(6274), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6204), 37, + ACTIONS(6272), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150970,11 +151554,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87831] = 2, - ACTIONS(6210), 2, + [88007] = 2, + ACTIONS(6278), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6208), 37, + ACTIONS(6276), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151012,12 +151596,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87875] = 2, - ACTIONS(6302), 2, + [88051] = 2, + ACTIONS(6282), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6300), 37, - sym__line_ending, + ACTIONS(6280), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -151039,12 +151623,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_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -151054,11 +151638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87919] = 2, - ACTIONS(6214), 2, + [88095] = 2, + ACTIONS(6286), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6212), 37, + ACTIONS(6284), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151096,11 +151680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87963] = 2, - ACTIONS(6298), 2, + [88139] = 2, + ACTIONS(6370), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6296), 37, + ACTIONS(6368), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151138,11 +151722,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88007] = 2, - ACTIONS(6302), 2, + [88183] = 2, + ACTIONS(6374), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6300), 37, + ACTIONS(6372), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151180,11 +151764,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88051] = 2, - ACTIONS(6306), 2, + [88227] = 2, + ACTIONS(6378), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6304), 37, + ACTIONS(6376), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151222,11 +151806,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88095] = 2, - ACTIONS(6310), 2, + [88271] = 2, + ACTIONS(6382), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6308), 37, + ACTIONS(6380), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151264,11 +151848,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88139] = 2, - ACTIONS(6218), 2, + [88315] = 2, + ACTIONS(6290), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6216), 37, + ACTIONS(6288), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151306,11 +151890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88183] = 2, - ACTIONS(6222), 2, + [88359] = 2, + ACTIONS(6294), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6220), 37, + ACTIONS(6292), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151348,11 +151932,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88227] = 2, - ACTIONS(6226), 2, + [88403] = 2, + ACTIONS(6298), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6224), 37, + ACTIONS(6296), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151390,11 +151974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88271] = 2, - ACTIONS(6230), 2, + [88447] = 2, + ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6228), 37, + ACTIONS(6300), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151432,11 +152016,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88315] = 2, - ACTIONS(6234), 2, + [88491] = 2, + ACTIONS(6306), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6232), 37, + ACTIONS(6304), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151474,11 +152058,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88359] = 2, - ACTIONS(6314), 2, + [88535] = 2, + ACTIONS(6386), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6312), 37, + ACTIONS(6384), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151516,11 +152100,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88403] = 2, - ACTIONS(6238), 2, + [88579] = 2, + ACTIONS(6310), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6236), 37, + ACTIONS(6308), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151558,11 +152142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88447] = 2, - ACTIONS(6242), 2, + [88623] = 2, + ACTIONS(6314), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6240), 37, + ACTIONS(6312), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151600,11 +152184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88491] = 2, - ACTIONS(6246), 2, + [88667] = 2, + ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6244), 37, + ACTIONS(6316), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151642,11 +152226,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88535] = 2, - ACTIONS(6250), 2, + [88711] = 2, + ACTIONS(6322), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6248), 37, + ACTIONS(6320), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151684,11 +152268,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88579] = 2, - ACTIONS(6254), 2, + [88755] = 2, + ACTIONS(6326), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6252), 37, + ACTIONS(6324), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151726,11 +152310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88623] = 2, - ACTIONS(6258), 2, + [88799] = 2, + ACTIONS(6330), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6256), 37, + ACTIONS(6328), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151768,11 +152352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88667] = 2, - ACTIONS(6318), 2, + [88843] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6316), 37, + ACTIONS(6132), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151810,11 +152394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88711] = 2, - ACTIONS(6262), 2, + [88887] = 2, + ACTIONS(6334), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6260), 37, + ACTIONS(6332), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151852,11 +152436,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88755] = 2, - ACTIONS(6266), 2, + [88931] = 2, + ACTIONS(6338), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6264), 37, + ACTIONS(6336), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151894,11 +152478,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88799] = 2, - ACTIONS(6270), 2, + [88975] = 2, + ACTIONS(6342), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6268), 37, + ACTIONS(6340), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151936,11 +152520,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88843] = 2, - ACTIONS(6322), 2, + [89019] = 2, + ACTIONS(6390), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6320), 37, + ACTIONS(6388), 37, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_lt_str, + sym__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, + [89063] = 2, + ACTIONS(6346), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6344), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151978,11 +152604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88887] = 2, - ACTIONS(6274), 2, + [89107] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6272), 37, + ACTIONS(6136), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152005,8 +152631,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -152020,12 +152646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88931] = 2, - ACTIONS(6066), 2, + [89151] = 2, + ACTIONS(6370), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6064), 37, - sym__soft_line_ending, + ACTIONS(6368), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -152048,11 +152674,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__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -152062,12 +152688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88975] = 2, - ACTIONS(6070), 2, + [89195] = 2, + ACTIONS(6374), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6068), 37, - sym__soft_line_ending, + ACTIONS(6372), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -152090,11 +152716,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__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -152104,11 +152730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89019] = 2, - ACTIONS(6074), 2, + [89239] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6072), 37, + ACTIONS(6140), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152146,11 +152772,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89063] = 2, - ACTIONS(6078), 2, + [89283] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6076), 37, + ACTIONS(6144), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152188,11 +152814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89107] = 2, - ACTIONS(6082), 2, + [89327] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6080), 37, + ACTIONS(6148), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152230,11 +152856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89151] = 2, - ACTIONS(6278), 2, + [89371] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6276), 37, + ACTIONS(6152), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152257,8 +152883,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -152272,11 +152898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89195] = 2, - ACTIONS(6332), 2, + [89415] = 2, + ACTIONS(6350), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6330), 37, + ACTIONS(6348), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152314,11 +152940,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89239] = 2, - ACTIONS(6086), 2, + [89459] = 2, + ACTIONS(6354), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6084), 37, + ACTIONS(6352), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152341,8 +152967,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -152356,12 +152982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89283] = 2, - ACTIONS(6324), 2, + [89503] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2901), 37, - sym__line_ending, + ACTIONS(6156), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -152384,11 +153010,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__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -152398,11 +153024,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89327] = 2, - ACTIONS(5994), 2, + [89547] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 37, + ACTIONS(6068), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152440,11 +153066,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89371] = 2, - ACTIONS(6090), 2, + [89591] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6088), 37, + ACTIONS(6160), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152482,11 +153108,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89415] = 2, - ACTIONS(6094), 2, + [89635] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6092), 37, + ACTIONS(6164), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152524,11 +153150,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89459] = 2, - ACTIONS(6098), 2, + [89679] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6096), 37, + ACTIONS(6168), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152566,11 +153192,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89503] = 2, - ACTIONS(6102), 2, + [89723] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6100), 37, + ACTIONS(6172), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152608,11 +153234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89547] = 2, - ACTIONS(6106), 2, + [89767] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6104), 37, + ACTIONS(6176), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152650,11 +153276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89591] = 2, - ACTIONS(6110), 2, + [89811] = 2, + ACTIONS(6182), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6108), 37, + ACTIONS(6180), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152692,11 +153318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89635] = 2, - ACTIONS(6114), 2, + [89855] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6112), 37, + ACTIONS(6184), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152734,11 +153360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89679] = 2, - ACTIONS(6118), 2, + [89899] = 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6116), 37, + ACTIONS(6188), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152776,11 +153402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89723] = 2, - ACTIONS(6122), 2, + [89943] = 2, + ACTIONS(6194), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6120), 37, + ACTIONS(6192), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152818,11 +153444,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89767] = 2, - ACTIONS(6126), 2, + [89987] = 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6124), 37, + ACTIONS(6196), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152860,11 +153486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89811] = 2, - ACTIONS(6130), 2, + [90031] = 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6128), 37, + ACTIONS(6200), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152902,11 +153528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89855] = 2, - ACTIONS(6134), 2, + [90075] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6132), 37, + ACTIONS(6204), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152944,11 +153570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89899] = 2, - ACTIONS(6022), 2, + [90119] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 37, + ACTIONS(6044), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152986,11 +153612,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89943] = 2, - ACTIONS(6138), 2, + [90163] = 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6136), 37, + ACTIONS(6208), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153028,12 +153654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89987] = 2, - ACTIONS(6030), 2, + [90207] = 2, + ACTIONS(6394), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 37, - sym__soft_line_ending, + ACTIONS(2965), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -153056,11 +153682,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__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -153070,11 +153696,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90031] = 2, - ACTIONS(6142), 2, + [90251] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6140), 37, + ACTIONS(6088), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153112,11 +153738,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90075] = 2, - ACTIONS(6146), 2, + [90295] = 2, + ACTIONS(6214), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6144), 37, + ACTIONS(6212), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153154,11 +153780,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90119] = 2, - ACTIONS(6282), 2, + [90339] = 2, + ACTIONS(6218), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6280), 37, + ACTIONS(6216), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153181,8 +153807,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -153196,11 +153822,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90163] = 2, - ACTIONS(6286), 2, + [90383] = 2, + ACTIONS(6400), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6284), 37, + ACTIONS(6398), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153238,11 +153864,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90207] = 2, - ACTIONS(6342), 2, + [90427] = 2, + ACTIONS(6358), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6340), 37, + ACTIONS(6356), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153265,9 +153891,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -153280,11 +153906,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90251] = 2, - ACTIONS(6290), 2, + [90471] = 2, + ACTIONS(6412), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6288), 37, + ACTIONS(6410), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153307,9 +153933,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -153322,11 +153948,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90295] = 2, - ACTIONS(6294), 2, + [90515] = 2, + ACTIONS(6362), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6292), 37, + ACTIONS(6360), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153364,11 +153990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90339] = 2, - ACTIONS(6150), 2, + [90559] = 2, + ACTIONS(6366), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6148), 37, + ACTIONS(6364), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153391,8 +154017,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -153406,11 +154032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90383] = 2, - ACTIONS(6154), 2, + [90603] = 2, + ACTIONS(6222), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6152), 37, + ACTIONS(6220), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153448,11 +154074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90427] = 2, - ACTIONS(6158), 2, + [90647] = 2, + ACTIONS(6226), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6156), 37, + ACTIONS(6224), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153490,11 +154116,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90471] = 2, - ACTIONS(6162), 2, + [90691] = 2, + ACTIONS(6230), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6160), 37, + ACTIONS(6228), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153532,11 +154158,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90515] = 2, - ACTIONS(6166), 2, + [90735] = 2, + ACTIONS(6234), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6164), 37, + ACTIONS(6232), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153574,11 +154200,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90559] = 2, - ACTIONS(6170), 2, + [90779] = 2, + ACTIONS(6238), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6168), 37, + ACTIONS(6236), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153616,11 +154242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90603] = 2, - ACTIONS(6174), 2, + [90823] = 2, + ACTIONS(6242), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6172), 37, + ACTIONS(6240), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153658,11 +154284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90647] = 2, - ACTIONS(6178), 2, + [90867] = 2, + ACTIONS(6246), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6176), 37, + ACTIONS(6244), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153700,11 +154326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90691] = 2, - ACTIONS(6182), 2, + [90911] = 2, + ACTIONS(6250), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6180), 37, + ACTIONS(6248), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153742,11 +154368,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90735] = 2, - ACTIONS(6186), 2, + [90955] = 2, + ACTIONS(6254), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6184), 37, + ACTIONS(6252), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153784,11 +154410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90779] = 2, - ACTIONS(6190), 2, + [90999] = 2, + ACTIONS(6258), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6188), 37, + ACTIONS(6256), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153826,11 +154452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90823] = 2, - ACTIONS(6194), 2, + [91043] = 2, + ACTIONS(6262), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6192), 37, + ACTIONS(6260), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153868,11 +154494,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90867] = 2, - ACTIONS(6198), 2, + [91087] = 2, + ACTIONS(6266), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6196), 37, + ACTIONS(6264), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153910,11 +154536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90911] = 2, - ACTIONS(6202), 2, + [91131] = 2, + ACTIONS(6270), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6200), 37, + ACTIONS(6268), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153952,11 +154578,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90955] = 2, - ACTIONS(6206), 2, + [91175] = 2, + ACTIONS(6274), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6204), 37, + ACTIONS(6272), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153994,11 +154620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90999] = 2, - ACTIONS(6210), 2, + [91219] = 2, + ACTIONS(6278), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6208), 37, + ACTIONS(6276), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154036,11 +154662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91043] = 2, - ACTIONS(6214), 2, + [91263] = 2, + ACTIONS(6282), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6212), 37, + ACTIONS(6280), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154078,11 +154704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91087] = 2, - ACTIONS(6298), 2, + [91307] = 2, + ACTIONS(6286), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6296), 37, + ACTIONS(6284), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154105,8 +154731,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -154120,11 +154746,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91131] = 2, - ACTIONS(6302), 2, + [91351] = 2, + ACTIONS(6370), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6300), 37, + ACTIONS(6368), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154162,11 +154788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91175] = 2, - ACTIONS(6306), 2, + [91395] = 2, + ACTIONS(6374), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6304), 37, + ACTIONS(6372), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154204,11 +154830,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91219] = 2, - ACTIONS(6310), 2, + [91439] = 2, + ACTIONS(6378), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6308), 37, + ACTIONS(6376), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154246,11 +154872,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91263] = 2, - ACTIONS(6218), 2, + [91483] = 2, + ACTIONS(6382), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6216), 37, + ACTIONS(6380), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154273,8 +154899,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -154288,11 +154914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91307] = 2, - ACTIONS(6222), 2, + [91527] = 2, + ACTIONS(6290), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6220), 37, + ACTIONS(6288), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154330,11 +154956,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91351] = 2, - ACTIONS(6226), 2, + [91571] = 2, + ACTIONS(6294), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6224), 37, + ACTIONS(6292), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154372,11 +154998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91395] = 2, - ACTIONS(6230), 2, + [91615] = 2, + ACTIONS(6298), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6228), 37, + ACTIONS(6296), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154414,11 +155040,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91439] = 2, - ACTIONS(6234), 2, + [91659] = 2, + ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6232), 37, + ACTIONS(6300), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154456,11 +155082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91483] = 2, - ACTIONS(6314), 2, + [91703] = 2, + ACTIONS(6306), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6312), 37, + ACTIONS(6304), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154498,11 +155124,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91527] = 2, - ACTIONS(6238), 2, + [91747] = 2, + ACTIONS(6386), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6236), 37, + ACTIONS(6384), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154540,11 +155166,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91571] = 2, - ACTIONS(6242), 2, + [91791] = 2, + ACTIONS(6310), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6240), 37, + ACTIONS(6308), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154582,11 +155208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91615] = 2, - ACTIONS(6246), 2, + [91835] = 2, + ACTIONS(6314), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6244), 37, + ACTIONS(6312), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154624,11 +155250,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91659] = 2, - ACTIONS(6250), 2, + [91879] = 2, + ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6248), 37, + ACTIONS(6316), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154666,11 +155292,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91703] = 2, - ACTIONS(6254), 2, + [91923] = 2, + ACTIONS(6322), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6252), 37, + ACTIONS(6320), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154708,11 +155334,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91747] = 2, - ACTIONS(6258), 2, + [91967] = 2, + ACTIONS(6326), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6256), 37, + ACTIONS(6324), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154750,11 +155376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91791] = 2, - ACTIONS(6318), 2, + [92011] = 2, + ACTIONS(6330), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6316), 37, + ACTIONS(6328), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154792,11 +155418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91835] = 2, - ACTIONS(6262), 2, + [92055] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6260), 37, + ACTIONS(6132), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154834,11 +155460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91879] = 2, - ACTIONS(6266), 2, + [92099] = 2, + ACTIONS(6334), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6264), 37, + ACTIONS(6332), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154876,11 +155502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91923] = 2, - ACTIONS(6270), 2, + [92143] = 2, + ACTIONS(6338), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6268), 37, + ACTIONS(6336), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154918,11 +155544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91967] = 2, - ACTIONS(6322), 2, + [92187] = 2, + ACTIONS(6342), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6320), 37, + ACTIONS(6340), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154960,11 +155586,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92011] = 2, - ACTIONS(6274), 2, + [92231] = 2, + ACTIONS(6390), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6272), 37, + ACTIONS(6388), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155002,11 +155628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92055] = 2, - ACTIONS(6066), 2, + [92275] = 2, + ACTIONS(6346), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6064), 37, + ACTIONS(6344), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155030,53 +155656,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_open_underscore, - sym__emphasis_close_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - sym__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, - [92099] = 2, - ACTIONS(6218), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6216), 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_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155086,11 +155670,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92143] = 2, - ACTIONS(6070), 2, + [92319] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6068), 37, + ACTIONS(6136), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155128,11 +155712,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92187] = 2, - ACTIONS(6074), 2, + [92363] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6072), 37, + ACTIONS(6140), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155170,11 +155754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92231] = 2, - ACTIONS(6078), 2, + [92407] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6076), 37, + ACTIONS(6144), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155212,11 +155796,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92275] = 2, - ACTIONS(6082), 2, + [92451] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6080), 37, + ACTIONS(6148), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155254,12 +155838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92319] = 2, - ACTIONS(6222), 2, + [92495] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6220), 37, - sym__line_ending, + ACTIONS(6152), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155283,10 +155867,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_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155296,12 +155880,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92363] = 2, - ACTIONS(6226), 2, + [92539] = 2, + ACTIONS(6350), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6224), 37, - sym__line_ending, + ACTIONS(6348), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155324,11 +155908,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__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155338,11 +155922,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92407] = 2, - ACTIONS(6278), 2, + [92583] = 2, + ACTIONS(6354), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6276), 37, + ACTIONS(6352), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155380,11 +155964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92451] = 2, - ACTIONS(6230), 2, + [92627] = 2, + ACTIONS(6290), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6228), 37, + ACTIONS(6288), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -155422,11 +156006,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92495] = 2, - ACTIONS(6332), 2, + [92671] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6330), 37, + ACTIONS(6156), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155450,8 +156034,8 @@ 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_lt_str, @@ -155464,11 +156048,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92539] = 2, - ACTIONS(6234), 2, + [92715] = 2, + ACTIONS(6294), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6232), 37, + ACTIONS(6292), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -155506,11 +156090,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92583] = 2, - ACTIONS(6086), 2, + [92759] = 2, + ACTIONS(6298), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6084), 37, + ACTIONS(6296), 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__pandoc_lt_str, + sym__pipe_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, + [92803] = 2, + ACTIONS(6070), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6068), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155548,11 +156174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92627] = 2, - ACTIONS(6314), 2, + [92847] = 2, + ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6312), 37, + ACTIONS(6300), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -155590,11 +156216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92671] = 2, - ACTIONS(6238), 2, + [92891] = 2, + ACTIONS(6306), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6236), 37, + ACTIONS(6304), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -155632,11 +156258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92715] = 2, - ACTIONS(5994), 2, + [92935] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 37, + ACTIONS(6160), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155674,11 +156300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92759] = 2, - ACTIONS(6242), 2, + [92979] = 2, + ACTIONS(6386), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6240), 37, + ACTIONS(6384), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -155716,11 +156342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92803] = 2, - ACTIONS(6246), 2, + [93023] = 2, + ACTIONS(6310), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6244), 37, + ACTIONS(6308), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -155758,11 +156384,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92847] = 2, - ACTIONS(6090), 2, + [93067] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6088), 37, + ACTIONS(6164), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155800,11 +156426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92891] = 2, - ACTIONS(6250), 2, + [93111] = 2, + ACTIONS(6314), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6248), 37, + ACTIONS(6312), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -155842,11 +156468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92935] = 2, - ACTIONS(6254), 2, + [93155] = 2, + ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6252), 37, + ACTIONS(6316), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -155884,11 +156510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92979] = 2, - ACTIONS(6094), 2, + [93199] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6092), 37, + ACTIONS(6168), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155926,11 +156552,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93023] = 2, - ACTIONS(6098), 2, + [93243] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6096), 37, + ACTIONS(6172), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155968,11 +156594,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93067] = 2, - ACTIONS(6102), 2, + [93287] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6100), 37, + ACTIONS(6176), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156010,11 +156636,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93111] = 2, - ACTIONS(6106), 2, + [93331] = 2, + ACTIONS(6182), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6104), 37, + ACTIONS(6180), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156052,11 +156678,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93155] = 2, - ACTIONS(6110), 2, + [93375] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6108), 37, + ACTIONS(6184), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156094,11 +156720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93199] = 2, - ACTIONS(6114), 2, + [93419] = 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6112), 37, + ACTIONS(6188), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156136,11 +156762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93243] = 2, - ACTIONS(6118), 2, + [93463] = 2, + ACTIONS(6194), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6116), 37, + ACTIONS(6192), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156178,11 +156804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93287] = 2, - ACTIONS(6122), 2, + [93507] = 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6120), 37, + ACTIONS(6196), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156220,11 +156846,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93331] = 2, - ACTIONS(6126), 2, + [93551] = 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6124), 37, + ACTIONS(6200), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156262,11 +156888,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93375] = 2, - ACTIONS(6130), 2, + [93595] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6128), 37, + ACTIONS(6204), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156304,11 +156930,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93419] = 2, - ACTIONS(6134), 2, + [93639] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6132), 37, + ACTIONS(6044), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156346,11 +156972,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93463] = 2, - ACTIONS(6022), 2, + [93683] = 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 37, + ACTIONS(6208), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156388,12 +157014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93507] = 2, - ACTIONS(6138), 2, + [93727] = 2, + ACTIONS(6322), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6136), 37, - sym__soft_line_ending, + ACTIONS(6320), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156417,10 +157043,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_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156430,11 +157056,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93551] = 2, - ACTIONS(6030), 2, + [93771] = 2, + ACTIONS(6326), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 37, + ACTIONS(6324), 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__pandoc_lt_str, + sym__pipe_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, + [93815] = 2, + ACTIONS(6090), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6088), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156472,11 +157140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93595] = 2, - ACTIONS(6142), 2, + [93859] = 2, + ACTIONS(6214), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6140), 37, + ACTIONS(6212), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156514,11 +157182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93639] = 2, - ACTIONS(6146), 2, + [93903] = 2, + ACTIONS(6218), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6144), 37, + ACTIONS(6216), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156556,11 +157224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93683] = 2, - ACTIONS(6282), 2, + [93947] = 2, + ACTIONS(6400), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6280), 37, + ACTIONS(6398), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156598,11 +157266,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93727] = 2, - ACTIONS(6286), 2, + [93991] = 2, + ACTIONS(6358), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6284), 37, + ACTIONS(6356), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156640,11 +157308,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93771] = 2, - ACTIONS(6290), 2, + [94035] = 2, + ACTIONS(6362), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6288), 37, + ACTIONS(6360), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156682,11 +157350,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93815] = 2, - ACTIONS(6294), 2, + [94079] = 2, + ACTIONS(6366), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6292), 37, + ACTIONS(6364), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156724,137 +157392,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93859] = 2, - ACTIONS(6150), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6148), 37, - 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_lt_str, - sym__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, - [93903] = 2, - ACTIONS(6154), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6152), 37, - 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_lt_str, - sym__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, - [93947] = 2, - ACTIONS(6158), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6156), 37, - 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_lt_str, - sym__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, - [93991] = 2, - ACTIONS(6162), 2, + [94123] = 2, + ACTIONS(6222), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6160), 37, + ACTIONS(6220), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156892,11 +157434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94035] = 2, - ACTIONS(6166), 2, + [94167] = 2, + ACTIONS(6226), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6164), 37, + ACTIONS(6224), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156934,11 +157476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94079] = 2, - ACTIONS(6170), 2, + [94211] = 2, + ACTIONS(6230), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6168), 37, + ACTIONS(6228), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156976,11 +157518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94123] = 2, - ACTIONS(6174), 2, + [94255] = 2, + ACTIONS(6234), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6172), 37, + ACTIONS(6232), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157018,11 +157560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94167] = 2, - ACTIONS(6178), 2, + [94299] = 2, + ACTIONS(6238), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6176), 37, + ACTIONS(6236), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157060,11 +157602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94211] = 2, - ACTIONS(6182), 2, + [94343] = 2, + ACTIONS(6242), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6180), 37, + ACTIONS(6240), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157102,11 +157644,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94255] = 2, - ACTIONS(6186), 2, + [94387] = 2, + ACTIONS(6246), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6184), 37, + ACTIONS(6244), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157144,11 +157686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94299] = 2, - ACTIONS(6190), 2, + [94431] = 2, + ACTIONS(6250), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6188), 37, + ACTIONS(6248), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157186,11 +157728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94343] = 2, - ACTIONS(6194), 2, + [94475] = 2, + ACTIONS(6254), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6192), 37, + ACTIONS(6252), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157228,11 +157770,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94387] = 2, - ACTIONS(6198), 2, + [94519] = 2, + ACTIONS(6258), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6196), 37, + ACTIONS(6256), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157270,11 +157812,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94431] = 2, - ACTIONS(6202), 2, + [94563] = 2, + ACTIONS(6262), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6200), 37, + ACTIONS(6260), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157312,11 +157854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94475] = 2, - ACTIONS(6206), 2, + [94607] = 2, + ACTIONS(6270), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6204), 37, + ACTIONS(6268), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157354,11 +157896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94519] = 2, - ACTIONS(6210), 2, + [94651] = 2, + ACTIONS(6274), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6208), 37, + ACTIONS(6272), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157396,11 +157938,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94563] = 2, - ACTIONS(6214), 2, + [94695] = 2, + ACTIONS(6278), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6212), 37, + ACTIONS(6276), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157438,53 +157980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94607] = 2, - ACTIONS(6298), 2, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - ACTIONS(6296), 37, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_close_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - sym__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, - [94651] = 2, - ACTIONS(6302), 2, + [94739] = 2, + ACTIONS(6282), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6300), 37, + ACTIONS(6280), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157508,8 +158008,8 @@ 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_lt_str, @@ -157522,11 +158022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94695] = 2, - ACTIONS(6306), 2, + [94783] = 2, + ACTIONS(6286), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6304), 37, + ACTIONS(6284), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157550,8 +158050,8 @@ 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_lt_str, @@ -157564,11 +158064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94739] = 2, - ACTIONS(6310), 2, + [94827] = 2, + ACTIONS(6370), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6308), 37, + ACTIONS(6368), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157606,11 +158106,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94783] = 2, - ACTIONS(6218), 2, + [94871] = 2, + ACTIONS(6374), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6216), 37, + ACTIONS(6372), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157634,8 +158134,8 @@ 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_lt_str, @@ -157648,11 +158148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94827] = 2, - ACTIONS(6222), 2, + [94915] = 2, + ACTIONS(6378), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6220), 37, + ACTIONS(6376), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157676,8 +158176,8 @@ 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_lt_str, @@ -157690,11 +158190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94871] = 2, - ACTIONS(6226), 2, + [94959] = 2, + ACTIONS(6382), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6224), 37, + ACTIONS(6380), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157718,8 +158218,8 @@ 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_lt_str, @@ -157732,11 +158232,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94915] = 2, - ACTIONS(6230), 2, + [95003] = 2, + ACTIONS(6290), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6228), 37, + ACTIONS(6288), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157774,11 +158274,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94959] = 2, - ACTIONS(6234), 2, + [95047] = 2, + ACTIONS(6294), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6232), 37, + ACTIONS(6292), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157816,11 +158316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95003] = 2, - ACTIONS(6314), 2, + [95091] = 2, + ACTIONS(6298), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6312), 37, + ACTIONS(6296), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157858,11 +158358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95047] = 2, - ACTIONS(6238), 2, + [95135] = 2, + ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6236), 37, + ACTIONS(6300), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157900,11 +158400,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95091] = 2, - ACTIONS(6242), 2, + [95179] = 2, + ACTIONS(6306), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6240), 37, + ACTIONS(6304), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157942,11 +158442,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95135] = 2, - ACTIONS(6246), 2, + [95223] = 2, + ACTIONS(6386), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6244), 37, + ACTIONS(6384), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157984,11 +158484,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95179] = 2, - ACTIONS(6250), 2, + [95267] = 2, + ACTIONS(6310), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6248), 37, + ACTIONS(6308), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158026,11 +158526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95223] = 2, - ACTIONS(6254), 2, + [95311] = 2, + ACTIONS(6314), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6252), 37, + ACTIONS(6312), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158068,11 +158568,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95267] = 2, - ACTIONS(6258), 2, + [95355] = 2, + ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6256), 37, + ACTIONS(6316), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158110,11 +158610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95311] = 2, - ACTIONS(6318), 2, + [95399] = 2, + ACTIONS(6322), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6316), 37, + ACTIONS(6320), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158152,11 +158652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95355] = 2, - ACTIONS(6262), 2, + [95443] = 2, + ACTIONS(6326), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6260), 37, + ACTIONS(6324), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158194,11 +158694,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95399] = 2, - ACTIONS(6270), 2, + [95487] = 2, + ACTIONS(6330), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6268), 37, + ACTIONS(6328), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158236,11 +158736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95443] = 2, - ACTIONS(6322), 2, + [95531] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6320), 37, + ACTIONS(6132), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158278,11 +158778,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95487] = 2, - ACTIONS(6274), 2, + [95575] = 2, + ACTIONS(6334), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6272), 37, + ACTIONS(6332), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158320,12 +158820,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95531] = 2, - ACTIONS(6258), 2, + [95619] = 2, + ACTIONS(6338), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6256), 37, - sym__line_ending, + ACTIONS(6336), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158349,10 +158849,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_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -158362,12 +158862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95575] = 2, - ACTIONS(6318), 2, + [95663] = 2, + ACTIONS(6342), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6316), 37, - sym__line_ending, + ACTIONS(6340), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158391,10 +158891,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_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -158404,12 +158904,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95619] = 2, - ACTIONS(6262), 2, + [95707] = 2, + ACTIONS(6390), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6260), 37, - sym__line_ending, + ACTIONS(6388), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158433,10 +158933,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_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -158446,12 +158946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95663] = 2, - ACTIONS(6266), 2, + [95751] = 2, + ACTIONS(6346), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6264), 37, - sym__line_ending, + ACTIONS(6344), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158475,10 +158975,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_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -158488,12 +158988,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95707] = 2, - ACTIONS(6278), 2, + [95795] = 2, + ACTIONS(6330), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6276), 37, - sym__soft_line_ending, + ACTIONS(6328), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158517,10 +159017,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_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -158530,12 +159030,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95751] = 2, - ACTIONS(6332), 2, + [95839] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6330), 37, - sym__soft_line_ending, + ACTIONS(6132), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158559,10 +159059,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_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -158572,11 +159072,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95795] = 2, - ACTIONS(6270), 2, + [95883] = 2, + ACTIONS(6334), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6268), 37, + ACTIONS(6332), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -158614,12 +159114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95839] = 2, - ACTIONS(6322), 2, + [95927] = 2, + ACTIONS(6350), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6320), 37, - sym__line_ending, + ACTIONS(6348), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158643,10 +159143,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_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -158656,11 +159156,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95883] = 2, - ACTIONS(6274), 2, + [95971] = 2, + ACTIONS(6338), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6272), 37, + ACTIONS(6336), 37, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -158698,12 +159198,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95927] = 2, - ACTIONS(6066), 3, + [96015] = 2, + ACTIONS(6354), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6064), 36, + ACTIONS(6352), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158728,6 +159227,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -158737,15 +159237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [95971] = 2, - ACTIONS(6282), 2, + sym__whitespace, + [96059] = 2, + ACTIONS(6342), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6280), 37, - sym__soft_line_ending, + ACTIONS(6340), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158769,10 +159269,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_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -158782,12 +159282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96015] = 2, - ACTIONS(6286), 2, + [96103] = 2, + ACTIONS(6390), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6284), 37, - sym__soft_line_ending, + ACTIONS(6388), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158811,10 +159311,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_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -158824,12 +159324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96059] = 2, - ACTIONS(6290), 2, + [96147] = 2, + ACTIONS(6346), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6288), 37, - sym__soft_line_ending, + ACTIONS(6344), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158853,10 +159353,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_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -158866,11 +159366,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96103] = 2, - ACTIONS(6294), 2, + [96191] = 2, + ACTIONS(6138), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6292), 37, + sym__whitespace, + ACTIONS(6136), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158895,7 +159396,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -158905,14 +159405,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [96147] = 2, - ACTIONS(6298), 2, + [96235] = 2, + ACTIONS(6400), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6296), 37, + ACTIONS(6398), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158950,11 +159450,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96191] = 2, - ACTIONS(6302), 2, + [96279] = 2, + ACTIONS(6358), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6300), 37, + ACTIONS(6356), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158992,11 +159492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96235] = 2, - ACTIONS(6306), 2, + [96323] = 2, + ACTIONS(6362), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6304), 37, + ACTIONS(6360), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -159034,11 +159534,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96279] = 2, - ACTIONS(6310), 2, + [96367] = 2, + ACTIONS(6366), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6308), 37, + ACTIONS(6364), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -159076,12 +159576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96323] = 2, - ACTIONS(6070), 3, + [96411] = 2, + ACTIONS(6370), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6068), 36, + ACTIONS(6368), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -159106,6 +159605,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -159115,15 +159615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [96367] = 2, - ACTIONS(6074), 3, + sym__whitespace, + [96455] = 2, + ACTIONS(6374), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6072), 36, + ACTIONS(6372), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -159148,6 +159647,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -159157,15 +159657,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [96411] = 2, - ACTIONS(6078), 3, + sym__whitespace, + [96499] = 2, + ACTIONS(6378), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6076), 36, + ACTIONS(6376), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -159190,6 +159689,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -159199,15 +159699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [96455] = 2, - ACTIONS(6082), 3, + sym__whitespace, + [96543] = 2, + ACTIONS(6382), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6080), 36, + ACTIONS(6380), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -159232,6 +159731,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, @@ -159241,18 +159741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [96499] = 4, - ACTIONS(3802), 1, - anon_sym_LBRACE, - STATE(2476), 1, - sym__pandoc_attr_specifier, - ACTIONS(5962), 2, + sym__whitespace, + [96587] = 2, + ACTIONS(6142), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5960), 35, + sym__whitespace, + ACTIONS(6140), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159279,24 +159777,22 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [96547] = 4, - ACTIONS(3802), 1, + aux_sym_insert_token1, anon_sym_LBRACE, - STATE(2477), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 2, + anon_sym_PIPE, + [96631] = 2, + ACTIONS(6146), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5984), 35, + sym__whitespace, + ACTIONS(6144), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159323,24 +159819,24 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [96595] = 4, - ACTIONS(3802), 1, + [96675] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2481), 1, + STATE(2423), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6056), 35, + ACTIONS(6028), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159376,15 +159872,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [96643] = 4, - ACTIONS(3802), 1, + [96723] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2482), 1, + STATE(2424), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6060), 35, + ACTIONS(6092), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159420,15 +159916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [96691] = 4, - ACTIONS(3802), 1, + [96771] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2493), 1, + STATE(2425), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5980), 35, + ACTIONS(6056), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159464,15 +159960,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [96739] = 4, - ACTIONS(3802), 1, + [96819] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2460), 1, + STATE(2427), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6000), 35, + ACTIONS(6128), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159508,15 +160004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [96787] = 4, - ACTIONS(6380), 1, + [96867] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2422), 1, - sym_attribute_specifier, - ACTIONS(5968), 2, + STATE(2438), 1, + sym__pandoc_attr_specifier, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5966), 35, + ACTIONS(6104), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159552,15 +160048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [96835] = 4, - ACTIONS(3802), 1, + [96915] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2423), 1, + STATE(2442), 1, sym__pandoc_attr_specifier, - ACTIONS(5974), 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5972), 35, + ACTIONS(6024), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159596,15 +160092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [96883] = 4, - ACTIONS(3802), 1, - anon_sym_LBRACE, - STATE(2424), 1, - sym__pandoc_attr_specifier, - ACTIONS(5978), 2, + [96963] = 2, + ACTIONS(6150), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5976), 35, + sym__whitespace, + ACTIONS(6148), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159631,24 +160125,22 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [96931] = 4, - ACTIONS(3802), 1, + aux_sym_insert_token1, anon_sym_LBRACE, - STATE(2426), 1, - sym__pandoc_attr_specifier, - ACTIONS(5990), 2, + anon_sym_PIPE, + [97007] = 2, + ACTIONS(6154), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5988), 35, + sym__whitespace, + ACTIONS(6152), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159675,24 +160167,24 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [96979] = 4, - ACTIONS(3802), 1, + [97051] = 4, + ACTIONS(6448), 1, anon_sym_LBRACE, - STATE(2427), 1, - sym__pandoc_attr_specifier, - ACTIONS(5994), 2, + STATE(2446), 1, + sym_attribute_specifier, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 35, + ACTIONS(6060), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159728,15 +160220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97027] = 4, - ACTIONS(3802), 1, + [97099] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2428), 1, + STATE(2447), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6004), 35, + ACTIONS(6116), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159772,15 +160264,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97075] = 4, - ACTIONS(3802), 1, + [97147] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2429), 1, + STATE(2448), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6008), 35, + ACTIONS(6120), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159816,15 +160308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97123] = 4, - ACTIONS(3802), 1, + [97195] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2431), 1, + STATE(2449), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6012), 35, + ACTIONS(6048), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159860,15 +160352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97171] = 4, - ACTIONS(3802), 1, + [97243] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2432), 1, + STATE(2450), 1, sym__pandoc_attr_specifier, - ACTIONS(6018), 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6016), 35, + ACTIONS(6068), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159904,15 +160396,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97219] = 4, - ACTIONS(3802), 1, + [97291] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2436), 1, + STATE(2451), 1, sym__pandoc_attr_specifier, - ACTIONS(5958), 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5956), 35, + ACTIONS(6076), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159948,15 +160440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97267] = 4, - ACTIONS(3802), 1, + [97339] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2437), 1, + STATE(2452), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 35, + ACTIONS(6072), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159992,15 +160484,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97315] = 4, - ACTIONS(3802), 1, + [97387] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2438), 1, + STATE(2453), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6024), 35, + ACTIONS(6032), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160036,15 +160528,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97363] = 4, - ACTIONS(3802), 1, + [97435] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2439), 1, + STATE(2454), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 35, + ACTIONS(6036), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160080,15 +160572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97411] = 4, - ACTIONS(3802), 1, + [97483] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2441), 1, + STATE(2458), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6032), 35, + ACTIONS(6040), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160124,15 +160616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97459] = 4, - ACTIONS(3802), 1, + [97531] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2442), 1, + STATE(2459), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6036), 35, + ACTIONS(6044), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160168,15 +160660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97507] = 4, - ACTIONS(3802), 1, + [97579] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2443), 1, + STATE(2422), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6040), 35, + ACTIONS(6112), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160212,15 +160704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97555] = 4, - ACTIONS(3802), 1, + [97627] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2444), 1, + STATE(2499), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6044), 35, + ACTIONS(6088), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160256,15 +160748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97603] = 4, - ACTIONS(3802), 1, + [97675] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2449), 1, + STATE(2463), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6048), 35, + ACTIONS(6052), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160300,15 +160792,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97651] = 4, - ACTIONS(3802), 1, + [97723] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2450), 1, + STATE(2464), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6052), 35, + ACTIONS(6108), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160344,12 +160836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [97699] = 2, - ACTIONS(6332), 2, + [97771] = 4, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(2465), 1, + sym__pandoc_attr_specifier, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6330), 37, - sym__line_ending, + ACTIONS(6096), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160383,16 +160878,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97743] = 2, - ACTIONS(6086), 3, + [97819] = 4, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(2466), 1, + sym__pandoc_attr_specifier, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6084), 36, - sym__soft_line_ending, + ACTIONS(6100), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160419,64 +160915,24 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, - [97787] = 2, - ACTIONS(5994), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(5992), 36, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - 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, + [97867] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [97831] = 2, - ACTIONS(6090), 3, + STATE(2471), 1, + sym__pandoc_attr_specifier, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6088), 36, - sym__soft_line_ending, + ACTIONS(6080), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160503,64 +160959,24 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, - [97875] = 2, - ACTIONS(6094), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6092), 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_inline_note_reference, - sym_html_element, - sym__pandoc_lt_str, - 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, + [97915] = 4, + ACTIONS(3942), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [97919] = 2, - ACTIONS(6098), 3, + STATE(2472), 1, + sym__pandoc_attr_specifier, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6096), 36, - sym__soft_line_ending, + ACTIONS(6084), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160587,22 +161003,21 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, [97963] = 2, - ACTIONS(6102), 3, + ACTIONS(6354), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6100), 36, - sym__soft_line_ending, + ACTIONS(6352), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160629,21 +161044,22 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, [98007] = 2, - ACTIONS(6106), 3, + ACTIONS(6158), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6104), 36, + ACTIONS(6156), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -160681,11 +161097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98051] = 2, - ACTIONS(6110), 3, + ACTIONS(6070), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6108), 36, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -160723,11 +161139,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98095] = 2, - ACTIONS(6114), 3, + ACTIONS(6162), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6112), 36, + ACTIONS(6160), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -160765,11 +161181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98139] = 2, - ACTIONS(6118), 3, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6116), 36, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -160807,11 +161223,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98183] = 2, - ACTIONS(6122), 3, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6120), 36, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -160849,11 +161265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98227] = 2, - ACTIONS(6126), 3, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6124), 36, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -160891,11 +161307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98271] = 2, - ACTIONS(6130), 3, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6128), 36, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -160933,11 +161349,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98315] = 2, - ACTIONS(6134), 3, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6132), 36, + ACTIONS(6180), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -160975,11 +161391,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98359] = 2, - ACTIONS(6022), 3, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6020), 36, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161017,11 +161433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98403] = 2, - ACTIONS(6138), 3, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6136), 36, + ACTIONS(6188), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161059,11 +161475,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98447] = 2, - ACTIONS(6030), 3, + ACTIONS(6194), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6028), 36, + ACTIONS(6192), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161101,11 +161517,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98491] = 2, - ACTIONS(6142), 3, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6140), 36, + ACTIONS(6196), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161143,11 +161559,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98535] = 2, - ACTIONS(6146), 3, + ACTIONS(6202), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6144), 36, + ACTIONS(6200), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161185,10 +161601,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98579] = 2, - ACTIONS(6342), 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6340), 37, + sym__whitespace, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161198,7 +161615,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, @@ -161223,15 +161639,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, [98623] = 2, - ACTIONS(6290), 2, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6288), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(6044), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -161258,22 +161675,22 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, [98667] = 2, - ACTIONS(6294), 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6292), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(6208), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -161300,22 +161717,21 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, [98711] = 2, - ACTIONS(6150), 3, + ACTIONS(6090), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6148), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161353,11 +161769,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98755] = 2, - ACTIONS(6154), 3, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6152), 36, + ACTIONS(6212), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161395,11 +161811,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98799] = 2, - ACTIONS(6158), 3, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6156), 36, + ACTIONS(6216), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161437,11 +161853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [98843] = 2, - ACTIONS(6162), 3, + ACTIONS(6412), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6160), 36, + ACTIONS(6410), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161451,6 +161866,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, @@ -161475,16 +161891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, + sym__whitespace, [98887] = 2, - ACTIONS(6166), 3, + ACTIONS(6362), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6164), 36, - sym__soft_line_ending, + ACTIONS(6360), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -161511,22 +161926,22 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, [98931] = 2, - ACTIONS(6170), 3, + ACTIONS(6366), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6168), 36, - sym__soft_line_ending, + ACTIONS(6364), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -161553,21 +161968,22 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, [98975] = 2, - ACTIONS(6174), 3, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6172), 36, + ACTIONS(6220), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161605,11 +162021,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99019] = 2, - ACTIONS(6178), 3, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6176), 36, + ACTIONS(6224), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161647,11 +162063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99063] = 2, - ACTIONS(6182), 3, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6180), 36, + ACTIONS(6228), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161689,11 +162105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99107] = 2, - ACTIONS(6186), 3, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6184), 36, + ACTIONS(6232), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161731,11 +162147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99151] = 2, - ACTIONS(6190), 3, + ACTIONS(6238), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6188), 36, + ACTIONS(6236), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161773,11 +162189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99195] = 2, - ACTIONS(6194), 3, + ACTIONS(6242), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6192), 36, + ACTIONS(6240), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161815,11 +162231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99239] = 2, - ACTIONS(6198), 3, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6196), 36, + ACTIONS(6244), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161857,11 +162273,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99283] = 2, - ACTIONS(6202), 3, + ACTIONS(6250), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6200), 36, + ACTIONS(6248), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161899,11 +162315,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99327] = 2, - ACTIONS(6206), 3, + ACTIONS(6254), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6204), 36, + ACTIONS(6252), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161941,11 +162357,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99371] = 2, - ACTIONS(6210), 3, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6208), 36, + ACTIONS(6256), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -161983,11 +162399,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99415] = 2, - ACTIONS(6214), 3, + ACTIONS(6262), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6212), 36, + ACTIONS(6260), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162025,11 +162441,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99459] = 2, - ACTIONS(6306), 2, + ACTIONS(6266), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6304), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(6264), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -162056,22 +162473,22 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, [99503] = 2, - ACTIONS(6310), 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6308), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(6268), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -162098,22 +162515,21 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, [99547] = 2, - ACTIONS(6218), 3, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6216), 36, + ACTIONS(6272), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162151,11 +162567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99591] = 2, - ACTIONS(6222), 3, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6220), 36, + ACTIONS(6276), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162193,11 +162609,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99635] = 2, - ACTIONS(6226), 3, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6224), 36, + ACTIONS(6280), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162235,11 +162651,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99679] = 2, - ACTIONS(6230), 3, + ACTIONS(6286), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6228), 36, + ACTIONS(6284), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162277,12 +162693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99723] = 2, - ACTIONS(6234), 3, + ACTIONS(6378), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6232), 36, - sym__soft_line_ending, + ACTIONS(6376), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -162309,22 +162724,22 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, [99767] = 2, - ACTIONS(6314), 3, + ACTIONS(6382), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6312), 36, - sym__soft_line_ending, + ACTIONS(6380), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -162351,21 +162766,22 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, [99811] = 2, - ACTIONS(6238), 3, + ACTIONS(6290), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6236), 36, + ACTIONS(6288), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162403,11 +162819,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99855] = 2, - ACTIONS(6242), 3, + ACTIONS(6294), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6240), 36, + ACTIONS(6292), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162445,11 +162861,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99899] = 2, - ACTIONS(6246), 3, + ACTIONS(6298), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6244), 36, + ACTIONS(6296), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162487,11 +162903,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99943] = 2, - ACTIONS(6250), 3, + ACTIONS(6302), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6248), 36, + ACTIONS(6300), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162529,11 +162945,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [99987] = 2, - ACTIONS(6254), 3, + ACTIONS(6306), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6252), 36, + ACTIONS(6304), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162571,11 +162987,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [100031] = 2, - ACTIONS(6258), 3, + ACTIONS(6386), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6256), 36, + ACTIONS(6384), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162613,11 +163029,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [100075] = 2, - ACTIONS(6318), 3, + ACTIONS(6310), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6316), 36, + ACTIONS(6308), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162655,11 +163071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [100119] = 2, - ACTIONS(6262), 3, + ACTIONS(6314), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6260), 36, + ACTIONS(6312), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162697,11 +163113,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [100163] = 2, - ACTIONS(6266), 3, + ACTIONS(6318), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6264), 36, + ACTIONS(6316), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162739,11 +163155,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [100207] = 2, - ACTIONS(6270), 3, + ACTIONS(6322), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6268), 36, + ACTIONS(6320), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162781,11 +163197,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [100251] = 2, - ACTIONS(6322), 3, + ACTIONS(6326), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6320), 36, + ACTIONS(6324), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162823,11 +163239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [100295] = 2, - ACTIONS(6274), 3, + ACTIONS(6330), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, sym__whitespace, - ACTIONS(6272), 36, + ACTIONS(6328), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162864,15 +163280,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [100339] = 4, - ACTIONS(6382), 1, - sym__whitespace, - ACTIONS(6384), 1, - sym_block_continuation, - ACTIONS(2323), 2, + [100339] = 2, + ACTIONS(6134), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2321), 35, + sym__whitespace, + ACTIONS(6132), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -162908,11 +163322,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [100387] = 2, - ACTIONS(6066), 2, + [100383] = 2, + ACTIONS(6334), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6064), 37, + sym__whitespace, + ACTIONS(6332), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162922,7 +163337,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, @@ -162947,14 +163361,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [100431] = 2, - ACTIONS(6070), 2, + [100427] = 2, + ACTIONS(6338), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6068), 37, + sym__whitespace, + ACTIONS(6336), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -162964,7 +163379,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, @@ -162989,14 +163403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [100475] = 2, - ACTIONS(6074), 2, + [100471] = 2, + ACTIONS(6342), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6072), 37, + sym__whitespace, + ACTIONS(6340), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163006,7 +163421,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, @@ -163031,14 +163445,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [100519] = 2, - ACTIONS(6078), 2, + [100515] = 2, + ACTIONS(6390), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6076), 37, + sym__whitespace, + ACTIONS(6388), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163048,7 +163463,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, @@ -163073,14 +163487,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [100563] = 2, - ACTIONS(6082), 2, + [100559] = 2, + ACTIONS(6346), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6080), 37, + sym__whitespace, + ACTIONS(6344), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163090,7 +163505,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, @@ -163115,16 +163529,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, + [100603] = 4, + ACTIONS(6450), 1, sym__whitespace, - [100607] = 2, - ACTIONS(6278), 3, + ACTIONS(6452), 1, + sym_block_continuation, + ACTIONS(2405), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6276), 36, - sym__soft_line_ending, + ACTIONS(2403), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -163161,11 +163577,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [100651] = 2, - ACTIONS(6332), 3, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6330), 36, + ACTIONS(6136), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163175,6 +163590,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, @@ -163199,15 +163615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, + sym__whitespace, [100695] = 2, - ACTIONS(6066), 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6064), 37, - sym__line_ending, + ACTIONS(6140), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -163216,6 +163632,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, @@ -163234,7 +163651,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -163245,10 +163661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [100739] = 2, - ACTIONS(6086), 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6084), 37, + ACTIONS(6144), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163287,10 +163703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [100783] = 2, - ACTIONS(5994), 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 37, + ACTIONS(6148), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163329,10 +163745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [100827] = 2, - ACTIONS(6090), 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6088), 37, + ACTIONS(6152), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163371,10 +163787,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [100871] = 2, - ACTIONS(6094), 2, + ACTIONS(6350), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6092), 37, + sym__whitespace, + ACTIONS(6348), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163384,7 +163801,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, @@ -163409,14 +163825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, [100915] = 2, - ACTIONS(6098), 2, + ACTIONS(6354), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6096), 37, + sym__whitespace, + ACTIONS(6352), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163426,7 +163843,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, @@ -163451,14 +163867,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, [100959] = 2, - ACTIONS(6102), 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6100), 37, + ACTIONS(6156), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163497,11 +163913,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101003] = 2, - ACTIONS(6106), 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6104), 37, - sym__soft_line_ending, + ACTIONS(6136), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -163510,7 +163926,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, @@ -163529,6 +163944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -163539,10 +163955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101047] = 2, - ACTIONS(6110), 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6108), 37, + ACTIONS(6068), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163581,10 +163997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101091] = 2, - ACTIONS(6114), 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6112), 37, + ACTIONS(6160), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163623,10 +164039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101135] = 2, - ACTIONS(6118), 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6116), 37, + ACTIONS(6164), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163665,10 +164081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101179] = 2, - ACTIONS(6122), 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6120), 37, + ACTIONS(6168), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163707,10 +164123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101223] = 2, - ACTIONS(6126), 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6124), 37, + ACTIONS(6172), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163749,10 +164165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101267] = 2, - ACTIONS(6130), 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6128), 37, + ACTIONS(6176), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163791,10 +164207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101311] = 2, - ACTIONS(6134), 2, + ACTIONS(6182), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6132), 37, + ACTIONS(6180), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163833,10 +164249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101355] = 2, - ACTIONS(6022), 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 37, + ACTIONS(6184), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163875,10 +164291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101399] = 2, - ACTIONS(6138), 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6136), 37, + ACTIONS(6188), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163917,10 +164333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101443] = 2, - ACTIONS(6030), 2, + ACTIONS(6194), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 37, + ACTIONS(6192), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -163959,10 +164375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101487] = 2, - ACTIONS(6142), 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6140), 37, + ACTIONS(6196), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164001,10 +164417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101531] = 2, - ACTIONS(6146), 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6144), 37, + ACTIONS(6200), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164043,11 +164459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101575] = 2, - ACTIONS(6282), 3, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6280), 36, + ACTIONS(6204), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164057,6 +164472,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, @@ -164081,15 +164497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, + sym__whitespace, [101619] = 2, - ACTIONS(6286), 3, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6284), 36, + ACTIONS(6044), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164099,6 +164514,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, @@ -164123,14 +164539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, + sym__whitespace, [101663] = 2, - ACTIONS(6342), 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6340), 37, + ACTIONS(6208), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164140,8 +164556,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, @@ -164169,11 +164585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101707] = 2, - ACTIONS(6290), 3, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6288), 36, + ACTIONS(6088), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164183,6 +164598,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, @@ -164207,15 +164623,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, + sym__whitespace, [101751] = 2, - ACTIONS(6294), 3, + ACTIONS(6214), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6292), 36, + ACTIONS(6212), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164225,6 +164640,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, @@ -164249,14 +164665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, + sym__whitespace, [101795] = 2, - ACTIONS(6150), 2, + ACTIONS(6218), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6148), 37, + ACTIONS(6216), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164295,10 +164711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101839] = 2, - ACTIONS(6154), 2, + ACTIONS(6400), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6152), 37, + sym__whitespace, + ACTIONS(6398), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164308,7 +164725,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, @@ -164333,14 +164749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, [101883] = 2, - ACTIONS(6158), 2, + ACTIONS(6358), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6156), 37, + sym__whitespace, + ACTIONS(6356), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164350,7 +164767,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, @@ -164375,14 +164791,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, [101927] = 2, - ACTIONS(6162), 2, + ACTIONS(6412), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6160), 37, + ACTIONS(6410), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164392,8 +164808,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, @@ -164421,10 +164837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [101971] = 2, - ACTIONS(6166), 2, + ACTIONS(6362), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6164), 37, + sym__whitespace, + ACTIONS(6360), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164434,7 +164851,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, @@ -164459,14 +164875,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, [102015] = 2, - ACTIONS(6170), 2, + ACTIONS(6366), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6168), 37, + sym__whitespace, + ACTIONS(6364), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164476,7 +164893,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, @@ -164501,14 +164917,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, [102059] = 2, - ACTIONS(6174), 2, + ACTIONS(6222), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6172), 37, + ACTIONS(6220), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164547,10 +164963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [102103] = 2, - ACTIONS(6178), 2, + ACTIONS(6226), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6176), 37, + ACTIONS(6224), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164589,10 +165005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [102147] = 2, - ACTIONS(6182), 2, + ACTIONS(6230), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6180), 37, + ACTIONS(6228), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164631,10 +165047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [102191] = 2, - ACTIONS(6186), 2, + ACTIONS(6234), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6184), 37, + ACTIONS(6232), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164673,10 +165089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [102235] = 2, - ACTIONS(6190), 2, + ACTIONS(6238), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6188), 37, + ACTIONS(6236), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164715,10 +165131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [102279] = 2, - ACTIONS(6194), 2, + ACTIONS(6242), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6192), 37, + ACTIONS(6240), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164757,10 +165173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [102323] = 2, - ACTIONS(6198), 2, + ACTIONS(6246), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6196), 37, + ACTIONS(6244), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164799,10 +165215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [102367] = 2, - ACTIONS(6202), 2, + ACTIONS(6250), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6200), 37, + ACTIONS(6248), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164841,10 +165257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [102411] = 2, - ACTIONS(6206), 2, + ACTIONS(6254), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6204), 37, + ACTIONS(6252), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164883,10 +165299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [102455] = 2, - ACTIONS(6210), 2, + ACTIONS(6258), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6208), 37, + ACTIONS(6256), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164925,10 +165341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [102499] = 2, - ACTIONS(6214), 2, + ACTIONS(6262), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6212), 37, + ACTIONS(6260), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164967,11 +165383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [102543] = 2, - ACTIONS(6298), 3, + ACTIONS(6266), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6296), 36, + ACTIONS(6264), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -164981,6 +165396,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, @@ -165005,15 +165421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, + sym__whitespace, [102587] = 2, - ACTIONS(6302), 3, + ACTIONS(6270), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6300), 36, + ACTIONS(6268), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165023,6 +165438,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, @@ -165047,15 +165463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, + sym__whitespace, [102631] = 2, - ACTIONS(6306), 3, + ACTIONS(6274), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6304), 36, + ACTIONS(6272), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165065,6 +165480,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, @@ -165089,15 +165505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, + sym__whitespace, [102675] = 2, - ACTIONS(6310), 3, + ACTIONS(6278), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - sym__whitespace, - ACTIONS(6308), 36, + ACTIONS(6276), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165107,6 +165522,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, @@ -165131,14 +165547,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, + sym__whitespace, [102719] = 2, - ACTIONS(6218), 2, + ACTIONS(6282), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6216), 37, + ACTIONS(6280), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165177,10 +165593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [102763] = 2, - ACTIONS(6222), 2, + ACTIONS(6286), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6220), 37, + ACTIONS(6284), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165219,10 +165635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [102807] = 2, - ACTIONS(6226), 2, + ACTIONS(6370), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6224), 37, + sym__whitespace, + ACTIONS(6368), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165232,7 +165649,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, @@ -165257,14 +165673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, [102851] = 2, - ACTIONS(6230), 2, + ACTIONS(6374), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6228), 37, + sym__whitespace, + ACTIONS(6372), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165274,7 +165691,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, @@ -165299,14 +165715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, [102895] = 2, - ACTIONS(6234), 2, + ACTIONS(6378), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6232), 37, + sym__whitespace, + ACTIONS(6376), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165316,7 +165733,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, @@ -165341,14 +165757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, [102939] = 2, - ACTIONS(6314), 2, + ACTIONS(6382), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6312), 37, + sym__whitespace, + ACTIONS(6380), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165358,7 +165775,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, @@ -165383,14 +165799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, [102983] = 2, - ACTIONS(6238), 2, + ACTIONS(6290), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6236), 37, + ACTIONS(6288), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165429,10 +165845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103027] = 2, - ACTIONS(6242), 2, + ACTIONS(6294), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6240), 37, + ACTIONS(6292), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165471,10 +165887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103071] = 2, - ACTIONS(6246), 2, + ACTIONS(6298), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6244), 37, + ACTIONS(6296), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165513,10 +165929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103115] = 2, - ACTIONS(6250), 2, + ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6248), 37, + ACTIONS(6300), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165555,10 +165971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103159] = 2, - ACTIONS(6254), 2, + ACTIONS(6306), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6252), 37, + ACTIONS(6304), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165597,10 +166013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103203] = 2, - ACTIONS(6258), 2, + ACTIONS(6386), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6256), 37, + ACTIONS(6384), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165639,10 +166055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103247] = 2, - ACTIONS(6318), 2, + ACTIONS(6310), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6316), 37, + ACTIONS(6308), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165681,10 +166097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103291] = 2, - ACTIONS(6262), 2, + ACTIONS(6314), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6260), 37, + ACTIONS(6312), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165723,10 +166139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103335] = 2, - ACTIONS(6266), 2, + ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6264), 37, + ACTIONS(6316), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165765,10 +166181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103379] = 2, - ACTIONS(6270), 2, + ACTIONS(6322), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6268), 37, + ACTIONS(6320), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165807,10 +166223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103423] = 2, - ACTIONS(6322), 2, + ACTIONS(6326), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6320), 37, + ACTIONS(6324), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165849,10 +166265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103467] = 2, - ACTIONS(6274), 2, + ACTIONS(6330), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6272), 37, + ACTIONS(6328), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165891,10 +166307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103511] = 2, - ACTIONS(6066), 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6064), 37, + ACTIONS(6132), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165904,8 +166320,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, @@ -165933,10 +166349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103555] = 2, - ACTIONS(6070), 2, + ACTIONS(6334), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6068), 37, + ACTIONS(6332), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165946,8 +166362,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, @@ -165975,10 +166391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103599] = 2, - ACTIONS(6074), 2, + ACTIONS(6338), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6072), 37, + ACTIONS(6336), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -165988,8 +166404,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, @@ -166017,10 +166433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103643] = 2, - ACTIONS(6078), 2, + ACTIONS(6342), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6076), 37, + ACTIONS(6340), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166030,8 +166446,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, @@ -166059,10 +166475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103687] = 2, - ACTIONS(6082), 2, + ACTIONS(6390), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6080), 37, + ACTIONS(6388), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166072,8 +166488,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, @@ -166101,10 +166517,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103731] = 2, - ACTIONS(6278), 2, + ACTIONS(6346), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6276), 37, + ACTIONS(6344), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166143,10 +166559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103775] = 2, - ACTIONS(6332), 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6330), 37, + ACTIONS(6136), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166156,8 +166572,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, @@ -166185,10 +166601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103819] = 2, - ACTIONS(6086), 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6084), 37, + ACTIONS(6140), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166227,10 +166643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103863] = 2, - ACTIONS(5994), 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 37, + ACTIONS(6144), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166269,10 +166685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103907] = 2, - ACTIONS(6090), 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6088), 37, + ACTIONS(6148), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166311,10 +166727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103951] = 2, - ACTIONS(6094), 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6092), 37, + ACTIONS(6152), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166353,10 +166769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [103995] = 2, - ACTIONS(6098), 2, + ACTIONS(6350), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6096), 37, + ACTIONS(6348), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166366,8 +166782,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, @@ -166395,10 +166811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104039] = 2, - ACTIONS(6102), 2, + ACTIONS(6354), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6100), 37, + ACTIONS(6352), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166408,8 +166824,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, @@ -166437,10 +166853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104083] = 2, - ACTIONS(6106), 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6104), 37, + ACTIONS(6156), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166479,10 +166895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104127] = 2, - ACTIONS(6110), 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6108), 37, + ACTIONS(6068), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166521,10 +166937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104171] = 2, - ACTIONS(6114), 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6112), 37, + ACTIONS(6160), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166563,10 +166979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104215] = 2, - ACTIONS(6118), 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6116), 37, + ACTIONS(6164), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166605,10 +167021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104259] = 2, - ACTIONS(6122), 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6120), 37, + ACTIONS(6168), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166647,10 +167063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104303] = 2, - ACTIONS(6126), 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6124), 37, + ACTIONS(6172), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166689,10 +167105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104347] = 2, - ACTIONS(6130), 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6128), 37, + ACTIONS(6176), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166731,10 +167147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104391] = 2, - ACTIONS(6134), 2, + ACTIONS(6182), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6132), 37, + ACTIONS(6180), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166773,10 +167189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104435] = 2, - ACTIONS(6022), 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 37, + ACTIONS(6184), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166815,10 +167231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104479] = 2, - ACTIONS(6138), 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6136), 37, + ACTIONS(6188), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166857,10 +167273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104523] = 2, - ACTIONS(6030), 2, + ACTIONS(6194), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 37, + ACTIONS(6192), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166899,10 +167315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104567] = 2, - ACTIONS(6142), 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6140), 37, + ACTIONS(6196), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166941,10 +167357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104611] = 2, - ACTIONS(6146), 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6144), 37, + ACTIONS(6200), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166983,10 +167399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104655] = 2, - ACTIONS(6282), 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6280), 37, + ACTIONS(6204), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -166996,8 +167412,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, @@ -167025,10 +167441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104699] = 2, - ACTIONS(6286), 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6284), 37, + ACTIONS(6044), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167038,8 +167454,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, @@ -167067,10 +167483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104743] = 2, - ACTIONS(6342), 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6340), 37, + ACTIONS(6208), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167081,6 +167497,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, @@ -167088,7 +167505,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, @@ -167109,10 +167525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104787] = 2, - ACTIONS(6290), 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6288), 37, + ACTIONS(6088), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167122,8 +167538,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, @@ -167151,10 +167567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104831] = 2, - ACTIONS(6294), 2, + ACTIONS(6214), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6292), 37, + ACTIONS(6212), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167164,8 +167580,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, @@ -167193,10 +167609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104875] = 2, - ACTIONS(6150), 2, + ACTIONS(6218), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6148), 37, + ACTIONS(6216), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167235,10 +167651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104919] = 2, - ACTIONS(6154), 2, + ACTIONS(6400), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6152), 37, + ACTIONS(6398), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167248,8 +167664,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, @@ -167277,10 +167693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [104963] = 2, - ACTIONS(6158), 2, + ACTIONS(6358), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6156), 37, + ACTIONS(6356), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167290,8 +167706,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, @@ -167319,10 +167735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105007] = 2, - ACTIONS(6162), 2, + ACTIONS(6412), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6160), 37, + ACTIONS(6410), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167333,7 +167749,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, @@ -167341,6 +167756,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, @@ -167361,10 +167777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105051] = 2, - ACTIONS(6166), 2, + ACTIONS(6362), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6164), 37, + ACTIONS(6360), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167374,8 +167790,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, @@ -167403,11 +167819,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105095] = 2, - ACTIONS(6070), 2, + ACTIONS(6366), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6068), 37, - sym__line_ending, + ACTIONS(6364), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -167416,6 +167832,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, @@ -167434,7 +167851,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -167445,10 +167861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105139] = 2, - ACTIONS(6170), 2, + ACTIONS(6222), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6168), 37, + ACTIONS(6220), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167487,10 +167903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105183] = 2, - ACTIONS(6174), 2, + ACTIONS(6226), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6172), 37, + ACTIONS(6224), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167529,11 +167945,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105227] = 2, - ACTIONS(6074), 2, + ACTIONS(6230), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6072), 37, - sym__line_ending, + ACTIONS(6228), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -167543,6 +167959,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, @@ -167560,7 +167977,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -167571,10 +167987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105271] = 2, - ACTIONS(6178), 2, + ACTIONS(6234), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6176), 37, + ACTIONS(6232), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167613,10 +168029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105315] = 2, - ACTIONS(6182), 2, + ACTIONS(6238), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6180), 37, + ACTIONS(6236), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167655,10 +168071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105359] = 2, - ACTIONS(6186), 2, + ACTIONS(6242), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6184), 37, + ACTIONS(6240), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167697,10 +168113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105403] = 2, - ACTIONS(6190), 2, + ACTIONS(6246), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6188), 37, + ACTIONS(6244), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167739,10 +168155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105447] = 2, - ACTIONS(6194), 2, + ACTIONS(6250), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6192), 37, + ACTIONS(6248), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167781,10 +168197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105491] = 2, - ACTIONS(6198), 2, + ACTIONS(6254), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6196), 37, + ACTIONS(6252), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167823,11 +168239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105535] = 2, - ACTIONS(6202), 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6200), 37, - sym__soft_line_ending, + ACTIONS(6140), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -167837,7 +168253,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, @@ -167855,6 +168270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -167865,10 +168281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105579] = 2, - ACTIONS(6206), 2, + ACTIONS(6258), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6204), 37, + ACTIONS(6256), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167907,10 +168323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105623] = 2, - ACTIONS(6210), 2, + ACTIONS(6262), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6208), 37, + ACTIONS(6260), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -167949,11 +168365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105667] = 2, - ACTIONS(6078), 2, + ACTIONS(6266), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6076), 37, - sym__line_ending, + ACTIONS(6264), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -167963,6 +168379,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, @@ -167980,7 +168397,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -167991,10 +168407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105711] = 2, - ACTIONS(6214), 2, + ACTIONS(6270), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6212), 37, + ACTIONS(6268), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168033,10 +168449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105755] = 2, - ACTIONS(6298), 2, + ACTIONS(6274), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6296), 37, + ACTIONS(6272), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168046,8 +168462,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, @@ -168075,11 +168491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105799] = 2, - ACTIONS(6302), 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6300), 37, - sym__soft_line_ending, + ACTIONS(6144), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -168088,7 +168504,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, @@ -168107,6 +168522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -168117,10 +168533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105843] = 2, - ACTIONS(6306), 2, + ACTIONS(6278), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6304), 37, + ACTIONS(6276), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168130,8 +168546,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, @@ -168159,10 +168575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105887] = 2, - ACTIONS(6310), 2, + ACTIONS(6282), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6308), 37, + ACTIONS(6280), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168172,8 +168588,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, @@ -168201,10 +168617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105931] = 2, - ACTIONS(6218), 2, + ACTIONS(6286), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6216), 37, + ACTIONS(6284), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168243,10 +168659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [105975] = 2, - ACTIONS(6222), 2, + ACTIONS(6370), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6220), 37, + ACTIONS(6368), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168256,8 +168672,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, @@ -168285,10 +168701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106019] = 2, - ACTIONS(6226), 2, + ACTIONS(6374), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6224), 37, + ACTIONS(6372), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168298,8 +168714,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, @@ -168327,10 +168743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106063] = 2, - ACTIONS(6230), 2, + ACTIONS(6378), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6228), 37, + ACTIONS(6376), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168340,8 +168756,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, @@ -168369,10 +168785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106107] = 2, - ACTIONS(6234), 2, + ACTIONS(6382), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6232), 37, + ACTIONS(6380), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168382,8 +168798,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, @@ -168411,10 +168827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106151] = 2, - ACTIONS(6314), 2, + ACTIONS(6290), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6312), 37, + ACTIONS(6288), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168453,10 +168869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106195] = 2, - ACTIONS(6238), 2, + ACTIONS(6294), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6236), 37, + ACTIONS(6292), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168495,10 +168911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106239] = 2, - ACTIONS(6242), 2, + ACTIONS(6298), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6240), 37, + ACTIONS(6296), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168537,10 +168953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106283] = 2, - ACTIONS(6246), 2, + ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6244), 37, + ACTIONS(6300), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168579,10 +168995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106327] = 2, - ACTIONS(6250), 2, + ACTIONS(6306), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6248), 37, + ACTIONS(6304), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168621,10 +169037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106371] = 2, - ACTIONS(6254), 2, + ACTIONS(6386), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6252), 37, + ACTIONS(6384), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168663,10 +169079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106415] = 2, - ACTIONS(6258), 2, + ACTIONS(6310), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6256), 37, + ACTIONS(6308), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168705,10 +169121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106459] = 2, - ACTIONS(6318), 2, + ACTIONS(6314), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6316), 37, + ACTIONS(6312), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168747,10 +169163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106503] = 2, - ACTIONS(6262), 2, + ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6260), 37, + ACTIONS(6316), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168789,10 +169205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106547] = 2, - ACTIONS(6266), 2, + ACTIONS(6322), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6264), 37, + ACTIONS(6320), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168831,10 +169247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106591] = 2, - ACTIONS(6270), 2, + ACTIONS(6326), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6268), 37, + ACTIONS(6324), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168873,10 +169289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106635] = 2, - ACTIONS(6322), 2, + ACTIONS(6330), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6320), 37, + ACTIONS(6328), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168915,10 +169331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106679] = 2, - ACTIONS(6274), 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6272), 37, + ACTIONS(6132), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168957,10 +169373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106723] = 2, - ACTIONS(6066), 2, + ACTIONS(6334), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6064), 37, + ACTIONS(6332), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -168971,6 +169387,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, @@ -168978,7 +169395,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, @@ -168999,11 +169415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106767] = 2, - ACTIONS(6082), 2, + ACTIONS(6338), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6080), 37, - sym__line_ending, + ACTIONS(6336), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -169013,6 +169429,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, @@ -169030,7 +169447,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -169041,11 +169457,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106811] = 2, - ACTIONS(6278), 2, + ACTIONS(6342), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6276), 37, - sym__line_ending, + ACTIONS(6340), 37, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -169055,6 +169471,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, @@ -169072,7 +169489,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -169083,10 +169499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106855] = 2, - ACTIONS(6070), 2, + ACTIONS(6390), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6068), 37, + ACTIONS(6388), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169097,6 +169513,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, @@ -169104,7 +169521,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, @@ -169125,10 +169541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106899] = 2, - ACTIONS(6074), 2, + ACTIONS(6346), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6072), 37, + ACTIONS(6344), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169139,6 +169555,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, @@ -169146,7 +169563,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, @@ -169167,10 +169583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106943] = 2, - ACTIONS(6078), 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6076), 37, + ACTIONS(6136), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169209,11 +169625,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [106987] = 2, - ACTIONS(6082), 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6080), 37, - sym__soft_line_ending, + ACTIONS(6148), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -169230,7 +169646,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, @@ -169241,6 +169656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -169251,11 +169667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107031] = 2, - ACTIONS(6278), 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6276), 37, - sym__soft_line_ending, + ACTIONS(6152), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -169265,7 +169681,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, @@ -169283,6 +169698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -169293,10 +169709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107075] = 2, - ACTIONS(6332), 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6330), 37, + ACTIONS(6140), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169307,7 +169723,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, @@ -169315,6 +169730,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, @@ -169335,10 +169751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107119] = 2, - ACTIONS(6086), 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6084), 37, + ACTIONS(6144), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169377,10 +169793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107163] = 2, - ACTIONS(5994), 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 37, + ACTIONS(6148), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169419,10 +169835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107207] = 2, - ACTIONS(6090), 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6088), 37, + ACTIONS(6152), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169461,11 +169877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107251] = 2, - ACTIONS(6094), 2, + ACTIONS(6350), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6092), 37, - sym__soft_line_ending, + ACTIONS(6348), 37, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -169482,7 +169898,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, @@ -169493,6 +169908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -169503,10 +169919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107295] = 2, - ACTIONS(6098), 2, + ACTIONS(6350), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6096), 37, + ACTIONS(6348), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169517,6 +169933,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, @@ -169524,7 +169941,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, @@ -169545,10 +169961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107339] = 2, - ACTIONS(6102), 2, + ACTIONS(6354), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6100), 37, + ACTIONS(6352), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169559,6 +169975,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, @@ -169566,7 +169983,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, @@ -169587,10 +170003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107383] = 2, - ACTIONS(6106), 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6104), 37, + ACTIONS(6156), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169629,10 +170045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107427] = 2, - ACTIONS(6110), 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6108), 37, + ACTIONS(6068), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169671,10 +170087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107471] = 2, - ACTIONS(6114), 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6112), 37, + ACTIONS(6160), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169713,10 +170129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107515] = 2, - ACTIONS(6118), 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6116), 37, + ACTIONS(6164), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169755,10 +170171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107559] = 2, - ACTIONS(6122), 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6120), 37, + ACTIONS(6168), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169797,10 +170213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107603] = 2, - ACTIONS(6126), 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6124), 37, + ACTIONS(6172), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169839,10 +170255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107647] = 2, - ACTIONS(6130), 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6128), 37, + ACTIONS(6176), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169881,10 +170297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107691] = 2, - ACTIONS(6134), 2, + ACTIONS(6182), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6132), 37, + ACTIONS(6180), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169923,10 +170339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107735] = 2, - ACTIONS(6022), 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 37, + ACTIONS(6184), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -169965,10 +170381,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107779] = 2, - ACTIONS(6138), 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6136), 37, + ACTIONS(6188), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170007,10 +170423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107823] = 2, - ACTIONS(6030), 2, + ACTIONS(6194), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 37, + ACTIONS(6192), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170049,10 +170465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107867] = 2, - ACTIONS(6142), 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6140), 37, + ACTIONS(6196), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170091,10 +170507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107911] = 2, - ACTIONS(6146), 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6144), 37, + ACTIONS(6200), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170133,10 +170549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107955] = 2, - ACTIONS(6282), 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6280), 37, + ACTIONS(6204), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170147,7 +170563,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, @@ -170155,6 +170570,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, @@ -170175,10 +170591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [107999] = 2, - ACTIONS(6286), 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6284), 37, + ACTIONS(6044), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170189,7 +170605,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, @@ -170197,6 +170612,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, @@ -170217,10 +170633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108043] = 2, - ACTIONS(6342), 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6340), 37, + ACTIONS(6208), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170238,8 +170654,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, @@ -170259,10 +170675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108087] = 2, - ACTIONS(6290), 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6288), 37, + ACTIONS(6088), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170273,7 +170689,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, @@ -170281,6 +170696,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, @@ -170301,10 +170717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108131] = 2, - ACTIONS(6294), 2, + ACTIONS(6214), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6292), 37, + ACTIONS(6212), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170315,7 +170731,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, @@ -170323,6 +170738,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, @@ -170343,10 +170759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108175] = 2, - ACTIONS(6150), 2, + ACTIONS(6218), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6148), 37, + ACTIONS(6216), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170385,10 +170801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108219] = 2, - ACTIONS(6154), 2, + ACTIONS(6400), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6152), 37, + ACTIONS(6398), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170399,6 +170815,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, @@ -170406,7 +170823,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, @@ -170427,10 +170843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108263] = 2, - ACTIONS(6158), 2, + ACTIONS(6358), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6156), 37, + ACTIONS(6356), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170441,6 +170857,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, @@ -170448,7 +170865,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, @@ -170469,10 +170885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108307] = 2, - ACTIONS(6162), 2, + ACTIONS(6412), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6160), 37, + ACTIONS(6410), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170490,8 +170906,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, @@ -170511,10 +170927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108351] = 2, - ACTIONS(6166), 2, + ACTIONS(6362), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6164), 37, + ACTIONS(6360), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170525,6 +170941,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, @@ -170532,7 +170949,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, @@ -170553,10 +170969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108395] = 2, - ACTIONS(6170), 2, + ACTIONS(6366), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6168), 37, + ACTIONS(6364), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170567,6 +170983,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, @@ -170574,7 +170991,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, @@ -170595,10 +171011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108439] = 2, - ACTIONS(6174), 2, + ACTIONS(6222), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6172), 37, + ACTIONS(6220), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170637,10 +171053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108483] = 2, - ACTIONS(6318), 2, + ACTIONS(6226), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6316), 37, + ACTIONS(6224), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170679,10 +171095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108527] = 2, - ACTIONS(6178), 2, + ACTIONS(6230), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6176), 37, + ACTIONS(6228), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170721,10 +171137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108571] = 2, - ACTIONS(6182), 2, + ACTIONS(6234), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6180), 37, + ACTIONS(6232), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170763,10 +171179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108615] = 2, - ACTIONS(6186), 2, + ACTIONS(6238), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6184), 37, + ACTIONS(6236), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170805,10 +171221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108659] = 2, - ACTIONS(6190), 2, + ACTIONS(6242), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6188), 37, + ACTIONS(6240), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170847,10 +171263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108703] = 2, - ACTIONS(6194), 2, + ACTIONS(6246), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6192), 37, + ACTIONS(6244), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170889,10 +171305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108747] = 2, - ACTIONS(6198), 2, + ACTIONS(6250), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6196), 37, + ACTIONS(6248), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170931,10 +171347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108791] = 2, - ACTIONS(6202), 2, + ACTIONS(6254), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6200), 37, + ACTIONS(6252), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -170973,10 +171389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108835] = 2, - ACTIONS(6206), 2, + ACTIONS(6310), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6204), 37, + ACTIONS(6308), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171015,10 +171431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108879] = 2, - ACTIONS(6210), 2, + ACTIONS(6258), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6208), 37, + ACTIONS(6256), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171057,10 +171473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108923] = 2, - ACTIONS(6214), 2, + ACTIONS(6262), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6212), 37, + ACTIONS(6260), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171099,10 +171515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [108967] = 2, - ACTIONS(6298), 2, + ACTIONS(6266), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6296), 37, + ACTIONS(6264), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171113,7 +171529,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, @@ -171121,6 +171536,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, @@ -171141,10 +171557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109011] = 2, - ACTIONS(6302), 2, + ACTIONS(6270), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6300), 37, + ACTIONS(6268), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171155,7 +171571,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, @@ -171163,6 +171578,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, @@ -171183,10 +171599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109055] = 2, - ACTIONS(6306), 2, + ACTIONS(6274), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6304), 37, + ACTIONS(6272), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171197,7 +171613,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, @@ -171205,6 +171620,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, @@ -171225,10 +171641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109099] = 2, - ACTIONS(6310), 2, + ACTIONS(6278), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6308), 37, + ACTIONS(6276), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171239,7 +171655,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, @@ -171247,6 +171662,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, @@ -171267,10 +171683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109143] = 2, - ACTIONS(6218), 2, + ACTIONS(6282), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6216), 37, + ACTIONS(6280), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171309,10 +171725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109187] = 2, - ACTIONS(6222), 2, + ACTIONS(6286), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6220), 37, + ACTIONS(6284), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171351,10 +171767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109231] = 2, - ACTIONS(6226), 2, + ACTIONS(6370), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6224), 37, + ACTIONS(6368), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171365,6 +171781,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, @@ -171372,7 +171789,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, @@ -171393,10 +171809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109275] = 2, - ACTIONS(6230), 2, + ACTIONS(6374), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6228), 37, + ACTIONS(6372), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171407,6 +171823,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, @@ -171414,7 +171831,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, @@ -171435,10 +171851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109319] = 2, - ACTIONS(6234), 2, + ACTIONS(6378), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6232), 37, + ACTIONS(6376), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171449,6 +171865,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, @@ -171456,7 +171873,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, @@ -171477,10 +171893,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109363] = 2, - ACTIONS(6314), 2, + ACTIONS(6382), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6312), 37, + ACTIONS(6380), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171491,6 +171907,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, @@ -171498,7 +171915,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, @@ -171519,10 +171935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109407] = 2, - ACTIONS(6238), 2, + ACTIONS(6290), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6236), 37, + ACTIONS(6288), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171561,10 +171977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109451] = 2, - ACTIONS(6242), 2, + ACTIONS(6294), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6240), 37, + ACTIONS(6292), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171603,10 +172019,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109495] = 2, - ACTIONS(6246), 2, + ACTIONS(6298), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6244), 37, + ACTIONS(6296), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171645,10 +172061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109539] = 2, - ACTIONS(6250), 2, + ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6248), 37, + ACTIONS(6300), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171687,10 +172103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109583] = 2, - ACTIONS(6254), 2, + ACTIONS(6306), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6252), 37, + ACTIONS(6304), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171729,10 +172145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109627] = 2, - ACTIONS(6258), 2, + ACTIONS(6386), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6256), 37, + ACTIONS(6384), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171771,10 +172187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109671] = 2, - ACTIONS(6254), 2, + ACTIONS(6326), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6252), 37, + ACTIONS(6324), 37, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -171813,10 +172229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109715] = 2, - ACTIONS(6286), 2, + ACTIONS(6278), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6284), 36, + ACTIONS(6276), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -171854,10 +172270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109758] = 2, - ACTIONS(6142), 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6140), 36, + ACTIONS(6156), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -171895,10 +172311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109801] = 2, - ACTIONS(6146), 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6144), 36, + ACTIONS(6068), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -171936,10 +172352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [109844] = 2, - ACTIONS(6150), 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6148), 36, + ACTIONS(6160), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -171976,11 +172392,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [109887] = 2, - ACTIONS(6154), 2, + [109887] = 3, + ACTIONS(6454), 1, + sym__whitespace, + ACTIONS(2785), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6152), 36, + ACTIONS(2783), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172007,21 +172425,20 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_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, - [109930] = 2, - ACTIONS(6158), 2, + [109932] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6156), 36, + ACTIONS(6164), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172058,12 +172475,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [109973] = 2, - ACTIONS(6334), 2, + [109975] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2946), 36, - sym__line_ending, + ACTIONS(6168), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172090,6 +172506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -172099,11 +172516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110016] = 2, - ACTIONS(6162), 2, + [110018] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6160), 36, + ACTIONS(6172), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172140,11 +172557,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110059] = 2, - ACTIONS(6166), 2, + [110061] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6164), 36, + ACTIONS(6176), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172181,11 +172598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110102] = 2, - ACTIONS(6170), 2, + [110104] = 2, + ACTIONS(6182), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6168), 36, + ACTIONS(6180), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172222,11 +172639,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110145] = 2, - ACTIONS(6174), 2, + [110147] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6172), 36, + ACTIONS(6184), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172263,12 +172680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110188] = 2, - ACTIONS(6346), 2, + [110190] = 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2917), 36, - sym__line_ending, + ACTIONS(6188), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172295,6 +172711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -172304,11 +172721,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110231] = 2, - ACTIONS(6178), 2, + [110233] = 2, + ACTIONS(6194), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6176), 36, + ACTIONS(6192), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172345,11 +172762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110274] = 2, - ACTIONS(6182), 2, + [110276] = 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6180), 36, + ACTIONS(6196), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172386,11 +172803,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110317] = 2, - ACTIONS(6186), 2, + [110319] = 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6184), 36, + ACTIONS(6200), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172427,11 +172844,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110360] = 2, - ACTIONS(6190), 2, + [110362] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6188), 36, + ACTIONS(6204), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172468,11 +172885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110403] = 2, - ACTIONS(6194), 2, + [110405] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6192), 36, + ACTIONS(6044), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172509,11 +172926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110446] = 2, - ACTIONS(6198), 2, + [110448] = 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6196), 36, + ACTIONS(6208), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172550,11 +172967,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110489] = 2, - ACTIONS(6202), 2, + [110491] = 2, + ACTIONS(6394), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6200), 36, + ACTIONS(2965), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172591,11 +173008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110532] = 2, - ACTIONS(6206), 2, + [110534] = 2, + ACTIONS(6444), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6204), 36, + ACTIONS(6442), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172622,7 +173040,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -172632,11 +173049,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110575] = 2, - ACTIONS(6210), 2, + [110577] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6208), 36, + ACTIONS(6088), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172673,11 +173090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110618] = 2, - ACTIONS(6214), 2, + [110620] = 2, + ACTIONS(6416), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6212), 36, + ACTIONS(3004), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172704,7 +173122,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -172714,11 +173131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110661] = 2, - ACTIONS(6218), 2, + [110663] = 2, + ACTIONS(6214), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6216), 36, + ACTIONS(6212), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172755,11 +173172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110704] = 2, - ACTIONS(6222), 2, + [110706] = 2, + ACTIONS(6218), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6220), 36, + ACTIONS(6216), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172796,11 +173213,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110747] = 2, - ACTIONS(6226), 2, + [110749] = 2, + ACTIONS(6222), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6224), 36, + ACTIONS(6220), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172837,11 +173254,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110790] = 2, - ACTIONS(6230), 2, + [110792] = 2, + ACTIONS(6226), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6228), 36, + ACTIONS(6224), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172878,11 +173295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110833] = 2, - ACTIONS(6234), 2, + [110835] = 2, + ACTIONS(6230), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6232), 36, + ACTIONS(6228), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172919,11 +173336,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110876] = 2, - ACTIONS(6238), 2, + [110878] = 2, + ACTIONS(6234), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6236), 36, + ACTIONS(6232), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -172960,11 +173377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110919] = 2, - ACTIONS(6242), 2, + [110921] = 2, + ACTIONS(6238), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6240), 36, + ACTIONS(6236), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173001,11 +173418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [110962] = 2, - ACTIONS(6246), 2, + [110964] = 2, + ACTIONS(6242), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6244), 36, + ACTIONS(6240), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173042,11 +173459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [111005] = 2, - ACTIONS(6250), 2, + [111007] = 2, + ACTIONS(6246), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6248), 36, + ACTIONS(6244), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173083,11 +173500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [111048] = 2, - ACTIONS(6254), 2, + [111050] = 2, + ACTIONS(6250), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6252), 36, + ACTIONS(6248), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173124,11 +173541,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [111091] = 2, - ACTIONS(6258), 2, + [111093] = 2, + ACTIONS(6254), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6256), 36, + ACTIONS(6252), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173165,11 +173582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [111134] = 2, - ACTIONS(6262), 2, + [111136] = 2, + ACTIONS(6258), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6260), 36, + ACTIONS(6256), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173206,11 +173623,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [111177] = 2, - ACTIONS(6266), 2, + [111179] = 2, + ACTIONS(6262), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6264), 36, + ACTIONS(6260), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173247,11 +173664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [111220] = 2, - ACTIONS(6270), 2, + [111222] = 2, + ACTIONS(6266), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6268), 36, + ACTIONS(6264), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173288,11 +173705,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [111263] = 2, - ACTIONS(6274), 2, + [111265] = 2, + ACTIONS(6270), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6272), 36, + ACTIONS(6268), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173329,11 +173746,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [111306] = 2, - ACTIONS(6278), 2, + [111308] = 2, + ACTIONS(6274), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6276), 36, + ACTIONS(6272), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173370,11 +173787,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [111349] = 2, - ACTIONS(6332), 2, + [111351] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6330), 36, + ACTIONS(6152), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173411,11 +173828,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [111392] = 2, - ACTIONS(6282), 2, + [111394] = 2, + ACTIONS(6440), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6280), 36, + ACTIONS(2975), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173442,7 +173860,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -173452,13 +173869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [111435] = 3, - ACTIONS(6386), 1, - sym__whitespace, - ACTIONS(2539), 2, + [111437] = 2, + ACTIONS(6286), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2537), 35, + ACTIONS(6284), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173485,20 +173900,21 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_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, [111480] = 2, - ACTIONS(6030), 2, + ACTIONS(6290), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6028), 36, + ACTIONS(6288), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173577,10 +173993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [111566] = 2, - ACTIONS(6324), 2, + ACTIONS(6298), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2901), 36, + ACTIONS(6296), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173618,10 +174034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [111609] = 2, - ACTIONS(6298), 2, + ACTIONS(6302), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6296), 36, + ACTIONS(6300), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173659,10 +174075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [111652] = 2, - ACTIONS(6302), 2, + ACTIONS(6306), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6300), 36, + ACTIONS(6304), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173700,10 +174116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [111695] = 2, - ACTIONS(6306), 2, + ACTIONS(6310), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6304), 36, + ACTIONS(6308), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173741,10 +174157,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [111738] = 2, - ACTIONS(6310), 2, + ACTIONS(6314), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6308), 36, + ACTIONS(6312), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173782,10 +174198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [111781] = 2, - ACTIONS(6314), 2, + ACTIONS(6318), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6312), 36, + ACTIONS(6316), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173823,10 +174239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [111824] = 2, - ACTIONS(6318), 2, + ACTIONS(6322), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6316), 36, + ACTIONS(6320), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173864,10 +174280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [111867] = 2, - ACTIONS(6322), 2, + ACTIONS(6326), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6320), 36, + ACTIONS(6324), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173905,10 +174321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [111910] = 2, - ACTIONS(6066), 2, + ACTIONS(6330), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6064), 36, + ACTIONS(6328), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173946,11 +174362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [111953] = 2, - ACTIONS(6350), 2, + ACTIONS(6334), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6348), 36, - sym__line_ending, + ACTIONS(6332), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -173977,6 +174392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -173987,10 +174403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [111996] = 2, - ACTIONS(6070), 2, + ACTIONS(6338), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6068), 36, + ACTIONS(6336), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174028,10 +174444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [112039] = 2, - ACTIONS(6074), 2, + ACTIONS(6342), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6072), 36, + ACTIONS(6340), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174069,10 +174485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [112082] = 2, - ACTIONS(6078), 2, + ACTIONS(6346), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6076), 36, + ACTIONS(6344), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174110,10 +174526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [112125] = 2, - ACTIONS(6082), 2, + ACTIONS(6350), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6080), 36, + ACTIONS(6348), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174151,10 +174567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [112168] = 2, - ACTIONS(6086), 2, + ACTIONS(6354), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6084), 36, + ACTIONS(6352), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174192,10 +174608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [112211] = 2, - ACTIONS(5994), 2, + ACTIONS(6400), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5992), 36, + ACTIONS(6398), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174232,15 +174648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [112254] = 4, - ACTIONS(6388), 1, - sym__whitespace, - ACTIONS(6390), 1, - sym_block_continuation, - ACTIONS(2323), 2, + [112254] = 2, + ACTIONS(6358), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2321), 34, + ACTIONS(6356), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174267,6 +174679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -174275,12 +174688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [112301] = 2, - ACTIONS(2539), 3, - aux_sym_pandoc_span_token1, + sym__whitespace, + [112297] = 2, + ACTIONS(6362), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2537), 35, + ACTIONS(6360), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174307,21 +174720,21 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + 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, - [112344] = 2, - ACTIONS(2543), 3, - aux_sym_pandoc_span_token1, + sym__whitespace, + [112340] = 2, + ACTIONS(6366), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2541), 35, + ACTIONS(6364), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174348,20 +174761,22 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + 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, - [112387] = 2, - ACTIONS(6090), 2, + sym__whitespace, + [112383] = 2, + ACTIONS(6404), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6088), 36, + ACTIONS(6402), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174388,7 +174803,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -174398,11 +174812,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [112430] = 2, - ACTIONS(6094), 2, + [112426] = 2, + ACTIONS(6370), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6092), 36, + ACTIONS(6368), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174439,11 +174853,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [112473] = 2, - ACTIONS(6098), 2, + [112469] = 2, + ACTIONS(6374), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6096), 36, + ACTIONS(6372), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174480,11 +174894,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [112516] = 2, - ACTIONS(6102), 2, + [112512] = 2, + ACTIONS(6378), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6100), 36, + ACTIONS(6376), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174521,11 +174935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [112559] = 2, - ACTIONS(6106), 2, + [112555] = 2, + ACTIONS(6382), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6104), 36, + ACTIONS(6380), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174562,11 +174976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [112602] = 2, - ACTIONS(6110), 2, + [112598] = 2, + ACTIONS(6386), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6108), 36, + ACTIONS(6384), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174603,11 +175017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [112645] = 2, - ACTIONS(6114), 2, + [112641] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6112), 36, + ACTIONS(6132), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174644,11 +175058,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [112688] = 2, - ACTIONS(6118), 2, + [112684] = 2, + ACTIONS(6390), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6116), 36, + ACTIONS(6388), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174685,11 +175099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [112731] = 2, - ACTIONS(6122), 2, + [112727] = 4, + ACTIONS(6456), 1, + sym__whitespace, + ACTIONS(6458), 1, + sym_block_continuation, + ACTIONS(2405), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6120), 36, + ACTIONS(2403), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174716,7 +175134,6 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -174725,12 +175142,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, [112774] = 2, - ACTIONS(6126), 2, + ACTIONS(2785), 3, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6124), 36, + ACTIONS(2783), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174757,21 +175174,21 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - 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, [112817] = 2, - ACTIONS(6130), 2, + ACTIONS(2789), 3, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6128), 36, + ACTIONS(2787), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174798,21 +175215,20 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, - 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, [112860] = 2, - ACTIONS(6134), 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6132), 36, + ACTIONS(6136), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174850,10 +175266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [112903] = 2, - ACTIONS(6022), 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6020), 36, + ACTIONS(6140), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174891,10 +175307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [112946] = 2, - ACTIONS(6138), 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6136), 36, + ACTIONS(6144), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174932,11 +175348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [112989] = 2, - ACTIONS(6354), 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6352), 36, - sym__line_ending, + ACTIONS(6148), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -174963,6 +175378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_note_reference, sym_html_element, sym__pandoc_lt_str, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -174973,10 +175389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [113032] = 2, - ACTIONS(6290), 2, + ACTIONS(6282), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(6288), 36, + ACTIONS(6280), 36, sym__code_span_start, sym__html_comment, sym__autolink, @@ -175014,10 +175430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym__whitespace, [113075] = 2, - ACTIONS(2539), 2, + ACTIONS(2785), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2537), 35, + ACTIONS(2783), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -175054,12 +175470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [113117] = 3, - ACTIONS(6392), 1, + ACTIONS(6460), 1, sym__whitespace, - ACTIONS(2539), 2, + ACTIONS(2785), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2537), 34, + ACTIONS(2783), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -175095,10 +175511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [113161] = 2, - ACTIONS(2543), 2, + ACTIONS(2789), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2541), 35, + ACTIONS(2787), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -175135,36 +175551,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [113203] = 15, - ACTIONS(29), 1, + ACTIONS(6462), 1, + ts_builtin_sym_end, + ACTIONS(6464), 1, sym_atx_h1_marker, - ACTIONS(31), 1, + ACTIONS(6467), 1, sym_atx_h2_marker, - ACTIONS(33), 1, + ACTIONS(6470), 1, sym_atx_h3_marker, - ACTIONS(35), 1, + ACTIONS(6473), 1, sym_atx_h4_marker, - ACTIONS(37), 1, + ACTIONS(6476), 1, sym_atx_h5_marker, - ACTIONS(39), 1, + ACTIONS(6479), 1, sym_atx_h6_marker, - ACTIONS(6394), 1, - ts_builtin_sym_end, - STATE(81), 1, + STATE(83), 1, sym__atx_heading1, - STATE(91), 1, + STATE(90), 1, sym__atx_heading2, STATE(101), 1, sym__atx_heading3, - STATE(110), 1, + STATE(109), 1, sym__atx_heading4, STATE(118), 1, sym__atx_heading5, - STATE(128), 1, + STATE(127), 1, sym__atx_heading6, - STATE(2502), 2, + STATE(2503), 2, sym_section, aux_sym_document_repeat2, - STATE(2787), 6, + STATE(2767), 6, sym__section1, sym__section2, sym__section3, @@ -175184,24 +175600,24 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(39), 1, sym_atx_h6_marker, - ACTIONS(6396), 1, + ACTIONS(522), 1, ts_builtin_sym_end, - STATE(81), 1, + STATE(83), 1, sym__atx_heading1, - STATE(91), 1, + STATE(90), 1, sym__atx_heading2, STATE(101), 1, sym__atx_heading3, - STATE(110), 1, + STATE(109), 1, sym__atx_heading4, STATE(118), 1, sym__atx_heading5, - STATE(128), 1, + STATE(127), 1, sym__atx_heading6, - STATE(2502), 2, + STATE(2503), 2, sym_section, aux_sym_document_repeat2, - STATE(2787), 6, + STATE(2767), 6, sym__section1, sym__section2, sym__section3, @@ -175209,36 +175625,36 @@ static const uint16_t ts_small_parse_table[] = { sym__section5, sym__section6, [113307] = 15, - ACTIONS(6398), 1, - ts_builtin_sym_end, - ACTIONS(6400), 1, + ACTIONS(29), 1, sym_atx_h1_marker, - ACTIONS(6403), 1, + ACTIONS(31), 1, sym_atx_h2_marker, - ACTIONS(6406), 1, + ACTIONS(33), 1, sym_atx_h3_marker, - ACTIONS(6409), 1, + ACTIONS(35), 1, sym_atx_h4_marker, - ACTIONS(6412), 1, + ACTIONS(37), 1, sym_atx_h5_marker, - ACTIONS(6415), 1, + ACTIONS(39), 1, sym_atx_h6_marker, - STATE(81), 1, + ACTIONS(6482), 1, + ts_builtin_sym_end, + STATE(83), 1, sym__atx_heading1, - STATE(91), 1, + STATE(90), 1, sym__atx_heading2, STATE(101), 1, sym__atx_heading3, - STATE(110), 1, + STATE(109), 1, sym__atx_heading4, STATE(118), 1, sym__atx_heading5, - STATE(128), 1, + STATE(127), 1, sym__atx_heading6, - STATE(2502), 2, + STATE(2503), 2, sym_section, aux_sym_document_repeat2, - STATE(2787), 6, + STATE(2767), 6, sym__section1, sym__section2, sym__section3, @@ -175258,24 +175674,24 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(39), 1, sym_atx_h6_marker, - ACTIONS(564), 1, + ACTIONS(6484), 1, ts_builtin_sym_end, - STATE(81), 1, + STATE(83), 1, sym__atx_heading1, - STATE(91), 1, + STATE(90), 1, sym__atx_heading2, STATE(101), 1, sym__atx_heading3, - STATE(110), 1, + STATE(109), 1, sym__atx_heading4, STATE(118), 1, sym__atx_heading5, - STATE(128), 1, + STATE(127), 1, sym__atx_heading6, - STATE(2502), 2, + STATE(2503), 2, sym_section, aux_sym_document_repeat2, - STATE(2787), 6, + STATE(2767), 6, sym__section1, sym__section2, sym__section3, @@ -175295,24 +175711,24 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(39), 1, sym_atx_h6_marker, - ACTIONS(6418), 1, + ACTIONS(6486), 1, ts_builtin_sym_end, - STATE(81), 1, + STATE(83), 1, sym__atx_heading1, - STATE(91), 1, + STATE(90), 1, sym__atx_heading2, STATE(101), 1, sym__atx_heading3, - STATE(110), 1, + STATE(109), 1, sym__atx_heading4, STATE(118), 1, sym__atx_heading5, - STATE(128), 1, + STATE(127), 1, sym__atx_heading6, - STATE(2502), 2, + STATE(2503), 2, sym_section, aux_sym_document_repeat2, - STATE(2787), 6, + STATE(2767), 6, sym__section1, sym__section2, sym__section3, @@ -175320,4426 +175736,4443 @@ static const uint16_t ts_small_parse_table[] = { sym__section5, sym__section6, [113463] = 15, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6422), 1, + ACTIONS(6490), 1, anon_sym_RBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6432), 1, + ACTIONS(6500), 1, sym_raw_specifier, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - STATE(2622), 1, + STATE(2606), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4367), 2, + STATE(4077), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4382), 2, + STATE(4079), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, [113512] = 15, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6438), 1, + ACTIONS(6506), 1, anon_sym_RBRACE, - ACTIONS(6440), 1, + ACTIONS(6508), 1, sym_raw_specifier, STATE(2629), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4380), 2, + STATE(4130), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4381), 2, + STATE(4131), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, [113561] = 15, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6442), 1, + ACTIONS(6510), 1, anon_sym_RBRACE, - ACTIONS(6444), 1, + ACTIONS(6512), 1, sym_raw_specifier, STATE(2628), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(3672), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, STATE(4135), 2, sym_language_specifier, sym_commonmark_specifier, + STATE(4489), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, [113610] = 15, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6446), 1, + ACTIONS(6514), 1, anon_sym_RBRACE, - ACTIONS(6448), 1, + ACTIONS(6516), 1, sym_raw_specifier, - STATE(2609), 1, + STATE(2611), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(3851), 2, + STATE(4159), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3853), 2, + STATE(4173), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, [113659] = 15, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_RBRACE, - ACTIONS(6452), 1, + ACTIONS(6520), 1, sym_raw_specifier, - STATE(2600), 1, + STATE(2603), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(3746), 2, + STATE(4317), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3747), 2, + STATE(4319), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, [113708] = 15, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6454), 1, + ACTIONS(6522), 1, anon_sym_RBRACE, - ACTIONS(6456), 1, + ACTIONS(6524), 1, sym_raw_specifier, - STATE(2605), 1, + STATE(2610), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(3821), 2, + STATE(4504), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3822), 2, + STATE(4505), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [113757] = 13, - ACTIONS(6458), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, - sym_shortcode_name, - ACTIONS(6466), 1, - sym_shortcode_number, - ACTIONS(6468), 1, - sym__whitespace, - ACTIONS(6470), 1, - sym__soft_line_ending, - ACTIONS(6472), 1, - sym__language_specifier_token, - ACTIONS(6474), 1, - sym__shortcode_open, - STATE(3547), 1, - sym__shortcode_value, - ACTIONS(6464), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(2639), 2, - sym__soft_line_break, - sym__inline_whitespace, - STATE(3585), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3603), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [113802] = 15, - ACTIONS(6420), 1, + [113757] = 15, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6476), 1, + ACTIONS(6526), 1, anon_sym_RBRACE, - ACTIONS(6478), 1, + ACTIONS(6528), 1, sym_raw_specifier, - STATE(2614), 1, + STATE(2620), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(3940), 2, + STATE(3717), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4064), 2, + STATE(3718), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [113851] = 15, - ACTIONS(6420), 1, + [113806] = 15, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6480), 1, + ACTIONS(6530), 1, anon_sym_RBRACE, - ACTIONS(6482), 1, + ACTIONS(6532), 1, sym_raw_specifier, - STATE(2608), 1, + STATE(2613), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(3896), 2, + STATE(3682), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3897), 2, + STATE(3683), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [113900] = 15, - ACTIONS(6420), 1, + [113855] = 15, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6484), 1, + ACTIONS(6534), 1, anon_sym_RBRACE, - ACTIONS(6486), 1, + ACTIONS(6536), 1, sym_raw_specifier, - STATE(2611), 1, + STATE(2624), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(3933), 2, + STATE(3757), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3934), 2, + STATE(3758), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [113949] = 15, - ACTIONS(6420), 1, + [113904] = 15, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6488), 1, + ACTIONS(6538), 1, anon_sym_RBRACE, - ACTIONS(6490), 1, + ACTIONS(6540), 1, sym_raw_specifier, - STATE(2603), 1, + STATE(2601), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4027), 2, + STATE(3832), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4030), 2, + STATE(3833), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [113998] = 15, - ACTIONS(6420), 1, + [113953] = 15, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6492), 1, + ACTIONS(6542), 1, anon_sym_RBRACE, - ACTIONS(6494), 1, + ACTIONS(6544), 1, sym_raw_specifier, - STATE(2615), 1, + STATE(2632), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4115), 2, + STATE(4004), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4117), 2, + STATE(4012), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [114047] = 15, - ACTIONS(6420), 1, + [114002] = 15, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6496), 1, + ACTIONS(6546), 1, anon_sym_RBRACE, - ACTIONS(6498), 1, + ACTIONS(6548), 1, sym_raw_specifier, - STATE(2606), 1, + STATE(2605), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4327), 2, + STATE(3907), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4328), 2, + STATE(3908), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [114096] = 13, - ACTIONS(6458), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, - sym_shortcode_name, - ACTIONS(6466), 1, - sym_shortcode_number, - ACTIONS(6470), 1, - sym__soft_line_ending, - ACTIONS(6472), 1, - sym__language_specifier_token, - ACTIONS(6474), 1, - sym__shortcode_open, - ACTIONS(6500), 1, - sym__whitespace, - STATE(3553), 1, - sym__shortcode_value, - ACTIONS(6464), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(2644), 2, - sym__soft_line_break, - sym__inline_whitespace, - STATE(3585), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3603), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [114141] = 15, - ACTIONS(6420), 1, + [114051] = 15, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6502), 1, + ACTIONS(6550), 1, anon_sym_RBRACE, - ACTIONS(6504), 1, + ACTIONS(6552), 1, sym_raw_specifier, - STATE(2616), 1, + STATE(2609), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4485), 2, + STATE(3944), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4486), 2, + STATE(3945), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [114190] = 15, - ACTIONS(6420), 1, + [114100] = 15, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6506), 1, + ACTIONS(6554), 1, anon_sym_RBRACE, - ACTIONS(6508), 1, + ACTIONS(6556), 1, sym_raw_specifier, - STATE(2620), 1, + STATE(2616), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(3935), 2, + STATE(3964), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3948), 2, + STATE(3965), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [114239] = 15, - ACTIONS(6420), 1, + [114149] = 13, + ACTIONS(6558), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6560), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6562), 1, + sym_shortcode_name, + ACTIONS(6566), 1, + sym_shortcode_number, + ACTIONS(6568), 1, + sym__whitespace, + ACTIONS(6570), 1, + sym__soft_line_ending, + ACTIONS(6572), 1, + sym__language_specifier_token, + ACTIONS(6574), 1, + sym__shortcode_open, + STATE(3621), 1, + sym__shortcode_value, + ACTIONS(6564), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(2633), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3615), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3604), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114194] = 15, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6510), 1, + ACTIONS(6576), 1, anon_sym_RBRACE, - ACTIONS(6512), 1, + ACTIONS(6578), 1, sym_raw_specifier, - STATE(2624), 1, + STATE(2623), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4168), 2, + STATE(3917), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4169), 2, + STATE(3925), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [114288] = 15, - ACTIONS(6420), 1, + [114243] = 15, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6514), 1, + ACTIONS(6580), 1, anon_sym_RBRACE, - ACTIONS(6516), 1, + ACTIONS(6582), 1, sym_raw_specifier, STATE(2621), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4038), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(4039), 2, + STATE(4089), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, + STATE(4230), 2, + sym_language_specifier, + sym_commonmark_specifier, + [114292] = 13, + ACTIONS(6558), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6560), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6562), 1, + sym_shortcode_name, + ACTIONS(6566), 1, + sym_shortcode_number, + ACTIONS(6570), 1, + sym__soft_line_ending, + ACTIONS(6572), 1, + sym__language_specifier_token, + ACTIONS(6574), 1, + sym__shortcode_open, + ACTIONS(6584), 1, + sym__whitespace, + STATE(3541), 1, + sym__shortcode_value, + ACTIONS(6564), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(2641), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3615), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3604), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, [114337] = 15, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6428), 1, + ACTIONS(6496), 1, sym__whitespace, - ACTIONS(6430), 1, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6586), 1, anon_sym_RBRACE, - ACTIONS(6520), 1, + ACTIONS(6588), 1, sym_raw_specifier, - STATE(2625), 1, + STATE(2631), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2682), 2, + STATE(2662), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(3949), 2, + STATE(4293), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3951), 2, + STATE(4304), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, [114386] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6524), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6592), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [114430] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6526), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6594), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [114474] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6530), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6598), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [114518] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6532), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6600), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [114562] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6534), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6602), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [114606] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6536), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6604), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [114650] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6538), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6606), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [114694] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6540), 1, + ACTIONS(6608), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [114738] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6542), 1, + ACTIONS(6610), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [114782] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6544), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6612), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [114826] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6546), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6614), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [114870] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6548), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6616), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [114914] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6550), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6618), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [114958] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6552), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6620), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115002] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6554), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6622), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115046] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6556), 1, + ACTIONS(6624), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115090] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6558), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6626), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115134] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6560), 1, + ACTIONS(6628), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115178] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6562), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6630), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115222] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6564), 1, + ACTIONS(6632), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115266] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6566), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6634), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115310] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6568), 1, + ACTIONS(6636), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115354] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6570), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6638), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115398] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6572), 1, + ACTIONS(6640), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115442] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6574), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6642), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115486] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6576), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6644), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115530] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6578), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6646), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115574] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6580), 1, + ACTIONS(6648), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115618] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6582), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6650), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115662] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6584), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6652), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115706] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6586), 1, + ACTIONS(6654), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115750] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6588), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6656), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115794] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6590), 1, + ACTIONS(6658), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115838] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6592), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6660), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115882] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6594), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6662), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115926] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6596), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6664), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [115970] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6598), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6666), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116014] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6600), 1, + ACTIONS(6668), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116058] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6602), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6670), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116102] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6604), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6672), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116146] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6606), 1, + ACTIONS(6674), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116190] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6608), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6676), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116234] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6610), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6678), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116278] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6612), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6680), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116322] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6614), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6682), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116366] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6616), 1, + ACTIONS(6684), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116410] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6618), 1, + ACTIONS(6686), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116454] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6620), 1, + ACTIONS(6688), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116498] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6622), 1, + ACTIONS(6690), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116542] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6624), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6692), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116586] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6626), 1, + ACTIONS(6694), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116630] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6628), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6696), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116674] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6630), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6698), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116718] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6632), 1, + ACTIONS(6700), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116762] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6634), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6702), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116806] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6636), 1, + ACTIONS(6704), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116850] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6638), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6706), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116894] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6640), 1, + ACTIONS(6708), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116938] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6642), 1, + ACTIONS(6710), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [116982] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6644), 1, + ACTIONS(6712), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [117026] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6646), 1, + ACTIONS(6714), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [117070] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6648), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6716), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [117114] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6650), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6718), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [117158] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6652), 1, + ACTIONS(6720), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [117202] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6654), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - STATE(3605), 1, + ACTIONS(6722), 1, + sym__shortcode_close, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [117246] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6656), 1, + ACTIONS(6724), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [117290] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6658), 1, + ACTIONS(6726), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [117334] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6660), 1, + ACTIONS(6728), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [117378] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6662), 1, + ACTIONS(6730), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [117422] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6664), 1, + ACTIONS(6732), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [117466] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6666), 1, + ACTIONS(6734), 1, sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [117510] = 13, - ACTIONS(6458), 1, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6668), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - STATE(3605), 1, + ACTIONS(6736), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, [117554] = 13, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6740), 1, anon_sym_RBRACE, - ACTIONS(6674), 1, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - STATE(2632), 1, + STATE(2647), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2692), 2, + STATE(2726), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(3743), 2, + STATE(4150), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3744), 2, + STATE(4155), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, [117597] = 13, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6678), 1, + ACTIONS(6746), 1, anon_sym_RBRACE, - STATE(2647), 1, + STATE(2636), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2692), 2, + STATE(2726), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(3846), 2, + STATE(3980), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3847), 2, + STATE(3992), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, [117640] = 13, - ACTIONS(6424), 1, + ACTIONS(6488), 1, + anon_sym_LBRACE, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6502), 1, + sym__language_specifier_token, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, - anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6748), 1, + anon_sym_RBRACE, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6680), 1, - anon_sym_RBRACE, - STATE(2645), 1, - sym__attr_ws, - STATE(2727), 1, + ACTIONS(6754), 1, + sym_raw_specifier, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, - sym__inline_whitespace, - STATE(2692), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - STATE(4021), 2, - sym_unnumbered_specifier, + STATE(3848), 2, + sym_language_specifier, sym_commonmark_specifier, - STATE(4022), 2, + STATE(3849), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, + STATE(4411), 2, + sym__soft_line_break, + sym__inline_whitespace, [117683] = 13, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6682), 1, + ACTIONS(6756), 1, anon_sym_RBRACE, - STATE(2640), 1, + STATE(2643), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2692), 2, + STATE(2726), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4282), 2, + STATE(4062), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4286), 2, + STATE(4067), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, [117726] = 13, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6684), 1, - anon_sym_RBRACE, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6690), 1, + ACTIONS(6758), 1, + anon_sym_RBRACE, + ACTIONS(6760), 1, sym_raw_specifier, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3762), 2, + STATE(4367), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3763), 2, + STATE(4368), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, [117769] = 13, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6692), 1, + ACTIONS(6762), 1, anon_sym_RBRACE, - STATE(2630), 1, + STATE(2640), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2692), 2, + STATE(2726), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4309), 2, + STATE(3904), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4326), 2, + STATE(3905), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, [117812] = 13, - ACTIONS(6424), 1, + ACTIONS(6488), 1, + anon_sym_LBRACE, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6502), 1, + sym__language_specifier_token, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, - anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6694), 1, + ACTIONS(6764), 1, anon_sym_RBRACE, - STATE(2634), 1, - sym__attr_ws, - STATE(2727), 1, + ACTIONS(6766), 1, + sym_raw_specifier, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, - sym__inline_whitespace, - STATE(2692), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - STATE(4322), 2, - sym_unnumbered_specifier, + STATE(3923), 2, + sym_language_specifier, sym_commonmark_specifier, - STATE(4325), 2, + STATE(3924), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, + STATE(4411), 2, + sym__soft_line_break, + sym__inline_whitespace, [117855] = 13, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6696), 1, + ACTIONS(6768), 1, anon_sym_RBRACE, - ACTIONS(6698), 1, + ACTIONS(6770), 1, sym_raw_specifier, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4055), 2, + STATE(4153), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4056), 2, + STATE(4164), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, [117898] = 13, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6700), 1, + ACTIONS(6772), 1, anon_sym_RBRACE, - STATE(2638), 1, + STATE(2645), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2692), 2, + STATE(2726), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(3818), 2, + STATE(3941), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3819), 2, + STATE(3942), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, [117941] = 13, - ACTIONS(6420), 1, - anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, - sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6738), 1, + anon_sym_DASH, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6702), 1, + ACTIONS(6774), 1, anon_sym_RBRACE, - ACTIONS(6704), 1, - sym_raw_specifier, - STATE(2727), 1, + STATE(2642), 1, + sym__attr_ws, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3837), 2, - sym_language_specifier, + STATE(4411), 1, + sym__inline_whitespace, + STATE(2726), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + STATE(3861), 2, + sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3838), 2, + STATE(4054), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, - sym__soft_line_break, - sym__inline_whitespace, [117984] = 13, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6706), 1, + ACTIONS(6776), 1, anon_sym_RBRACE, - ACTIONS(6708), 1, + ACTIONS(6778), 1, sym_raw_specifier, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4355), 2, + STATE(3949), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4356), 2, + STATE(3950), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, [118027] = 13, - ACTIONS(6424), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, - sym__key_specifier_token, - ACTIONS(6670), 1, - anon_sym_DASH, - ACTIONS(6674), 1, - sym__whitespace, - ACTIONS(6676), 1, - sym__soft_line_ending, - ACTIONS(6710), 1, - anon_sym_RBRACE, - STATE(2649), 1, - sym__attr_ws, - STATE(2727), 1, - sym__commonmark_key_value_specifier, - STATE(4419), 1, - sym__inline_whitespace, - STATE(2692), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - STATE(3893), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3894), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - [118070] = 13, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6712), 1, + ACTIONS(6780), 1, anon_sym_RBRACE, - ACTIONS(6714), 1, + ACTIONS(6782), 1, sym_raw_specifier, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3912), 2, + STATE(4231), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3913), 2, + STATE(4243), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [118113] = 13, - ACTIONS(6420), 1, + [118070] = 13, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6716), 1, + ACTIONS(6784), 1, anon_sym_RBRACE, - ACTIONS(6718), 1, + ACTIONS(6786), 1, sym_raw_specifier, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3905), 2, + STATE(4410), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3906), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [118156] = 13, - ACTIONS(6424), 1, + STATE(4494), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [118113] = 13, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6720), 1, + ACTIONS(6788), 1, anon_sym_RBRACE, - STATE(2633), 1, + STATE(2634), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2692), 2, + STATE(2726), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(3930), 2, + STATE(3679), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3931), 2, + STATE(3680), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [118199] = 13, - ACTIONS(6420), 1, + [118156] = 13, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6722), 1, + ACTIONS(6790), 1, anon_sym_RBRACE, - ACTIONS(6724), 1, + ACTIONS(6792), 1, sym_raw_specifier, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3938), 2, + STATE(3698), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3939), 2, + STATE(3699), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [118242] = 13, - ACTIONS(6424), 1, + [118199] = 13, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6726), 1, + ACTIONS(6794), 1, anon_sym_RBRACE, - STATE(2637), 1, + STATE(2638), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2692), 2, + STATE(2726), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4482), 2, + STATE(3961), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4483), 2, + STATE(3962), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [118285] = 13, - ACTIONS(6424), 1, + [118242] = 13, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6728), 1, + ACTIONS(6796), 1, anon_sym_RBRACE, - STATE(2636), 1, + STATE(2644), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2692), 2, + STATE(2726), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4035), 2, + STATE(3714), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4036), 2, + STATE(3715), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [118328] = 13, - ACTIONS(6420), 1, + [118285] = 13, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6730), 1, + ACTIONS(6798), 1, anon_sym_RBRACE, - ACTIONS(6732), 1, + ACTIONS(6800), 1, sym_raw_specifier, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4270), 2, + STATE(4010), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4292), 2, + STATE(4011), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [118371] = 13, - ACTIONS(6420), 1, - anon_sym_LBRACE, - ACTIONS(6424), 1, + [118328] = 13, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, - sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6738), 1, + anon_sym_DASH, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6734), 1, + ACTIONS(6802), 1, anon_sym_RBRACE, - ACTIONS(6736), 1, - sym_raw_specifier, - STATE(2727), 1, + STATE(2646), 1, + sym__attr_ws, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4240), 2, - sym_language_specifier, + STATE(4411), 1, + sym__inline_whitespace, + STATE(2726), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + STATE(3855), 2, + sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4241), 2, + STATE(3857), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, - sym__soft_line_break, - sym__inline_whitespace, - [118414] = 13, - ACTIONS(6420), 1, - anon_sym_LBRACE, - ACTIONS(6424), 1, + [118371] = 13, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, - sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6738), 1, + anon_sym_DASH, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6738), 1, + ACTIONS(6804), 1, anon_sym_RBRACE, - ACTIONS(6740), 1, - sym_raw_specifier, - STATE(2727), 1, + STATE(2648), 1, + sym__attr_ws, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3704), 2, - sym_language_specifier, + STATE(4411), 1, + sym__inline_whitespace, + STATE(2726), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + STATE(4501), 2, + sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3705), 2, + STATE(4502), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, - sym__soft_line_break, - sym__inline_whitespace, - [118457] = 13, - ACTIONS(6424), 1, + [118414] = 13, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6742), 1, + ACTIONS(6806), 1, anon_sym_RBRACE, - STATE(2643), 1, + STATE(2637), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2692), 2, + STATE(2726), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4160), 2, + STATE(3984), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4162), 2, + STATE(4013), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [118500] = 13, - ACTIONS(6424), 1, + [118457] = 13, + ACTIONS(6488), 1, + anon_sym_LBRACE, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6502), 1, + sym__language_specifier_token, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, - anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6744), 1, + ACTIONS(6808), 1, anon_sym_RBRACE, - STATE(2642), 1, - sym__attr_ws, - STATE(2727), 1, + ACTIONS(6810), 1, + sym_raw_specifier, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, - sym__inline_whitespace, - STATE(2692), 2, + STATE(3769), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3770), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + STATE(4411), 2, sym__soft_line_break, - aux_sym__attr_ws_repeat1, - STATE(3984), 2, - sym_unnumbered_specifier, + sym__inline_whitespace, + [118500] = 13, + ACTIONS(6488), 1, + anon_sym_LBRACE, + ACTIONS(6492), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6494), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6502), 1, + sym__language_specifier_token, + ACTIONS(6504), 1, + sym__key_specifier_token, + ACTIONS(6750), 1, + sym__whitespace, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6812), 1, + anon_sym_RBRACE, + ACTIONS(6814), 1, + sym_raw_specifier, + STATE(2748), 1, + sym__commonmark_key_value_specifier, + STATE(4338), 2, + sym_language_specifier, sym_commonmark_specifier, - STATE(4009), 2, + STATE(4358), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, + STATE(4411), 2, + sym__soft_line_break, + sym__inline_whitespace, [118543] = 13, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6746), 1, + ACTIONS(6816), 1, anon_sym_RBRACE, - STATE(2641), 1, + STATE(2649), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2692), 2, + STATE(2726), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4031), 2, + STATE(3754), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4034), 2, + STATE(3755), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, [118586] = 13, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6748), 1, + ACTIONS(6818), 1, anon_sym_RBRACE, - ACTIONS(6750), 1, + ACTIONS(6820), 1, sym_raw_specifier, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4302), 2, + STATE(4000), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4329), 2, + STATE(4003), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, [118629] = 13, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, - sym__soft_line_ending, ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6822), 1, anon_sym_RBRACE, - ACTIONS(6754), 1, + ACTIONS(6824), 1, sym_raw_specifier, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4111), 2, + STATE(3773), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4116), 2, + STATE(3774), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, [118672] = 13, - ACTIONS(6420), 1, - anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, - sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6738), 1, + anon_sym_DASH, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6756), 1, + ACTIONS(6826), 1, anon_sym_RBRACE, - ACTIONS(6758), 1, - sym_raw_specifier, - STATE(2727), 1, + STATE(2651), 1, + sym__attr_ws, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3700), 2, - sym_language_specifier, + STATE(4411), 1, + sym__inline_whitespace, + STATE(2726), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + STATE(4306), 2, + sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3701), 2, + STATE(4310), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, - sym__soft_line_break, - sym__inline_whitespace, [118715] = 13, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6760), 1, + ACTIONS(6828), 1, anon_sym_RBRACE, - STATE(2646), 1, + STATE(2652), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2692), 2, + STATE(2726), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(3943), 2, + STATE(4256), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3947), 2, + STATE(4257), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, [118758] = 13, - ACTIONS(6420), 1, - anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, - sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6738), 1, + anon_sym_DASH, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6762), 1, + ACTIONS(6830), 1, anon_sym_RBRACE, - ACTIONS(6764), 1, - sym_raw_specifier, - STATE(2727), 1, + STATE(2635), 1, + sym__attr_ws, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4201), 2, - sym_language_specifier, + STATE(4411), 1, + sym__inline_whitespace, + STATE(2726), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + STATE(3829), 2, + sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4202), 2, + STATE(3830), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, - sym__soft_line_break, - sym__inline_whitespace, [118801] = 13, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6766), 1, + ACTIONS(6832), 1, anon_sym_RBRACE, - ACTIONS(6768), 1, + ACTIONS(6834), 1, sym_raw_specifier, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4051), 2, + STATE(3959), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4057), 2, + STATE(3983), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, [118844] = 13, - ACTIONS(6424), 1, + ACTIONS(6488), 1, + anon_sym_LBRACE, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6502), 1, + sym__language_specifier_token, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, - anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6770), 1, + ACTIONS(6836), 1, anon_sym_RBRACE, - STATE(2648), 1, - sym__attr_ws, - STATE(2727), 1, + ACTIONS(6838), 1, + sym_raw_specifier, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, - sym__inline_whitespace, - STATE(2692), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - STATE(4391), 2, - sym_unnumbered_specifier, + STATE(4165), 2, + sym_language_specifier, sym_commonmark_specifier, - STATE(4470), 2, + STATE(4166), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, + STATE(4411), 2, + sym__soft_line_break, + sym__inline_whitespace, [118887] = 13, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6674), 1, + ACTIONS(6742), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6772), 1, + ACTIONS(6840), 1, anon_sym_RBRACE, - STATE(2631), 1, + STATE(2650), 1, sym__attr_ws, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 1, + STATE(4411), 1, sym__inline_whitespace, - STATE(2692), 2, + STATE(2726), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(4369), 2, + STATE(4123), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4376), 2, + STATE(4125), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, [118930] = 13, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6774), 1, + ACTIONS(6842), 1, anon_sym_RBRACE, - ACTIONS(6776), 1, + ACTIONS(6844), 1, sym_raw_specifier, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3687), 2, + STATE(4357), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3688), 2, + STATE(4359), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, [118973] = 13, - ACTIONS(6420), 1, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6778), 1, + ACTIONS(6846), 1, anon_sym_RBRACE, - ACTIONS(6780), 1, + ACTIONS(6848), 1, sym_raw_specifier, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 2, - sym__soft_line_break, - sym__inline_whitespace, - STATE(4478), 2, + STATE(4105), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(4479), 2, + STATE(4117), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [119016] = 11, - ACTIONS(6424), 1, + STATE(4411), 2, + sym__soft_line_break, + sym__inline_whitespace, + [119016] = 10, + ACTIONS(6558), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6560), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6562), 1, + sym_shortcode_name, + ACTIONS(6566), 1, + sym_shortcode_number, + ACTIONS(6572), 1, + sym__language_specifier_token, + ACTIONS(6574), 1, + sym__shortcode_open, + STATE(3541), 1, + sym__shortcode_value, + ACTIONS(6564), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3615), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3604), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [119051] = 11, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6782), 1, + ACTIONS(6850), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3988), 2, + STATE(3696), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3991), 2, + STATE(3697), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [119053] = 11, - ACTIONS(6424), 1, + [119088] = 11, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6784), 1, + ACTIONS(6852), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4419), 2, - sym__soft_line_break, - sym__inline_whitespace, - STATE(4476), 2, + STATE(3846), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4477), 2, + STATE(3847), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [119090] = 11, - ACTIONS(6424), 1, + STATE(4411), 2, + sym__soft_line_break, + sym__inline_whitespace, + [119125] = 11, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6786), 1, + ACTIONS(6854), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3760), 2, + STATE(4093), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3761), 2, + STATE(4103), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [119127] = 11, - ACTIONS(6424), 1, + [119162] = 11, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6788), 1, + ACTIONS(6856), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3936), 2, + STATE(4200), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3937), 2, + STATE(4217), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [119164] = 11, - ACTIONS(6424), 1, + [119199] = 11, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6790), 1, + ACTIONS(6858), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4353), 2, + STATE(4006), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4354), 2, + STATE(4007), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [119201] = 10, - ACTIONS(6458), 1, + [119236] = 10, + ACTIONS(6558), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, + ACTIONS(6560), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, + ACTIONS(6562), 1, sym_shortcode_name, - ACTIONS(6466), 1, + ACTIONS(6566), 1, sym_shortcode_number, - ACTIONS(6472), 1, + ACTIONS(6572), 1, sym__language_specifier_token, - ACTIONS(6474), 1, + ACTIONS(6574), 1, sym__shortcode_open, - STATE(3605), 1, + STATE(3620), 1, sym__shortcode_value, - ACTIONS(6464), 2, + ACTIONS(6564), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, + STATE(3615), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3603), 3, + STATE(3604), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [119236] = 11, - ACTIONS(6424), 1, + [119271] = 11, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6792), 1, + ACTIONS(6860), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4216), 2, + STATE(3921), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4217), 2, + STATE(3922), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [119273] = 11, - ACTIONS(6424), 1, + [119308] = 10, + ACTIONS(6558), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6560), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6562), 1, + sym_shortcode_name, + ACTIONS(6566), 1, + sym_shortcode_number, + ACTIONS(6572), 1, + sym__language_specifier_token, + ACTIONS(6574), 1, + sym__shortcode_open, + STATE(3571), 1, + sym__shortcode_value, + ACTIONS(6564), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3615), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3604), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [119343] = 11, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6794), 1, + ACTIONS(6862), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4232), 2, + STATE(3956), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4247), 2, + STATE(3957), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [119310] = 11, - ACTIONS(6424), 1, + [119380] = 11, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6796), 1, + ACTIONS(6864), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3835), 2, + STATE(4146), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3836), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [119347] = 10, - ACTIONS(6458), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, - sym_shortcode_name, - ACTIONS(6466), 1, - sym_shortcode_number, - ACTIONS(6472), 1, - sym__language_specifier_token, - ACTIONS(6474), 1, - sym__shortcode_open, - STATE(3553), 1, - sym__shortcode_value, - ACTIONS(6464), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3603), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [119382] = 11, - ACTIONS(6424), 1, + STATE(4510), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [119417] = 11, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6798), 1, + ACTIONS(6866), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3696), 2, + STATE(3766), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3697), 2, + STATE(3768), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [119419] = 11, - ACTIONS(6424), 1, + [119454] = 11, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6800), 1, + ACTIONS(6868), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4107), 2, + STATE(3947), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4108), 2, + STATE(3948), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [119456] = 11, - ACTIONS(6424), 1, + [119491] = 11, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6802), 1, + ACTIONS(6870), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4185), 2, + STATE(3977), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4187), 2, + STATE(3978), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [119493] = 11, - ACTIONS(6424), 1, + [119528] = 11, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6804), 1, + ACTIONS(6872), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4194), 2, + STATE(4313), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4197), 2, + STATE(4334), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, - [119530] = 10, - ACTIONS(6458), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6460), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6462), 1, - sym_shortcode_name, - ACTIONS(6466), 1, - sym_shortcode_number, - ACTIONS(6472), 1, - sym__language_specifier_token, - ACTIONS(6474), 1, - sym__shortcode_open, - STATE(3618), 1, - sym__shortcode_value, - ACTIONS(6464), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3585), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3603), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, [119565] = 11, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6806), 1, + ACTIONS(6874), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4052), 2, + STATE(4171), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4053), 2, + STATE(4196), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, [119602] = 11, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6808), 1, + ACTIONS(6876), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4047), 2, + STATE(3771), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(4050), 2, + STATE(3772), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, [119639] = 11, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6810), 1, + ACTIONS(6878), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3891), 2, + STATE(4160), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3904), 2, + STATE(4163), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, [119676] = 11, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6812), 1, + ACTIONS(6880), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3685), 2, + STATE(4350), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3686), 2, + STATE(4365), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, [119713] = 11, - ACTIONS(6424), 1, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6670), 1, + ACTIONS(6738), 1, anon_sym_DASH, - ACTIONS(6686), 1, + ACTIONS(6750), 1, sym__whitespace, - ACTIONS(6688), 1, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6882), 1, anon_sym_RBRACE, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(3910), 2, + STATE(4340), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3911), 2, + STATE(4341), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(4419), 2, + STATE(4411), 2, sym__soft_line_break, sym__inline_whitespace, [119750] = 4, - ACTIONS(6820), 1, + ACTIONS(6884), 1, + sym__whitespace, + ACTIONS(6886), 1, + sym_block_continuation, + ACTIONS(2405), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(2403), 7, + sym__language_specifier_token, + sym__key_specifier_token, + sym__shortcode_open, + sym__shortcode_close, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_double_quote_string_token1, + sym_shortcode_number, + [119771] = 4, + ACTIONS(6892), 1, sym__soft_line_ending, - STATE(2688), 1, + STATE(2689), 1, sym__soft_line_break, - ACTIONS(6818), 3, + ACTIONS(6890), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(6816), 7, + ACTIONS(6888), 7, sym__language_specifier_token, sym__key_specifier_token, sym__shortcode_close_escaped, @@ -179747,16 +180180,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_double_quote_string_token1, sym_shortcode_number, - [119771] = 4, - ACTIONS(6822), 1, + [119792] = 4, + ACTIONS(6894), 1, sym__whitespace, - ACTIONS(6824), 1, + ACTIONS(6896), 1, sym_block_continuation, - ACTIONS(2323), 3, + ACTIONS(2405), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(2321), 7, + ACTIONS(2403), 7, sym__language_specifier_token, sym__key_specifier_token, sym__shortcode_close_escaped, @@ -179764,91 +180197,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_double_quote_string_token1, sym_shortcode_number, - [119792] = 10, - ACTIONS(6424), 1, + [119813] = 10, + ACTIONS(6492), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6426), 1, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(6826), 1, + ACTIONS(6898), 1, anon_sym_RBRACE, - ACTIONS(6828), 1, + ACTIONS(6900), 1, sym__whitespace, - ACTIONS(6830), 1, + ACTIONS(6902), 1, sym__soft_line_ending, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4195), 1, + STATE(4280), 1, sym_commonmark_specifier, - STATE(2892), 2, + STATE(2885), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(4196), 2, + STATE(4305), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [119825] = 4, - ACTIONS(6832), 1, - sym__whitespace, - ACTIONS(6834), 1, - sym_block_continuation, - ACTIONS(2323), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(2321), 7, - sym__language_specifier_token, - sym__key_specifier_token, - sym__shortcode_open, - sym__shortcode_close, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - sym_shortcode_number, [119846] = 4, - ACTIONS(6836), 1, - sym__soft_line_ending, - STATE(2686), 1, - sym__soft_line_break, - ACTIONS(6818), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(6816), 7, - sym__language_specifier_token, - sym__key_specifier_token, - sym__shortcode_open, - sym__shortcode_close, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - sym_shortcode_number, - [119867] = 10, - ACTIONS(6688), 1, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(6838), 1, - aux_sym_target_token2, - ACTIONS(6840), 1, - anon_sym_RPAREN, - ACTIONS(6842), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6844), 1, - sym__whitespace, - ACTIONS(6846), 1, - sym__shortcode_open, - STATE(2719), 1, - aux_sym_target_repeat1, - STATE(3047), 1, - sym_shortcode, - STATE(3917), 1, - sym__commonmark_double_quote_string, - STATE(3662), 2, + STATE(2692), 1, sym__soft_line_break, - sym__inline_whitespace, - [119899] = 2, - ACTIONS(2543), 3, + ACTIONS(6890), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(2541), 8, + ACTIONS(6888), 7, sym__language_specifier_token, sym__key_specifier_token, sym__shortcode_open, @@ -179856,72 +180237,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_double_quote_string_token1, sym_shortcode_number, - sym__whitespace, - [119915] = 10, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(6838), 1, - aux_sym_target_token2, - ACTIONS(6842), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, - sym__shortcode_open, - ACTIONS(6848), 1, - anon_sym_RPAREN, - ACTIONS(6850), 1, - sym__whitespace, - STATE(2717), 1, - aux_sym_target_repeat1, - STATE(3047), 1, - sym_shortcode, - STATE(3767), 1, - sym__commonmark_double_quote_string, - STATE(3653), 2, - sym__soft_line_break, - sym__inline_whitespace, - [119947] = 7, - ACTIONS(6854), 1, + [119867] = 7, + ACTIONS(6908), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6856), 1, + ACTIONS(6910), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6858), 1, + ACTIONS(6912), 1, sym__whitespace, - ACTIONS(6860), 1, + ACTIONS(6914), 1, sym__soft_line_ending, - STATE(2793), 2, + STATE(2768), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(3131), 2, + STATE(3197), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - ACTIONS(6852), 3, + ACTIONS(6906), 3, sym__value_specifier_token, anon_sym_SQUOTE_SQUOTE, anon_sym_DQUOTE_DQUOTE, - [119973] = 3, - ACTIONS(6862), 1, + [119893] = 10, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, + aux_sym_target_token2, + ACTIONS(6918), 1, + anon_sym_RPAREN, + ACTIONS(6920), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6922), 1, sym__whitespace, - ACTIONS(6818), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(6816), 7, - sym__language_specifier_token, - sym__key_specifier_token, - sym__shortcode_close_escaped, + ACTIONS(6924), 1, sym__shortcode_open, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - sym_shortcode_number, - [119991] = 4, - ACTIONS(6866), 1, + STATE(2700), 1, + aux_sym_target_repeat1, + STATE(3103), 1, + sym_shortcode, + STATE(3853), 1, + sym__commonmark_double_quote_string, + STATE(3662), 2, + sym__soft_line_break, + sym__inline_whitespace, + [119925] = 4, + ACTIONS(6928), 1, sym__whitespace, - ACTIONS(6869), 1, + ACTIONS(6931), 1, sym__soft_line_ending, STATE(2660), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - ACTIONS(6864), 7, + ACTIONS(6926), 7, sym_raw_specifier, sym__language_specifier_token, sym__key_specifier_token, @@ -179929,152 +180294,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, aux_sym_commonmark_specifier_token1, aux_sym__commonmark_specifier_start_with_class_token1, - [120011] = 10, - ACTIONS(6688), 1, + [119945] = 10, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6842), 1, + ACTIONS(6920), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6872), 1, + ACTIONS(6934), 1, anon_sym_RPAREN, - ACTIONS(6874), 1, + ACTIONS(6936), 1, sym__whitespace, - STATE(2741), 1, + STATE(2719), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3842), 1, + STATE(4051), 1, sym__commonmark_double_quote_string, - STATE(3658), 2, + STATE(3544), 2, sym__soft_line_break, sym__inline_whitespace, - [120043] = 2, - ACTIONS(2543), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(2541), 8, - sym__language_specifier_token, - sym__key_specifier_token, - sym__shortcode_close_escaped, - sym__shortcode_open, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - sym_shortcode_number, - sym__whitespace, - [120059] = 10, - ACTIONS(6688), 1, + [119977] = 4, + ACTIONS(6498), 1, sym__soft_line_ending, - ACTIONS(6838), 1, - aux_sym_target_token2, - ACTIONS(6842), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, - sym__shortcode_open, - ACTIONS(6876), 1, - anon_sym_RPAREN, - ACTIONS(6878), 1, + ACTIONS(6940), 1, sym__whitespace, - STATE(2708), 1, - aux_sym_target_repeat1, - STATE(3047), 1, - sym_shortcode, - STATE(3915), 1, - sym__commonmark_double_quote_string, - STATE(3620), 2, + STATE(2660), 2, sym__soft_line_break, - sym__inline_whitespace, - [120091] = 2, - ACTIONS(2539), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(2537), 8, - sym__language_specifier_token, - sym__key_specifier_token, - sym__shortcode_open, - sym__shortcode_close, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - sym_shortcode_number, - sym__whitespace, - [120107] = 10, - ACTIONS(6688), 1, + aux_sym__attr_ws_repeat1, + ACTIONS(6938), 7, + sym_raw_specifier, + sym__language_specifier_token, + sym__key_specifier_token, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_commonmark_specifier_token1, + aux_sym__commonmark_specifier_start_with_class_token1, + [119997] = 10, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6842), 1, + ACTIONS(6920), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6880), 1, + ACTIONS(6942), 1, anon_sym_RPAREN, - ACTIONS(6882), 1, + ACTIONS(6944), 1, sym__whitespace, - STATE(2750), 1, + STATE(2732), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(4493), 1, + STATE(4182), 1, sym__commonmark_double_quote_string, - STATE(3607), 2, + STATE(3647), 2, sym__soft_line_break, sym__inline_whitespace, - [120139] = 10, - ACTIONS(6688), 1, + [120029] = 10, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6842), 1, + ACTIONS(6920), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6884), 1, + ACTIONS(6946), 1, anon_sym_RPAREN, - ACTIONS(6886), 1, + ACTIONS(6948), 1, sym__whitespace, - STATE(2732), 1, + STATE(2715), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(4402), 1, + STATE(4147), 1, sym__commonmark_double_quote_string, - STATE(3596), 2, + STATE(3611), 2, sym__soft_line_break, sym__inline_whitespace, - [120171] = 10, - ACTIONS(6688), 1, + [120061] = 10, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6842), 1, + ACTIONS(6920), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6888), 1, + ACTIONS(6950), 1, anon_sym_RPAREN, - ACTIONS(6890), 1, + ACTIONS(6952), 1, sym__whitespace, - STATE(2742), 1, + STATE(2721), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(4066), 1, + STATE(4124), 1, sym__commonmark_double_quote_string, - STATE(3604), 2, + STATE(3608), 2, sym__soft_line_break, sym__inline_whitespace, - [120203] = 3, - ACTIONS(6892), 1, - sym__whitespace, - ACTIONS(6818), 3, + [120093] = 2, + ACTIONS(2785), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(6816), 7, + ACTIONS(2783), 8, sym__language_specifier_token, sym__key_specifier_token, sym__shortcode_open, @@ -180082,94 +180411,137 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_double_quote_string_token1, sym_shortcode_number, - [120221] = 10, - ACTIONS(6688), 1, + sym__whitespace, + [120109] = 10, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6842), 1, + ACTIONS(6920), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6894), 1, + ACTIONS(6954), 1, anon_sym_RPAREN, - ACTIONS(6896), 1, + ACTIONS(6956), 1, sym__whitespace, - STATE(2736), 1, + STATE(2749), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(4132), 1, + STATE(4034), 1, sym__commonmark_double_quote_string, - STATE(3643), 2, + STATE(3582), 2, sym__soft_line_break, sym__inline_whitespace, - [120253] = 10, - ACTIONS(6688), 1, + [120141] = 7, + ACTIONS(6914), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6960), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6962), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6964), 1, + sym__whitespace, + STATE(2790), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3538), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + ACTIONS(6958), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [120167] = 10, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6842), 1, + ACTIONS(6920), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6898), 1, + ACTIONS(6966), 1, anon_sym_RPAREN, - ACTIONS(6900), 1, + ACTIONS(6968), 1, sym__whitespace, - STATE(2718), 1, + STATE(2737), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, + sym_shortcode, + STATE(4381), 1, + sym__commonmark_double_quote_string, + STATE(3600), 2, + sym__soft_line_break, + sym__inline_whitespace, + [120199] = 10, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, + aux_sym_target_token2, + ACTIONS(6920), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6924), 1, + sym__shortcode_open, + ACTIONS(6970), 1, + anon_sym_RPAREN, + ACTIONS(6972), 1, + sym__whitespace, + STATE(2743), 1, + aux_sym_target_repeat1, + STATE(3103), 1, sym_shortcode, - STATE(4060), 1, + STATE(3703), 1, sym__commonmark_double_quote_string, - STATE(3625), 2, + STATE(3533), 2, sym__soft_line_break, sym__inline_whitespace, - [120285] = 2, - ACTIONS(2539), 3, + [120231] = 3, + ACTIONS(6974), 1, + sym__whitespace, + ACTIONS(2785), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(2537), 8, + ACTIONS(2783), 7, sym__language_specifier_token, sym__key_specifier_token, - sym__shortcode_close_escaped, sym__shortcode_open, + sym__shortcode_close, aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_double_quote_string_token1, sym_shortcode_number, - sym__whitespace, - [120301] = 10, - ACTIONS(6688), 1, + [120249] = 10, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6842), 1, + ACTIONS(6920), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6902), 1, + ACTIONS(6976), 1, anon_sym_RPAREN, - ACTIONS(6904), 1, + ACTIONS(6978), 1, sym__whitespace, - STATE(2706), 1, + STATE(2702), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(4290), 1, + STATE(4016), 1, sym__commonmark_double_quote_string, - STATE(3581), 2, + STATE(3626), 2, sym__soft_line_break, sym__inline_whitespace, - [120333] = 3, - ACTIONS(6906), 1, + [120281] = 3, + ACTIONS(6980), 1, sym__whitespace, - ACTIONS(2539), 3, + ACTIONS(6890), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(2537), 7, + ACTIONS(6888), 7, sym__language_specifier_token, sym__key_specifier_token, sym__shortcode_open, @@ -180177,159 +180549,171 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_double_quote_string_token1, sym_shortcode_number, - [120351] = 10, - ACTIONS(6688), 1, + [120299] = 10, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6842), 1, + ACTIONS(6920), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6908), 1, + ACTIONS(6982), 1, anon_sym_RPAREN, - ACTIONS(6910), 1, + ACTIONS(6984), 1, sym__whitespace, - STATE(2693), 1, + STATE(2756), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(4206), 1, + STATE(3778), 1, sym__commonmark_double_quote_string, - STATE(3628), 2, + STATE(3657), 2, sym__soft_line_break, sym__inline_whitespace, - [120383] = 7, - ACTIONS(6860), 1, + [120331] = 10, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6914), 1, - aux_sym__commonmark_single_quote_string_token1, ACTIONS(6916), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6918), 1, - sym__whitespace, - STATE(2780), 2, - sym__soft_line_break, - sym__inline_whitespace, - STATE(3567), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - ACTIONS(6912), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [120409] = 10, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(6838), 1, aux_sym_target_token2, - ACTIONS(6842), 1, + ACTIONS(6920), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6920), 1, + ACTIONS(6986), 1, anon_sym_RPAREN, - ACTIONS(6922), 1, + ACTIONS(6988), 1, sym__whitespace, - STATE(2745), 1, + STATE(2730), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3711), 1, + STATE(3786), 1, sym__commonmark_double_quote_string, - STATE(3614), 2, + STATE(3622), 2, sym__soft_line_break, sym__inline_whitespace, - [120441] = 10, - ACTIONS(6688), 1, + [120363] = 2, + ACTIONS(2785), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(2783), 8, + sym__language_specifier_token, + sym__key_specifier_token, + sym__shortcode_close_escaped, + sym__shortcode_open, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_double_quote_string_token1, + sym_shortcode_number, + sym__whitespace, + [120379] = 10, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6842), 1, + ACTIONS(6920), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, - sym__shortcode_open, ACTIONS(6924), 1, + sym__shortcode_open, + ACTIONS(6990), 1, anon_sym_RPAREN, - ACTIONS(6926), 1, + ACTIONS(6992), 1, sym__whitespace, - STATE(2710), 1, + STATE(2695), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3779), 1, + STATE(4041), 1, sym__commonmark_double_quote_string, - STATE(3639), 2, + STATE(3617), 2, sym__soft_line_break, sym__inline_whitespace, - [120473] = 10, - ACTIONS(6688), 1, + [120411] = 10, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6842), 1, + ACTIONS(6920), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6928), 1, + ACTIONS(6994), 1, anon_sym_RPAREN, - ACTIONS(6930), 1, + ACTIONS(6996), 1, sym__whitespace, - STATE(2747), 1, + STATE(2723), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3671), 1, + STATE(4172), 1, sym__commonmark_double_quote_string, - STATE(3601), 2, + STATE(3630), 2, sym__soft_line_break, sym__inline_whitespace, - [120505] = 7, - ACTIONS(6860), 1, - sym__soft_line_ending, - ACTIONS(6914), 1, + [120443] = 7, + ACTIONS(6908), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6916), 1, + ACTIONS(6910), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6934), 1, + ACTIONS(6914), 1, + sym__soft_line_ending, + ACTIONS(7000), 1, sym__whitespace, - STATE(2779), 2, + STATE(2771), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(3599), 2, + STATE(3225), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - ACTIONS(6932), 3, + ACTIONS(6998), 3, sym__value_specifier_token, anon_sym_SQUOTE_SQUOTE, anon_sym_DQUOTE_DQUOTE, - [120531] = 7, - ACTIONS(6854), 1, + [120469] = 2, + ACTIONS(2789), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(2787), 8, + sym__language_specifier_token, + sym__key_specifier_token, + sym__shortcode_close_escaped, + sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6856), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6860), 1, + sym_shortcode_number, + sym__whitespace, + [120485] = 10, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6938), 1, + ACTIONS(6916), 1, + aux_sym_target_token2, + ACTIONS(6920), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6924), 1, + sym__shortcode_open, + ACTIONS(7002), 1, + anon_sym_RPAREN, + ACTIONS(7004), 1, sym__whitespace, - STATE(2791), 2, + STATE(2713), 1, + aux_sym_target_repeat1, + STATE(3103), 1, + sym_shortcode, + STATE(3928), 1, + sym__commonmark_double_quote_string, + STATE(3667), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(3164), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - ACTIONS(6936), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [120557] = 3, - ACTIONS(6940), 1, + [120517] = 3, + ACTIONS(7006), 1, sym__whitespace, - ACTIONS(2539), 3, + ACTIONS(2785), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(2537), 7, + ACTIONS(2783), 7, sym__language_specifier_token, sym__key_specifier_token, sym__shortcode_close_escaped, @@ -180337,87 +180721,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_double_quote_string_token1, sym_shortcode_number, - [120575] = 4, - ACTIONS(6430), 1, - sym__soft_line_ending, - ACTIONS(6944), 1, - sym__whitespace, - STATE(2660), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - ACTIONS(6942), 7, - sym_raw_specifier, - sym__language_specifier_token, - sym__key_specifier_token, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_commonmark_specifier_token1, - aux_sym__commonmark_specifier_start_with_class_token1, - [120595] = 10, - ACTIONS(6688), 1, + [120535] = 10, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6842), 1, + ACTIONS(6920), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6946), 1, + ACTIONS(7008), 1, anon_sym_RPAREN, - ACTIONS(6948), 1, + ACTIONS(7010), 1, sym__whitespace, - STATE(2713), 1, + STATE(2714), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3692), 1, + STATE(3700), 1, sym__commonmark_double_quote_string, - STATE(3649), 2, + STATE(3642), 2, sym__soft_line_break, sym__inline_whitespace, - [120627] = 10, - ACTIONS(6688), 1, + [120567] = 10, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6842), 1, + ACTIONS(6920), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6950), 1, + ACTIONS(7012), 1, anon_sym_RPAREN, - ACTIONS(6952), 1, + ACTIONS(7014), 1, sym__whitespace, - STATE(2701), 1, + STATE(2757), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(4365), 1, + STATE(4375), 1, sym__commonmark_double_quote_string, - STATE(3632), 2, + STATE(3637), 2, sym__soft_line_break, sym__inline_whitespace, - [120659] = 4, - ACTIONS(6470), 1, - sym__soft_line_ending, - STATE(2760), 1, - sym__soft_line_break, - ACTIONS(6818), 3, + [120599] = 3, + ACTIONS(7016), 1, + sym__whitespace, + ACTIONS(6890), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(6816), 5, + ACTIONS(6888), 7, sym__language_specifier_token, + sym__key_specifier_token, + sym__shortcode_close_escaped, sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_double_quote_string_token1, sym_shortcode_number, - [120678] = 2, - ACTIONS(6956), 3, + [120617] = 2, + ACTIONS(2789), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(6954), 7, + ACTIONS(2787), 8, sym__language_specifier_token, sym__key_specifier_token, sym__shortcode_open, @@ -180425,27 +180793,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_double_quote_string_token1, sym_shortcode_number, - [120693] = 4, - ACTIONS(6958), 1, sym__whitespace, + [120633] = 7, + ACTIONS(6914), 1, + sym__soft_line_ending, ACTIONS(6960), 1, - sym_block_continuation, - ACTIONS(2323), 3, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6962), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(7020), 1, + sym__whitespace, + STATE(2793), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3674), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + ACTIONS(7018), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [120659] = 4, + ACTIONS(6570), 1, + sym__soft_line_ending, + STATE(2765), 1, + sym__soft_line_break, + ACTIONS(6890), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(2321), 5, + ACTIONS(6888), 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, - [120712] = 2, - ACTIONS(6956), 3, + [120678] = 2, + ACTIONS(7024), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(6954), 7, + ACTIONS(7022), 7, sym__language_specifier_token, sym__key_specifier_token, sym__shortcode_close_escaped, @@ -180453,12 +180841,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_double_quote_string_token1, sym_shortcode_number, - [120727] = 3, - ACTIONS(6962), 1, + [120693] = 3, + ACTIONS(7026), 1, sym__whitespace, - ACTIONS(6964), 1, + ACTIONS(7028), 1, sym_block_continuation, - ACTIONS(2321), 8, + ACTIONS(2403), 8, sym__soft_line_ending, sym_raw_specifier, sym__language_specifier_token, @@ -180467,852 +180855,875 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, aux_sym_commonmark_specifier_token1, aux_sym__commonmark_specifier_start_with_class_token1, + [120710] = 4, + ACTIONS(7030), 1, + sym__whitespace, + ACTIONS(7032), 1, + sym_block_continuation, + ACTIONS(2405), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(2403), 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, + [120729] = 2, + ACTIONS(7024), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(7022), 7, + sym__language_specifier_token, + sym__key_specifier_token, + sym__shortcode_open, + sym__shortcode_close, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_double_quote_string_token1, + sym_shortcode_number, [120744] = 8, - ACTIONS(6838), 1, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6966), 1, + ACTIONS(7034), 1, anon_sym_RPAREN, - ACTIONS(6968), 1, + ACTIONS(7036), 1, sym__whitespace, - ACTIONS(6970), 1, - sym__soft_line_ending, - STATE(2721), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2683), 2, + STATE(3676), 2, sym__soft_line_break, sym__inline_whitespace, [120770] = 8, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, - sym__soft_line_ending, - ACTIONS(6972), 1, + ACTIONS(7038), 1, anon_sym_RPAREN, - ACTIONS(6974), 1, + ACTIONS(7040), 1, sym__whitespace, - STATE(2749), 1, + ACTIONS(7042), 1, + sym__soft_line_ending, + STATE(2699), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2665), 2, + STATE(2672), 2, sym__soft_line_break, sym__inline_whitespace, - [120796] = 4, - ACTIONS(6676), 1, - sym__soft_line_ending, - ACTIONS(6976), 1, - sym__whitespace, - STATE(2754), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - ACTIONS(6942), 5, - sym__key_specifier_token, - anon_sym_DASH, - anon_sym_RBRACE, - aux_sym_commonmark_specifier_token1, - aux_sym__commonmark_specifier_start_with_class_token1, - [120814] = 8, - ACTIONS(6688), 1, + [120796] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6978), 1, + ACTIONS(7044), 1, anon_sym_RPAREN, - ACTIONS(6980), 1, + ACTIONS(7046), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3631), 2, + STATE(3619), 2, sym__soft_line_break, sym__inline_whitespace, - [120840] = 8, - ACTIONS(6838), 1, + [120822] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, + ACTIONS(7042), 1, sym__soft_line_ending, - ACTIONS(6982), 1, + ACTIONS(7048), 1, anon_sym_RPAREN, - ACTIONS(6984), 1, + ACTIONS(7050), 1, sym__whitespace, - STATE(2700), 1, + STATE(2698), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2672), 2, + STATE(2659), 2, sym__soft_line_break, sym__inline_whitespace, - [120866] = 8, - ACTIONS(6838), 1, + [120848] = 8, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, - sym__soft_line_ending, - ACTIONS(6986), 1, + ACTIONS(7052), 1, anon_sym_RPAREN, - ACTIONS(6988), 1, + ACTIONS(7054), 1, sym__whitespace, - STATE(2734), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2667), 2, + STATE(3614), 2, sym__soft_line_break, sym__inline_whitespace, - [120892] = 7, - ACTIONS(6436), 1, - sym__key_specifier_token, - ACTIONS(6674), 1, - sym__whitespace, - ACTIONS(6676), 1, - sym__soft_line_ending, - ACTIONS(6990), 1, - anon_sym_RBRACE, - STATE(3035), 1, - sym__attr_ws, - STATE(2692), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - STATE(2702), 2, - sym__commonmark_key_value_specifier, - aux_sym__commonmark_specifier_start_with_kv_repeat1, - [120916] = 8, - ACTIONS(6688), 1, + [120874] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6992), 1, + ACTIONS(7056), 1, anon_sym_RPAREN, - ACTIONS(6994), 1, + ACTIONS(7058), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3626), 2, + STATE(3663), 2, sym__soft_line_break, sym__inline_whitespace, - [120942] = 2, - ACTIONS(2539), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(2537), 6, - sym__language_specifier_token, - sym__shortcode_open, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - sym_shortcode_number, - sym__whitespace, - [120956] = 7, - ACTIONS(6436), 1, - sym__key_specifier_token, - ACTIONS(6674), 1, - sym__whitespace, - ACTIONS(6676), 1, - sym__soft_line_ending, - ACTIONS(6996), 1, - anon_sym_RBRACE, - STATE(3512), 1, - sym__attr_ws, - STATE(2692), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - STATE(2755), 2, - sym__commonmark_key_value_specifier, - aux_sym__commonmark_specifier_start_with_kv_repeat1, - [120980] = 8, - ACTIONS(6688), 1, + [120900] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6998), 1, + ACTIONS(7060), 1, anon_sym_RPAREN, - ACTIONS(7000), 1, + ACTIONS(7062), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3582), 2, + STATE(3627), 2, sym__soft_line_break, sym__inline_whitespace, - [121006] = 8, - ACTIONS(6688), 1, + [120926] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7002), 1, + ACTIONS(7064), 1, anon_sym_RPAREN, - ACTIONS(7004), 1, + ACTIONS(7066), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3634), 2, + STATE(3664), 2, sym__soft_line_break, sym__inline_whitespace, - [121032] = 7, - ACTIONS(6436), 1, - sym__key_specifier_token, - ACTIONS(6674), 1, - sym__whitespace, - ACTIONS(6676), 1, - sym__soft_line_ending, - ACTIONS(6996), 1, - anon_sym_RBRACE, - STATE(2941), 1, - sym__attr_ws, - STATE(2692), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - STATE(2755), 2, - sym__commonmark_key_value_specifier, - aux_sym__commonmark_specifier_start_with_kv_repeat1, - [121056] = 2, - ACTIONS(2543), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(2541), 6, - sym__language_specifier_token, - sym__shortcode_open, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - sym_shortcode_number, - sym__whitespace, - [121070] = 8, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(6838), 1, + [120952] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7006), 1, + ACTIONS(7042), 1, + sym__soft_line_ending, + ACTIONS(7068), 1, anon_sym_RPAREN, - ACTIONS(7008), 1, + ACTIONS(7070), 1, sym__whitespace, - STATE(2794), 1, + STATE(2709), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3654), 2, + STATE(2664), 2, sym__soft_line_break, sym__inline_whitespace, - [121096] = 8, - ACTIONS(6688), 1, + [120978] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7010), 1, + ACTIONS(7072), 1, anon_sym_RPAREN, - ACTIONS(7012), 1, + ACTIONS(7074), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3640), 2, + STATE(3628), 2, sym__soft_line_break, sym__inline_whitespace, - [121122] = 8, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(6838), 1, + [121004] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7014), 1, + ACTIONS(7042), 1, + sym__soft_line_ending, + ACTIONS(7076), 1, anon_sym_RPAREN, - ACTIONS(7016), 1, + ACTIONS(7078), 1, sym__whitespace, - STATE(2794), 1, + STATE(2693), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3583), 2, + STATE(2665), 2, sym__soft_line_break, sym__inline_whitespace, - [121148] = 8, - ACTIONS(6838), 1, + [121030] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, + ACTIONS(7042), 1, sym__soft_line_ending, - ACTIONS(7018), 1, + ACTIONS(7080), 1, anon_sym_RPAREN, - ACTIONS(7020), 1, + ACTIONS(7082), 1, sym__whitespace, - STATE(2716), 1, + STATE(2712), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2655), 2, + STATE(2683), 2, sym__soft_line_break, sym__inline_whitespace, - [121174] = 8, - ACTIONS(6688), 1, + [121056] = 1, + ACTIONS(2783), 9, sym__soft_line_ending, - ACTIONS(6838), 1, + sym_raw_specifier, + sym__language_specifier_token, + sym__key_specifier_token, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_commonmark_specifier_token1, + aux_sym__commonmark_specifier_start_with_class_token1, + sym__whitespace, + [121068] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7022), 1, + ACTIONS(7042), 1, + sym__soft_line_ending, + ACTIONS(7084), 1, anon_sym_RPAREN, - ACTIONS(7024), 1, + ACTIONS(7086), 1, sym__whitespace, - STATE(2794), 1, + STATE(2710), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3622), 2, + STATE(2681), 2, sym__soft_line_break, sym__inline_whitespace, - [121200] = 8, - ACTIONS(6838), 1, + [121094] = 7, + ACTIONS(6504), 1, + sym__key_specifier_token, + ACTIONS(6742), 1, + sym__whitespace, + ACTIONS(6744), 1, + sym__soft_line_ending, + ACTIONS(7088), 1, + anon_sym_RBRACE, + STATE(3474), 1, + sym__attr_ws, + STATE(2726), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + STATE(2729), 2, + sym__commonmark_key_value_specifier, + aux_sym__commonmark_specifier_start_with_kv_repeat1, + [121118] = 2, + ACTIONS(7090), 1, + sym__whitespace, + ACTIONS(2783), 8, + sym__soft_line_ending, + sym_raw_specifier, + sym__language_specifier_token, + sym__key_specifier_token, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_commonmark_specifier_token1, + aux_sym__commonmark_specifier_start_with_class_token1, + [121132] = 8, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, - sym__soft_line_ending, - ACTIONS(7026), 1, + ACTIONS(7092), 1, anon_sym_RPAREN, - ACTIONS(7028), 1, + ACTIONS(7094), 1, sym__whitespace, - STATE(2753), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2676), 2, + STATE(3612), 2, sym__soft_line_break, sym__inline_whitespace, - [121226] = 8, - ACTIONS(6688), 1, + [121158] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7030), 1, + ACTIONS(7096), 1, anon_sym_RPAREN, - ACTIONS(7032), 1, + ACTIONS(7098), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3641), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [121252] = 3, - ACTIONS(7034), 1, - sym__whitespace, - ACTIONS(2539), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(2537), 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, - [121268] = 8, - ACTIONS(6838), 1, + [121184] = 8, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, - sym__soft_line_ending, - ACTIONS(7036), 1, + ACTIONS(7100), 1, anon_sym_RPAREN, - ACTIONS(7038), 1, + ACTIONS(7102), 1, sym__whitespace, - STATE(2737), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2663), 2, + STATE(3601), 2, sym__soft_line_break, sym__inline_whitespace, - [121294] = 8, - ACTIONS(6688), 1, + [121210] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7040), 1, + ACTIONS(7104), 1, anon_sym_RPAREN, - ACTIONS(7042), 1, + ACTIONS(7106), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3651), 2, + STATE(3643), 2, sym__soft_line_break, sym__inline_whitespace, - [121320] = 8, - ACTIONS(6838), 1, + [121236] = 8, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, - sym__soft_line_ending, - ACTIONS(7044), 1, + ACTIONS(7108), 1, anon_sym_RPAREN, - ACTIONS(7046), 1, + ACTIONS(7110), 1, sym__whitespace, - STATE(2743), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2684), 2, + STATE(3669), 2, sym__soft_line_break, sym__inline_whitespace, - [121346] = 3, - ACTIONS(7048), 1, - sym__whitespace, - ACTIONS(6818), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(6816), 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, - [121362] = 8, - ACTIONS(6688), 1, + [121262] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7050), 1, + ACTIONS(7112), 1, anon_sym_RPAREN, - ACTIONS(7052), 1, + ACTIONS(7114), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3663), 2, + STATE(3644), 2, sym__soft_line_break, sym__inline_whitespace, - [121388] = 8, - ACTIONS(6688), 1, + [121288] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7054), 1, + ACTIONS(7116), 1, anon_sym_RPAREN, - ACTIONS(7056), 1, + ACTIONS(7118), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3655), 2, + STATE(3613), 2, sym__soft_line_break, sym__inline_whitespace, - [121414] = 8, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(6838), 1, + [121314] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7058), 1, + ACTIONS(7042), 1, + sym__soft_line_ending, + ACTIONS(7120), 1, anon_sym_RPAREN, - ACTIONS(7060), 1, + ACTIONS(7122), 1, sym__whitespace, - STATE(2794), 1, + STATE(2720), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3627), 2, + STATE(2678), 2, sym__soft_line_break, sym__inline_whitespace, - [121440] = 8, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(6838), 1, + [121340] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7062), 1, + ACTIONS(7042), 1, + sym__soft_line_ending, + ACTIONS(7124), 1, anon_sym_RPAREN, - ACTIONS(7064), 1, + ACTIONS(7126), 1, sym__whitespace, - STATE(2794), 1, + STATE(2724), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3665), 2, + STATE(2675), 2, sym__soft_line_break, sym__inline_whitespace, - [121466] = 8, - ACTIONS(6838), 1, + [121366] = 7, + ACTIONS(7128), 1, + anon_sym_COLON, + ACTIONS(7130), 1, + anon_sym_DASH, + ACTIONS(7132), 1, + sym__whitespace, + STATE(2725), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(2759), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(2973), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(7134), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [121390] = 8, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, - sym__soft_line_ending, - ACTIONS(7066), 1, + ACTIONS(7136), 1, anon_sym_RPAREN, - ACTIONS(7068), 1, + ACTIONS(7138), 1, sym__whitespace, - STATE(2726), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2661), 2, + STATE(3555), 2, sym__soft_line_break, sym__inline_whitespace, - [121492] = 8, - ACTIONS(6688), 1, + [121416] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7070), 1, + ACTIONS(7140), 1, anon_sym_RPAREN, - ACTIONS(7072), 1, + ACTIONS(7142), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3650), 2, + STATE(3631), 2, sym__soft_line_break, sym__inline_whitespace, - [121518] = 8, - ACTIONS(6838), 1, + [121442] = 8, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, - sym__soft_line_ending, - ACTIONS(7074), 1, + ACTIONS(7144), 1, anon_sym_RPAREN, - ACTIONS(7076), 1, + ACTIONS(7146), 1, sym__whitespace, - STATE(2704), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2657), 2, + STATE(3610), 2, sym__soft_line_break, sym__inline_whitespace, - [121544] = 8, - ACTIONS(6838), 1, + [121468] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, + ACTIONS(7042), 1, sym__soft_line_ending, - ACTIONS(7078), 1, + ACTIONS(7148), 1, anon_sym_RPAREN, - ACTIONS(7080), 1, + ACTIONS(7150), 1, sym__whitespace, - STATE(2697), 1, + STATE(2727), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2670), 2, + STATE(2663), 2, sym__soft_line_break, sym__inline_whitespace, - [121570] = 8, - ACTIONS(6838), 1, + [121494] = 8, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, - sym__soft_line_ending, - ACTIONS(7082), 1, + ACTIONS(7152), 1, anon_sym_RPAREN, - ACTIONS(7084), 1, + ACTIONS(7154), 1, sym__whitespace, - STATE(2729), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2666), 2, + STATE(3633), 2, sym__soft_line_break, sym__inline_whitespace, - [121596] = 8, - ACTIONS(6838), 1, + [121520] = 8, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, - sym__soft_line_ending, - ACTIONS(7086), 1, + ACTIONS(7156), 1, anon_sym_RPAREN, - ACTIONS(7088), 1, + ACTIONS(7158), 1, sym__whitespace, - STATE(2733), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2669), 2, + STATE(3623), 2, sym__soft_line_break, sym__inline_whitespace, - [121622] = 8, - ACTIONS(6688), 1, + [121546] = 7, + ACTIONS(7160), 1, + anon_sym_COLON, + ACTIONS(7163), 1, + anon_sym_DASH, + ACTIONS(7166), 1, + sym__whitespace, + STATE(2725), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(2945), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(3603), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(7169), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [121570] = 4, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(7171), 1, + sym__whitespace, + STATE(2735), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + ACTIONS(6938), 5, + sym__key_specifier_token, + anon_sym_DASH, + anon_sym_RBRACE, + aux_sym_commonmark_specifier_token1, + aux_sym__commonmark_specifier_start_with_class_token1, + [121588] = 8, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7090), 1, + ACTIONS(7173), 1, anon_sym_RPAREN, - ACTIONS(7092), 1, + ACTIONS(7175), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3659), 2, + STATE(3648), 2, sym__soft_line_break, sym__inline_whitespace, - [121648] = 7, - ACTIONS(6436), 1, - sym__key_specifier_token, - ACTIONS(6674), 1, + [121614] = 2, + ACTIONS(2785), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(2783), 6, + sym__language_specifier_token, + sym__shortcode_open, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_double_quote_string_token1, + sym_shortcode_number, sym__whitespace, - ACTIONS(6676), 1, - sym__soft_line_ending, - ACTIONS(6990), 1, + [121628] = 7, + ACTIONS(7177), 1, anon_sym_RBRACE, - STATE(3316), 1, + ACTIONS(7179), 1, + sym__whitespace, + ACTIONS(7182), 1, + sym__soft_line_ending, + ACTIONS(7185), 1, + sym__key_specifier_token, + STATE(3564), 1, sym__attr_ws, - STATE(2692), 2, + STATE(2726), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - STATE(2699), 2, + STATE(2729), 2, sym__commonmark_key_value_specifier, aux_sym__commonmark_specifier_start_with_kv_repeat1, - [121672] = 1, - ACTIONS(2541), 9, - sym__soft_line_ending, - sym_raw_specifier, - sym__language_specifier_token, - sym__key_specifier_token, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_commonmark_specifier_token1, - aux_sym__commonmark_specifier_start_with_class_token1, - sym__whitespace, - [121684] = 8, - ACTIONS(6688), 1, + [121652] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7094), 1, + ACTIONS(7188), 1, anon_sym_RPAREN, - ACTIONS(7096), 1, + ACTIONS(7190), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3597), 2, + STATE(3624), 2, sym__soft_line_break, sym__inline_whitespace, - [121710] = 7, - ACTIONS(7098), 1, - anon_sym_COLON, - ACTIONS(7100), 1, - anon_sym_DASH, - ACTIONS(7102), 1, + [121678] = 3, + ACTIONS(7192), 1, sym__whitespace, - STATE(2731), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2759), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(2953), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(7104), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [121734] = 7, - ACTIONS(7106), 1, + ACTIONS(2785), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(2783), 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, + [121694] = 8, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, + aux_sym_target_token2, + ACTIONS(6924), 1, + sym__shortcode_open, + ACTIONS(7194), 1, + anon_sym_RPAREN, + ACTIONS(7196), 1, + sym__whitespace, + STATE(2774), 1, + aux_sym_target_repeat1, + STATE(3103), 1, + sym_shortcode, + STATE(3651), 2, + sym__soft_line_break, + sym__inline_whitespace, + [121720] = 7, + ACTIONS(7128), 1, anon_sym_COLON, - ACTIONS(7109), 1, + ACTIONS(7130), 1, anon_sym_DASH, - ACTIONS(7112), 1, + ACTIONS(7198), 1, sym__whitespace, - STATE(2731), 1, + STATE(2725), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2982), 1, + STATE(2759), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3537), 1, + STATE(3003), 1, sym_pipe_table_delimiter_cell, - ACTIONS(7115), 3, + ACTIONS(7200), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [121758] = 8, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(6838), 1, + [121744] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7117), 1, + ACTIONS(7042), 1, + sym__soft_line_ending, + ACTIONS(7202), 1, anon_sym_RPAREN, - ACTIONS(7119), 1, + ACTIONS(7204), 1, sym__whitespace, - STATE(2794), 1, + STATE(2697), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3598), 2, + STATE(2661), 2, sym__soft_line_break, sym__inline_whitespace, - [121784] = 8, - ACTIONS(6688), 1, + [121770] = 4, + ACTIONS(7206), 1, + sym__whitespace, + ACTIONS(7209), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + STATE(2735), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + ACTIONS(6926), 5, + sym__key_specifier_token, + anon_sym_DASH, + anon_sym_RBRACE, + aux_sym_commonmark_specifier_token1, + aux_sym__commonmark_specifier_start_with_class_token1, + [121788] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7121), 1, + ACTIONS(7042), 1, + sym__soft_line_ending, + ACTIONS(7212), 1, anon_sym_RPAREN, - ACTIONS(7123), 1, + ACTIONS(7214), 1, sym__whitespace, - STATE(2794), 1, + STATE(2741), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3644), 2, + STATE(2670), 2, sym__soft_line_break, sym__inline_whitespace, - [121810] = 8, - ACTIONS(6688), 1, + [121814] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7125), 1, + ACTIONS(7216), 1, anon_sym_RPAREN, - ACTIONS(7127), 1, + ACTIONS(7218), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3568), 2, + STATE(3602), 2, sym__soft_line_break, sym__inline_whitespace, - [121836] = 8, - ACTIONS(6838), 1, + [121840] = 3, + ACTIONS(7220), 1, + sym__whitespace, + ACTIONS(6890), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(6888), 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, + [121856] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, + ACTIONS(7042), 1, sym__soft_line_ending, - ACTIONS(7129), 1, + ACTIONS(7222), 1, anon_sym_RPAREN, - ACTIONS(7131), 1, + ACTIONS(7224), 1, sym__whitespace, - STATE(2746), 1, + STATE(2744), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2674), 2, + STATE(2667), 2, sym__soft_line_break, sym__inline_whitespace, - [121862] = 8, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(6838), 1, - aux_sym_target_token2, - ACTIONS(6846), 1, - sym__shortcode_open, - ACTIONS(7133), 1, - anon_sym_RPAREN, - ACTIONS(7135), 1, + [121882] = 7, + ACTIONS(6504), 1, + sym__key_specifier_token, + ACTIONS(6742), 1, sym__whitespace, - STATE(2794), 1, - aux_sym_target_repeat1, - STATE(3047), 1, - sym_shortcode, - STATE(3645), 2, + ACTIONS(6744), 1, + sym__soft_line_ending, + ACTIONS(7226), 1, + anon_sym_RBRACE, + STATE(2949), 1, + sym__attr_ws, + STATE(2726), 2, sym__soft_line_break, - sym__inline_whitespace, - [121888] = 8, - ACTIONS(6688), 1, + aux_sym__attr_ws_repeat1, + STATE(2746), 2, + sym__commonmark_key_value_specifier, + aux_sym__commonmark_specifier_start_with_kv_repeat1, + [121906] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7137), 1, + ACTIONS(7228), 1, anon_sym_RPAREN, - ACTIONS(7139), 1, + ACTIONS(7230), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3621), 2, + STATE(3654), 2, sym__soft_line_break, sym__inline_whitespace, - [121914] = 7, - ACTIONS(7098), 1, - anon_sym_COLON, - ACTIONS(7100), 1, - anon_sym_DASH, - ACTIONS(7141), 1, - sym__whitespace, - STATE(2731), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2759), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3045), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(7143), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [121938] = 2, - ACTIONS(7145), 1, - sym__whitespace, - ACTIONS(2537), 8, + [121932] = 1, + ACTIONS(2787), 9, sym__soft_line_ending, sym_raw_specifier, sym__language_specifier_token, @@ -181321,793 +181732,707 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, aux_sym_commonmark_specifier_token1, aux_sym__commonmark_specifier_start_with_class_token1, - [121952] = 8, - ACTIONS(6838), 1, + sym__whitespace, + [121944] = 8, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, - sym__soft_line_ending, - ACTIONS(7147), 1, + ACTIONS(7232), 1, anon_sym_RPAREN, - ACTIONS(7149), 1, + ACTIONS(7234), 1, sym__whitespace, - STATE(2744), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2678), 2, + STATE(3655), 2, sym__soft_line_break, sym__inline_whitespace, - [121978] = 8, - ACTIONS(6688), 1, + [121970] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7151), 1, + ACTIONS(7236), 1, anon_sym_RPAREN, - ACTIONS(7153), 1, + ACTIONS(7238), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3660), 2, + STATE(3583), 2, sym__soft_line_break, sym__inline_whitespace, - [122004] = 8, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(6838), 1, + [121996] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7155), 1, + ACTIONS(7042), 1, + sym__soft_line_ending, + ACTIONS(7240), 1, anon_sym_RPAREN, - ACTIONS(7157), 1, + ACTIONS(7242), 1, sym__whitespace, - STATE(2794), 1, + STATE(2754), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3595), 2, + STATE(2677), 2, sym__soft_line_break, sym__inline_whitespace, - [122030] = 8, - ACTIONS(6688), 1, + [122022] = 7, + ACTIONS(6504), 1, + sym__key_specifier_token, + ACTIONS(6742), 1, + sym__whitespace, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(7088), 1, + anon_sym_RBRACE, + STATE(2951), 1, + sym__attr_ws, + STATE(2726), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + STATE(2729), 2, + sym__commonmark_key_value_specifier, + aux_sym__commonmark_specifier_start_with_kv_repeat1, + [122046] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7159), 1, + ACTIONS(7042), 1, + sym__soft_line_ending, + ACTIONS(7244), 1, anon_sym_RPAREN, - ACTIONS(7161), 1, + ACTIONS(7246), 1, sym__whitespace, - STATE(2794), 1, + STATE(2752), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3633), 2, + STATE(2684), 2, sym__soft_line_break, sym__inline_whitespace, - [122056] = 8, - ACTIONS(6688), 1, + [122072] = 7, + ACTIONS(6504), 1, + sym__key_specifier_token, + ACTIONS(6742), 1, + sym__whitespace, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(7226), 1, + anon_sym_RBRACE, + STATE(3402), 1, + sym__attr_ws, + STATE(2707), 2, + sym__commonmark_key_value_specifier, + aux_sym__commonmark_specifier_start_with_kv_repeat1, + STATE(2726), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + [122096] = 8, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7163), 1, + ACTIONS(7248), 1, anon_sym_RPAREN, - ACTIONS(7165), 1, + ACTIONS(7250), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3602), 2, + STATE(3584), 2, sym__soft_line_break, sym__inline_whitespace, - [122082] = 8, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(6838), 1, + [122122] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7167), 1, + ACTIONS(7042), 1, + sym__soft_line_ending, + ACTIONS(7252), 1, anon_sym_RPAREN, - ACTIONS(7169), 1, + ACTIONS(7254), 1, sym__whitespace, - STATE(2794), 1, + STATE(2753), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3616), 2, + STATE(2674), 2, sym__soft_line_break, sym__inline_whitespace, - [122108] = 8, - ACTIONS(6688), 1, + [122148] = 7, + ACTIONS(7128), 1, + anon_sym_COLON, + ACTIONS(7130), 1, + anon_sym_DASH, + ACTIONS(7256), 1, + sym__whitespace, + STATE(2725), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(2759), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(3042), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(7258), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [122172] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7171), 1, + ACTIONS(7260), 1, anon_sym_RPAREN, - ACTIONS(7173), 1, + ACTIONS(7262), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3629), 2, + STATE(3638), 2, sym__soft_line_break, sym__inline_whitespace, - [122134] = 8, - ACTIONS(6688), 1, + [122198] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7175), 1, + ACTIONS(7264), 1, anon_sym_RPAREN, - ACTIONS(7177), 1, + ACTIONS(7266), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3670), 2, + STATE(3658), 2, sym__soft_line_break, sym__inline_whitespace, - [122160] = 1, - ACTIONS(2537), 9, - sym__soft_line_ending, - sym_raw_specifier, - sym__language_specifier_token, - sym__key_specifier_token, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_commonmark_specifier_token1, - aux_sym__commonmark_specifier_start_with_class_token1, - sym__whitespace, - [122172] = 8, - ACTIONS(6688), 1, + [122224] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7179), 1, + ACTIONS(7268), 1, anon_sym_RPAREN, - ACTIONS(7181), 1, + ACTIONS(7270), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3608), 2, + STATE(3618), 2, sym__soft_line_break, sym__inline_whitespace, - [122198] = 8, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(6838), 1, + [122250] = 8, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7183), 1, + ACTIONS(7042), 1, + sym__soft_line_ending, + ACTIONS(7272), 1, anon_sym_RPAREN, - ACTIONS(7185), 1, + ACTIONS(7274), 1, sym__whitespace, - STATE(2794), 1, + STATE(2711), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3609), 2, + STATE(2669), 2, sym__soft_line_break, sym__inline_whitespace, - [122224] = 7, - ACTIONS(7098), 1, - anon_sym_COLON, - ACTIONS(7100), 1, - anon_sym_DASH, - ACTIONS(7187), 1, - sym__whitespace, - STATE(2731), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2759), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3003), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(7189), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [122248] = 8, - ACTIONS(6838), 1, + [122276] = 8, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(6970), 1, - sym__soft_line_ending, - ACTIONS(7191), 1, + ACTIONS(7276), 1, anon_sym_RPAREN, - ACTIONS(7193), 1, + ACTIONS(7278), 1, sym__whitespace, - STATE(2705), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(2677), 2, + STATE(3659), 2, sym__soft_line_break, sym__inline_whitespace, - [122274] = 8, - ACTIONS(6688), 1, + [122302] = 8, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(6838), 1, + ACTIONS(6916), 1, aux_sym_target_token2, - ACTIONS(6846), 1, + ACTIONS(6924), 1, sym__shortcode_open, - ACTIONS(7195), 1, + ACTIONS(7280), 1, anon_sym_RPAREN, - ACTIONS(7197), 1, + ACTIONS(7282), 1, sym__whitespace, - STATE(2794), 1, + STATE(2774), 1, aux_sym_target_repeat1, - STATE(3047), 1, + STATE(3103), 1, sym_shortcode, - STATE(3615), 2, + STATE(3639), 2, sym__soft_line_break, sym__inline_whitespace, - [122300] = 4, - ACTIONS(7199), 1, - sym__whitespace, - ACTIONS(7202), 1, - sym__soft_line_ending, - STATE(2754), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - ACTIONS(6864), 5, - sym__key_specifier_token, - anon_sym_DASH, - anon_sym_RBRACE, - aux_sym_commonmark_specifier_token1, - aux_sym__commonmark_specifier_start_with_class_token1, - [122318] = 7, - ACTIONS(7205), 1, - anon_sym_RBRACE, - ACTIONS(7207), 1, - sym__whitespace, - ACTIONS(7210), 1, - sym__soft_line_ending, - ACTIONS(7213), 1, - sym__key_specifier_token, - STATE(3636), 1, - sym__attr_ws, - STATE(2692), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - STATE(2755), 2, - sym__commonmark_key_value_specifier, - aux_sym__commonmark_specifier_start_with_kv_repeat1, - [122342] = 8, - ACTIONS(7216), 1, - anon_sym_COLON, - ACTIONS(7218), 1, - anon_sym_DASH, - ACTIONS(7220), 1, - sym__whitespace, - ACTIONS(7222), 1, - sym__pipe_table_delimiter, - STATE(2738), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2849), 1, - sym_pipe_table_delimiter_row, - STATE(2982), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3537), 1, - sym_pipe_table_delimiter_cell, - [122367] = 3, - ACTIONS(7224), 1, + [122328] = 2, + ACTIONS(2789), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(2787), 6, + sym__language_specifier_token, + sym__shortcode_open, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_double_quote_string_token1, + sym_shortcode_number, sym__whitespace, - ACTIONS(7226), 1, - sym_block_continuation, - ACTIONS(2321), 6, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_DASH, - anon_sym_RBRACE, - aux_sym_commonmark_specifier_token1, - aux_sym__commonmark_specifier_start_with_class_token1, - [122382] = 4, - ACTIONS(7228), 1, + [122342] = 4, + ACTIONS(7284), 1, anon_sym_COLON, - ACTIONS(7230), 1, + ACTIONS(7286), 1, anon_sym_DASH, - STATE(2761), 1, + STATE(2760), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(7232), 5, + ACTIONS(7288), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, sym__pipe_table_delimiter, sym__whitespace, - [122399] = 4, - ACTIONS(7230), 1, + [122359] = 3, + ACTIONS(7292), 1, anon_sym_DASH, - ACTIONS(7234), 1, - anon_sym_COLON, - STATE(2761), 1, + STATE(2760), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(7236), 5, + ACTIONS(7290), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, sym__pipe_table_delimiter, + anon_sym_COLON, sym__whitespace, - [122416] = 2, - ACTIONS(6956), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(6954), 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, - [122429] = 3, - ACTIONS(7240), 1, + [122374] = 4, + ACTIONS(7286), 1, anon_sym_DASH, - STATE(2761), 1, + ACTIONS(7295), 1, + anon_sym_COLON, + STATE(2760), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(7238), 6, + ACTIONS(7297), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, sym__pipe_table_delimiter, - anon_sym_COLON, sym__whitespace, - [122444] = 8, - ACTIONS(7216), 1, + [122391] = 8, + ACTIONS(7299), 1, anon_sym_COLON, - ACTIONS(7218), 1, + ACTIONS(7301), 1, anon_sym_DASH, - ACTIONS(7220), 1, + ACTIONS(7303), 1, sym__whitespace, - ACTIONS(7222), 1, + ACTIONS(7305), 1, sym__pipe_table_delimiter, - STATE(2738), 1, + STATE(2733), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2832), 1, + STATE(2852), 1, sym_pipe_table_delimiter_row, - STATE(2982), 1, + STATE(2945), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3537), 1, + STATE(3603), 1, sym_pipe_table_delimiter_cell, - [122469] = 8, - ACTIONS(7216), 1, + [122416] = 3, + ACTIONS(7307), 1, + sym__whitespace, + ACTIONS(7309), 1, + sym_block_continuation, + ACTIONS(2403), 6, + sym__soft_line_ending, + sym__key_specifier_token, + anon_sym_DASH, + anon_sym_RBRACE, + aux_sym_commonmark_specifier_token1, + aux_sym__commonmark_specifier_start_with_class_token1, + [122431] = 8, + ACTIONS(7299), 1, anon_sym_COLON, - ACTIONS(7218), 1, + ACTIONS(7301), 1, anon_sym_DASH, - ACTIONS(7220), 1, + ACTIONS(7303), 1, sym__whitespace, - ACTIONS(7222), 1, + ACTIONS(7305), 1, sym__pipe_table_delimiter, - STATE(2738), 1, + STATE(2733), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2819), 1, + STATE(2849), 1, sym_pipe_table_delimiter_row, - STATE(2982), 1, + STATE(2945), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3537), 1, + STATE(3603), 1, sym_pipe_table_delimiter_cell, - [122494] = 6, - ACTIONS(7243), 1, - sym__code_line, - ACTIONS(7245), 1, - sym__line_ending, - ACTIONS(7247), 1, - sym__block_close, - ACTIONS(7249), 1, - sym__fenced_code_block_end_backtick, - STATE(3624), 1, - sym_code_fence_content, - STATE(2835), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [122514] = 4, - ACTIONS(7251), 1, - sym__whitespace, - ACTIONS(7253), 1, - sym__soft_line_ending, - STATE(2770), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - ACTIONS(6942), 3, - sym__key_specifier_token, - anon_sym_RBRACE, - aux_sym__commonmark_specifier_start_with_class_token2, - [122530] = 6, - ACTIONS(7253), 1, - sym__soft_line_ending, - ACTIONS(7255), 1, - anon_sym_RBRACE, - ACTIONS(7257), 1, - sym__whitespace, - STATE(2767), 1, - aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(2768), 1, - sym__attr_ws, - STATE(2765), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - [122550] = 6, - ACTIONS(7259), 1, - anon_sym_RBRACE, - ACTIONS(7261), 1, - sym__whitespace, - ACTIONS(7264), 1, - sym__soft_line_ending, - STATE(2767), 1, - aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(4243), 1, - sym__attr_ws, - STATE(2811), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - [122570] = 5, - ACTIONS(6436), 1, - sym__key_specifier_token, - ACTIONS(7269), 1, - aux_sym__commonmark_specifier_start_with_class_token2, - STATE(2696), 1, - sym__commonmark_key_value_specifier, - STATE(2913), 1, - sym__commonmark_specifier_start_with_kv, - ACTIONS(7267), 3, - sym__soft_line_ending, - anon_sym_RBRACE, - sym__whitespace, - [122588] = 5, - ACTIONS(7098), 1, + [122456] = 2, + ACTIONS(7024), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(7022), 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, + [122469] = 8, + ACTIONS(7299), 1, anon_sym_COLON, - ACTIONS(7100), 1, + ACTIONS(7301), 1, anon_sym_DASH, - STATE(2759), 1, + ACTIONS(7303), 1, + sym__whitespace, + ACTIONS(7305), 1, + sym__pipe_table_delimiter, + STATE(2733), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(2934), 1, + sym_pipe_table_delimiter_row, + STATE(2945), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3016), 1, + STATE(3603), 1, sym_pipe_table_delimiter_cell, - ACTIONS(7189), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [122606] = 4, - ACTIONS(7271), 1, + [122494] = 1, + ACTIONS(2535), 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, + [122504] = 4, + ACTIONS(6908), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6910), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3150), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + ACTIONS(7311), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [122520] = 4, + ACTIONS(7313), 1, sym__whitespace, - ACTIONS(7274), 1, + ACTIONS(7315), 1, sym__soft_line_ending, - STATE(2770), 2, + STATE(2797), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - ACTIONS(6864), 3, + ACTIONS(6938), 3, sym__key_specifier_token, anon_sym_RBRACE, aux_sym__commonmark_specifier_start_with_class_token2, - [122622] = 2, - ACTIONS(7277), 1, - sym__whitespace, - ACTIONS(2537), 6, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_DASH, - anon_sym_RBRACE, - aux_sym_commonmark_specifier_token1, - aux_sym__commonmark_specifier_start_with_class_token1, - [122634] = 6, - ACTIONS(7243), 1, - sym__code_line, - ACTIONS(7245), 1, - sym__line_ending, - ACTIONS(7279), 1, - sym__block_close, - ACTIONS(7281), 1, - sym__fenced_code_block_end_backtick, - STATE(3652), 1, - sym_code_fence_content, - STATE(2835), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [122654] = 4, - ACTIONS(7283), 1, + [122536] = 4, + ACTIONS(7317), 1, sym__whitespace, - ACTIONS(7285), 1, + ACTIONS(7319), 1, sym_block_continuation, - ACTIONS(2323), 2, + ACTIONS(2405), 2, aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(2321), 3, + ACTIONS(2403), 3, sym__value_specifier_token, anon_sym_SQUOTE_SQUOTE, anon_sym_DQUOTE_DQUOTE, - [122670] = 6, - ACTIONS(7253), 1, - sym__soft_line_ending, - ACTIONS(7255), 1, + [122552] = 4, + ACTIONS(6908), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6910), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3197), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + ACTIONS(6906), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [122568] = 6, + ACTIONS(7321), 1, anon_sym_RBRACE, - ACTIONS(7257), 1, + ACTIONS(7323), 1, sym__whitespace, - STATE(2767), 1, + ACTIONS(7326), 1, + sym__soft_line_ending, + STATE(2772), 1, aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(3110), 1, + STATE(3872), 1, sym__attr_ws, - STATE(2765), 2, + STATE(2915), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - [122690] = 6, - ACTIONS(7243), 1, + [122588] = 6, + ACTIONS(7329), 1, sym__code_line, - ACTIONS(7245), 1, + ACTIONS(7331), 1, sym__line_ending, - ACTIONS(7287), 1, + ACTIONS(7333), 1, sym__block_close, - ACTIONS(7289), 1, + ACTIONS(7335), 1, sym__fenced_code_block_end_backtick, - STATE(3584), 1, + STATE(3666), 1, sym_code_fence_content, - STATE(2835), 2, + STATE(2842), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [122710] = 5, - ACTIONS(7098), 1, - anon_sym_COLON, - ACTIONS(7100), 1, - anon_sym_DASH, - STATE(2759), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3004), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(7291), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [122728] = 1, - ACTIONS(2541), 7, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_DASH, - anon_sym_RBRACE, - aux_sym_commonmark_specifier_token1, - aux_sym__commonmark_specifier_start_with_class_token1, - sym__whitespace, - [122738] = 4, - ACTIONS(2323), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(7293), 1, - sym__whitespace, - ACTIONS(7295), 1, - sym_block_continuation, - ACTIONS(2321), 4, - sym__soft_line_ending, - sym__shortcode_open, + [122608] = 5, + ACTIONS(7337), 1, aux_sym_target_token2, + ACTIONS(7342), 1, + sym__shortcode_open, + STATE(2774), 1, + aux_sym_target_repeat1, + STATE(3103), 1, + sym_shortcode, + ACTIONS(7340), 3, + sym__soft_line_ending, anon_sym_RPAREN, - [122754] = 4, - ACTIONS(6914), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6916), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(3571), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - ACTIONS(7297), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [122770] = 4, - ACTIONS(6914), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6916), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(3599), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - ACTIONS(6932), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [122786] = 6, - ACTIONS(7243), 1, + sym__whitespace, + [122626] = 6, + ACTIONS(7329), 1, sym__code_line, - ACTIONS(7245), 1, + ACTIONS(7331), 1, sym__line_ending, - ACTIONS(7299), 1, + ACTIONS(7345), 1, sym__block_close, - ACTIONS(7301), 1, + ACTIONS(7347), 1, sym__fenced_code_block_end_backtick, - STATE(3668), 1, + STATE(3570), 1, sym_code_fence_content, - STATE(2835), 2, + STATE(2842), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [122806] = 6, - ACTIONS(7243), 1, + [122646] = 6, + ACTIONS(7329), 1, sym__code_line, - ACTIONS(7245), 1, + ACTIONS(7331), 1, sym__line_ending, - ACTIONS(7303), 1, + ACTIONS(7349), 1, sym__block_close, - ACTIONS(7305), 1, + ACTIONS(7351), 1, sym__fenced_code_block_end_backtick, - STATE(3648), 1, + STATE(3660), 1, sym_code_fence_content, - STATE(2835), 2, + STATE(2842), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [122826] = 6, - ACTIONS(7253), 1, - sym__soft_line_ending, - ACTIONS(7257), 1, + [122666] = 4, + ACTIONS(2405), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(7353), 1, sym__whitespace, - ACTIONS(7307), 1, + ACTIONS(7355), 1, + sym_block_continuation, + ACTIONS(2403), 4, + sym__soft_line_ending, + sym__shortcode_open, + aux_sym_target_token2, + anon_sym_RPAREN, + [122682] = 6, + ACTIONS(7315), 1, + sym__soft_line_ending, + ACTIONS(7357), 1, anon_sym_RBRACE, - STATE(2774), 1, - aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(3070), 1, + ACTIONS(7359), 1, + sym__whitespace, + STATE(2782), 1, sym__attr_ws, - STATE(2765), 2, + STATE(2786), 1, + aux_sym__commonmark_specifier_start_with_class_repeat1, + STATE(2769), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - [122846] = 6, - ACTIONS(7243), 1, + [122702] = 2, + ACTIONS(7361), 1, + sym__whitespace, + ACTIONS(2783), 6, + sym__soft_line_ending, + sym__key_specifier_token, + anon_sym_DASH, + anon_sym_RBRACE, + aux_sym_commonmark_specifier_token1, + aux_sym__commonmark_specifier_start_with_class_token1, + [122714] = 6, + ACTIONS(7329), 1, sym__code_line, - ACTIONS(7245), 1, + ACTIONS(7331), 1, sym__line_ending, - ACTIONS(7309), 1, + ACTIONS(7363), 1, sym__block_close, - ACTIONS(7311), 1, + ACTIONS(7365), 1, sym__fenced_code_block_end_backtick, - STATE(3635), 1, + STATE(3550), 1, sym_code_fence_content, - STATE(2835), 2, + STATE(2842), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [122866] = 6, - ACTIONS(7243), 1, + [122734] = 6, + ACTIONS(7329), 1, sym__code_line, - ACTIONS(7245), 1, + ACTIONS(7331), 1, sym__line_ending, - ACTIONS(7313), 1, + ACTIONS(7367), 1, sym__block_close, - ACTIONS(7315), 1, + ACTIONS(7369), 1, sym__fenced_code_block_end_backtick, - STATE(3533), 1, + STATE(3581), 1, sym_code_fence_content, - STATE(2835), 2, + STATE(2842), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [122886] = 5, - ACTIONS(6436), 1, + [122754] = 5, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(7269), 1, + ACTIONS(7373), 1, aux_sym__commonmark_specifier_start_with_class_token2, - STATE(2696), 1, + STATE(2740), 1, sym__commonmark_key_value_specifier, - STATE(2903), 1, + STATE(2872), 1, sym__commonmark_specifier_start_with_kv, - ACTIONS(7255), 3, + ACTIONS(7371), 3, sym__soft_line_ending, anon_sym_RBRACE, sym__whitespace, - [122904] = 1, - ACTIONS(2681), 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, - [122914] = 6, - ACTIONS(7253), 1, - sym__soft_line_ending, - ACTIONS(7257), 1, - sym__whitespace, - ACTIONS(7307), 1, - anon_sym_RBRACE, - STATE(2766), 1, - aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(2786), 1, - sym__attr_ws, - STATE(2765), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - [122934] = 5, - ACTIONS(7098), 1, + [122772] = 6, + ACTIONS(7329), 1, + sym__code_line, + ACTIONS(7331), 1, + sym__line_ending, + ACTIONS(7375), 1, + sym__block_close, + ACTIONS(7377), 1, + sym__fenced_code_block_end_backtick, + STATE(3574), 1, + sym_code_fence_content, + STATE(2842), 2, + sym__newline, + aux_sym_code_fence_content_repeat1, + [122792] = 5, + ACTIONS(7128), 1, anon_sym_COLON, - ACTIONS(7100), 1, + ACTIONS(7130), 1, anon_sym_DASH, STATE(2759), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3029), 1, + STATE(2979), 1, sym_pipe_table_delimiter_cell, - ACTIONS(7104), 3, + ACTIONS(7134), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [122952] = 6, - ACTIONS(7243), 1, - sym__code_line, - ACTIONS(7245), 1, - sym__line_ending, - ACTIONS(7317), 1, - sym__block_close, - ACTIONS(7319), 1, - sym__fenced_code_block_end_backtick, - STATE(3656), 1, - sym_code_fence_content, - STATE(2835), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [122972] = 4, - ACTIONS(6854), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6856), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(3131), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - ACTIONS(6852), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [122988] = 6, - ACTIONS(7243), 1, + [122810] = 6, + ACTIONS(7315), 1, + sym__soft_line_ending, + ACTIONS(7359), 1, + sym__whitespace, + ACTIONS(7371), 1, + anon_sym_RBRACE, + STATE(2772), 1, + aux_sym__commonmark_specifier_start_with_class_repeat1, + STATE(2984), 1, + sym__attr_ws, + STATE(2769), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + [122830] = 6, + ACTIONS(7315), 1, + sym__soft_line_ending, + ACTIONS(7359), 1, + sym__whitespace, + ACTIONS(7371), 1, + anon_sym_RBRACE, + STATE(2772), 1, + aux_sym__commonmark_specifier_start_with_class_repeat1, + STATE(2795), 1, + sym__attr_ws, + STATE(2769), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + [122850] = 1, + ACTIONS(2787), 7, + sym__soft_line_ending, + sym__key_specifier_token, + anon_sym_DASH, + anon_sym_RBRACE, + aux_sym_commonmark_specifier_token1, + aux_sym__commonmark_specifier_start_with_class_token1, + sym__whitespace, + [122860] = 6, + ACTIONS(7329), 1, sym__code_line, - ACTIONS(7245), 1, + ACTIONS(7331), 1, sym__line_ending, - ACTIONS(7321), 1, + ACTIONS(7379), 1, sym__block_close, - ACTIONS(7323), 1, + ACTIONS(7381), 1, sym__fenced_code_block_end_backtick, - STATE(3612), 1, + STATE(3592), 1, sym_code_fence_content, - STATE(2835), 2, + STATE(2842), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [123008] = 4, - ACTIONS(6854), 1, + [122880] = 6, + ACTIONS(7315), 1, + sym__soft_line_ending, + ACTIONS(7357), 1, + anon_sym_RBRACE, + ACTIONS(7359), 1, + sym__whitespace, + STATE(2785), 1, + aux_sym__commonmark_specifier_start_with_class_repeat1, + STATE(2960), 1, + sym__attr_ws, + STATE(2769), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + [122900] = 4, + ACTIONS(6960), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6856), 1, + ACTIONS(6962), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3130), 2, + STATE(3674), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - ACTIONS(7325), 3, + ACTIONS(7018), 3, sym__value_specifier_token, anon_sym_SQUOTE_SQUOTE, anon_sym_DQUOTE_DQUOTE, - [123024] = 5, - ACTIONS(7327), 1, - aux_sym_target_token2, - ACTIONS(7332), 1, - sym__shortcode_open, - STATE(2794), 1, - aux_sym_target_repeat1, - STATE(3047), 1, - sym_shortcode, - ACTIONS(7330), 3, - sym__soft_line_ending, - anon_sym_RPAREN, - sym__whitespace, - [123042] = 1, - ACTIONS(2537), 7, + [122916] = 1, + ACTIONS(2783), 7, sym__soft_line_ending, sym__key_specifier_token, anon_sym_DASH, @@ -182115,18017 +182440,18204 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_commonmark_specifier_token1, aux_sym__commonmark_specifier_start_with_class_token1, sym__whitespace, - [123052] = 6, - ACTIONS(6820), 1, - sym__soft_line_ending, - ACTIONS(7335), 1, - sym__whitespace, - STATE(2533), 1, - sym__shortcode_sep, - STATE(2659), 1, - sym__soft_line_break, - STATE(2905), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3060), 1, - aux_sym_shortcode_escaped_repeat2, - [123071] = 6, - ACTIONS(233), 1, + [122926] = 5, + ACTIONS(7128), 1, + anon_sym_COLON, + ACTIONS(7130), 1, + anon_sym_DASH, + STATE(2759), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(3023), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(7258), 3, sym__line_ending, - ACTIONS(7337), 1, sym__eof, - ACTIONS(7339), 1, sym__pipe_table_line_ending, - STATE(153), 1, - sym__pipe_table_newline, - STATE(251), 1, - sym__newline, - STATE(3014), 1, - aux_sym_pipe_table_repeat1, - [123090] = 5, - ACTIONS(7341), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(7343), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7346), 1, - aux_sym__commonmark_double_quote_string_token4, - ACTIONS(7349), 1, - sym__shortcode_open, - STATE(2798), 2, - sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [123107] = 5, - ACTIONS(7354), 1, - sym__soft_line_ending, - ACTIONS(7356), 1, - sym__code_span_close, - STATE(2872), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, - sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [123124] = 6, - ACTIONS(7245), 1, - sym__line_ending, - ACTIONS(7358), 1, - anon_sym_LBRACE, - ACTIONS(7360), 1, - sym__commonmark_naked_value, - ACTIONS(7362), 1, - sym__whitespace, - STATE(2785), 1, - sym__newline, - STATE(3554), 1, - sym_attribute_specifier, - [123143] = 5, - ACTIONS(7364), 1, + [122944] = 4, + ACTIONS(6960), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(7366), 1, - aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7369), 1, - aux_sym__commonmark_single_quote_string_token4, - ACTIONS(7372), 1, - sym__shortcode_open, - STATE(2801), 2, - sym_shortcode, - aux_sym__commonmark_single_quote_string_repeat1, - [123160] = 5, - ACTIONS(7375), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(7377), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7379), 1, - aux_sym__commonmark_double_quote_string_token4, - ACTIONS(7381), 1, - sym__shortcode_open, - STATE(2803), 2, - sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [123177] = 5, - ACTIONS(7381), 1, - sym__shortcode_open, - ACTIONS(7383), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(7385), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7387), 1, - aux_sym__commonmark_double_quote_string_token4, - STATE(2798), 2, - sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [123194] = 5, - ACTIONS(7354), 1, - sym__soft_line_ending, - ACTIONS(7389), 1, - sym__code_span_close, - STATE(2872), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, - sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [123211] = 2, - ACTIONS(2543), 1, + ACTIONS(6962), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(2541), 5, - sym__soft_line_ending, - sym__shortcode_open, - aux_sym_target_token2, - anon_sym_RPAREN, - sym__whitespace, - [123222] = 5, - ACTIONS(7354), 1, - sym__soft_line_ending, - ACTIONS(7391), 1, - sym__code_span_close, - STATE(2872), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, - sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [123239] = 6, - ACTIONS(117), 1, + STATE(3609), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + ACTIONS(7383), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [122960] = 5, + ACTIONS(7128), 1, + anon_sym_COLON, + ACTIONS(7130), 1, + anon_sym_DASH, + STATE(2759), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(2938), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(7385), 3, sym__line_ending, - ACTIONS(7339), 1, - sym__pipe_table_line_ending, - ACTIONS(7393), 1, sym__eof, - STATE(150), 1, - sym__pipe_table_newline, - STATE(490), 1, - sym__newline, - STATE(3014), 1, - aux_sym_pipe_table_repeat1, - [123258] = 5, - ACTIONS(6436), 1, + sym__pipe_table_line_ending, + [122978] = 5, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(7395), 1, - anon_sym_RBRACE, - ACTIONS(7397), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - STATE(2696), 1, + ACTIONS(7373), 1, + aux_sym__commonmark_specifier_start_with_class_token2, + STATE(2740), 1, sym__commonmark_key_value_specifier, - STATE(2827), 2, - sym__commonmark_specifier_start_with_class, + STATE(2884), 1, sym__commonmark_specifier_start_with_kv, - [123275] = 4, - ACTIONS(7399), 1, + ACTIONS(7387), 3, + sym__soft_line_ending, + anon_sym_RBRACE, + sym__whitespace, + [122996] = 6, + ACTIONS(7329), 1, sym__code_line, - ACTIONS(7402), 1, + ACTIONS(7331), 1, sym__line_ending, - ACTIONS(7405), 2, + ACTIONS(7389), 1, sym__block_close, + ACTIONS(7391), 1, sym__fenced_code_block_end_backtick, - STATE(2809), 2, + STATE(3653), 1, + sym_code_fence_content, + STATE(2842), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [123290] = 5, - ACTIONS(7354), 1, - sym__soft_line_ending, - ACTIONS(7407), 1, - sym__code_span_close, - STATE(2872), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, - sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [123307] = 4, - ACTIONS(7409), 1, + [123016] = 4, + ACTIONS(7393), 1, sym__whitespace, - ACTIONS(7411), 1, - sym__soft_line_ending, - ACTIONS(6942), 2, - anon_sym_RBRACE, - aux_sym__commonmark_specifier_start_with_class_token2, - STATE(2821), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - [123322] = 5, - ACTIONS(7395), 1, - anon_sym_RBRACE, - ACTIONS(7411), 1, + ACTIONS(7396), 1, sym__soft_line_ending, - ACTIONS(7413), 1, - sym__whitespace, - STATE(4210), 1, - sym__attr_ws, - STATE(2811), 2, + STATE(2797), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - [123339] = 6, - ACTIONS(7216), 1, - anon_sym_COLON, - ACTIONS(7218), 1, - anon_sym_DASH, - ACTIONS(7415), 1, - sym__whitespace, - STATE(2751), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2982), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3537), 1, - sym_pipe_table_delimiter_cell, - [123358] = 5, - ACTIONS(6436), 1, - sym__key_specifier_token, - ACTIONS(7397), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(7417), 1, - anon_sym_RBRACE, - STATE(2696), 1, - sym__commonmark_key_value_specifier, - STATE(2812), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - [123375] = 3, - ACTIONS(7419), 1, - sym__whitespace, - ACTIONS(7421), 1, - sym_block_continuation, - ACTIONS(2321), 4, - sym__soft_line_ending, + ACTIONS(6926), 3, sym__key_specifier_token, anon_sym_RBRACE, aux_sym__commonmark_specifier_start_with_class_token2, - [123388] = 5, - ACTIONS(7354), 1, + [123032] = 6, + ACTIONS(7329), 1, + sym__code_line, + ACTIONS(7331), 1, + sym__line_ending, + ACTIONS(7399), 1, + sym__block_close, + ACTIONS(7401), 1, + sym__fenced_code_block_end_backtick, + STATE(3568), 1, + sym_code_fence_content, + STATE(2842), 2, + sym__newline, + aux_sym_code_fence_content_repeat1, + [123052] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7423), 1, - sym__code_span_close, - STATE(2872), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, - sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [123405] = 5, - ACTIONS(6674), 1, + ACTIONS(7403), 1, sym__whitespace, - ACTIONS(6676), 1, - sym__soft_line_ending, - ACTIONS(7417), 1, - anon_sym_RBRACE, - STATE(2808), 1, - sym__attr_ws, - STATE(2692), 2, + STATE(2531), 1, + sym__shortcode_sep, + STATE(2673), 1, sym__soft_line_break, - aux_sym__attr_ws_repeat1, - [123422] = 5, - ACTIONS(7381), 1, - sym__shortcode_open, - ACTIONS(7425), 1, + STATE(2857), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(3072), 1, + aux_sym_shortcode_repeat1, + [123071] = 5, + ACTIONS(7405), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(7427), 1, + ACTIONS(7407), 1, aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7429), 1, + ACTIONS(7409), 1, aux_sym__commonmark_double_quote_string_token4, - STATE(2842), 2, + ACTIONS(7411), 1, + sym__shortcode_open, + STATE(2865), 2, sym_shortcode, aux_sym__commonmark_double_quote_string_repeat1, - [123439] = 6, - ACTIONS(117), 1, - sym__line_ending, - ACTIONS(7339), 1, - sym__pipe_table_line_ending, - ACTIONS(7431), 1, - sym__eof, - STATE(148), 1, - sym__pipe_table_newline, - STATE(480), 1, - sym__newline, - STATE(2807), 1, - aux_sym_pipe_table_repeat1, - [123458] = 5, - ACTIONS(7354), 1, - sym__soft_line_ending, - ACTIONS(7433), 1, - sym__code_span_close, - STATE(2872), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, - sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [123475] = 4, - ACTIONS(7435), 1, - sym__whitespace, - ACTIONS(7438), 1, - sym__soft_line_ending, - ACTIONS(6864), 2, - anon_sym_RBRACE, - aux_sym__commonmark_specifier_start_with_class_token2, - STATE(2821), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - [123490] = 5, - ACTIONS(7267), 1, - anon_sym_RBRACE, - ACTIONS(7411), 1, + [123088] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, ACTIONS(7413), 1, sym__whitespace, - STATE(4235), 1, - sym__attr_ws, - STATE(2811), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - [123507] = 5, - ACTIONS(7354), 1, - sym__soft_line_ending, - ACTIONS(7441), 1, - sym__code_span_close, - STATE(2872), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, - sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [123524] = 6, - ACTIONS(6820), 1, - sym__soft_line_ending, - ACTIONS(7335), 1, - sym__whitespace, - STATE(2582), 1, + STATE(2593), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2958), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2964), 1, + STATE(3019), 1, aux_sym_shortcode_escaped_repeat2, - [123543] = 5, - ACTIONS(7443), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(7445), 1, - aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7447), 1, - aux_sym__commonmark_single_quote_string_token4, - ACTIONS(7449), 1, - sym__shortcode_open, - STATE(2845), 2, - sym_shortcode, - aux_sym__commonmark_single_quote_string_repeat1, - [123560] = 5, - ACTIONS(7411), 1, - sym__soft_line_ending, - ACTIONS(7413), 1, - sym__whitespace, - ACTIONS(7451), 1, - anon_sym_RBRACE, - STATE(3863), 1, - sym__attr_ws, - STATE(2811), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - [123577] = 5, - ACTIONS(7411), 1, - sym__soft_line_ending, - ACTIONS(7413), 1, + STATE(3049), 1, + aux_sym_shortcode_escaped_repeat1, + [123107] = 6, + ACTIONS(7299), 1, + anon_sym_COLON, + ACTIONS(7301), 1, + anon_sym_DASH, + ACTIONS(7415), 1, sym__whitespace, - ACTIONS(7453), 1, - anon_sym_RBRACE, - STATE(3864), 1, - sym__attr_ws, - STATE(2811), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - [123594] = 5, - ACTIONS(6674), 1, + STATE(2718), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(2945), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(3603), 1, + sym_pipe_table_delimiter_cell, + [123126] = 4, + ACTIONS(7417), 1, sym__whitespace, - ACTIONS(6676), 1, + ACTIONS(7420), 1, sym__soft_line_ending, - ACTIONS(7455), 1, + ACTIONS(6926), 2, anon_sym_RBRACE, - STATE(2814), 1, - sym__attr_ws, - STATE(2692), 2, + aux_sym__commonmark_specifier_start_with_class_token2, + STATE(2803), 2, sym__soft_line_break, aux_sym__attr_ws_repeat1, - [123611] = 5, - ACTIONS(7354), 1, + [123141] = 5, + ACTIONS(7426), 1, sym__soft_line_ending, - ACTIONS(7457), 1, + ACTIONS(7429), 1, sym__code_span_close, - STATE(2872), 1, + STATE(2804), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7352), 2, + ACTIONS(7423), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [123628] = 1, - ACTIONS(7459), 6, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_COLON, - anon_sym_DASH, - sym__whitespace, - [123637] = 6, - ACTIONS(6820), 1, + [123158] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2525), 1, + STATE(2583), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2824), 1, + STATE(2807), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3051), 1, + STATE(3037), 1, aux_sym_shortcode_escaped_repeat2, - [123656] = 6, - ACTIONS(23), 1, - sym__line_ending, - ACTIONS(7339), 1, - sym__pipe_table_line_ending, - ACTIONS(7461), 1, - sym__eof, - STATE(146), 1, - sym__pipe_table_newline, - STATE(367), 1, - sym__newline, - STATE(2878), 1, - aux_sym_pipe_table_repeat1, - [123675] = 5, - ACTIONS(7354), 1, + [123177] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7463), 1, - sym__code_span_close, - STATE(2872), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + ACTIONS(7403), 1, + sym__whitespace, + STATE(2595), 1, + sym__shortcode_sep, + STATE(2673), 1, sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [123692] = 6, - ACTIONS(6836), 1, + STATE(2808), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(3038), 1, + aux_sym_shortcode_repeat1, + [123196] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2594), 1, + STATE(2596), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2840), 1, + STATE(3039), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3111), 1, + [123215] = 6, + ACTIONS(6904), 1, + sym__soft_line_ending, + ACTIONS(7403), 1, + sym__whitespace, + STATE(2597), 1, + sym__shortcode_sep, + STATE(2673), 1, + sym__soft_line_break, + STATE(3040), 1, aux_sym_shortcode_repeat1, - [123711] = 4, - ACTIONS(7245), 1, - sym__line_ending, - ACTIONS(7467), 1, + STATE(3049), 1, + aux_sym_shortcode_escaped_repeat1, + [123234] = 4, + ACTIONS(7431), 1, sym__code_line, - ACTIONS(7469), 2, + ACTIONS(7434), 1, + sym__line_ending, + ACTIONS(7437), 2, sym__block_close, sym__fenced_code_block_end_backtick, STATE(2809), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [123726] = 3, - ACTIONS(7471), 1, + [123249] = 6, + ACTIONS(7331), 1, + sym__line_ending, + ACTIONS(7439), 1, + anon_sym_LBRACE, + ACTIONS(7441), 1, + sym__commonmark_naked_value, + ACTIONS(7443), 1, sym__whitespace, - ACTIONS(7473), 1, - sym_block_continuation, - ACTIONS(2321), 4, - aux_sym_commonmark_specifier_token1, - anon_sym_EQ, + STATE(2783), 1, + sym__newline, + STATE(3625), 1, + sym_attribute_specifier, + [123268] = 5, + ACTIONS(7387), 1, + anon_sym_RBRACE, + ACTIONS(7445), 1, + sym__whitespace, + ACTIONS(7447), 1, + sym__soft_line_ending, + STATE(3865), 1, + sym__attr_ws, + STATE(2915), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + [123285] = 2, + ACTIONS(2785), 1, aux_sym__commonmark_double_quote_string_token1, - sym_shortcode_name, - [123739] = 5, - ACTIONS(7354), 1, + ACTIONS(2783), 5, sym__soft_line_ending, - ACTIONS(7475), 1, - sym__code_span_close, - STATE(2872), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + sym__shortcode_open, + aux_sym_target_token2, + anon_sym_RPAREN, + sym__whitespace, + [123296] = 6, + ACTIONS(6904), 1, + sym__soft_line_ending, + ACTIONS(7403), 1, + sym__whitespace, + STATE(2594), 1, + sym__shortcode_sep, + STATE(2673), 1, sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [123756] = 5, - ACTIONS(7354), 1, + STATE(3020), 1, + aux_sym_shortcode_repeat1, + STATE(3049), 1, + aux_sym_shortcode_escaped_repeat1, + [123315] = 5, + ACTIONS(7451), 1, sym__soft_line_ending, - ACTIONS(7477), 1, + ACTIONS(7453), 1, sym__code_span_close, - STATE(2872), 1, + STATE(2804), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7352), 2, + ACTIONS(7449), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [123773] = 5, - ACTIONS(7354), 1, + [123332] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7479), 1, - sym__code_span_close, - STATE(2872), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + ACTIONS(7413), 1, + sym__whitespace, + STATE(2563), 1, + sym__shortcode_sep, + STATE(2685), 1, sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [123790] = 6, - ACTIONS(6836), 1, + STATE(2817), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(3044), 1, + aux_sym_shortcode_escaped_repeat2, + [123351] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2560), 1, + STATE(2528), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(2818), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3092), 1, + STATE(3045), 1, aux_sym_shortcode_repeat1, - [123809] = 5, - ACTIONS(7354), 1, + [123370] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7481), 1, - sym__code_span_close, - STATE(2872), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + ACTIONS(7413), 1, + sym__whitespace, + STATE(2529), 1, + sym__shortcode_sep, + STATE(2685), 1, sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [123826] = 5, - ACTIONS(7381), 1, - sym__shortcode_open, - ACTIONS(7385), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7387), 1, - aux_sym__commonmark_double_quote_string_token4, - ACTIONS(7483), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(2798), 2, - sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [123843] = 3, - ACTIONS(7485), 1, + STATE(3046), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3049), 1, + aux_sym_shortcode_escaped_repeat1, + [123389] = 6, + ACTIONS(6904), 1, + sym__soft_line_ending, + ACTIONS(7403), 1, sym__whitespace, - ACTIONS(2539), 2, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(2537), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [123856] = 5, - ACTIONS(7354), 1, + STATE(2534), 1, + sym__shortcode_sep, + STATE(2673), 1, + sym__soft_line_break, + STATE(3047), 1, + aux_sym_shortcode_repeat1, + STATE(3049), 1, + aux_sym_shortcode_escaped_repeat1, + [123408] = 5, + ACTIONS(7445), 1, + sym__whitespace, + ACTIONS(7447), 1, sym__soft_line_ending, - ACTIONS(7487), 1, + ACTIONS(7455), 1, + anon_sym_RBRACE, + STATE(3705), 1, + sym__attr_ws, + STATE(2915), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + [123425] = 5, + ACTIONS(7451), 1, + sym__soft_line_ending, + ACTIONS(7457), 1, sym__code_span_close, - STATE(2872), 1, + STATE(2804), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7352), 2, + ACTIONS(7449), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [123873] = 5, - ACTIONS(7449), 1, - sym__shortcode_open, - ACTIONS(7489), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(7491), 1, - aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7493), 1, - aux_sym__commonmark_single_quote_string_token4, - STATE(2801), 2, - sym_shortcode, - aux_sym__commonmark_single_quote_string_repeat1, - [123890] = 3, - ACTIONS(2539), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(7495), 1, + [123442] = 5, + ACTIONS(7445), 1, sym__whitespace, - ACTIONS(2537), 4, + ACTIONS(7447), 1, sym__soft_line_ending, - sym__shortcode_open, - aux_sym_target_token2, - anon_sym_RPAREN, - [123903] = 5, - ACTIONS(7354), 1, + ACTIONS(7459), 1, + anon_sym_RBRACE, + STATE(3723), 1, + sym__attr_ws, + STATE(2915), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + [123459] = 5, + ACTIONS(7451), 1, sym__soft_line_ending, - ACTIONS(7497), 1, + ACTIONS(7461), 1, sym__code_span_close, - STATE(2872), 1, + STATE(2804), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7352), 2, + ACTIONS(7449), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [123920] = 2, - ACTIONS(2539), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(2537), 5, - sym__soft_line_ending, - sym__shortcode_open, - aux_sym_target_token2, - anon_sym_RPAREN, + [123476] = 5, + ACTIONS(6742), 1, sym__whitespace, - [123931] = 6, - ACTIONS(233), 1, - sym__line_ending, - ACTIONS(7339), 1, - sym__pipe_table_line_ending, - ACTIONS(7499), 1, - sym__eof, - STATE(152), 1, - sym__pipe_table_newline, - STATE(241), 1, - sym__newline, - STATE(2797), 1, - aux_sym_pipe_table_repeat1, - [123950] = 5, - ACTIONS(7354), 1, + ACTIONS(6744), 1, sym__soft_line_ending, - ACTIONS(7501), 1, + ACTIONS(7463), 1, + anon_sym_RBRACE, + STATE(2824), 1, + sym__attr_ws, + STATE(2726), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + [123493] = 5, + ACTIONS(6504), 1, + sym__key_specifier_token, + ACTIONS(7465), 1, + anon_sym_RBRACE, + ACTIONS(7467), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + STATE(2740), 1, + sym__commonmark_key_value_specifier, + STATE(2871), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [123510] = 5, + ACTIONS(7451), 1, + sym__soft_line_ending, + ACTIONS(7469), 1, sym__code_span_close, - STATE(2872), 1, + STATE(2804), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7352), 2, + ACTIONS(7449), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [123967] = 6, - ACTIONS(7245), 1, - sym__line_ending, - ACTIONS(7358), 1, - anon_sym_LBRACE, - ACTIONS(7503), 1, - sym__commonmark_naked_value, - ACTIONS(7505), 1, - sym__whitespace, - STATE(2792), 1, - sym__newline, - STATE(3575), 1, - sym_attribute_specifier, - [123986] = 6, - ACTIONS(6820), 1, + [123527] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2557), 1, + STATE(2543), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2854), 1, + STATE(2828), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2944), 1, + STATE(3050), 1, aux_sym_shortcode_escaped_repeat2, - [124005] = 6, - ACTIONS(6836), 1, + [123546] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2558), 1, + STATE(2544), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2855), 1, + STATE(2829), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2946), 1, + STATE(3051), 1, aux_sym_shortcode_repeat1, - [124024] = 6, - ACTIONS(6820), 1, + [123565] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2559), 1, + STATE(2545), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2947), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - [124043] = 6, - ACTIONS(6836), 1, + STATE(3052), 1, + aux_sym_shortcode_escaped_repeat2, + [123584] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2561), 1, + STATE(2546), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2948), 1, - aux_sym_shortcode_repeat1, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - [124062] = 6, - ACTIONS(7245), 1, + STATE(3053), 1, + aux_sym_shortcode_repeat1, + [123603] = 5, + ACTIONS(6504), 1, + sym__key_specifier_token, + ACTIONS(7467), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(7471), 1, + anon_sym_RBRACE, + STATE(2740), 1, + sym__commonmark_key_value_specifier, + STATE(2821), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [123620] = 6, + ACTIONS(7331), 1, sym__line_ending, - ACTIONS(7358), 1, + ACTIONS(7439), 1, anon_sym_LBRACE, - ACTIONS(7507), 1, + ACTIONS(7473), 1, sym__commonmark_naked_value, - ACTIONS(7509), 1, + ACTIONS(7475), 1, sym__whitespace, - STATE(2775), 1, + STATE(2796), 1, sym__newline, - STATE(3587), 1, + STATE(3588), 1, sym_attribute_specifier, - [124081] = 6, - ACTIONS(7216), 1, - anon_sym_COLON, - ACTIONS(7218), 1, - anon_sym_DASH, - ACTIONS(7415), 1, + [123639] = 3, + ACTIONS(7477), 1, sym__whitespace, - STATE(2730), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2982), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3537), 1, - sym_pipe_table_delimiter_cell, - [124100] = 6, - ACTIONS(6820), 1, + ACTIONS(7479), 1, + sym_block_continuation, + ACTIONS(2403), 4, sym__soft_line_ending, - ACTIONS(7335), 1, - sym__whitespace, - STATE(2576), 1, - sym__shortcode_sep, - STATE(2659), 1, + sym__code_span_close, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [123652] = 5, + ACTIONS(7451), 1, + sym__soft_line_ending, + ACTIONS(7481), 1, + sym__code_span_close, + STATE(2804), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, sym__soft_line_break, - STATE(2860), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2957), 1, - aux_sym_shortcode_escaped_repeat2, - [124119] = 6, - ACTIONS(6836), 1, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [123669] = 5, + ACTIONS(6742), 1, + sym__whitespace, + ACTIONS(6744), 1, sym__soft_line_ending, ACTIONS(7465), 1, + anon_sym_RBRACE, + STATE(2830), 1, + sym__attr_ws, + STATE(2726), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + [123686] = 5, + ACTIONS(7451), 1, + sym__soft_line_ending, + ACTIONS(7483), 1, + sym__code_span_close, + STATE(2804), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, + sym__soft_line_break, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [123703] = 6, + ACTIONS(6892), 1, + sym__soft_line_ending, + ACTIONS(7413), 1, sym__whitespace, - STATE(2577), 1, + STATE(2584), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2861), 1, + STATE(2843), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2959), 1, - aux_sym_shortcode_repeat1, - [124138] = 6, - ACTIONS(6820), 1, + STATE(3026), 1, + aux_sym_shortcode_escaped_repeat2, + [123722] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2578), 1, + STATE(2585), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(2839), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2960), 1, + STATE(3058), 1, aux_sym_shortcode_escaped_repeat2, - [124157] = 6, - ACTIONS(6836), 1, + [123741] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2579), 1, + STATE(2586), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(2840), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2961), 1, + STATE(3060), 1, aux_sym_shortcode_repeat1, - [124176] = 6, - ACTIONS(6820), 1, + [123760] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2588), 1, + STATE(2587), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2864), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2967), 1, + STATE(3061), 1, aux_sym_shortcode_escaped_repeat2, - [124195] = 6, - ACTIONS(6836), 1, + [123779] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2589), 1, + STATE(2588), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2865), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2969), 1, + STATE(3062), 1, aux_sym_shortcode_repeat1, - [124214] = 6, - ACTIONS(6820), 1, + [123798] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2590), 1, + STATE(2548), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(2848), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2970), 1, - aux_sym_shortcode_escaped_repeat2, - [124233] = 6, - ACTIONS(6836), 1, + STATE(3027), 1, + aux_sym_shortcode_repeat1, + [123817] = 4, + ACTIONS(7331), 1, + sym__line_ending, + ACTIONS(7485), 1, + sym__code_line, + ACTIONS(7487), 2, + sym__block_close, + sym__fenced_code_block_end_backtick, + STATE(2809), 2, + sym__newline, + aux_sym_code_fence_content_repeat1, + [123832] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2591), 1, + STATE(2553), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(3028), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2971), 1, - aux_sym_shortcode_repeat1, - [124252] = 6, - ACTIONS(6820), 1, + [123851] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2556), 1, + STATE(2554), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2868), 1, + STATE(2846), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2976), 1, + STATE(3065), 1, aux_sym_shortcode_escaped_repeat2, - [124271] = 6, - ACTIONS(6836), 1, + [123870] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2572), 1, + STATE(2527), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2869), 1, + STATE(2847), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2978), 1, + STATE(3066), 1, aux_sym_shortcode_repeat1, - [124290] = 6, - ACTIONS(6820), 1, + [123889] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2570), 1, + STATE(2598), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2979), 1, + STATE(3067), 1, aux_sym_shortcode_escaped_repeat2, - [124309] = 6, - ACTIONS(6836), 1, - sym__soft_line_ending, - ACTIONS(7465), 1, - sym__whitespace, - STATE(2571), 1, - sym__shortcode_sep, - STATE(2668), 1, - sym__soft_line_break, - STATE(2933), 1, - aux_sym_shortcode_repeat1, - STATE(2958), 1, - aux_sym_shortcode_escaped_repeat1, - [124328] = 6, - ACTIONS(6820), 1, + [123908] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2532), 1, + STATE(2564), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2932), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2987), 1, - aux_sym_shortcode_escaped_repeat2, - [124347] = 6, - ACTIONS(6836), 1, + STATE(3068), 1, + aux_sym_shortcode_repeat1, + [123927] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2548), 1, + STATE(2565), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2873), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2989), 1, + STATE(3029), 1, aux_sym_shortcode_repeat1, - [124366] = 5, - ACTIONS(7514), 1, + STATE(3049), 1, + aux_sym_shortcode_escaped_repeat1, + [123946] = 6, + ACTIONS(117), 1, + sym__line_ending, + ACTIONS(7489), 1, + sym__eof, + ACTIONS(7491), 1, + sym__pipe_table_line_ending, + STATE(140), 1, + sym__pipe_table_newline, + STATE(429), 1, + sym__newline, + STATE(2913), 1, + aux_sym_pipe_table_repeat1, + [123965] = 5, + ACTIONS(7451), 1, sym__soft_line_ending, - ACTIONS(7517), 1, + ACTIONS(7493), 1, sym__code_span_close, - STATE(2872), 1, + STATE(2804), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7511), 2, + ACTIONS(7449), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [124383] = 6, - ACTIONS(6836), 1, + [123982] = 3, + ACTIONS(7495), 1, + sym__whitespace, + ACTIONS(2785), 2, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(2783), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [123995] = 6, + ACTIONS(23), 1, + sym__line_ending, + ACTIONS(7491), 1, + sym__pipe_table_line_ending, + ACTIONS(7497), 1, + sym__eof, + STATE(135), 1, + sym__pipe_table_newline, + STATE(409), 1, + sym__newline, + STATE(2904), 1, + aux_sym_pipe_table_repeat1, + [124014] = 3, + ACTIONS(7499), 1, + sym__whitespace, + ACTIONS(7501), 1, + sym_block_continuation, + ACTIONS(2403), 4, + aux_sym_commonmark_specifier_token1, + anon_sym_EQ, + aux_sym__commonmark_double_quote_string_token1, + sym_shortcode_name, + [124027] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2534), 1, + STATE(2530), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(2856), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2991), 1, - aux_sym_shortcode_repeat1, - [124402] = 6, - ACTIONS(6820), 1, + STATE(3071), 1, + aux_sym_shortcode_escaped_repeat2, + [124046] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2549), 1, + STATE(2589), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2876), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2996), 1, + STATE(3055), 1, aux_sym_shortcode_escaped_repeat2, - [124421] = 6, - ACTIONS(6836), 1, + [124065] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2550), 1, + STATE(2532), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2877), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2998), 1, - aux_sym_shortcode_repeat1, - [124440] = 6, - ACTIONS(6820), 1, + STATE(3073), 1, + aux_sym_shortcode_escaped_repeat2, + [124084] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2566), 1, + STATE(2533), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2999), 1, - aux_sym_shortcode_escaped_repeat2, - [124459] = 6, - ACTIONS(6836), 1, + STATE(3074), 1, + aux_sym_shortcode_repeat1, + [124103] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2568), 1, + STATE(2592), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3000), 1, + STATE(2947), 1, aux_sym_shortcode_repeat1, - [124478] = 6, - ACTIONS(23), 1, + STATE(3049), 1, + aux_sym_shortcode_escaped_repeat1, + [124122] = 5, + ACTIONS(7451), 1, + sym__soft_line_ending, + ACTIONS(7503), 1, + sym__code_span_close, + STATE(2804), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, + sym__soft_line_break, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [124139] = 5, + ACTIONS(7451), 1, + sym__soft_line_ending, + ACTIONS(7505), 1, + sym__code_span_close, + STATE(2804), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, + sym__soft_line_break, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [124156] = 3, + ACTIONS(2785), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(7507), 1, + sym__whitespace, + ACTIONS(2783), 4, + sym__soft_line_ending, + sym__shortcode_open, + aux_sym_target_token2, + anon_sym_RPAREN, + [124169] = 6, + ACTIONS(7331), 1, sym__line_ending, - ACTIONS(7339), 1, - sym__pipe_table_line_ending, - ACTIONS(7519), 1, - sym__eof, - STATE(147), 1, - sym__pipe_table_newline, - STATE(377), 1, + ACTIONS(7439), 1, + anon_sym_LBRACE, + ACTIONS(7509), 1, + sym__commonmark_naked_value, + ACTIONS(7511), 1, + sym__whitespace, + STATE(2775), 1, sym__newline, - STATE(3014), 1, - aux_sym_pipe_table_repeat1, - [124497] = 6, - ACTIONS(6820), 1, + STATE(3575), 1, + sym_attribute_specifier, + [124188] = 5, + ACTIONS(7411), 1, + sym__shortcode_open, + ACTIONS(7513), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(7515), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(7517), 1, + aux_sym__commonmark_double_quote_string_token4, + STATE(2874), 2, + sym_shortcode, + aux_sym__commonmark_double_quote_string_repeat1, + [124205] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2551), 1, + STATE(2547), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2881), 1, + STATE(2855), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3007), 1, + STATE(2977), 1, aux_sym_shortcode_escaped_repeat2, - [124516] = 6, - ACTIONS(6836), 1, + [124224] = 5, + ACTIONS(7411), 1, + sym__shortcode_open, + ACTIONS(7515), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(7517), 1, + aux_sym__commonmark_double_quote_string_token4, + ACTIONS(7519), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(2874), 2, + sym_shortcode, + aux_sym__commonmark_double_quote_string_repeat1, + [124241] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2552), 1, + STATE(2539), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2882), 1, + STATE(2868), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(3076), 1, + aux_sym_shortcode_escaped_repeat2, + [124260] = 6, + ACTIONS(6904), 1, + sym__soft_line_ending, + ACTIONS(7403), 1, + sym__whitespace, + STATE(2540), 1, + sym__shortcode_sep, + STATE(2673), 1, + sym__soft_line_break, + STATE(2869), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3009), 1, + STATE(3077), 1, aux_sym_shortcode_repeat1, - [124535] = 6, - ACTIONS(6820), 1, + [124279] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2554), 1, + STATE(2541), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3010), 1, + STATE(3078), 1, aux_sym_shortcode_escaped_repeat2, - [124554] = 6, - ACTIONS(6836), 1, + [124298] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2565), 1, + STATE(2542), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3011), 1, + STATE(3079), 1, aux_sym_shortcode_repeat1, - [124573] = 1, - ACTIONS(7115), 6, + [124317] = 1, + ACTIONS(7169), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, anon_sym_COLON, anon_sym_DASH, sym__whitespace, - [124582] = 6, - ACTIONS(6820), 1, - sym__soft_line_ending, - ACTIONS(7335), 1, + [124326] = 5, + ACTIONS(7445), 1, sym__whitespace, - STATE(2581), 1, - sym__shortcode_sep, - STATE(2659), 1, - sym__soft_line_break, - STATE(2886), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3017), 1, - aux_sym_shortcode_escaped_repeat2, - [124601] = 6, - ACTIONS(6836), 1, + ACTIONS(7447), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7471), 1, + anon_sym_RBRACE, + STATE(3862), 1, + sym__attr_ws, + STATE(2915), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + [124343] = 5, + ACTIONS(7387), 1, + anon_sym_RBRACE, + ACTIONS(7445), 1, sym__whitespace, - STATE(2583), 1, - sym__shortcode_sep, - STATE(2668), 1, + ACTIONS(7447), 1, + sym__soft_line_ending, + STATE(3519), 1, + sym__attr_ws, + STATE(2915), 2, sym__soft_line_break, - STATE(2887), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3019), 1, - aux_sym_shortcode_repeat1, - [124620] = 6, - ACTIONS(6820), 1, + aux_sym__attr_ws_repeat1, + [124360] = 5, + ACTIONS(7521), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(7523), 1, + aux_sym__commonmark_single_quote_string_token3, + ACTIONS(7525), 1, + aux_sym__commonmark_single_quote_string_token4, + ACTIONS(7527), 1, + sym__shortcode_open, + STATE(2916), 2, + sym_shortcode, + aux_sym__commonmark_single_quote_string_repeat1, + [124377] = 5, + ACTIONS(7529), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(7531), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(7534), 1, + aux_sym__commonmark_double_quote_string_token4, + ACTIONS(7537), 1, + sym__shortcode_open, + STATE(2874), 2, + sym_shortcode, + aux_sym__commonmark_double_quote_string_repeat1, + [124394] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2593), 1, + STATE(2591), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(2813), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3020), 1, - aux_sym_shortcode_escaped_repeat2, - [124639] = 6, - ACTIONS(6836), 1, + STATE(3018), 1, + aux_sym_shortcode_repeat1, + [124413] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2526), 1, + STATE(2550), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(2878), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3021), 1, + STATE(3082), 1, aux_sym_shortcode_repeat1, - [124658] = 6, - ACTIONS(6820), 1, + [124432] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2524), 1, + STATE(2551), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2890), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3026), 1, + STATE(3083), 1, aux_sym_shortcode_escaped_repeat2, - [124677] = 6, - ACTIONS(6836), 1, + [124451] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2595), 1, + STATE(2552), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2891), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3028), 1, + STATE(3084), 1, aux_sym_shortcode_repeat1, - [124696] = 6, - ACTIONS(6820), 1, + [124470] = 5, + ACTIONS(7451), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7540), 1, + sym__code_span_close, + STATE(2804), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, + sym__soft_line_break, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [124487] = 6, + ACTIONS(6892), 1, + sym__soft_line_ending, + ACTIONS(7413), 1, sym__whitespace, - STATE(2562), 1, + STATE(2535), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(2893), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3113), 1, + STATE(3031), 1, aux_sym_shortcode_escaped_repeat2, - [124715] = 6, - ACTIONS(6836), 1, + [124506] = 5, + ACTIONS(7411), 1, + sym__shortcode_open, + ACTIONS(7542), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(7544), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(7546), 1, + aux_sym__commonmark_double_quote_string_token4, + STATE(2891), 2, + sym_shortcode, + aux_sym__commonmark_double_quote_string_repeat1, + [124523] = 5, + ACTIONS(7527), 1, + sym__shortcode_open, + ACTIONS(7548), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(7550), 1, + aux_sym__commonmark_single_quote_string_token3, + ACTIONS(7552), 1, + aux_sym__commonmark_single_quote_string_token4, + STATE(2892), 2, + sym_shortcode, + aux_sym__commonmark_single_quote_string_repeat1, + [124540] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2563), 1, + STATE(2536), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(2895), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3030), 1, + STATE(3116), 1, aux_sym_shortcode_repeat1, - [124734] = 5, - ACTIONS(6426), 1, + [124559] = 5, + ACTIONS(7445), 1, + sym__whitespace, + ACTIONS(7447), 1, + sym__soft_line_ending, + ACTIONS(7455), 1, + anon_sym_RBRACE, + STATE(3355), 1, + sym__attr_ws, + STATE(2915), 2, + sym__soft_line_break, + aux_sym__attr_ws_repeat1, + [124576] = 5, + ACTIONS(6494), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6436), 1, + ACTIONS(6504), 1, sym__key_specifier_token, - ACTIONS(7521), 1, + ACTIONS(7554), 1, aux_sym_commonmark_specifier_token1, - STATE(2727), 1, + STATE(2748), 1, sym__commonmark_key_value_specifier, - STATE(4215), 2, + STATE(4241), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [124751] = 6, - ACTIONS(6820), 1, + [124593] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2573), 1, + STATE(2555), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2895), 1, + STATE(2888), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3037), 1, + STATE(3086), 1, aux_sym_shortcode_escaped_repeat2, - [124770] = 6, - ACTIONS(6836), 1, + [124612] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2574), 1, + STATE(2556), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2896), 1, + STATE(2889), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3039), 1, + STATE(3087), 1, aux_sym_shortcode_repeat1, - [124789] = 6, - ACTIONS(6820), 1, + [124631] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2575), 1, + STATE(2557), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3040), 1, + STATE(3088), 1, aux_sym_shortcode_escaped_repeat2, - [124808] = 6, - ACTIONS(6836), 1, + [124650] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2580), 1, + STATE(2558), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3041), 1, + STATE(3089), 1, aux_sym_shortcode_repeat1, - [124827] = 1, - ACTIONS(7523), 6, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_COLON, - anon_sym_DASH, - sym__whitespace, - [124836] = 3, + [124669] = 5, + ACTIONS(7411), 1, + sym__shortcode_open, + ACTIONS(7556), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(7558), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(7560), 1, + aux_sym__commonmark_double_quote_string_token4, + STATE(2863), 2, + sym_shortcode, + aux_sym__commonmark_double_quote_string_repeat1, + [124686] = 5, + ACTIONS(7411), 1, + sym__shortcode_open, + ACTIONS(7515), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(7517), 1, + aux_sym__commonmark_double_quote_string_token4, + ACTIONS(7562), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(2874), 2, + sym_shortcode, + aux_sym__commonmark_double_quote_string_repeat1, + [124703] = 5, + ACTIONS(7523), 1, + aux_sym__commonmark_single_quote_string_token3, ACTIONS(7525), 1, - sym__whitespace, + aux_sym__commonmark_single_quote_string_token4, ACTIONS(7527), 1, - sym_block_continuation, - ACTIONS(2321), 4, - sym__soft_line_ending, - sym__code_span_close, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [124849] = 6, - ACTIONS(6820), 1, + sym__shortcode_open, + ACTIONS(7564), 1, + aux_sym__commonmark_single_quote_string_token1, + STATE(2916), 2, + sym_shortcode, + aux_sym__commonmark_single_quote_string_repeat1, + [124720] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2585), 1, + STATE(2537), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2901), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3050), 1, + STATE(3033), 1, aux_sym_shortcode_escaped_repeat2, - [124868] = 6, - ACTIONS(6836), 1, + STATE(3049), 1, + aux_sym_shortcode_escaped_repeat1, + [124739] = 1, + ACTIONS(7566), 6, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_COLON, + anon_sym_DASH, + sym__whitespace, + [124748] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2586), 1, + STATE(2538), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2902), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3052), 1, + STATE(3034), 1, aux_sym_shortcode_repeat1, - [124887] = 6, - ACTIONS(6820), 1, + STATE(3049), 1, + aux_sym_shortcode_escaped_repeat1, + [124767] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2587), 1, + STATE(2559), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(2898), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3053), 1, + STATE(2936), 1, aux_sym_shortcode_escaped_repeat2, - [124906] = 6, - ACTIONS(6836), 1, + [124786] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2592), 1, + STATE(2560), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(2900), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3054), 1, + STATE(3093), 1, aux_sym_shortcode_repeat1, - [124925] = 5, - ACTIONS(7267), 1, - anon_sym_RBRACE, - ACTIONS(7411), 1, + [124805] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, ACTIONS(7413), 1, sym__whitespace, - STATE(3413), 1, - sym__attr_ws, - STATE(2811), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - [124942] = 6, - ACTIONS(6836), 1, - sym__soft_line_ending, - ACTIONS(7465), 1, - sym__whitespace, - STATE(2539), 1, + STATE(2561), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2906), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3062), 1, - aux_sym_shortcode_repeat1, - [124961] = 6, - ACTIONS(6820), 1, + STATE(3094), 1, + aux_sym_shortcode_escaped_repeat2, + [124824] = 5, + ACTIONS(7451), 1, sym__soft_line_ending, - ACTIONS(7335), 1, - sym__whitespace, - STATE(2584), 1, - sym__shortcode_sep, - STATE(2659), 1, + ACTIONS(7568), 1, + sym__code_span_close, + STATE(2804), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, sym__soft_line_break, - STATE(2958), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3063), 1, - aux_sym_shortcode_escaped_repeat2, - [124980] = 6, - ACTIONS(6836), 1, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [124841] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2527), 1, + STATE(2562), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3064), 1, + STATE(3095), 1, aux_sym_shortcode_repeat1, - [124999] = 5, - ACTIONS(7381), 1, - sym__shortcode_open, - ACTIONS(7529), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(7531), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7533), 1, - aux_sym__commonmark_double_quote_string_token4, - STATE(2918), 2, - sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [125016] = 6, - ACTIONS(6820), 1, + [124860] = 3, + ACTIONS(7570), 1, + sym__whitespace, + ACTIONS(7572), 1, + sym_block_continuation, + ACTIONS(2403), 4, sym__soft_line_ending, - ACTIONS(7335), 1, + sym__key_specifier_token, + anon_sym_RBRACE, + aux_sym__commonmark_specifier_start_with_class_token2, + [124873] = 5, + ACTIONS(7451), 1, + sym__soft_line_ending, + ACTIONS(7574), 1, + sym__code_span_close, + STATE(2804), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, + sym__soft_line_break, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [124890] = 6, + ACTIONS(7299), 1, + anon_sym_COLON, + ACTIONS(7301), 1, + anon_sym_DASH, + ACTIONS(7415), 1, sym__whitespace, - STATE(2555), 1, - sym__shortcode_sep, - STATE(2659), 1, + STATE(2751), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(2945), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(3603), 1, + sym_pipe_table_delimiter_cell, + [124909] = 6, + ACTIONS(23), 1, + sym__line_ending, + ACTIONS(7491), 1, + sym__pipe_table_line_ending, + ACTIONS(7576), 1, + sym__eof, + STATE(134), 1, + sym__pipe_table_newline, + STATE(457), 1, + sym__newline, + STATE(2978), 1, + aux_sym_pipe_table_repeat1, + [124928] = 5, + ACTIONS(7451), 1, + sym__soft_line_ending, + ACTIONS(7578), 1, + sym__code_span_close, + STATE(2804), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, sym__soft_line_break, - STATE(2910), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3071), 1, - aux_sym_shortcode_escaped_repeat2, - [125035] = 6, - ACTIONS(6836), 1, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [124945] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2564), 1, + STATE(2570), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2911), 1, + STATE(2858), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3073), 1, + STATE(3092), 1, aux_sym_shortcode_repeat1, - [125054] = 6, - ACTIONS(6820), 1, + [124964] = 6, + ACTIONS(241), 1, + sym__line_ending, + ACTIONS(7491), 1, + sym__pipe_table_line_ending, + ACTIONS(7580), 1, + sym__eof, + STATE(145), 1, + sym__pipe_table_newline, + STATE(295), 1, + sym__newline, + STATE(2978), 1, + aux_sym_pipe_table_repeat1, + [124983] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2567), 1, + STATE(2566), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(2910), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3074), 1, + STATE(3097), 1, aux_sym_shortcode_escaped_repeat2, - [125073] = 6, - ACTIONS(6836), 1, + [125002] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2569), 1, + STATE(2567), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(2911), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3075), 1, + STATE(3098), 1, aux_sym_shortcode_repeat1, - [125092] = 5, - ACTIONS(7449), 1, - sym__shortcode_open, - ACTIONS(7535), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(7537), 1, - aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7539), 1, - aux_sym__commonmark_single_quote_string_token4, - STATE(2919), 2, - sym_shortcode, - aux_sym__commonmark_single_quote_string_repeat1, - [125109] = 5, - ACTIONS(7411), 1, + [125021] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, ACTIONS(7413), 1, sym__whitespace, - ACTIONS(7451), 1, - anon_sym_RBRACE, - STATE(3504), 1, - sym__attr_ws, - STATE(2811), 2, - sym__soft_line_break, - aux_sym__attr_ws_repeat1, - [125126] = 6, - ACTIONS(6820), 1, - sym__soft_line_ending, - ACTIONS(7335), 1, - sym__whitespace, - STATE(2528), 1, + STATE(2568), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2916), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3082), 1, + STATE(3099), 1, aux_sym_shortcode_escaped_repeat2, - [125145] = 6, - ACTIONS(6836), 1, + [125040] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2529), 1, + STATE(2569), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2917), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3084), 1, + STATE(3100), 1, aux_sym_shortcode_repeat1, - [125164] = 6, - ACTIONS(6820), 1, + [125059] = 5, + ACTIONS(7451), 1, sym__soft_line_ending, - ACTIONS(7335), 1, - sym__whitespace, - STATE(2530), 1, - sym__shortcode_sep, - STATE(2659), 1, + ACTIONS(7582), 1, + sym__code_span_close, + STATE(2804), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, sym__soft_line_break, - STATE(2958), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3085), 1, - aux_sym_shortcode_escaped_repeat2, - [125183] = 6, - ACTIONS(6836), 1, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [125076] = 6, + ACTIONS(117), 1, + sym__line_ending, + ACTIONS(7491), 1, + sym__pipe_table_line_ending, + ACTIONS(7584), 1, + sym__eof, + STATE(143), 1, + sym__pipe_table_newline, + STATE(439), 1, + sym__newline, + STATE(2978), 1, + aux_sym_pipe_table_repeat1, + [125095] = 2, + ACTIONS(2789), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(2787), 5, sym__soft_line_ending, - ACTIONS(7465), 1, + sym__shortcode_open, + aux_sym_target_token2, + anon_sym_RPAREN, sym__whitespace, - STATE(2531), 1, - sym__shortcode_sep, - STATE(2668), 1, + [125106] = 4, + ACTIONS(7447), 1, + sym__soft_line_ending, + ACTIONS(7586), 1, + sym__whitespace, + ACTIONS(6938), 2, + anon_sym_RBRACE, + aux_sym__commonmark_specifier_start_with_class_token2, + STATE(2803), 2, sym__soft_line_break, - STATE(2958), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3086), 1, - aux_sym_shortcode_repeat1, - [125202] = 5, - ACTIONS(7381), 1, + aux_sym__attr_ws_repeat1, + [125121] = 5, + ACTIONS(7588), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(7590), 1, + aux_sym__commonmark_single_quote_string_token3, + ACTIONS(7593), 1, + aux_sym__commonmark_single_quote_string_token4, + ACTIONS(7596), 1, sym__shortcode_open, - ACTIONS(7385), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7387), 1, - aux_sym__commonmark_double_quote_string_token4, - ACTIONS(7541), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(2798), 2, + STATE(2916), 2, sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [125219] = 5, - ACTIONS(7449), 1, + aux_sym__commonmark_single_quote_string_repeat1, + [125138] = 5, + ACTIONS(7451), 1, + sym__soft_line_ending, + ACTIONS(7599), 1, + sym__code_span_close, + STATE(2804), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, + sym__soft_line_break, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [125155] = 5, + ACTIONS(7527), 1, sym__shortcode_open, - ACTIONS(7491), 1, + ACTIONS(7601), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(7603), 1, aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7493), 1, + ACTIONS(7605), 1, aux_sym__commonmark_single_quote_string_token4, - ACTIONS(7543), 1, - aux_sym__commonmark_single_quote_string_token1, - STATE(2801), 2, + STATE(2873), 2, sym_shortcode, aux_sym__commonmark_single_quote_string_repeat1, - [125236] = 6, - ACTIONS(6820), 1, + [125172] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2535), 1, + STATE(2590), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2922), 1, + STATE(2801), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3093), 1, + STATE(3017), 1, aux_sym_shortcode_escaped_repeat2, - [125255] = 6, - ACTIONS(6836), 1, + [125191] = 1, + ACTIONS(7607), 6, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_COLON, + anon_sym_DASH, + sym__whitespace, + [125200] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2536), 1, + STATE(2571), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2685), 1, sym__soft_line_break, STATE(2923), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3095), 1, + STATE(3104), 1, + aux_sym_shortcode_escaped_repeat2, + [125219] = 6, + ACTIONS(6904), 1, + sym__soft_line_ending, + ACTIONS(7403), 1, + sym__whitespace, + STATE(2572), 1, + sym__shortcode_sep, + STATE(2673), 1, + sym__soft_line_break, + STATE(2924), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(3105), 1, aux_sym_shortcode_repeat1, - [125274] = 6, - ACTIONS(6820), 1, + [125238] = 6, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2537), 1, + STATE(2573), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3096), 1, + STATE(3106), 1, aux_sym_shortcode_escaped_repeat2, - [125293] = 6, - ACTIONS(6836), 1, + [125257] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2538), 1, + STATE(2574), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3097), 1, + STATE(3107), 1, aux_sym_shortcode_repeat1, - [125312] = 6, - ACTIONS(6836), 1, + [125276] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2540), 1, + STATE(2575), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2925), 1, + STATE(2926), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3100), 1, + STATE(3108), 1, aux_sym_shortcode_repeat1, - [125331] = 6, - ACTIONS(6836), 1, + [125295] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2541), 1, + STATE(2576), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3101), 1, + STATE(3109), 1, aux_sym_shortcode_repeat1, - [125350] = 6, - ACTIONS(6836), 1, + [125314] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2542), 1, + STATE(2577), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2927), 1, + STATE(2928), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3104), 1, + STATE(3110), 1, aux_sym_shortcode_repeat1, - [125369] = 6, - ACTIONS(6836), 1, + [125333] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2543), 1, + STATE(2578), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3105), 1, + STATE(3111), 1, aux_sym_shortcode_repeat1, - [125388] = 6, - ACTIONS(6836), 1, + [125352] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2544), 1, + STATE(2579), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2929), 1, + STATE(2930), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3108), 1, + STATE(3112), 1, aux_sym_shortcode_repeat1, - [125407] = 6, - ACTIONS(6836), 1, + [125371] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2545), 1, + STATE(2580), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3109), 1, + STATE(3113), 1, aux_sym_shortcode_repeat1, - [125426] = 6, - ACTIONS(6836), 1, + [125390] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2546), 1, + STATE(2581), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2931), 1, + STATE(2932), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3112), 1, + STATE(3114), 1, aux_sym_shortcode_repeat1, - [125445] = 6, - ACTIONS(6836), 1, + [125409] = 6, + ACTIONS(6904), 1, sym__soft_line_ending, - ACTIONS(7465), 1, + ACTIONS(7403), 1, sym__whitespace, - STATE(2547), 1, + STATE(2582), 1, sym__shortcode_sep, - STATE(2668), 1, + STATE(2673), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(3049), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2980), 1, + STATE(3115), 1, aux_sym_shortcode_repeat1, + [125428] = 5, + ACTIONS(7451), 1, + sym__soft_line_ending, + ACTIONS(7609), 1, + sym__code_span_close, + STATE(2804), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, + sym__soft_line_break, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [125445] = 6, + ACTIONS(241), 1, + sym__line_ending, + ACTIONS(7491), 1, + sym__pipe_table_line_ending, + ACTIONS(7611), 1, + sym__eof, + STATE(144), 1, + sym__pipe_table_newline, + STATE(285), 1, + sym__newline, + STATE(2907), 1, + aux_sym_pipe_table_repeat1, [125464] = 6, - ACTIONS(6820), 1, + ACTIONS(6892), 1, sym__soft_line_ending, - ACTIONS(7335), 1, + ACTIONS(7413), 1, sym__whitespace, - STATE(2553), 1, + STATE(2549), 1, sym__shortcode_sep, - STATE(2659), 1, + STATE(2685), 1, sym__soft_line_break, - STATE(2958), 1, + STATE(2877), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2990), 1, + STATE(3081), 1, aux_sym_shortcode_escaped_repeat2, [125483] = 5, - ACTIONS(7545), 1, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(2943), 1, - aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3057), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3472), 1, sym__soft_line_break, - STATE(3441), 1, + STATE(3498), 1, sym__shortcode_sep, - [125499] = 4, - ACTIONS(7549), 1, + [125499] = 5, + ACTIONS(7331), 1, + sym__line_ending, + ACTIONS(7439), 1, + anon_sym_LBRACE, + ACTIONS(7617), 1, + sym__commonmark_naked_value, + STATE(2798), 1, + sym__newline, + STATE(3547), 1, + sym_attribute_specifier, + [125515] = 3, + ACTIONS(7619), 1, + sym__whitespace, + ACTIONS(7623), 1, + sym__pipe_table_delimiter, + ACTIONS(7621), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [125527] = 5, + ACTIONS(3261), 1, + sym__soft_line_ending, + ACTIONS(7625), 1, + aux_sym_pandoc_span_token1, + ACTIONS(7627), 1, + aux_sym_target_token1, + STATE(939), 1, + sym__soft_line_break, + STATE(2944), 1, + aux_sym__inlines_repeat1, + [125543] = 2, + ACTIONS(7629), 1, + sym__whitespace, + ACTIONS(2783), 4, + sym__soft_line_ending, + sym__key_specifier_token, + anon_sym_RBRACE, + aux_sym__commonmark_specifier_start_with_class_token2, + [125553] = 1, + ACTIONS(7631), 5, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__pipe_table_delimiter, + sym__whitespace, + [125561] = 4, + ACTIONS(7633), 1, aux_sym_inline_note_token1, - ACTIONS(7551), 1, + ACTIONS(7635), 1, sym__whitespace, - ACTIONS(7553), 1, + ACTIONS(7637), 1, + sym__soft_line_ending, + STATE(4238), 2, + sym__soft_line_break, + sym__inline_whitespace, + [125575] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(3909), 2, + ACTIONS(7639), 1, + aux_sym_inline_note_token1, + ACTIONS(7641), 1, + sym__whitespace, + STATE(4499), 2, sym__soft_line_break, sym__inline_whitespace, - [125513] = 5, - ACTIONS(3021), 1, + [125589] = 5, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7555), 1, + ACTIONS(7643), 1, aux_sym_pandoc_span_token1, - ACTIONS(7557), 1, + ACTIONS(7645), 1, aux_sym_target_token1, STATE(939), 1, sym__soft_line_break, - STATE(2997), 1, + STATE(2956), 1, aux_sym__inlines_repeat1, - [125529] = 4, - ACTIONS(7354), 1, - sym__soft_line_ending, - STATE(2850), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, - sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [125543] = 4, - ACTIONS(7559), 1, + [125605] = 4, + ACTIONS(7647), 1, anon_sym_COLON, - ACTIONS(7561), 1, + ACTIONS(7649), 1, anon_sym_DASH, - STATE(3056), 1, + STATE(3008), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(7232), 2, + ACTIONS(7288), 2, sym__pipe_table_delimiter, sym__whitespace, - [125557] = 5, - ACTIONS(7245), 1, - sym__line_ending, - ACTIONS(7358), 1, - anon_sym_LBRACE, - ACTIONS(7563), 1, - sym__commonmark_naked_value, - STATE(2784), 1, - sym__newline, - STATE(3578), 1, - sym_attribute_specifier, - [125573] = 4, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(7565), 1, - anon_sym_EQ, - ACTIONS(7567), 1, + [125619] = 2, + ACTIONS(7651), 1, + sym_block_continuation, + ACTIONS(2391), 4, + sym__pipe_table_delimiter, + anon_sym_COLON, + anon_sym_DASH, + sym__whitespace, + [125629] = 5, + ACTIONS(7653), 1, sym__whitespace, - STATE(3989), 2, + ACTIONS(7655), 1, + sym__soft_line_ending, + STATE(2955), 1, + aux_sym_shortcode_repeat1, + STATE(3281), 1, + sym__shortcode_sep, + STATE(3394), 1, sym__soft_line_break, - sym__inline_whitespace, - [125587] = 4, - ACTIONS(7553), 1, + [125645] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - ACTIONS(7569), 1, + ACTIONS(7657), 1, aux_sym_inline_note_token1, - ACTIONS(7571), 1, + ACTIONS(7659), 1, sym__whitespace, - STATE(4147), 2, + STATE(4039), 2, sym__soft_line_break, sym__inline_whitespace, - [125601] = 3, - ACTIONS(6436), 1, + [125659] = 3, + ACTIONS(6504), 1, sym__key_specifier_token, - STATE(3116), 1, + STATE(3217), 1, sym__commonmark_key_value_specifier, - ACTIONS(7573), 3, + ACTIONS(7088), 3, sym__soft_line_ending, anon_sym_RBRACE, sym__whitespace, - [125613] = 5, - ACTIONS(7575), 1, - aux_sym_inline_note_token1, - ACTIONS(7577), 1, - sym__whitespace, - ACTIONS(7579), 1, + [125671] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(938), 1, - sym__soft_line_break, - STATE(2942), 1, - aux_sym__inlines_repeat1, - [125629] = 5, - ACTIONS(7582), 1, + ACTIONS(7661), 1, + aux_sym_inline_note_token1, + ACTIONS(7663), 1, sym__whitespace, - ACTIONS(7585), 1, - sym__soft_line_ending, - STATE(2943), 1, - aux_sym_shortcode_repeat1, - STATE(3527), 1, - sym__shortcode_sep, - STATE(3541), 1, + STATE(4132), 2, sym__soft_line_break, - [125645] = 5, - ACTIONS(7588), 1, - sym__whitespace, - ACTIONS(7590), 1, + sym__inline_whitespace, + [125685] = 3, + ACTIONS(6504), 1, + sym__key_specifier_token, + STATE(3217), 1, + sym__commonmark_key_value_specifier, + ACTIONS(7665), 3, sym__soft_line_ending, - STATE(3008), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3434), 1, - sym__shortcode_sep, - STATE(3455), 1, - sym__soft_line_break, - [125661] = 2, - ACTIONS(7592), 1, - sym_block_continuation, - ACTIONS(2315), 4, - sym__pipe_table_delimiter, - anon_sym_COLON, - anon_sym_DASH, - sym__whitespace, - [125671] = 5, - ACTIONS(7545), 1, + anon_sym_RBRACE, sym__whitespace, - ACTIONS(7547), 1, + [125697] = 1, + ACTIONS(2783), 5, sym__soft_line_ending, - STATE(2943), 1, - aux_sym_shortcode_repeat1, - STATE(3372), 1, - sym__soft_line_break, - STATE(3436), 1, - sym__shortcode_sep, - [125687] = 5, - ACTIONS(7588), 1, + sym__key_specifier_token, + anon_sym_RBRACE, + aux_sym__commonmark_specifier_start_with_class_token2, sym__whitespace, - ACTIONS(7590), 1, + [125705] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(3008), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3455), 1, - sym__soft_line_break, - STATE(3460), 1, - sym__shortcode_sep, - [125703] = 5, - ACTIONS(7545), 1, + ACTIONS(7667), 1, + aux_sym_inline_note_token1, + ACTIONS(7669), 1, sym__whitespace, - ACTIONS(7547), 1, - sym__soft_line_ending, - STATE(2943), 1, - aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3866), 2, sym__soft_line_break, - STATE(3461), 1, - sym__shortcode_sep, + sym__inline_whitespace, [125719] = 4, - ACTIONS(7553), 1, + ACTIONS(7637), 1, sym__soft_line_ending, - ACTIONS(7594), 1, + ACTIONS(7671), 1, aux_sym_inline_note_token1, - ACTIONS(7596), 1, + ACTIONS(7673), 1, sym__whitespace, - STATE(4043), 2, + STATE(4005), 2, sym__soft_line_break, sym__inline_whitespace, - [125733] = 4, - ACTIONS(7354), 1, + [125733] = 5, + ACTIONS(7675), 1, + sym__whitespace, + ACTIONS(7678), 1, sym__soft_line_ending, - STATE(2799), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(2955), 1, + aux_sym_shortcode_repeat1, + STATE(3539), 1, + sym__shortcode_sep, + STATE(3585), 1, sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [125747] = 4, - ACTIONS(7553), 1, + [125749] = 5, + ACTIONS(7681), 1, + aux_sym_pandoc_span_token1, + ACTIONS(7683), 1, + aux_sym_target_token1, + ACTIONS(7685), 1, sym__soft_line_ending, - ACTIONS(7598), 1, - aux_sym_inline_note_token1, - ACTIONS(7600), 1, - sym__whitespace, - STATE(4059), 2, + STATE(939), 1, sym__soft_line_break, - sym__inline_whitespace, - [125761] = 5, - ACTIONS(7245), 1, - sym__line_ending, - ACTIONS(7358), 1, - anon_sym_LBRACE, - ACTIONS(7602), 1, - sym__commonmark_naked_value, - STATE(2790), 1, - sym__newline, - STATE(3592), 1, - sym_attribute_specifier, - [125777] = 3, - ACTIONS(7604), 1, + STATE(2956), 1, + aux_sym__inlines_repeat1, + [125765] = 1, + ACTIONS(6384), 5, + sym__soft_line_ending, + sym__shortcode_open, + aux_sym_target_token2, + anon_sym_RPAREN, sym__whitespace, - ACTIONS(7606), 1, - sym__pipe_table_delimiter, - ACTIONS(7291), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [125789] = 3, - ACTIONS(7608), 1, + [125773] = 3, + ACTIONS(7688), 1, sym__whitespace, - ACTIONS(7610), 1, + ACTIONS(7690), 1, sym__pipe_table_delimiter, - ACTIONS(2913), 3, + ACTIONS(2971), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [125801] = 1, - ACTIONS(6312), 5, + [125785] = 1, + ACTIONS(6132), 5, sym__soft_line_ending, sym__shortcode_open, aux_sym_target_token2, anon_sym_RPAREN, sym__whitespace, - [125809] = 3, - ACTIONS(7612), 1, + [125793] = 5, + ACTIONS(6504), 1, + sym__key_specifier_token, + ACTIONS(7371), 1, + anon_sym_RBRACE, + ACTIONS(7373), 1, + aux_sym__commonmark_specifier_start_with_class_token2, + STATE(2740), 1, + sym__commonmark_key_value_specifier, + STATE(2811), 1, + sym__commonmark_specifier_start_with_kv, + [125809] = 4, + ACTIONS(7637), 1, + sym__soft_line_ending, + ACTIONS(7692), 1, + aux_sym_inline_note_token1, + ACTIONS(7694), 1, sym__whitespace, - ACTIONS(7614), 1, - sym__pipe_table_delimiter, - ACTIONS(2913), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [125821] = 5, - ACTIONS(7588), 1, + STATE(3742), 2, + sym__soft_line_break, + sym__inline_whitespace, + [125823] = 1, + ACTIONS(6388), 5, + sym__soft_line_ending, + sym__shortcode_open, + aux_sym_target_token2, + anon_sym_RPAREN, sym__whitespace, - ACTIONS(7590), 1, + [125831] = 1, + ACTIONS(2787), 5, sym__soft_line_ending, - STATE(3008), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3346), 1, - sym__shortcode_sep, - STATE(3455), 1, - sym__soft_line_break, - [125837] = 5, - ACTIONS(7616), 1, + sym__key_specifier_token, + anon_sym_RBRACE, + aux_sym__commonmark_specifier_start_with_class_token2, sym__whitespace, - ACTIONS(7619), 1, + [125839] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(2635), 1, - sym__shortcode_sep, - STATE(2715), 1, + ACTIONS(7696), 1, + aux_sym_inline_note_token1, + ACTIONS(7698), 1, + sym__whitespace, + STATE(3783), 2, sym__soft_line_break, - STATE(2958), 1, - aux_sym_shortcode_escaped_repeat1, + sym__inline_whitespace, [125853] = 5, - ACTIONS(7545), 1, + ACTIONS(7299), 1, + anon_sym_COLON, + ACTIONS(7301), 1, + anon_sym_DASH, + ACTIONS(7700), 1, + sym__pipe_table_delimiter, + STATE(2945), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(3549), 1, + sym_pipe_table_delimiter_cell, + [125869] = 4, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(7702), 1, + anon_sym_EQ, + ACTIONS(7704), 1, sym__whitespace, - ACTIONS(7547), 1, + STATE(4259), 2, + sym__soft_line_break, + sym__inline_whitespace, + [125883] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - STATE(2943), 1, - aux_sym_shortcode_repeat1, - STATE(3349), 1, - sym__shortcode_sep, - STATE(3372), 1, + STATE(946), 1, sym__soft_line_break, - [125869] = 5, - ACTIONS(7588), 1, + STATE(2995), 1, + aux_sym__inlines_repeat1, + ACTIONS(7645), 2, + sym__line_ending, + sym__eof, + [125897] = 4, + ACTIONS(7637), 1, + sym__soft_line_ending, + ACTIONS(7706), 1, + aux_sym_inline_note_token1, + ACTIONS(7708), 1, sym__whitespace, - ACTIONS(7590), 1, + STATE(3747), 2, + sym__soft_line_break, + sym__inline_whitespace, + [125911] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - STATE(3008), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3379), 1, - sym__shortcode_sep, - STATE(3455), 1, + STATE(946), 1, sym__soft_line_break, - [125885] = 5, - ACTIONS(7545), 1, - sym__whitespace, - ACTIONS(7547), 1, + STATE(2967), 1, + aux_sym__inlines_repeat1, + ACTIONS(7627), 2, + sym__line_ending, + sym__eof, + [125925] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(2943), 1, - aux_sym_shortcode_repeat1, - STATE(3372), 1, + ACTIONS(7710), 1, + aux_sym_inline_note_token1, + ACTIONS(7712), 1, + sym__whitespace, + STATE(3976), 2, sym__soft_line_break, - STATE(3385), 1, - sym__shortcode_sep, - [125901] = 4, - ACTIONS(7354), 1, + sym__inline_whitespace, + [125939] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(2804), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + ACTIONS(7714), 1, + aux_sym_inline_note_token1, + ACTIONS(7716), 1, + sym__whitespace, + STATE(4014), 2, sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [125915] = 3, - ACTIONS(7610), 1, + sym__inline_whitespace, + [125953] = 3, + ACTIONS(7690), 1, sym__pipe_table_delimiter, - ACTIONS(7622), 1, + ACTIONS(7718), 1, sym__whitespace, - ACTIONS(3015), 3, + ACTIONS(7720), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [125927] = 5, - ACTIONS(7588), 1, + [125965] = 3, + ACTIONS(7722), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7724), 1, + sym__pipe_table_delimiter, + ACTIONS(7258), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [125977] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(3008), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3386), 1, - sym__shortcode_sep, - STATE(3455), 1, + ACTIONS(7726), 1, + aux_sym_inline_note_token1, + ACTIONS(7728), 1, + sym__whitespace, + STATE(4144), 2, sym__soft_line_break, - [125943] = 1, - ACTIONS(6316), 5, + sym__inline_whitespace, + [125991] = 5, + ACTIONS(3261), 1, sym__soft_line_ending, - sym__shortcode_open, - aux_sym_target_token2, - anon_sym_RPAREN, - sym__whitespace, - [125951] = 5, - ACTIONS(7216), 1, - anon_sym_COLON, - ACTIONS(7218), 1, - anon_sym_DASH, - ACTIONS(7624), 1, - sym__pipe_table_delimiter, - STATE(2982), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3591), 1, - sym_pipe_table_delimiter_cell, - [125967] = 5, - ACTIONS(7588), 1, + ACTIONS(7625), 1, sym__whitespace, - ACTIONS(7590), 1, - sym__soft_line_ending, - STATE(3008), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3288), 1, - sym__shortcode_sep, - STATE(3455), 1, + ACTIONS(7627), 1, + aux_sym_inline_note_token1, + STATE(937), 1, sym__soft_line_break, - [125983] = 4, - ACTIONS(7553), 1, + STATE(3102), 1, + aux_sym__inlines_repeat1, + [126007] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - ACTIONS(7626), 1, + ACTIONS(7730), 1, aux_sym_inline_note_token1, - ACTIONS(7628), 1, + ACTIONS(7732), 1, sym__whitespace, - STATE(4180), 2, + STATE(4169), 2, sym__soft_line_break, sym__inline_whitespace, - [125997] = 5, - ACTIONS(7545), 1, - sym__whitespace, - ACTIONS(7547), 1, - sym__soft_line_ending, - STATE(2943), 1, - aux_sym_shortcode_repeat1, - STATE(3308), 1, - sym__shortcode_sep, - STATE(3372), 1, - sym__soft_line_break, - [126013] = 5, - ACTIONS(7588), 1, + [126021] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3309), 1, + STATE(3399), 1, sym__shortcode_sep, - STATE(3455), 1, + STATE(3472), 1, sym__soft_line_break, - [126029] = 5, - ACTIONS(7545), 1, + [126037] = 4, + ACTIONS(7736), 1, + sym__pipe_table_line_ending, + STATE(188), 1, + sym__pipe_table_newline, + STATE(2978), 1, + aux_sym_pipe_table_repeat1, + ACTIONS(7734), 2, + sym__line_ending, + sym__eof, + [126051] = 3, + ACTIONS(7623), 1, + sym__pipe_table_delimiter, + ACTIONS(7739), 1, sym__whitespace, - ACTIONS(7547), 1, - sym__soft_line_ending, - STATE(2943), 1, - aux_sym_shortcode_repeat1, - STATE(3317), 1, - sym__shortcode_sep, - STATE(3372), 1, - sym__soft_line_break, - [126045] = 4, - ACTIONS(7354), 1, + ACTIONS(7258), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [126063] = 3, + ACTIONS(7741), 1, + sym__whitespace, + ACTIONS(7743), 1, + sym_block_continuation, + ACTIONS(2403), 3, + sym__key_specifier_token, + aux_sym_commonmark_specifier_token1, + aux_sym__commonmark_specifier_start_with_class_token1, + [126075] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(2806), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + ACTIONS(7745), 1, + aux_sym_inline_note_token1, + ACTIONS(7747), 1, + sym__whitespace, + STATE(4332), 2, sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [126059] = 4, - ACTIONS(7354), 1, + sym__inline_whitespace, + [126089] = 1, + ACTIONS(7749), 5, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__pipe_table_delimiter, + sym__whitespace, + [126097] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(2838), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + ACTIONS(7751), 1, + aux_sym_inline_note_token1, + ACTIONS(7753), 1, + sym__whitespace, + STATE(4373), 2, sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [126073] = 1, - ACTIONS(6320), 5, + sym__inline_whitespace, + [126111] = 5, + ACTIONS(6504), 1, + sym__key_specifier_token, + ACTIONS(7373), 1, + aux_sym__commonmark_specifier_start_with_class_token2, + ACTIONS(7387), 1, + anon_sym_RBRACE, + STATE(2740), 1, + sym__commonmark_key_value_specifier, + STATE(2819), 1, + sym__commonmark_specifier_start_with_kv, + [126127] = 2, + ACTIONS(2785), 2, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(2783), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [126137] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - sym__shortcode_open, - aux_sym_target_token2, - anon_sym_RPAREN, + ACTIONS(7755), 1, + aux_sym_inline_note_token1, + ACTIONS(7757), 1, sym__whitespace, - [126081] = 4, - ACTIONS(7553), 1, + STATE(4295), 2, + sym__soft_line_break, + sym__inline_whitespace, + [126151] = 2, + ACTIONS(2789), 2, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(2787), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [126161] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - ACTIONS(7630), 1, + ACTIONS(7759), 1, aux_sym_inline_note_token1, - ACTIONS(7632), 1, + ACTIONS(7761), 1, sym__whitespace, - STATE(4205), 2, + STATE(3694), 2, sym__soft_line_break, sym__inline_whitespace, - [126095] = 5, - ACTIONS(7588), 1, + [126175] = 3, + ACTIONS(7690), 1, + sym__pipe_table_delimiter, + ACTIONS(7763), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(3075), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [126187] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(3008), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3431), 1, - sym__shortcode_sep, - STATE(3455), 1, + ACTIONS(7765), 1, + aux_sym_inline_note_token1, + ACTIONS(7767), 1, + sym__whitespace, + STATE(4120), 2, sym__soft_line_break, - [126111] = 4, - ACTIONS(7553), 1, + sym__inline_whitespace, + [126201] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - ACTIONS(7634), 1, + ACTIONS(7769), 1, aux_sym_inline_note_token1, - ACTIONS(7636), 1, + ACTIONS(7771), 1, sym__whitespace, - STATE(4397), 2, + STATE(4174), 2, sym__soft_line_break, sym__inline_whitespace, - [126125] = 5, - ACTIONS(7545), 1, + [126215] = 3, + ACTIONS(7773), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7775), 1, + sym_block_continuation, + ACTIONS(2403), 3, sym__soft_line_ending, - STATE(2943), 1, - aux_sym_shortcode_repeat1, - STATE(3372), 1, - sym__soft_line_break, - STATE(3439), 1, - sym__shortcode_sep, - [126141] = 5, - ACTIONS(7588), 1, + anon_sym_RBRACE, + aux_sym__commonmark_specifier_start_with_class_token2, + [126227] = 2, + ACTIONS(7777), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(2783), 4, + aux_sym_commonmark_specifier_token1, + anon_sym_EQ, + aux_sym__commonmark_double_quote_string_token1, + sym_shortcode_name, + [126237] = 1, + ACTIONS(2783), 5, + aux_sym_commonmark_specifier_token1, + anon_sym_EQ, + aux_sym__commonmark_double_quote_string_token1, + sym_shortcode_name, + sym__whitespace, + [126245] = 4, + ACTIONS(7685), 1, sym__soft_line_ending, - STATE(3008), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3440), 1, - sym__shortcode_sep, - STATE(3455), 1, + STATE(946), 1, sym__soft_line_break, - [126157] = 5, - ACTIONS(7545), 1, - sym__whitespace, - ACTIONS(7547), 1, + STATE(2995), 1, + aux_sym__inlines_repeat1, + ACTIONS(7683), 2, + sym__line_ending, + sym__eof, + [126259] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(2943), 1, - aux_sym_shortcode_repeat1, - STATE(3372), 1, + ACTIONS(7779), 1, + aux_sym_inline_note_token1, + ACTIONS(7781), 1, + sym__whitespace, + STATE(3689), 2, sym__soft_line_break, - STATE(3506), 1, - sym__shortcode_sep, - [126173] = 4, - ACTIONS(7354), 1, + sym__inline_whitespace, + [126273] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(2810), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + ACTIONS(7783), 1, + aux_sym_inline_note_token1, + ACTIONS(7785), 1, + sym__whitespace, + STATE(3702), 2, sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [126187] = 4, - ACTIONS(7561), 1, + sym__inline_whitespace, + [126287] = 4, + ACTIONS(7649), 1, anon_sym_DASH, - ACTIONS(7638), 1, + ACTIONS(7787), 1, anon_sym_COLON, - STATE(3056), 1, + STATE(3008), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(7236), 2, + ACTIONS(7297), 2, sym__pipe_table_delimiter, sym__whitespace, - [126201] = 4, - ACTIONS(3021), 1, + [126301] = 1, + ACTIONS(2787), 5, + aux_sym_commonmark_specifier_token1, + anon_sym_EQ, + aux_sym__commonmark_double_quote_string_token1, + sym_shortcode_name, + sym__whitespace, + [126309] = 2, + ACTIONS(7789), 1, + sym_block_continuation, + ACTIONS(2391), 4, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, + sym__code_line, + [126319] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(937), 1, + ACTIONS(7791), 1, + aux_sym_inline_note_token1, + ACTIONS(7793), 1, + sym__whitespace, + STATE(3764), 2, sym__soft_line_break, - STATE(2993), 1, - aux_sym__inlines_repeat1, - ACTIONS(7640), 2, + sym__inline_whitespace, + [126333] = 4, + ACTIONS(7637), 1, + sym__soft_line_ending, + ACTIONS(7795), 1, + aux_sym_inline_note_token1, + ACTIONS(7797), 1, + sym__whitespace, + STATE(3777), 2, + sym__soft_line_break, + sym__inline_whitespace, + [126347] = 3, + ACTIONS(7724), 1, + sym__pipe_table_delimiter, + ACTIONS(7799), 1, + sym__whitespace, + ACTIONS(7134), 3, sym__line_ending, sym__eof, - [126215] = 5, - ACTIONS(3021), 1, + sym__pipe_table_line_ending, + [126359] = 4, + ACTIONS(7637), 1, + sym__soft_line_ending, + ACTIONS(7801), 1, + aux_sym_inline_note_token1, + ACTIONS(7803), 1, + sym__whitespace, + STATE(3955), 2, + sym__soft_line_break, + sym__inline_whitespace, + [126373] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - ACTIONS(7555), 1, + ACTIONS(7805), 1, + aux_sym_inline_note_token1, + ACTIONS(7807), 1, + sym__whitespace, + STATE(3839), 2, + sym__soft_line_break, + sym__inline_whitespace, + [126387] = 5, + ACTIONS(7681), 1, sym__whitespace, - ACTIONS(7557), 1, + ACTIONS(7683), 1, aux_sym_inline_note_token1, - STATE(938), 1, + ACTIONS(7685), 1, + sym__soft_line_ending, + STATE(937), 1, sym__soft_line_break, - STATE(2942), 1, + STATE(3006), 1, aux_sym__inlines_repeat1, - [126231] = 4, - ACTIONS(7553), 1, + [126403] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - ACTIONS(7642), 1, + ACTIONS(7809), 1, aux_sym_inline_note_token1, - ACTIONS(7644), 1, + ACTIONS(7811), 1, sym__whitespace, - STATE(4487), 2, + STATE(3852), 2, sym__soft_line_break, sym__inline_whitespace, - [126245] = 3, - ACTIONS(7610), 1, + [126417] = 3, + ACTIONS(7813), 1, + anon_sym_DASH, + STATE(3008), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(7290), 3, sym__pipe_table_delimiter, - ACTIONS(7646), 1, + anon_sym_COLON, + sym__whitespace, + [126429] = 3, + ACTIONS(7816), 1, sym__whitespace, - ACTIONS(3011), 3, + ACTIONS(7818), 1, + sym__pipe_table_delimiter, + ACTIONS(3075), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [126257] = 5, - ACTIONS(7588), 1, + [126441] = 3, + ACTIONS(7818), 1, + sym__pipe_table_delimiter, + ACTIONS(7820), 1, sym__whitespace, - ACTIONS(7590), 1, - sym__soft_line_ending, - STATE(3008), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3285), 1, - sym__shortcode_sep, - STATE(3455), 1, - sym__soft_line_break, - [126273] = 1, - ACTIONS(7648), 5, + ACTIONS(3081), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - sym__pipe_table_delimiter, - sym__whitespace, - [126281] = 5, - ACTIONS(7545), 1, - sym__whitespace, - ACTIONS(7547), 1, + [126453] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(2943), 1, - aux_sym_shortcode_repeat1, - STATE(3290), 1, - sym__shortcode_sep, - STATE(3372), 1, - sym__soft_line_break, - [126297] = 5, - ACTIONS(7588), 1, + ACTIONS(7822), 1, + aux_sym_inline_note_token1, + ACTIONS(7824), 1, sym__whitespace, - ACTIONS(7590), 1, - sym__soft_line_ending, - STATE(3008), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3292), 1, - sym__shortcode_sep, - STATE(3455), 1, + STATE(3914), 2, sym__soft_line_break, - [126313] = 5, - ACTIONS(7545), 1, + sym__inline_whitespace, + [126467] = 4, + ACTIONS(7637), 1, + sym__soft_line_ending, + ACTIONS(7826), 1, + aux_sym_inline_note_token1, + ACTIONS(7828), 1, sym__whitespace, - ACTIONS(7547), 1, + STATE(3927), 2, + sym__soft_line_break, + sym__inline_whitespace, + [126481] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - STATE(2943), 1, - aux_sym_shortcode_repeat1, - STATE(3293), 1, - sym__shortcode_sep, - STATE(3372), 1, + ACTIONS(7830), 1, + aux_sym_inline_note_token1, + ACTIONS(7832), 1, + sym__whitespace, + STATE(4033), 2, sym__soft_line_break, - [126329] = 4, - ACTIONS(7354), 1, + sym__inline_whitespace, + [126495] = 4, + ACTIONS(7451), 1, sym__soft_line_ending, - STATE(2816), 1, + STATE(2820), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7352), 2, + ACTIONS(7449), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [126343] = 4, - ACTIONS(3021), 1, - sym__soft_line_ending, - STATE(937), 1, - sym__soft_line_break, - STATE(3032), 1, - aux_sym__inlines_repeat1, - ACTIONS(7557), 2, + [126509] = 5, + ACTIONS(7331), 1, sym__line_ending, - sym__eof, - [126357] = 4, - ACTIONS(7553), 1, - sym__soft_line_ending, - ACTIONS(7650), 1, - aux_sym_inline_note_token1, - ACTIONS(7652), 1, - sym__whitespace, - STATE(4337), 2, - sym__soft_line_break, - sym__inline_whitespace, - [126371] = 4, - ACTIONS(7553), 1, + ACTIONS(7439), 1, + anon_sym_LBRACE, + ACTIONS(7834), 1, + sym__commonmark_naked_value, + STATE(2781), 1, + sym__newline, + STATE(3578), 1, + sym_attribute_specifier, + [126525] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7654), 1, - aux_sym_inline_note_token1, - ACTIONS(7656), 1, + ACTIONS(7836), 1, + anon_sym_EQ, + ACTIONS(7838), 1, sym__whitespace, - STATE(4362), 2, + STATE(4001), 2, sym__soft_line_break, sym__inline_whitespace, - [126385] = 5, - ACTIONS(7588), 1, + [126539] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3350), 1, + STATE(3339), 1, sym__shortcode_sep, - STATE(3455), 1, - sym__soft_line_break, - [126401] = 5, - ACTIONS(7575), 1, - aux_sym_target_token1, - ACTIONS(7577), 1, - aux_sym_pandoc_span_token1, - ACTIONS(7579), 1, - sym__soft_line_ending, - STATE(939), 1, + STATE(3472), 1, sym__soft_line_break, - STATE(2997), 1, - aux_sym__inlines_repeat1, - [126417] = 5, - ACTIONS(7545), 1, + [126555] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3352), 1, + STATE(3353), 1, sym__shortcode_sep, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - [126433] = 5, - ACTIONS(7588), 1, + [126571] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, STATE(3356), 1, sym__shortcode_sep, - STATE(3455), 1, + STATE(3472), 1, sym__soft_line_break, - [126449] = 5, - ACTIONS(7545), 1, + [126587] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3359), 1, + STATE(3358), 1, sym__shortcode_sep, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - [126465] = 4, - ACTIONS(7354), 1, + [126603] = 4, + ACTIONS(7451), 1, sym__soft_line_ending, - STATE(2820), 1, + STATE(2912), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7352), 2, + ACTIONS(7449), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [126479] = 4, - ACTIONS(7553), 1, - sym__soft_line_ending, - ACTIONS(7658), 1, - aux_sym_inline_note_token1, - ACTIONS(7660), 1, - sym__whitespace, - STATE(4275), 2, - sym__soft_line_break, - sym__inline_whitespace, - [126493] = 3, - ACTIONS(7606), 1, + [126617] = 3, + ACTIONS(7690), 1, sym__pipe_table_delimiter, - ACTIONS(7662), 1, + ACTIONS(7840), 1, sym__whitespace, - ACTIONS(7104), 3, + ACTIONS(3071), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [126505] = 3, - ACTIONS(7664), 1, - sym__whitespace, - ACTIONS(7668), 1, + [126629] = 3, + ACTIONS(7623), 1, sym__pipe_table_delimiter, - ACTIONS(7666), 3, + ACTIONS(7842), 1, + sym__whitespace, + ACTIONS(7385), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [126517] = 4, - ACTIONS(7553), 1, - sym__soft_line_ending, - ACTIONS(7670), 1, - aux_sym_inline_note_token1, - ACTIONS(7672), 1, - sym__whitespace, - STATE(4085), 2, - sym__soft_line_break, - sym__inline_whitespace, - [126531] = 2, - ACTIONS(7674), 1, + [126641] = 5, + ACTIONS(7331), 1, + sym__line_ending, + ACTIONS(7439), 1, + anon_sym_LBRACE, + ACTIONS(7844), 1, + sym__commonmark_naked_value, + STATE(2776), 1, + sym__newline, + STATE(3594), 1, + sym_attribute_specifier, + [126657] = 2, + ACTIONS(7846), 1, sym__whitespace, - ACTIONS(2537), 4, + ACTIONS(2783), 4, sym__soft_line_ending, sym__code_span_close, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [126541] = 5, - ACTIONS(7588), 1, - sym__whitespace, - ACTIONS(7590), 1, - sym__soft_line_ending, - STATE(3008), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3414), 1, - sym__shortcode_sep, - STATE(3455), 1, - sym__soft_line_break, - [126557] = 5, - ACTIONS(7676), 1, + [126667] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7679), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3541), 1, + STATE(3472), 1, sym__soft_line_break, - STATE(3548), 1, + STATE(3477), 1, sym__shortcode_sep, - [126573] = 5, - ACTIONS(7545), 1, + [126683] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - STATE(3415), 1, + STATE(3482), 1, sym__shortcode_sep, - [126589] = 5, - ACTIONS(7588), 1, + [126699] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3418), 1, - sym__shortcode_sep, - STATE(3455), 1, + STATE(3472), 1, sym__soft_line_break, - [126605] = 5, - ACTIONS(7545), 1, + STATE(3490), 1, + sym__shortcode_sep, + [126715] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - STATE(3423), 1, + STATE(3493), 1, sym__shortcode_sep, - [126621] = 4, - ACTIONS(7354), 1, + [126731] = 4, + ACTIONS(7451), 1, sym__soft_line_ending, - STATE(2823), 1, + STATE(2899), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7352), 2, + ACTIONS(7449), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [126635] = 4, - ACTIONS(7553), 1, - sym__soft_line_ending, - ACTIONS(7682), 1, - aux_sym_inline_note_token1, - ACTIONS(7684), 1, + [126745] = 5, + ACTIONS(7613), 1, sym__whitespace, - STATE(3682), 2, + ACTIONS(7615), 1, + sym__soft_line_ending, + STATE(3057), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3271), 1, + sym__shortcode_sep, + STATE(3472), 1, sym__soft_line_break, - sym__inline_whitespace, - [126649] = 4, - ACTIONS(7688), 1, - sym__pipe_table_line_ending, - STATE(200), 1, - sym__pipe_table_newline, - STATE(3014), 1, - aux_sym_pipe_table_repeat1, - ACTIONS(7686), 2, + [126761] = 3, + ACTIONS(7818), 1, + sym__pipe_table_delimiter, + ACTIONS(7848), 1, + sym__whitespace, + ACTIONS(2971), 3, sym__line_ending, sym__eof, - [126663] = 4, - ACTIONS(7553), 1, + sym__pipe_table_line_ending, + [126773] = 5, + ACTIONS(7613), 1, + sym__whitespace, + ACTIONS(7615), 1, sym__soft_line_ending, - ACTIONS(7691), 1, - aux_sym_inline_note_token1, - ACTIONS(7693), 1, + STATE(3057), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3361), 1, + sym__shortcode_sep, + STATE(3472), 1, + sym__soft_line_break, + [126789] = 5, + ACTIONS(7653), 1, sym__whitespace, - STATE(4492), 2, + ACTIONS(7655), 1, + sym__soft_line_ending, + STATE(2955), 1, + aux_sym_shortcode_repeat1, + STATE(3366), 1, + sym__shortcode_sep, + STATE(3394), 1, sym__soft_line_break, - sym__inline_whitespace, - [126677] = 3, - ACTIONS(7668), 1, + [126805] = 4, + ACTIONS(7451), 1, + sym__soft_line_ending, + STATE(2850), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, + sym__soft_line_break, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [126819] = 3, + ACTIONS(7818), 1, sym__pipe_table_delimiter, - ACTIONS(7695), 1, + ACTIONS(7850), 1, sym__whitespace, - ACTIONS(7104), 3, + ACTIONS(3071), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [126689] = 5, - ACTIONS(7588), 1, + [126831] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3455), 1, - sym__soft_line_break, STATE(3472), 1, - sym__shortcode_sep, - [126705] = 4, - ACTIONS(7553), 1, - sym__soft_line_ending, - ACTIONS(7697), 1, - aux_sym_inline_note_token1, - ACTIONS(7699), 1, - sym__whitespace, - STATE(3778), 2, sym__soft_line_break, - sym__inline_whitespace, - [126719] = 5, - ACTIONS(7545), 1, + STATE(3487), 1, + sym__shortcode_sep, + [126847] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - STATE(3474), 1, + STATE(3505), 1, sym__shortcode_sep, - [126735] = 5, - ACTIONS(7588), 1, + [126863] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3455), 1, - sym__soft_line_break, - STATE(3475), 1, + STATE(3276), 1, sym__shortcode_sep, - [126751] = 5, - ACTIONS(7545), 1, + STATE(3472), 1, + sym__soft_line_break, + [126879] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - STATE(3477), 1, + STATE(3400), 1, sym__shortcode_sep, - [126767] = 4, - ACTIONS(7354), 1, + [126895] = 4, + ACTIONS(7451), 1, sym__soft_line_ending, - STATE(2829), 1, + STATE(2833), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7352), 2, + ACTIONS(7449), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [126781] = 4, - ACTIONS(7553), 1, - sym__soft_line_ending, - ACTIONS(7701), 1, - aux_sym_inline_note_token1, - ACTIONS(7703), 1, - sym__whitespace, - STATE(3768), 2, - sym__soft_line_break, - sym__inline_whitespace, - [126795] = 1, - ACTIONS(2537), 5, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - aux_sym__commonmark_specifier_start_with_class_token2, - sym__whitespace, - [126803] = 3, - ACTIONS(7610), 1, + [126909] = 3, + ACTIONS(7724), 1, sym__pipe_table_delimiter, - ACTIONS(7705), 1, + ACTIONS(7852), 1, sym__whitespace, - ACTIONS(7707), 3, + ACTIONS(7385), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [126815] = 5, - ACTIONS(7588), 1, + [126921] = 4, + ACTIONS(7637), 1, + sym__soft_line_ending, + ACTIONS(7854), 1, + aux_sym_inline_note_token1, + ACTIONS(7856), 1, sym__whitespace, - ACTIONS(7590), 1, + STATE(4065), 2, + sym__soft_line_break, + sym__inline_whitespace, + [126935] = 5, + ACTIONS(7613), 1, + sym__whitespace, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3455), 1, - sym__soft_line_break, - STATE(3521), 1, + STATE(3306), 1, sym__shortcode_sep, - [126831] = 3, - ACTIONS(7614), 1, - sym__pipe_table_delimiter, - ACTIONS(7709), 1, - sym__whitespace, - ACTIONS(3011), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [126843] = 5, - ACTIONS(7545), 1, + STATE(3472), 1, + sym__soft_line_break, + [126951] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3270), 1, + STATE(3310), 1, sym__shortcode_sep, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - [126859] = 3, - ACTIONS(7668), 1, - sym__pipe_table_delimiter, - ACTIONS(7711), 1, + [126967] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7291), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [126871] = 5, - ACTIONS(7545), 1, + ACTIONS(7615), 1, + sym__soft_line_ending, + STATE(3057), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3315), 1, + sym__shortcode_sep, + STATE(3472), 1, + sym__soft_line_break, + [126983] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3278), 1, + STATE(3316), 1, sym__shortcode_sep, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - [126887] = 4, - ACTIONS(7354), 1, + [126999] = 4, + ACTIONS(7451), 1, sym__soft_line_ending, - STATE(2833), 1, + STATE(2822), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7352), 2, + ACTIONS(7449), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [126901] = 4, - ACTIONS(7579), 1, - sym__soft_line_ending, - STATE(937), 1, - sym__soft_line_break, - STATE(3032), 1, - aux_sym__inlines_repeat1, - ACTIONS(7575), 2, - sym__line_ending, - sym__eof, - [126915] = 2, - ACTIONS(7713), 1, - sym_block_continuation, - ACTIONS(2315), 4, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, - sym__code_line, - [126925] = 5, - ACTIONS(3021), 1, - sym__soft_line_ending, - ACTIONS(7640), 1, - aux_sym_inline_note_token1, - ACTIONS(7715), 1, - sym__whitespace, - STATE(938), 1, - sym__soft_line_break, - STATE(2984), 1, - aux_sym__inlines_repeat1, - [126941] = 3, - ACTIONS(6436), 1, - sym__key_specifier_token, - STATE(3116), 1, - sym__commonmark_key_value_specifier, - ACTIONS(6996), 3, - sym__soft_line_ending, - anon_sym_RBRACE, + [127013] = 5, + ACTIONS(7858), 1, sym__whitespace, - [126953] = 4, - ACTIONS(7553), 1, + ACTIONS(7861), 1, sym__soft_line_ending, - ACTIONS(7717), 1, - aux_sym_inline_note_token1, - ACTIONS(7719), 1, - sym__whitespace, - STATE(3706), 2, + STATE(2639), 1, + sym__shortcode_sep, + STATE(2738), 1, sym__soft_line_break, - sym__inline_whitespace, - [126967] = 5, - ACTIONS(7588), 1, + STATE(3049), 1, + aux_sym_shortcode_escaped_repeat1, + [127029] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3322), 1, + STATE(3379), 1, sym__shortcode_sep, - STATE(3455), 1, + STATE(3472), 1, sym__soft_line_break, - [126983] = 2, - ACTIONS(7721), 1, - sym__whitespace, - ACTIONS(2537), 4, - aux_sym_commonmark_specifier_token1, - anon_sym_EQ, - aux_sym__commonmark_double_quote_string_token1, - sym_shortcode_name, - [126993] = 5, - ACTIONS(7545), 1, + [127045] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3328), 1, + STATE(3380), 1, sym__shortcode_sep, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - [127009] = 5, - ACTIONS(7588), 1, + [127061] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3329), 1, + STATE(3381), 1, sym__shortcode_sep, - STATE(3455), 1, + STATE(3472), 1, sym__soft_line_break, - [127025] = 5, - ACTIONS(7545), 1, + [127077] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3330), 1, + STATE(3382), 1, sym__shortcode_sep, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - [127041] = 4, - ACTIONS(7354), 1, + [127093] = 4, + ACTIONS(7451), 1, sym__soft_line_ending, - STATE(2837), 1, + STATE(2902), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7352), 2, + ACTIONS(7449), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [127055] = 4, - ACTIONS(7553), 1, - sym__soft_line_ending, - ACTIONS(7723), 1, - aux_sym_inline_note_token1, - ACTIONS(7725), 1, + [127107] = 5, + ACTIONS(7613), 1, sym__whitespace, - STATE(4081), 2, + ACTIONS(7615), 1, + sym__soft_line_ending, + STATE(3057), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3301), 1, + sym__shortcode_sep, + STATE(3472), 1, sym__soft_line_break, - sym__inline_whitespace, - [127069] = 1, - ACTIONS(2537), 5, - aux_sym_commonmark_specifier_token1, - anon_sym_EQ, - aux_sym__commonmark_double_quote_string_token1, - sym_shortcode_name, - sym__whitespace, - [127077] = 3, - ACTIONS(7606), 1, - sym__pipe_table_delimiter, - ACTIONS(7727), 1, - sym__whitespace, - ACTIONS(7189), 3, + [127123] = 1, + ACTIONS(7864), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [127089] = 3, - ACTIONS(7614), 1, sym__pipe_table_delimiter, - ACTIONS(7729), 1, sym__whitespace, - ACTIONS(3015), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [127101] = 1, - ACTIONS(7731), 5, - sym__soft_line_ending, - sym__shortcode_open, - aux_sym_target_token2, - anon_sym_RPAREN, + [127131] = 5, + ACTIONS(7866), 1, sym__whitespace, - [127109] = 1, - ACTIONS(7733), 5, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__pipe_table_delimiter, + ACTIONS(7869), 1, + sym__soft_line_ending, + STATE(3057), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3534), 1, + sym__shortcode_sep, + STATE(3585), 1, + sym__soft_line_break, + [127147] = 5, + ACTIONS(7613), 1, sym__whitespace, - [127117] = 4, - ACTIONS(7553), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - ACTIONS(7735), 1, - aux_sym_inline_note_token1, - ACTIONS(7737), 1, + STATE(3057), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3412), 1, + sym__shortcode_sep, + STATE(3472), 1, + sym__soft_line_break, + [127163] = 4, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(7872), 1, + anon_sym_EQ, + ACTIONS(7874), 1, sym__whitespace, - STATE(4131), 2, + STATE(3704), 2, sym__soft_line_break, sym__inline_whitespace, - [127131] = 5, - ACTIONS(7588), 1, + [127177] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(3008), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3360), 1, - sym__shortcode_sep, - STATE(3455), 1, + STATE(2955), 1, + aux_sym_shortcode_repeat1, + STATE(3394), 1, sym__soft_line_break, - [127147] = 5, - ACTIONS(7588), 1, + STATE(3413), 1, + sym__shortcode_sep, + [127193] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3427), 1, + STATE(3414), 1, sym__shortcode_sep, - STATE(3455), 1, + STATE(3472), 1, sym__soft_line_break, - [127163] = 5, - ACTIONS(7545), 1, + [127209] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3363), 1, + STATE(3394), 1, + sym__soft_line_break, + STATE(3532), 1, sym__shortcode_sep, - STATE(3372), 1, + [127225] = 4, + ACTIONS(7451), 1, + sym__soft_line_ending, + STATE(2825), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, sym__soft_line_break, - [127179] = 5, - ACTIONS(7588), 1, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [127239] = 4, + ACTIONS(7451), 1, + sym__soft_line_ending, + STATE(2933), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, + sym__soft_line_break, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [127253] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3365), 1, + STATE(3462), 1, sym__shortcode_sep, - STATE(3455), 1, + STATE(3472), 1, sym__soft_line_break, - [127195] = 5, - ACTIONS(7545), 1, + [127269] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3366), 1, - sym__shortcode_sep, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - [127211] = 4, - ACTIONS(7354), 1, + STATE(3464), 1, + sym__shortcode_sep, + [127285] = 5, + ACTIONS(7613), 1, + sym__whitespace, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(2839), 1, - aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3057), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3466), 1, + sym__shortcode_sep, + STATE(3472), 1, sym__soft_line_break, - ACTIONS(7352), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [127225] = 3, - ACTIONS(7739), 1, - anon_sym_DASH, - STATE(3056), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(7238), 3, - sym__pipe_table_delimiter, - anon_sym_COLON, + [127301] = 5, + ACTIONS(7653), 1, sym__whitespace, - [127237] = 1, - ACTIONS(2541), 5, + ACTIONS(7655), 1, sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - aux_sym__commonmark_specifier_start_with_class_token2, - sym__whitespace, - [127245] = 4, - ACTIONS(6688), 1, + STATE(2955), 1, + aux_sym_shortcode_repeat1, + STATE(3394), 1, + sym__soft_line_break, + STATE(3468), 1, + sym__shortcode_sep, + [127317] = 4, + ACTIONS(7451), 1, sym__soft_line_ending, - ACTIONS(7742), 1, - anon_sym_EQ, - ACTIONS(7744), 1, - sym__whitespace, - STATE(3736), 2, + STATE(2835), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, sym__soft_line_break, - sym__inline_whitespace, - [127259] = 4, - ACTIONS(7553), 1, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [127331] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - ACTIONS(7746), 1, + ACTIONS(7876), 1, aux_sym_inline_note_token1, - ACTIONS(7748), 1, + ACTIONS(7878), 1, sym__whitespace, - STATE(3678), 2, + STATE(4328), 2, sym__soft_line_break, sym__inline_whitespace, - [127273] = 5, - ACTIONS(7588), 1, + [127345] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3393), 1, - sym__shortcode_sep, - STATE(3455), 1, + STATE(3472), 1, sym__soft_line_break, - [127289] = 1, - ACTIONS(2541), 5, - aux_sym_commonmark_specifier_token1, - anon_sym_EQ, - aux_sym__commonmark_double_quote_string_token1, - sym_shortcode_name, - sym__whitespace, - [127297] = 5, - ACTIONS(7545), 1, + STATE(3486), 1, + sym__shortcode_sep, + [127361] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - STATE(3395), 1, + STATE(3496), 1, sym__shortcode_sep, - [127313] = 5, - ACTIONS(7588), 1, + [127377] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3396), 1, - sym__shortcode_sep, - STATE(3455), 1, + STATE(3472), 1, sym__soft_line_break, - [127329] = 5, - ACTIONS(7545), 1, + STATE(3529), 1, + sym__shortcode_sep, + [127393] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, - sym__soft_line_break, - STATE(3397), 1, + STATE(3338), 1, sym__shortcode_sep, - [127345] = 4, - ACTIONS(7354), 1, + STATE(3394), 1, + sym__soft_line_break, + [127409] = 4, + ACTIONS(7451), 1, sym__soft_line_ending, - STATE(2841), 1, + STATE(2859), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7352), 2, + ACTIONS(7449), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [127359] = 5, - ACTIONS(7245), 1, - sym__line_ending, - ACTIONS(7358), 1, - anon_sym_LBRACE, - ACTIONS(7750), 1, - sym__commonmark_naked_value, - STATE(2772), 1, - sym__newline, - STATE(3550), 1, - sym_attribute_specifier, - [127375] = 4, - ACTIONS(7553), 1, - sym__soft_line_ending, - ACTIONS(7752), 1, - aux_sym_inline_note_token1, - ACTIONS(7754), 1, - sym__whitespace, - STATE(3691), 2, - sym__soft_line_break, - sym__inline_whitespace, - [127389] = 1, - ACTIONS(7756), 5, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__pipe_table_delimiter, - sym__whitespace, - [127397] = 2, - ACTIONS(2539), 2, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(2537), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [127407] = 5, - ACTIONS(6436), 1, - sym__key_specifier_token, - ACTIONS(7255), 1, - anon_sym_RBRACE, - ACTIONS(7269), 1, - aux_sym__commonmark_specifier_start_with_class_token2, - STATE(2696), 1, - sym__commonmark_key_value_specifier, - STATE(2822), 1, - sym__commonmark_specifier_start_with_kv, [127423] = 5, - ACTIONS(7588), 1, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3419), 1, + STATE(3368), 1, sym__shortcode_sep, - STATE(3455), 1, + STATE(3472), 1, sym__soft_line_break, - [127439] = 2, - ACTIONS(2543), 2, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(2541), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [127449] = 5, - ACTIONS(7545), 1, + [127439] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, - sym__soft_line_break, - STATE(3420), 1, + STATE(3377), 1, sym__shortcode_sep, - [127465] = 5, - ACTIONS(7588), 1, + STATE(3394), 1, + sym__soft_line_break, + [127455] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3421), 1, + STATE(3393), 1, sym__shortcode_sep, - STATE(3455), 1, + STATE(3472), 1, sym__soft_line_break, - [127481] = 5, - ACTIONS(7545), 1, + [127471] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - STATE(3422), 1, + STATE(3395), 1, sym__shortcode_sep, - [127497] = 4, - ACTIONS(7354), 1, + [127487] = 4, + ACTIONS(7451), 1, sym__soft_line_ending, - STATE(2844), 1, + STATE(2917), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7352), 2, + ACTIONS(7449), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [127511] = 3, - ACTIONS(7614), 1, - sym__pipe_table_delimiter, - ACTIONS(7758), 1, + [127501] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(2907), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [127523] = 4, - ACTIONS(7553), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - ACTIONS(7760), 1, - aux_sym_inline_note_token1, - ACTIONS(7762), 1, - sym__whitespace, - STATE(3753), 2, + STATE(3057), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3332), 1, + sym__shortcode_sep, + STATE(3472), 1, sym__soft_line_break, - sym__inline_whitespace, - [127537] = 4, - ACTIONS(7553), 1, - sym__soft_line_ending, - ACTIONS(7764), 1, - aux_sym_inline_note_token1, - ACTIONS(7766), 1, + [127517] = 5, + ACTIONS(7653), 1, sym__whitespace, - STATE(3766), 2, + ACTIONS(7655), 1, + sym__soft_line_ending, + STATE(2955), 1, + aux_sym_shortcode_repeat1, + STATE(3334), 1, + sym__shortcode_sep, + STATE(3394), 1, sym__soft_line_break, - sym__inline_whitespace, - [127551] = 4, - ACTIONS(7553), 1, + [127533] = 5, + ACTIONS(7613), 1, + sym__whitespace, + ACTIONS(7615), 1, sym__soft_line_ending, - ACTIONS(7768), 1, - aux_sym_inline_note_token1, - ACTIONS(7770), 1, + STATE(3057), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3335), 1, + sym__shortcode_sep, + STATE(3472), 1, + sym__soft_line_break, + [127549] = 5, + ACTIONS(7653), 1, sym__whitespace, - STATE(3973), 2, + ACTIONS(7655), 1, + sym__soft_line_ending, + STATE(2955), 1, + aux_sym_shortcode_repeat1, + STATE(3337), 1, + sym__shortcode_sep, + STATE(3394), 1, sym__soft_line_break, - sym__inline_whitespace, - [127565] = 5, - ACTIONS(3021), 1, + [127565] = 4, + ACTIONS(7451), 1, sym__soft_line_ending, - ACTIONS(7640), 1, - aux_sym_target_token1, - ACTIONS(7715), 1, - aux_sym_pandoc_span_token1, - STATE(939), 1, + STATE(2814), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, sym__soft_line_break, - STATE(2935), 1, - aux_sym__inlines_repeat1, - [127581] = 5, - ACTIONS(7588), 1, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [127579] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3455), 1, - sym__soft_line_break, - STATE(3459), 1, + STATE(3437), 1, sym__shortcode_sep, - [127597] = 2, - ACTIONS(7772), 1, - sym__whitespace, - ACTIONS(2537), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - aux_sym__commonmark_specifier_start_with_class_token2, - [127607] = 5, - ACTIONS(7545), 1, + STATE(3472), 1, + sym__soft_line_break, + [127595] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - STATE(3463), 1, + STATE(3442), 1, sym__shortcode_sep, - [127623] = 5, - ACTIONS(7588), 1, + [127611] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3455), 1, - sym__soft_line_break, - STATE(3464), 1, + STATE(3443), 1, sym__shortcode_sep, - [127639] = 5, - ACTIONS(7545), 1, + STATE(3472), 1, + sym__soft_line_break, + [127627] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3268), 1, - sym__shortcode_sep, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - [127655] = 4, - ACTIONS(7354), 1, + STATE(3445), 1, + sym__shortcode_sep, + [127643] = 4, + ACTIONS(7451), 1, sym__soft_line_ending, - STATE(2847), 1, + STATE(2879), 1, aux_sym_pandoc_code_span_repeat1, - STATE(3185), 1, + STATE(3162), 1, sym__soft_line_break, - ACTIONS(7352), 2, + ACTIONS(7449), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [127669] = 4, - ACTIONS(7553), 1, + [127657] = 4, + ACTIONS(7637), 1, sym__soft_line_ending, - ACTIONS(7774), 1, + ACTIONS(7880), 1, aux_sym_inline_note_token1, - ACTIONS(7776), 1, + ACTIONS(7882), 1, sym__whitespace, - STATE(3828), 2, + STATE(4380), 2, sym__soft_line_break, sym__inline_whitespace, - [127683] = 4, - ACTIONS(7553), 1, - sym__soft_line_ending, - ACTIONS(7778), 1, - aux_sym_inline_note_token1, - ACTIONS(7780), 1, + [127671] = 5, + ACTIONS(7653), 1, sym__whitespace, - STATE(3841), 2, - sym__soft_line_break, - sym__inline_whitespace, - [127697] = 4, - ACTIONS(7553), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - ACTIONS(7782), 1, - aux_sym_inline_note_token1, - ACTIONS(7784), 1, - sym__whitespace, - STATE(4399), 2, + STATE(2955), 1, + aux_sym_shortcode_repeat1, + STATE(3394), 1, sym__soft_line_break, - sym__inline_whitespace, - [127711] = 3, - ACTIONS(7786), 1, - sym__whitespace, - ACTIONS(7788), 1, - sym_block_continuation, - ACTIONS(2321), 3, - sym__soft_line_ending, - anon_sym_RBRACE, - aux_sym__commonmark_specifier_start_with_class_token2, - [127723] = 5, - ACTIONS(7545), 1, + STATE(3526), 1, + sym__shortcode_sep, + [127687] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - STATE(3526), 1, + STATE(3499), 1, sym__shortcode_sep, - [127739] = 5, - ACTIONS(7588), 1, + [127703] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3455), 1, + STATE(3472), 1, sym__soft_line_break, - STATE(3488), 1, + STATE(3500), 1, sym__shortcode_sep, - [127755] = 4, - ACTIONS(7553), 1, - sym__soft_line_ending, - ACTIONS(7790), 1, - aux_sym_inline_note_token1, - ACTIONS(7792), 1, + [127719] = 5, + ACTIONS(7653), 1, sym__whitespace, - STATE(3869), 2, - sym__soft_line_break, - sym__inline_whitespace, - [127769] = 5, - ACTIONS(7545), 1, - sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - STATE(3489), 1, + STATE(3501), 1, sym__shortcode_sep, - [127785] = 5, - ACTIONS(7588), 1, + [127735] = 4, + ACTIONS(7451), 1, + sym__soft_line_ending, + STATE(2860), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, + sym__soft_line_break, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [127749] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(3008), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat2, - STATE(3455), 1, + STATE(3472), 1, sym__soft_line_break, - STATE(3490), 1, + STATE(3520), 1, sym__shortcode_sep, - [127801] = 5, - ACTIONS(7545), 1, + [127765] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - STATE(3491), 1, + STATE(3521), 1, sym__shortcode_sep, - [127817] = 4, - ACTIONS(7553), 1, - sym__soft_line_ending, - ACTIONS(7794), 1, - aux_sym_inline_note_token1, - ACTIONS(7796), 1, - sym__whitespace, - STATE(4068), 2, - sym__soft_line_break, - sym__inline_whitespace, - [127831] = 3, - ACTIONS(7798), 1, + [127781] = 5, + ACTIONS(7613), 1, sym__whitespace, - ACTIONS(7800), 1, - sym_block_continuation, - ACTIONS(2321), 3, - sym__key_specifier_token, - aux_sym_commonmark_specifier_token1, - aux_sym__commonmark_specifier_start_with_class_token1, - [127843] = 5, - ACTIONS(7545), 1, - sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7615), 1, sym__soft_line_ending, - STATE(2943), 1, - aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3057), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3472), 1, sym__soft_line_break, - STATE(3496), 1, + STATE(3522), 1, sym__shortcode_sep, - [127859] = 5, - ACTIONS(7545), 1, + [127797] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3394), 1, sym__soft_line_break, - STATE(3497), 1, + STATE(3523), 1, sym__shortcode_sep, - [127875] = 4, - ACTIONS(7553), 1, + [127813] = 4, + ACTIONS(7451), 1, sym__soft_line_ending, - ACTIONS(7802), 1, - aux_sym_inline_note_token1, - ACTIONS(7804), 1, - sym__whitespace, - STATE(3903), 2, + STATE(2905), 1, + aux_sym_pandoc_code_span_repeat1, + STATE(3162), 1, sym__soft_line_break, - sym__inline_whitespace, - [127889] = 4, - ACTIONS(7553), 1, + ACTIONS(7449), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [127827] = 5, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7806), 1, + ACTIONS(7643), 1, + sym__whitespace, + ACTIONS(7645), 1, aux_sym_inline_note_token1, - ACTIONS(7808), 1, + STATE(937), 1, + sym__soft_line_break, + STATE(3006), 1, + aux_sym__inlines_repeat1, + [127843] = 1, + ACTIONS(7884), 5, + sym__soft_line_ending, + sym__shortcode_open, + aux_sym_target_token2, + anon_sym_RPAREN, sym__whitespace, - STATE(4211), 2, + [127851] = 5, + ACTIONS(7613), 1, + sym__whitespace, + ACTIONS(7615), 1, + sym__soft_line_ending, + STATE(3057), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3283), 1, + sym__shortcode_sep, + STATE(3472), 1, sym__soft_line_break, - sym__inline_whitespace, - [127903] = 5, - ACTIONS(7545), 1, + [127867] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3284), 1, + sym__shortcode_sep, + STATE(3394), 1, sym__soft_line_break, - STATE(3498), 1, + [127883] = 5, + ACTIONS(7613), 1, + sym__whitespace, + ACTIONS(7615), 1, + sym__soft_line_ending, + STATE(3057), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3285), 1, sym__shortcode_sep, - [127919] = 5, - ACTIONS(7545), 1, + STATE(3472), 1, + sym__soft_line_break, + [127899] = 5, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, - sym__soft_line_break, - STATE(3499), 1, + STATE(3286), 1, sym__shortcode_sep, - [127935] = 4, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(7810), 1, - anon_sym_EQ, - ACTIONS(7812), 1, + STATE(3394), 1, + sym__soft_line_break, + [127915] = 5, + ACTIONS(7653), 1, sym__whitespace, - STATE(3889), 2, + ACTIONS(7655), 1, + sym__soft_line_ending, + STATE(2955), 1, + aux_sym_shortcode_repeat1, + STATE(3288), 1, + sym__shortcode_sep, + STATE(3394), 1, sym__soft_line_break, - sym__inline_whitespace, - [127949] = 4, - ACTIONS(7553), 1, + [127931] = 5, + ACTIONS(7653), 1, + sym__whitespace, + ACTIONS(7655), 1, sym__soft_line_ending, - ACTIONS(7814), 1, - aux_sym_inline_note_token1, - ACTIONS(7816), 1, + STATE(2955), 1, + aux_sym_shortcode_repeat1, + STATE(3289), 1, + sym__shortcode_sep, + STATE(3394), 1, + sym__soft_line_break, + [127947] = 5, + ACTIONS(7653), 1, sym__whitespace, - STATE(3916), 2, + ACTIONS(7655), 1, + sym__soft_line_ending, + STATE(2955), 1, + aux_sym_shortcode_repeat1, + STATE(3291), 1, + sym__shortcode_sep, + STATE(3394), 1, sym__soft_line_break, - sym__inline_whitespace, [127963] = 5, - ACTIONS(7545), 1, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, - sym__soft_line_break, - STATE(3502), 1, + STATE(3292), 1, sym__shortcode_sep, + STATE(3394), 1, + sym__soft_line_break, [127979] = 5, - ACTIONS(7545), 1, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, - sym__soft_line_break, - STATE(3503), 1, + STATE(3293), 1, sym__shortcode_sep, + STATE(3394), 1, + sym__soft_line_break, [127995] = 5, - ACTIONS(6436), 1, - sym__key_specifier_token, - ACTIONS(7267), 1, - anon_sym_RBRACE, - ACTIONS(7269), 1, - aux_sym__commonmark_specifier_start_with_class_token2, - STATE(2696), 1, - sym__commonmark_key_value_specifier, - STATE(2826), 1, - sym__commonmark_specifier_start_with_kv, - [128011] = 5, - ACTIONS(7545), 1, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, + STATE(3294), 1, + sym__shortcode_sep, + STATE(3394), 1, sym__soft_line_break, - STATE(3494), 1, + [128011] = 5, + ACTIONS(7653), 1, + sym__whitespace, + ACTIONS(7655), 1, + sym__soft_line_ending, + STATE(2955), 1, + aux_sym_shortcode_repeat1, + STATE(3297), 1, sym__shortcode_sep, + STATE(3394), 1, + sym__soft_line_break, [128027] = 5, - ACTIONS(7545), 1, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7547), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(2943), 1, + STATE(2955), 1, aux_sym_shortcode_repeat1, - STATE(3372), 1, - sym__soft_line_break, - STATE(3505), 1, + STATE(3298), 1, sym__shortcode_sep, + STATE(3394), 1, + sym__soft_line_break, [128043] = 5, - ACTIONS(7588), 1, + ACTIONS(7653), 1, sym__whitespace, - ACTIONS(7590), 1, + ACTIONS(7655), 1, sym__soft_line_ending, - STATE(3008), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3271), 1, + STATE(2955), 1, + aux_sym_shortcode_repeat1, + STATE(3359), 1, sym__shortcode_sep, - STATE(3455), 1, + STATE(3394), 1, sym__soft_line_break, [128059] = 4, - ACTIONS(6688), 1, + ACTIONS(7886), 1, + anon_sym_DOLLAR, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + STATE(3221), 1, + aux_sym_pandoc_math_repeat1, + STATE(4348), 1, + sym__soft_line_break, + [128072] = 4, + ACTIONS(7888), 1, + sym__soft_line_ending, + ACTIONS(7890), 1, + anon_sym_DOLLAR, + STATE(3221), 1, + aux_sym_pandoc_math_repeat1, + STATE(4348), 1, + sym__soft_line_break, + [128085] = 1, + ACTIONS(7892), 4, + sym__soft_line_ending, + sym__key_specifier_token, + anon_sym_RBRACE, sym__whitespace, - STATE(3535), 1, + [128092] = 4, + ACTIONS(7683), 1, + sym__emphasis_close_underscore, + ACTIONS(7685), 1, + sym__soft_line_ending, + STATE(935), 1, sym__soft_line_break, - STATE(4444), 1, - sym__shortcode_sep, - [128072] = 3, - ACTIONS(7820), 1, + STATE(3120), 1, + aux_sym__inlines_repeat1, + [128105] = 4, + ACTIONS(7683), 1, + sym__single_quote_span_close, + ACTIONS(7685), 1, + sym__soft_line_ending, + STATE(944), 1, + sym__soft_line_break, + STATE(3121), 1, + aux_sym__inlines_repeat1, + [128118] = 4, + ACTIONS(7888), 1, + sym__soft_line_ending, + ACTIONS(7894), 1, + anon_sym_DOLLAR, + STATE(3123), 1, + aux_sym_pandoc_math_repeat1, + STATE(4348), 1, + sym__soft_line_break, + [128131] = 4, + ACTIONS(7888), 1, + sym__soft_line_ending, + ACTIONS(7896), 1, + anon_sym_DOLLAR, + STATE(3221), 1, + aux_sym_pandoc_math_repeat1, + STATE(4348), 1, + sym__soft_line_break, + [128144] = 2, + ACTIONS(7900), 1, + sym__pipe_table_delimiter, + ACTIONS(7898), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [128153] = 2, + ACTIONS(6386), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(6384), 3, + sym__shortcode_open, + aux_sym__commonmark_double_quote_string_token1, + aux_sym__commonmark_double_quote_string_token4, + [128162] = 2, + ACTIONS(6134), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(6132), 3, + sym__shortcode_open, + aux_sym__commonmark_double_quote_string_token1, + aux_sym__commonmark_double_quote_string_token4, + [128171] = 2, + ACTIONS(6390), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(6388), 3, + sym__shortcode_open, + aux_sym__commonmark_double_quote_string_token1, + aux_sym__commonmark_double_quote_string_token4, + [128180] = 3, + ACTIONS(7902), 1, sym__whitespace, - ACTIONS(7822), 1, + ACTIONS(7904), 1, sym_block_continuation, - ACTIONS(2321), 2, + ACTIONS(2403), 2, sym__key_specifier_token, sym__shortcode_close_escaped, - [128083] = 1, - ACTIONS(7205), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [128090] = 2, - ACTIONS(6314), 1, + [128191] = 2, + ACTIONS(6386), 1, aux_sym__commonmark_single_quote_string_token3, - ACTIONS(6312), 3, + ACTIONS(6384), 3, sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_single_quote_string_token4, - [128099] = 2, - ACTIONS(7826), 1, - sym__pipe_table_delimiter, - ACTIONS(7824), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [128108] = 2, - ACTIONS(6318), 1, + [128200] = 2, + ACTIONS(6134), 1, aux_sym__commonmark_single_quote_string_token3, - ACTIONS(6316), 3, + ACTIONS(6132), 3, sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_single_quote_string_token4, - [128117] = 4, - ACTIONS(7828), 1, - anon_sym_DOLLAR, - ACTIONS(7830), 1, - sym__soft_line_ending, - STATE(3125), 1, - aux_sym_pandoc_math_repeat1, - STATE(4345), 1, - sym__soft_line_break, - [128130] = 2, - ACTIONS(6322), 1, + [128209] = 2, + ACTIONS(6390), 1, aux_sym__commonmark_single_quote_string_token3, - ACTIONS(6320), 3, + ACTIONS(6388), 3, sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_single_quote_string_token4, - [128139] = 3, - ACTIONS(7832), 1, + [128218] = 4, + ACTIONS(7906), 1, + anon_sym_LBRACE, + ACTIONS(7908), 1, + sym__commonmark_naked_value, + ACTIONS(7910), 1, + sym_fenced_div_note_id, + STATE(3573), 1, + sym__pandoc_attr_specifier, + [128231] = 1, + ACTIONS(2773), 4, + sym__pipe_table_delimiter, + anon_sym_COLON, + anon_sym_DASH, sym__whitespace, - ACTIONS(7834), 1, + [128238] = 3, + ACTIONS(7912), 1, + sym__whitespace, + ACTIONS(7914), 1, sym_block_continuation, - ACTIONS(2321), 2, + ACTIONS(2403), 2, sym__key_specifier_token, sym__shortcode_close, - [128150] = 4, - ACTIONS(3021), 1, - sym__soft_line_ending, - ACTIONS(7640), 1, - sym__single_quote_span_close, - STATE(933), 1, - sym__soft_line_break, - STATE(3133), 1, - aux_sym__inlines_repeat1, - [128163] = 1, - ACTIONS(2537), 4, + [128249] = 1, + ACTIONS(2783), 4, sym__soft_line_ending, anon_sym_RBRACE, aux_sym__commonmark_specifier_start_with_class_token2, sym__whitespace, - [128170] = 4, - ACTIONS(7830), 1, - sym__soft_line_ending, - ACTIONS(7836), 1, - anon_sym_DOLLAR, - STATE(3159), 1, - aux_sym_pandoc_math_repeat1, - STATE(4345), 1, - sym__soft_line_break, - [128183] = 4, - ACTIONS(7830), 1, + [128256] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7838), 1, + ACTIONS(7916), 1, anon_sym_DOLLAR, - STATE(3159), 1, + STATE(3138), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [128196] = 1, - ACTIONS(2541), 4, + [128269] = 1, + ACTIONS(2787), 4, sym__soft_line_ending, anon_sym_RBRACE, aux_sym__commonmark_specifier_start_with_class_token2, sym__whitespace, - [128203] = 1, - ACTIONS(7840), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [128210] = 4, - ACTIONS(7830), 1, + [128276] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7842), 1, + ACTIONS(7918), 1, anon_sym_DOLLAR, - STATE(3159), 1, + STATE(3221), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [128223] = 1, - ACTIONS(7844), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [128230] = 1, - ACTIONS(7846), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [128237] = 2, - ACTIONS(7848), 1, + [128289] = 2, + ACTIONS(7920), 1, sym__whitespace, - ACTIONS(2537), 3, + ACTIONS(2783), 3, sym__soft_line_ending, anon_sym_RBRACE, aux_sym__commonmark_specifier_start_with_class_token2, - [128246] = 4, - ACTIONS(3021), 1, - sym__soft_line_ending, - ACTIONS(7557), 1, - sym__single_quote_span_close, - STATE(933), 1, - sym__soft_line_break, - STATE(3209), 1, - aux_sym__inlines_repeat1, - [128259] = 4, - ACTIONS(7575), 1, - sym__emphasis_close_star, - ACTIONS(7579), 1, + [128298] = 4, + ACTIONS(7299), 1, + anon_sym_COLON, + ACTIONS(7301), 1, + anon_sym_DASH, + STATE(2945), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(3549), 1, + sym_pipe_table_delimiter_cell, + [128311] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - STATE(941), 1, + ACTIONS(7627), 1, + sym__strikeout_close, + STATE(936), 1, sym__soft_line_break, - STATE(3134), 1, + STATE(3152), 1, aux_sym__inlines_repeat1, - [128272] = 4, - ACTIONS(7575), 1, - sym__strikeout_close, - ACTIONS(7579), 1, + [128324] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - STATE(936), 1, + ACTIONS(7627), 1, + sym__strong_emphasis_close_underscore, + STATE(940), 1, sym__soft_line_break, - STATE(3135), 1, + STATE(3212), 1, aux_sym__inlines_repeat1, - [128285] = 1, - ACTIONS(7850), 4, + [128337] = 1, + ACTIONS(7922), 4, sym__soft_line_ending, sym__code_span_close, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [128292] = 4, - ACTIONS(7830), 1, + [128344] = 1, + ACTIONS(7924), 4, sym__soft_line_ending, - ACTIONS(7852), 1, - anon_sym_DOLLAR, - STATE(3159), 1, - aux_sym_pandoc_math_repeat1, - STATE(4345), 1, - sym__soft_line_break, - [128305] = 4, - ACTIONS(3021), 1, + sym__key_specifier_token, + anon_sym_RBRACE, + sym__whitespace, + [128351] = 3, + ACTIONS(7655), 1, sym__soft_line_ending, - ACTIONS(7640), 1, - sym__double_quote_span_close, - STATE(935), 1, + STATE(3557), 1, sym__soft_line_break, - STATE(3216), 1, - aux_sym__inlines_repeat1, - [128318] = 4, - ACTIONS(3021), 1, + ACTIONS(6888), 2, + sym__key_specifier_token, + sym__shortcode_close, + [128362] = 1, + ACTIONS(7926), 4, sym__soft_line_ending, - ACTIONS(7557), 1, - sym__strong_emphasis_close_star, - STATE(940), 1, - sym__soft_line_break, - STATE(3218), 1, - aux_sym__inlines_repeat1, - [128331] = 4, - ACTIONS(3021), 1, + sym__key_specifier_token, + anon_sym_RBRACE, + sym__whitespace, + [128369] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7557), 1, - sym__strong_emphasis_close_underscore, - STATE(942), 1, + ACTIONS(7928), 1, + sym__whitespace, + STATE(3665), 1, sym__soft_line_break, - STATE(3175), 1, - aux_sym__inlines_repeat1, - [128344] = 4, - ACTIONS(7830), 1, + STATE(4002), 1, + sym__shortcode_sep, + [128382] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7854), 1, + ACTIONS(7930), 1, anon_sym_DOLLAR, - STATE(3145), 1, + STATE(3151), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [128357] = 1, - ACTIONS(2537), 4, - sym__soft_line_ending, - sym__code_span_close, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [128364] = 4, - ACTIONS(7830), 1, + [128395] = 3, + ACTIONS(7615), 1, sym__soft_line_ending, - ACTIONS(7856), 1, - anon_sym_DOLLAR, - STATE(3150), 1, - aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(3559), 1, sym__soft_line_break, - [128377] = 2, - ACTIONS(7858), 1, - sym__whitespace, - ACTIONS(2537), 3, + ACTIONS(6888), 2, sym__key_specifier_token, - aux_sym_commonmark_specifier_token1, - aux_sym__commonmark_specifier_start_with_class_token1, - [128386] = 4, - ACTIONS(7830), 1, + sym__shortcode_close_escaped, + [128406] = 1, + ACTIONS(7932), 4, + sym__soft_line_ending, + sym__key_specifier_token, + anon_sym_RBRACE, + sym__whitespace, + [128413] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7860), 1, + ACTIONS(7934), 1, anon_sym_DOLLAR, - STATE(3159), 1, + STATE(3221), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [128399] = 4, - ACTIONS(7216), 1, - anon_sym_COLON, - ACTIONS(7218), 1, - anon_sym_DASH, - STATE(2982), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3591), 1, - sym_pipe_table_delimiter_cell, - [128412] = 4, - ACTIONS(3021), 1, + [128426] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7557), 1, - aux_sym_insert_token1, - STATE(944), 1, + ACTIONS(7645), 1, + sym__strikeout_close, + STATE(936), 1, sym__soft_line_break, - STATE(3191), 1, + STATE(3174), 1, aux_sym__inlines_repeat1, - [128425] = 1, - ACTIONS(2531), 4, - sym__pipe_table_delimiter, - anon_sym_COLON, - anon_sym_DASH, - sym__whitespace, - [128432] = 1, - ACTIONS(7862), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, [128439] = 4, - ACTIONS(7830), 1, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7864), 1, - anon_sym_DOLLAR, - STATE(3159), 1, - aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + ACTIONS(7627), 1, + sym__emphasis_close_underscore, + STATE(935), 1, sym__soft_line_break, + STATE(3186), 1, + aux_sym__inlines_repeat1, [128452] = 2, - ACTIONS(7668), 1, + ACTIONS(7690), 1, sym__pipe_table_delimiter, - ACTIONS(7291), 3, + ACTIONS(3075), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [128461] = 1, - ACTIONS(2541), 4, + [128461] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - sym__code_span_close, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [128468] = 4, - ACTIONS(3021), 1, + ACTIONS(7936), 1, + anon_sym_DOLLAR, + STATE(3181), 1, + aux_sym_pandoc_math_repeat1, + STATE(4348), 1, + sym__soft_line_break, + [128474] = 4, + ACTIONS(7683), 1, + sym__strong_emphasis_close_star, + ACTIONS(7685), 1, sym__soft_line_ending, - ACTIONS(7557), 1, - sym__superscript_close, - STATE(932), 1, + STATE(938), 1, sym__soft_line_break, - STATE(3166), 1, + STATE(3156), 1, aux_sym__inlines_repeat1, - [128481] = 4, - ACTIONS(7866), 1, - anon_sym_LBRACE, - ACTIONS(7868), 1, - sym__commonmark_naked_value, - ACTIONS(7870), 1, - sym__whitespace, - STATE(3556), 1, - sym__pandoc_attr_specifier, - [128494] = 4, - ACTIONS(7575), 1, - sym__emphasis_close_underscore, - ACTIONS(7579), 1, + [128487] = 4, + ACTIONS(7888), 1, + sym__soft_line_ending, + ACTIONS(7938), 1, + anon_sym_DOLLAR, + STATE(3161), 1, + aux_sym_pandoc_math_repeat1, + STATE(4348), 1, + sym__soft_line_break, + [128500] = 4, + ACTIONS(7683), 1, + aux_sym_insert_token1, + ACTIONS(7685), 1, sym__soft_line_ending, STATE(943), 1, sym__soft_line_break, - STATE(3155), 1, + STATE(3158), 1, aux_sym__inlines_repeat1, - [128507] = 3, - ACTIONS(3021), 1, + [128513] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7872), 1, - sym__whitespace, - STATE(799), 2, + ACTIONS(7645), 1, + sym__superscript_close, + STATE(941), 1, sym__soft_line_break, - sym__inline_whitespace, - [128518] = 4, - ACTIONS(7830), 1, + STATE(3223), 1, + aux_sym__inlines_repeat1, + [128526] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7874), 1, - anon_sym_DOLLAR, - STATE(3161), 1, - aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + ACTIONS(7645), 1, + sym__strong_emphasis_close_star, + STATE(938), 1, sym__soft_line_break, - [128531] = 1, - ACTIONS(2537), 4, - sym__key_specifier_token, - aux_sym_commonmark_specifier_token1, - aux_sym__commonmark_specifier_start_with_class_token1, - sym__whitespace, - [128538] = 4, - ACTIONS(7876), 1, - anon_sym_DOLLAR, - ACTIONS(7878), 1, + STATE(3156), 1, + aux_sym__inlines_repeat1, + [128539] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - STATE(3159), 1, + ACTIONS(7940), 1, + anon_sym_DOLLAR, + STATE(3221), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [128551] = 4, - ACTIONS(7575), 1, - sym__subscript_close, - ACTIONS(7579), 1, + [128552] = 1, + ACTIONS(7942), 4, + sym__soft_line_ending, + sym__code_span_close, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [128559] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - STATE(934), 1, + ACTIONS(7928), 1, + sym__whitespace, + STATE(3665), 1, sym__soft_line_break, - STATE(3160), 1, - aux_sym__inlines_repeat1, - [128564] = 4, - ACTIONS(7830), 1, + STATE(4475), 1, + sym__shortcode_sep, + [128572] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7881), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR, - STATE(3159), 1, + STATE(3166), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [128577] = 4, - ACTIONS(7830), 1, + [128585] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7883), 1, + ACTIONS(7946), 1, anon_sym_DOLLAR, - STATE(3180), 1, + STATE(3173), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [128590] = 4, - ACTIONS(7830), 1, + [128598] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7885), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR, - STATE(3169), 1, + STATE(3221), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [128603] = 1, - ACTIONS(7887), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [128610] = 4, - ACTIONS(7830), 1, + [128611] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7889), 1, + ACTIONS(7950), 1, anon_sym_DOLLAR, STATE(3172), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, - sym__soft_line_break, - [128623] = 4, - ACTIONS(7575), 1, - sym__superscript_close, - ACTIONS(7579), 1, - sym__soft_line_ending, - STATE(932), 1, - sym__soft_line_break, - STATE(3166), 1, - aux_sym__inlines_repeat1, - [128636] = 4, - ACTIONS(3021), 1, - sym__soft_line_ending, - ACTIONS(7640), 1, - sym__emphasis_close_underscore, - STATE(943), 1, + STATE(4348), 1, sym__soft_line_break, - STATE(3197), 1, - aux_sym__inlines_repeat1, - [128649] = 4, - ACTIONS(7830), 1, + [128624] = 4, + ACTIONS(7906), 1, + anon_sym_LBRACE, + ACTIONS(7952), 1, + sym__commonmark_naked_value, + ACTIONS(7954), 1, + sym__whitespace, + STATE(3670), 1, + sym__pandoc_attr_specifier, + [128637] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7891), 1, + ACTIONS(7956), 1, anon_sym_DOLLAR, - STATE(3159), 1, + STATE(3170), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [128662] = 4, - ACTIONS(7830), 1, + [128650] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7893), 1, + ACTIONS(7958), 1, anon_sym_DOLLAR, - STATE(3159), 1, + STATE(3221), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [128675] = 2, - ACTIONS(7668), 1, - sym__pipe_table_delimiter, - ACTIONS(7104), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [128684] = 2, - ACTIONS(7897), 1, + [128663] = 2, + ACTIONS(7690), 1, sym__pipe_table_delimiter, - ACTIONS(7895), 3, + ACTIONS(2971), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [128693] = 4, - ACTIONS(7830), 1, + [128672] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7899), 1, + ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(3159), 1, + STATE(3221), 1, + aux_sym_pandoc_math_repeat1, + STATE(4348), 1, + sym__soft_line_break, + [128685] = 4, + ACTIONS(7888), 1, + sym__soft_line_ending, + ACTIONS(7962), 1, + anon_sym_DOLLAR, + STATE(3221), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, + sym__soft_line_break, + [128698] = 4, + ACTIONS(7683), 1, + sym__strikeout_close, + ACTIONS(7685), 1, + sym__soft_line_ending, + STATE(936), 1, sym__soft_line_break, - [128706] = 3, - ACTIONS(3021), 1, + STATE(3174), 1, + aux_sym__inlines_repeat1, + [128711] = 3, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7901), 1, + ACTIONS(7964), 1, sym__whitespace, - STATE(803), 2, + STATE(801), 2, sym__soft_line_break, sym__inline_whitespace, - [128717] = 2, - ACTIONS(7897), 1, - sym__pipe_table_delimiter, - ACTIONS(7707), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [128726] = 4, - ACTIONS(7575), 1, - sym__strong_emphasis_close_underscore, - ACTIONS(7579), 1, + [128722] = 4, + ACTIONS(3261), 1, + sym__soft_line_ending, + ACTIONS(7627), 1, + sym__single_quote_span_close, + STATE(944), 1, + sym__soft_line_break, + STATE(3196), 1, + aux_sym__inlines_repeat1, + [128735] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, + ACTIONS(7645), 1, + sym__double_quote_span_close, STATE(942), 1, sym__soft_line_break, - STATE(3175), 1, + STATE(3209), 1, aux_sym__inlines_repeat1, - [128739] = 4, - ACTIONS(7830), 1, + [128748] = 3, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7903), 1, - anon_sym_DOLLAR, - STATE(3126), 1, - aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + ACTIONS(7966), 1, + sym__whitespace, + STATE(839), 2, sym__soft_line_break, - [128752] = 2, - ACTIONS(7897), 1, - sym__pipe_table_delimiter, - ACTIONS(3011), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [128761] = 2, - ACTIONS(7826), 1, + sym__inline_whitespace, + [128759] = 2, + ACTIONS(7690), 1, sym__pipe_table_delimiter, - ACTIONS(7666), 3, + ACTIONS(3071), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [128770] = 2, - ACTIONS(7610), 1, - sym__pipe_table_delimiter, - ACTIONS(7707), 3, + [128768] = 1, + ACTIONS(2773), 4, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [128779] = 4, - ACTIONS(7830), 1, - sym__soft_line_ending, - ACTIONS(7905), 1, - anon_sym_DOLLAR, - STATE(3159), 1, - aux_sym_pandoc_math_repeat1, - STATE(4345), 1, - sym__soft_line_break, - [128792] = 1, - ACTIONS(2541), 4, - sym__key_specifier_token, - aux_sym_commonmark_specifier_token1, - aux_sym__commonmark_specifier_start_with_class_token1, - sym__whitespace, - [128799] = 4, - ACTIONS(7830), 1, + sym__block_close, + sym__fenced_code_block_end_backtick, + sym__code_line, + [128775] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7907), 1, + ACTIONS(7968), 1, anon_sym_DOLLAR, - STATE(3168), 1, + STATE(3221), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [128812] = 2, - ACTIONS(7610), 1, + [128788] = 2, + ACTIONS(7623), 1, sym__pipe_table_delimiter, - ACTIONS(3011), 3, + ACTIONS(7385), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [128821] = 4, - ACTIONS(3021), 1, - sym__soft_line_ending, - ACTIONS(7640), 1, - sym__strikeout_close, - STATE(936), 1, - sym__soft_line_break, - STATE(3203), 1, - aux_sym__inlines_repeat1, - [128834] = 1, - ACTIONS(7909), 4, + [128797] = 1, + ACTIONS(2783), 4, sym__soft_line_ending, sym__code_span_close, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [128841] = 4, - ACTIONS(3021), 1, + [128804] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7640), 1, - sym__strong_emphasis_close_star, - STATE(940), 1, + ACTIONS(7627), 1, + sym__emphasis_close_star, + STATE(947), 1, sym__soft_line_break, - STATE(3139), 1, + STATE(3220), 1, aux_sym__inlines_repeat1, - [128854] = 2, - ACTIONS(7610), 1, + [128817] = 2, + ACTIONS(7970), 1, sym__pipe_table_delimiter, - ACTIONS(3015), 3, + ACTIONS(7621), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [128863] = 3, - ACTIONS(3021), 1, - sym__soft_line_ending, - ACTIONS(7911), 1, - sym__whitespace, - STATE(806), 2, - sym__soft_line_break, - sym__inline_whitespace, - [128874] = 1, - ACTIONS(2531), 4, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, - sym__code_line, - [128881] = 4, - ACTIONS(3021), 1, - sym__soft_line_ending, - ACTIONS(7640), 1, - aux_sym_insert_token1, - STATE(944), 1, - sym__soft_line_break, - STATE(3147), 1, - aux_sym__inlines_repeat1, - [128894] = 4, - ACTIONS(7575), 1, - aux_sym_insert_token1, - ACTIONS(7579), 1, + [128826] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - STATE(944), 1, + ACTIONS(7645), 1, + sym__emphasis_close_underscore, + STATE(935), 1, sym__soft_line_break, - STATE(3191), 1, + STATE(3120), 1, aux_sym__inlines_repeat1, - [128907] = 4, - ACTIONS(7830), 1, + [128839] = 3, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7913), 1, - anon_sym_DOLLAR, - STATE(3195), 1, - aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + ACTIONS(7972), 1, + sym__whitespace, + STATE(807), 2, sym__soft_line_break, - [128920] = 4, - ACTIONS(7830), 1, + sym__inline_whitespace, + [128850] = 1, + ACTIONS(2787), 4, + sym__key_specifier_token, + aux_sym_commonmark_specifier_token1, + aux_sym__commonmark_specifier_start_with_class_token1, + sym__whitespace, + [128857] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7915), 1, + ACTIONS(7974), 1, anon_sym_DOLLAR, - STATE(3196), 1, + STATE(3192), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [128933] = 3, - ACTIONS(7590), 1, + [128870] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - STATE(3562), 1, + ACTIONS(7627), 1, + sym__strong_emphasis_close_star, + STATE(938), 1, sym__soft_line_break, - ACTIONS(6816), 2, - sym__key_specifier_token, - sym__shortcode_close_escaped, - [128944] = 4, - ACTIONS(7830), 1, + STATE(3160), 1, + aux_sym__inlines_repeat1, + [128883] = 3, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7917), 1, - anon_sym_DOLLAR, - STATE(3159), 1, - aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + ACTIONS(7976), 1, + sym__whitespace, + STATE(803), 2, sym__soft_line_break, - [128957] = 4, - ACTIONS(7830), 1, + sym__inline_whitespace, + [128894] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7919), 1, + ACTIONS(7978), 1, anon_sym_DOLLAR, - STATE(3159), 1, + STATE(3221), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, - sym__soft_line_break, - [128970] = 4, - ACTIONS(3021), 1, - sym__soft_line_ending, - ACTIONS(7557), 1, - sym__emphasis_close_underscore, - STATE(943), 1, + STATE(4348), 1, sym__soft_line_break, - STATE(3155), 1, - aux_sym__inlines_repeat1, - [128983] = 4, - ACTIONS(3021), 1, + [128907] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7557), 1, - sym__emphasis_close_star, - STATE(941), 1, + ACTIONS(7627), 1, + sym__subscript_close, + STATE(945), 1, sym__soft_line_break, - STATE(3134), 1, + STATE(3200), 1, aux_sym__inlines_repeat1, - [128996] = 4, - ACTIONS(3021), 1, + [128920] = 2, + ACTIONS(7970), 1, + sym__pipe_table_delimiter, + ACTIONS(7385), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [128929] = 2, + ACTIONS(7970), 1, + sym__pipe_table_delimiter, + ACTIONS(7980), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [128938] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7640), 1, - sym__subscript_close, - STATE(934), 1, + ACTIONS(7645), 1, + sym__single_quote_span_close, + STATE(944), 1, sym__soft_line_break, - STATE(3220), 1, + STATE(3121), 1, aux_sym__inlines_repeat1, - [129009] = 3, - ACTIONS(3021), 1, + [128951] = 1, + ACTIONS(7982), 4, sym__soft_line_ending, - ACTIONS(7921), 1, + sym__key_specifier_token, + anon_sym_RBRACE, sym__whitespace, - STATE(807), 2, - sym__soft_line_break, - sym__inline_whitespace, - [129020] = 3, - ACTIONS(7547), 1, - sym__soft_line_ending, - STATE(3559), 1, - sym__soft_line_break, - ACTIONS(6816), 2, + [128958] = 1, + ACTIONS(2783), 4, sym__key_specifier_token, - sym__shortcode_close, - [129031] = 4, - ACTIONS(7575), 1, - sym__double_quote_span_close, - ACTIONS(7579), 1, + aux_sym_commonmark_specifier_token1, + aux_sym__commonmark_specifier_start_with_class_token1, + sym__whitespace, + [128965] = 2, + ACTIONS(7623), 1, + sym__pipe_table_delimiter, + ACTIONS(7621), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [128974] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - STATE(935), 1, + ACTIONS(7645), 1, + sym__subscript_close, + STATE(945), 1, sym__soft_line_break, - STATE(3202), 1, + STATE(3215), 1, aux_sym__inlines_repeat1, - [129044] = 4, - ACTIONS(3021), 1, + [128987] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7557), 1, - sym__strikeout_close, - STATE(936), 1, + ACTIONS(7928), 1, + sym__whitespace, + STATE(3665), 1, sym__soft_line_break, - STATE(3135), 1, - aux_sym__inlines_repeat1, - [129057] = 2, - ACTIONS(7610), 1, + STATE(4474), 1, + sym__shortcode_sep, + [129000] = 2, + ACTIONS(7900), 1, sym__pipe_table_delimiter, - ACTIONS(2913), 3, + ACTIONS(7720), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [129066] = 4, - ACTIONS(7830), 1, + [129009] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7923), 1, + ACTIONS(7984), 1, anon_sym_DOLLAR, - STATE(3214), 1, + STATE(3221), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [129079] = 4, - ACTIONS(7830), 1, + [129022] = 1, + ACTIONS(2787), 4, + sym__soft_line_ending, + sym__code_span_close, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [129029] = 4, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(7928), 1, + sym__whitespace, + STATE(3665), 1, + sym__soft_line_break, + STATE(4378), 1, + sym__shortcode_sep, + [129042] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7925), 1, + ACTIONS(7986), 1, anon_sym_DOLLAR, - STATE(3208), 1, + STATE(3117), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [129092] = 1, - ACTIONS(7927), 4, + [129055] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [129099] = 4, - ACTIONS(7830), 1, + ACTIONS(7627), 1, + aux_sym_insert_token1, + STATE(943), 1, + sym__soft_line_break, + STATE(3211), 1, + aux_sym__inlines_repeat1, + [129068] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7929), 1, + ACTIONS(7988), 1, anon_sym_DOLLAR, - STATE(3159), 1, + STATE(3222), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [129112] = 4, - ACTIONS(7575), 1, - sym__single_quote_span_close, - ACTIONS(7579), 1, + [129081] = 4, + ACTIONS(7683), 1, + sym__double_quote_span_close, + ACTIONS(7685), 1, sym__soft_line_ending, - STATE(933), 1, + STATE(942), 1, sym__soft_line_break, STATE(3209), 1, aux_sym__inlines_repeat1, - [129125] = 4, - ACTIONS(3021), 1, + [129094] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7640), 1, - sym__strong_emphasis_close_underscore, + ACTIONS(7627), 1, + sym__double_quote_span_close, STATE(942), 1, sym__soft_line_break, - STATE(3140), 1, + STATE(3177), 1, aux_sym__inlines_repeat1, - [129138] = 2, - ACTIONS(7668), 1, - sym__pipe_table_delimiter, - ACTIONS(7666), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [129147] = 4, - ACTIONS(6688), 1, + [129107] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7818), 1, - sym__whitespace, - STATE(3535), 1, + ACTIONS(7645), 1, + aux_sym_insert_token1, + STATE(943), 1, sym__soft_line_break, - STATE(4003), 1, - sym__shortcode_sep, - [129160] = 4, - ACTIONS(3021), 1, + STATE(3158), 1, + aux_sym__inlines_repeat1, + [129120] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7640), 1, - sym__emphasis_close_star, - STATE(941), 1, + ACTIONS(7645), 1, + sym__strong_emphasis_close_underscore, + STATE(940), 1, sym__soft_line_break, - STATE(3198), 1, + STATE(3218), 1, aux_sym__inlines_repeat1, - [129173] = 4, - ACTIONS(7830), 1, + [129133] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7931), 1, + ACTIONS(7990), 1, anon_sym_DOLLAR, - STATE(3159), 1, + STATE(3219), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [129186] = 4, - ACTIONS(7866), 1, - anon_sym_LBRACE, - ACTIONS(7933), 1, - sym__commonmark_naked_value, - ACTIONS(7935), 1, - sym_fenced_div_note_id, - STATE(3623), 1, - sym__pandoc_attr_specifier, - [129199] = 4, - ACTIONS(3021), 1, + [129146] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7557), 1, - sym__double_quote_span_close, - STATE(935), 1, + ACTIONS(7992), 1, + anon_sym_DOLLAR, + STATE(3232), 1, + aux_sym_pandoc_math_repeat1, + STATE(4348), 1, + sym__soft_line_break, + [129159] = 4, + ACTIONS(7683), 1, + sym__subscript_close, + ACTIONS(7685), 1, + sym__soft_line_ending, + STATE(945), 1, sym__soft_line_break, - STATE(3202), 1, + STATE(3215), 1, aux_sym__inlines_repeat1, - [129212] = 4, - ACTIONS(3021), 1, + [129172] = 4, + ACTIONS(7683), 1, + sym__emphasis_close_star, + ACTIONS(7685), 1, sym__soft_line_ending, - ACTIONS(7640), 1, - sym__superscript_close, - STATE(932), 1, + STATE(947), 1, sym__soft_line_break, - STATE(3153), 1, + STATE(3216), 1, aux_sym__inlines_repeat1, - [129225] = 4, - ACTIONS(7575), 1, - sym__strong_emphasis_close_star, - ACTIONS(7579), 1, + [129185] = 1, + ACTIONS(7177), 4, + sym__soft_line_ending, + sym__key_specifier_token, + anon_sym_RBRACE, + sym__whitespace, + [129192] = 4, + ACTIONS(7683), 1, + sym__strong_emphasis_close_underscore, + ACTIONS(7685), 1, sym__soft_line_ending, STATE(940), 1, sym__soft_line_break, STATE(3218), 1, aux_sym__inlines_repeat1, - [129238] = 4, - ACTIONS(7830), 1, + [129205] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7937), 1, + ACTIONS(7994), 1, anon_sym_DOLLAR, - STATE(3224), 1, + STATE(3221), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [129251] = 4, - ACTIONS(3021), 1, + [129218] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7557), 1, - sym__subscript_close, - STATE(934), 1, + ACTIONS(7645), 1, + sym__emphasis_close_star, + STATE(947), 1, sym__soft_line_break, - STATE(3160), 1, + STATE(3216), 1, aux_sym__inlines_repeat1, - [129264] = 2, - ACTIONS(7826), 1, - sym__pipe_table_delimiter, - ACTIONS(7291), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [129273] = 4, - ACTIONS(7830), 1, + [129231] = 4, + ACTIONS(7996), 1, + anon_sym_DOLLAR, + ACTIONS(7998), 1, + sym__soft_line_ending, + STATE(3221), 1, + aux_sym_pandoc_math_repeat1, + STATE(4348), 1, + sym__soft_line_break, + [129244] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7939), 1, + ACTIONS(8001), 1, anon_sym_DOLLAR, - STATE(3137), 1, + STATE(3221), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [129286] = 4, - ACTIONS(6688), 1, + [129257] = 4, + ACTIONS(7683), 1, + sym__superscript_close, + ACTIONS(7685), 1, sym__soft_line_ending, - ACTIONS(7818), 1, - sym__whitespace, - STATE(3535), 1, + STATE(941), 1, sym__soft_line_break, - STATE(4405), 1, - sym__shortcode_sep, - [129299] = 4, - ACTIONS(7830), 1, + STATE(3223), 1, + aux_sym__inlines_repeat1, + [129270] = 4, + ACTIONS(3261), 1, sym__soft_line_ending, - ACTIONS(7941), 1, - anon_sym_DOLLAR, - STATE(3159), 1, - aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + ACTIONS(7627), 1, + sym__superscript_close, + STATE(941), 1, sym__soft_line_break, - [129312] = 2, - ACTIONS(7897), 1, + STATE(3159), 1, + aux_sym__inlines_repeat1, + [129283] = 1, + ACTIONS(8003), 4, + sym__soft_line_ending, + sym__key_specifier_token, + anon_sym_RBRACE, + sym__whitespace, + [129290] = 2, + ACTIONS(7900), 1, sym__pipe_table_delimiter, - ACTIONS(3015), 3, + ACTIONS(3075), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [129321] = 4, - ACTIONS(7830), 1, + [129299] = 2, + ACTIONS(7690), 1, + sym__pipe_table_delimiter, + ACTIONS(7720), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [129308] = 2, + ACTIONS(7623), 1, + sym__pipe_table_delimiter, + ACTIONS(7258), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [129317] = 2, + ACTIONS(8005), 1, + sym__whitespace, + ACTIONS(2783), 3, + sym__key_specifier_token, + aux_sym_commonmark_specifier_token1, + aux_sym__commonmark_specifier_start_with_class_token1, + [129326] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - ACTIONS(7943), 1, + ACTIONS(8007), 1, anon_sym_DOLLAR, - STATE(3129), 1, + STATE(3118), 1, aux_sym_pandoc_math_repeat1, - STATE(4345), 1, + STATE(4348), 1, sym__soft_line_break, - [129334] = 2, - ACTIONS(6314), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(6312), 3, - sym__shortcode_open, - aux_sym__commonmark_double_quote_string_token1, - aux_sym__commonmark_double_quote_string_token4, - [129343] = 2, - ACTIONS(6318), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(6316), 3, - sym__shortcode_open, - aux_sym__commonmark_double_quote_string_token1, - aux_sym__commonmark_double_quote_string_token4, - [129352] = 2, - ACTIONS(6322), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(6320), 3, - sym__shortcode_open, - aux_sym__commonmark_double_quote_string_token1, - aux_sym__commonmark_double_quote_string_token4, - [129361] = 4, - ACTIONS(7866), 1, + [129339] = 1, + ACTIONS(8009), 4, + sym__soft_line_ending, + sym__key_specifier_token, + anon_sym_RBRACE, + sym__whitespace, + [129346] = 4, + ACTIONS(7888), 1, + sym__soft_line_ending, + ACTIONS(8011), 1, + anon_sym_DOLLAR, + STATE(3221), 1, + aux_sym_pandoc_math_repeat1, + STATE(4348), 1, + sym__soft_line_break, + [129359] = 4, + ACTIONS(7906), 1, anon_sym_LBRACE, - ACTIONS(7945), 1, + ACTIONS(8013), 1, sym__commonmark_naked_value, - ACTIONS(7947), 1, + ACTIONS(8015), 1, sym__whitespace, STATE(3577), 1, sym__pandoc_attr_specifier, - [129374] = 4, - ACTIONS(7866), 1, + [129372] = 4, + ACTIONS(7906), 1, anon_sym_LBRACE, - ACTIONS(7949), 1, + ACTIONS(8017), 1, sym__commonmark_naked_value, - ACTIONS(7951), 1, + ACTIONS(8019), 1, sym_fenced_div_note_id, STATE(3580), 1, sym__pandoc_attr_specifier, - [129387] = 4, - ACTIONS(7866), 1, + [129385] = 2, + ACTIONS(7900), 1, + sym__pipe_table_delimiter, + ACTIONS(3071), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [129394] = 4, + ACTIONS(7906), 1, anon_sym_LBRACE, - ACTIONS(7953), 1, + ACTIONS(8021), 1, sym__commonmark_naked_value, - ACTIONS(7955), 1, + ACTIONS(8023), 1, sym__whitespace, - STATE(3589), 1, + STATE(3590), 1, sym__pandoc_attr_specifier, - [129400] = 4, - ACTIONS(7866), 1, + [129407] = 4, + ACTIONS(7906), 1, anon_sym_LBRACE, - ACTIONS(7957), 1, + ACTIONS(8025), 1, sym__commonmark_naked_value, - ACTIONS(7959), 1, + ACTIONS(8027), 1, sym_fenced_div_note_id, - STATE(3594), 1, + STATE(3596), 1, sym__pandoc_attr_specifier, - [129413] = 4, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(7818), 1, - sym__whitespace, - STATE(3535), 1, - sym__soft_line_break, - STATE(4406), 1, - sym__shortcode_sep, - [129426] = 4, - ACTIONS(6688), 1, + [129420] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4407), 1, + STATE(4420), 1, sym__shortcode_sep, - [129439] = 4, - ACTIONS(6688), 1, + [129433] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4420), 1, + STATE(4421), 1, sym__shortcode_sep, - [129452] = 4, - ACTIONS(6688), 1, + [129446] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4421), 1, + STATE(4435), 1, sym__shortcode_sep, - [129465] = 4, - ACTIONS(6688), 1, + [129459] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4431), 1, + STATE(4436), 1, sym__shortcode_sep, - [129478] = 4, - ACTIONS(6688), 1, + [129472] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4432), 1, + STATE(4446), 1, sym__shortcode_sep, - [129491] = 4, - ACTIONS(6688), 1, + [129485] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4433), 1, + STATE(4447), 1, sym__shortcode_sep, - [129504] = 4, - ACTIONS(6688), 1, + [129498] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4434), 1, + STATE(4448), 1, sym__shortcode_sep, - [129517] = 4, - ACTIONS(6688), 1, + [129511] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4435), 1, + STATE(4449), 1, sym__shortcode_sep, - [129530] = 4, - ACTIONS(6688), 1, + [129524] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4436), 1, + STATE(4450), 1, sym__shortcode_sep, - [129543] = 4, - ACTIONS(6688), 1, + [129537] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4437), 1, + STATE(4451), 1, sym__shortcode_sep, - [129556] = 4, - ACTIONS(6688), 1, + [129550] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4438), 1, + STATE(4452), 1, sym__shortcode_sep, - [129569] = 4, - ACTIONS(6688), 1, + [129563] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4439), 1, + STATE(4453), 1, sym__shortcode_sep, - [129582] = 4, - ACTIONS(6688), 1, + [129576] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4440), 1, + STATE(4454), 1, sym__shortcode_sep, - [129595] = 4, - ACTIONS(6688), 1, + [129589] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4441), 1, + STATE(4455), 1, sym__shortcode_sep, - [129608] = 4, - ACTIONS(6688), 1, + [129602] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4442), 1, + STATE(4456), 1, sym__shortcode_sep, - [129621] = 4, - ACTIONS(6688), 1, + [129615] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4443), 1, + STATE(4457), 1, sym__shortcode_sep, - [129634] = 4, - ACTIONS(6688), 1, + [129628] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4460), 1, + STATE(4458), 1, sym__shortcode_sep, - [129647] = 4, - ACTIONS(6688), 1, + [129641] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4445), 1, + STATE(4459), 1, sym__shortcode_sep, - [129660] = 4, - ACTIONS(6688), 1, + [129654] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4446), 1, + STATE(4460), 1, sym__shortcode_sep, - [129673] = 4, - ACTIONS(6688), 1, + [129667] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4447), 1, + STATE(4461), 1, sym__shortcode_sep, - [129686] = 4, - ACTIONS(6688), 1, + [129680] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4448), 1, + STATE(4462), 1, sym__shortcode_sep, - [129699] = 4, - ACTIONS(6688), 1, + [129693] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4449), 1, + STATE(4463), 1, sym__shortcode_sep, - [129712] = 4, - ACTIONS(6688), 1, + [129706] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4450), 1, + STATE(4464), 1, sym__shortcode_sep, - [129725] = 4, - ACTIONS(6688), 1, + [129719] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4451), 1, + STATE(4465), 1, sym__shortcode_sep, - [129738] = 4, - ACTIONS(6688), 1, + [129732] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4452), 1, + STATE(4466), 1, sym__shortcode_sep, - [129751] = 4, - ACTIONS(6688), 1, + [129745] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4453), 1, + STATE(4467), 1, sym__shortcode_sep, - [129764] = 4, - ACTIONS(6688), 1, + [129758] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4454), 1, + STATE(4468), 1, sym__shortcode_sep, - [129777] = 4, - ACTIONS(6688), 1, + [129771] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4455), 1, + STATE(4469), 1, sym__shortcode_sep, - [129790] = 4, - ACTIONS(6688), 1, + [129784] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4456), 1, + STATE(4470), 1, sym__shortcode_sep, - [129803] = 4, - ACTIONS(6688), 1, + [129797] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4457), 1, + STATE(4471), 1, sym__shortcode_sep, - [129816] = 4, - ACTIONS(6688), 1, + [129810] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4458), 1, + STATE(4472), 1, sym__shortcode_sep, - [129829] = 4, - ACTIONS(6688), 1, + [129823] = 4, + ACTIONS(6752), 1, sym__soft_line_ending, - ACTIONS(7818), 1, + ACTIONS(7928), 1, sym__whitespace, - STATE(3535), 1, + STATE(3665), 1, sym__soft_line_break, - STATE(4459), 1, + STATE(4473), 1, sym__shortcode_sep, - [129842] = 1, - ACTIONS(7961), 4, + [129836] = 4, + ACTIONS(7888), 1, sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, + ACTIONS(8029), 1, + anon_sym_DOLLAR, + STATE(3203), 1, + aux_sym_pandoc_math_repeat1, + STATE(4348), 1, + sym__soft_line_break, [129849] = 3, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(7963), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, + ACTIONS(6614), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, [129859] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(7967), 1, - sym__eof, - STATE(4350), 1, - sym__newline, + ACTIONS(2827), 1, + aux_sym_target_token1, + ACTIONS(8031), 1, + aux_sym_pandoc_span_token1, + STATE(1153), 1, + sym_target, [129869] = 3, - ACTIONS(6528), 1, - sym__key_specifier_token, - ACTIONS(6604), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, + ACTIONS(2943), 1, + aux_sym_target_token1, + ACTIONS(8033), 1, + aux_sym_pandoc_span_token1, + STATE(966), 1, + sym_target, [129879] = 3, - ACTIONS(6522), 1, + ACTIONS(8035), 1, + sym__block_close, + ACTIONS(8037), 1, + sym__blank_line_start, + STATE(3873), 1, + sym__blank_line, + [129889] = 3, + ACTIONS(2943), 1, + aux_sym_target_token1, + ACTIONS(8039), 1, + aux_sym_pandoc_span_token1, + STATE(984), 1, + sym_target, + [129899] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(7969), 1, + ACTIONS(8041), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [129889] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(7971), 1, - sym__eof, - STATE(4370), 1, - sym__newline, - [129899] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(7973), 1, - sym__eof, - STATE(4371), 1, - sym__newline, [129909] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(7975), 1, - sym__eof, - STATE(4372), 1, - sym__newline, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8043), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, [129919] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(7977), 1, - sym__eof, - STATE(4375), 1, - sym__newline, + ACTIONS(2847), 1, + aux_sym_target_token1, + ACTIONS(8045), 1, + aux_sym_pandoc_span_token1, + STATE(1246), 1, + sym_target, [129929] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(7979), 1, - sym__eof, - STATE(4403), 1, - sym__newline, + ACTIONS(2943), 1, + aux_sym_target_token1, + ACTIONS(8047), 1, + aux_sym_pandoc_span_token1, + STATE(976), 1, + sym_target, [129939] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(7981), 1, - sym__eof, - STATE(4417), 1, - sym__newline, + ACTIONS(2943), 1, + aux_sym_target_token1, + ACTIONS(8049), 1, + aux_sym_pandoc_span_token1, + STATE(977), 1, + sym_target, [129949] = 3, - ACTIONS(6528), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(7983), 1, + ACTIONS(8051), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, [129959] = 3, - ACTIONS(2745), 1, - aux_sym_target_token1, - ACTIONS(7985), 1, - aux_sym_pandoc_span_token1, - STATE(1370), 1, - sym_target, - [129969] = 3, - ACTIONS(3011), 1, - sym__line_ending, - ACTIONS(7987), 1, + ACTIONS(2403), 1, + aux_sym_inline_note_token1, + ACTIONS(8053), 1, sym__whitespace, - ACTIONS(7989), 1, - sym__pipe_table_delimiter, + ACTIONS(8055), 1, + sym_block_continuation, + [129969] = 3, + ACTIONS(6596), 1, + sym__key_specifier_token, + ACTIONS(6686), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, [129979] = 3, - ACTIONS(3015), 1, - sym__line_ending, - ACTIONS(7991), 1, - sym__whitespace, - ACTIONS(7993), 1, - sym__pipe_table_delimiter, + ACTIONS(6590), 1, + sym__key_specifier_token, + ACTIONS(6688), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, [129989] = 3, - ACTIONS(2561), 1, - aux_sym_target_token1, - ACTIONS(7995), 1, - aux_sym_pandoc_span_token1, - STATE(1171), 1, - sym_target, + ACTIONS(6596), 1, + sym__key_specifier_token, + ACTIONS(8057), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, [129999] = 3, - ACTIONS(117), 1, - sym__line_ending, - ACTIONS(7997), 1, - sym__eof, - STATE(497), 1, - sym__newline, + ACTIONS(6590), 1, + sym__key_specifier_token, + ACTIONS(8059), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, [130009] = 3, - ACTIONS(233), 1, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(7999), 1, + ACTIONS(8063), 1, sym__eof, - STATE(341), 1, + STATE(4372), 1, sym__newline, [130019] = 3, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6584), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, + ACTIONS(6692), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, [130029] = 3, - ACTIONS(2561), 1, + ACTIONS(6590), 1, + sym__key_specifier_token, + ACTIONS(8065), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + [130039] = 3, + ACTIONS(2847), 1, aux_sym_target_token1, - ACTIONS(8001), 1, + ACTIONS(8067), 1, aux_sym_pandoc_span_token1, - STATE(1173), 1, + STATE(1247), 1, sym_target, - [130039] = 3, - ACTIONS(23), 1, - sym__line_ending, - ACTIONS(8003), 1, - sym__eof, - STATE(381), 1, - sym__newline, [130049] = 3, - ACTIONS(6522), 1, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6658), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [130059] = 1, - ACTIONS(7686), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [130065] = 3, - ACTIONS(6528), 1, + ACTIONS(6696), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + [130059] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6546), 1, + ACTIONS(8069), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [130075] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(8005), 1, - sym__eof, - STATE(4480), 1, - sym__newline, - [130085] = 3, - ACTIONS(6522), 1, + [130069] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(8007), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [130095] = 3, - ACTIONS(6528), 1, + ACTIONS(6700), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + [130079] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(8009), 1, + ACTIONS(8071), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [130105] = 3, - ACTIONS(23), 1, - sym__line_ending, - ACTIONS(8011), 1, - sym__eof, - STATE(473), 1, - sym__newline, - [130115] = 3, + [130089] = 3, ACTIONS(2795), 1, aux_sym_target_token1, - ACTIONS(8013), 1, - aux_sym_pandoc_span_token1, - STATE(1329), 1, - sym_target, - [130125] = 3, - ACTIONS(7381), 1, - sym__shortcode_open, - ACTIONS(8015), 1, - aux_sym__commonmark_double_quote_string_token2, - STATE(2802), 1, - sym_shortcode, - [130135] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(8017), 1, - sym__eof, - STATE(3769), 1, - sym__newline, - [130145] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(8019), 1, - sym__eof, - STATE(3782), 1, - sym__newline, - [130155] = 3, - ACTIONS(2673), 1, - aux_sym_target_token1, - ACTIONS(8021), 1, + ACTIONS(8073), 1, aux_sym_pandoc_span_token1, - STATE(1195), 1, + STATE(1340), 1, sym_target, - [130165] = 3, + [130099] = 3, ACTIONS(2795), 1, aux_sym_target_token1, - ACTIONS(8023), 1, + ACTIONS(8075), 1, aux_sym_pandoc_span_token1, - STATE(1345), 1, + STATE(1351), 1, sym_target, - [130175] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(8025), 1, - sym__eof, - STATE(4028), 1, - sym__newline, - [130185] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(8027), 1, - sym__eof, - STATE(4045), 1, - sym__newline, - [130195] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(8029), 1, - sym__eof, - STATE(4152), 1, - sym__newline, - [130205] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(8031), 1, - sym__eof, - STATE(4186), 1, - sym__newline, - [130215] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(8033), 1, - sym__eof, - STATE(4207), 1, - sym__newline, - [130225] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(8035), 1, - sym__eof, - STATE(4209), 1, - sym__newline, - [130235] = 3, - ACTIONS(2321), 1, - aux_sym_pandoc_math_token1, - ACTIONS(8037), 1, - sym__whitespace, - ACTIONS(8039), 1, - sym_block_continuation, - [130245] = 3, - ACTIONS(6528), 1, + [130109] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6660), 1, + ACTIONS(6704), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [130255] = 3, - ACTIONS(6522), 1, + [130119] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(8041), 1, + ACTIONS(8077), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + [130129] = 3, + ACTIONS(2425), 1, + aux_sym_target_token1, + ACTIONS(8079), 1, + aux_sym_pandoc_span_token1, + STATE(1469), 1, + sym_target, + [130139] = 3, + ACTIONS(2425), 1, + aux_sym_target_token1, + ACTIONS(8081), 1, + aux_sym_pandoc_span_token1, + STATE(1470), 1, + sym_target, + [130149] = 3, + ACTIONS(6596), 1, + sym__key_specifier_token, + ACTIONS(8083), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [130265] = 3, - ACTIONS(8043), 1, + [130159] = 3, + ACTIONS(23), 1, sym__line_ending, - ACTIONS(8045), 1, + ACTIONS(8085), 1, sym__eof, - STATE(3925), 1, + STATE(407), 1, sym__newline, - [130275] = 3, - ACTIONS(8047), 1, - sym__block_close, - ACTIONS(8049), 1, - sym__blank_line_start, - STATE(3717), 1, - sym__blank_line, - [130285] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, - ACTIONS(8051), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [130295] = 3, - ACTIONS(23), 1, + [130169] = 3, + ACTIONS(241), 1, sym__line_ending, - ACTIONS(8053), 1, + ACTIONS(8087), 1, sym__eof, - STATE(402), 1, + STATE(246), 1, sym__newline, - [130305] = 3, - ACTIONS(8049), 1, + [130179] = 3, + ACTIONS(6888), 1, + sym__key_specifier_token, + ACTIONS(6902), 1, + sym__soft_line_ending, + STATE(3884), 1, + sym__soft_line_break, + [130189] = 3, + ACTIONS(7411), 1, + sym__shortcode_open, + ACTIONS(8089), 1, + aux_sym__commonmark_double_quote_string_token2, + STATE(2890), 1, + sym_shortcode, + [130199] = 3, + ACTIONS(6596), 1, + sym__key_specifier_token, + ACTIONS(6598), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + [130209] = 3, + ACTIONS(8037), 1, sym__blank_line_start, - ACTIONS(8055), 1, + ACTIONS(8091), 1, sym__block_close, - STATE(3717), 1, + STATE(3873), 1, sym__blank_line, - [130315] = 3, - ACTIONS(23), 1, + [130219] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(8057), 1, + ACTIONS(8093), 1, sym__eof, - STATE(421), 1, + STATE(4048), 1, sym__newline, - [130325] = 3, - ACTIONS(6436), 1, - sym__key_specifier_token, - ACTIONS(6996), 1, - anon_sym_RBRACE, - STATE(3116), 1, - sym__commonmark_key_value_specifier, - [130335] = 3, - ACTIONS(6528), 1, + [130229] = 2, + ACTIONS(8095), 1, + aux_sym_pandoc_span_token1, + ACTIONS(8097), 2, + sym__soft_line_ending, + aux_sym_target_token1, + [130237] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(8059), 1, + ACTIONS(6608), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [130345] = 3, - ACTIONS(2795), 1, - aux_sym_target_token1, + [130247] = 3, + ACTIONS(7411), 1, + sym__shortcode_open, + ACTIONS(8099), 1, + aux_sym__commonmark_double_quote_string_token2, + STATE(2881), 1, + sym_shortcode, + [130257] = 3, + ACTIONS(7527), 1, + sym__shortcode_open, + ACTIONS(8101), 1, + aux_sym__commonmark_single_quote_string_token2, + STATE(2882), 1, + sym_shortcode, + [130267] = 3, ACTIONS(8061), 1, - aux_sym_pandoc_span_token1, - STATE(1409), 1, - sym_target, - [130355] = 3, - ACTIONS(2795), 1, - aux_sym_target_token1, - ACTIONS(8063), 1, - aux_sym_pandoc_span_token1, - STATE(1410), 1, - sym_target, - [130365] = 3, - ACTIONS(233), 1, sym__line_ending, - ACTIONS(8065), 1, + ACTIONS(8103), 1, sym__eof, - STATE(288), 1, + STATE(4088), 1, sym__newline, - [130375] = 3, - ACTIONS(2907), 1, - sym__line_ending, - ACTIONS(7989), 1, - sym__pipe_table_delimiter, - ACTIONS(8067), 1, - sym__whitespace, - [130385] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6628), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [130395] = 1, - ACTIONS(7756), 3, + [130277] = 3, + ACTIONS(8061), 1, sym__line_ending, - sym__pipe_table_delimiter, - sym__whitespace, - [130401] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, - ACTIONS(8069), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [130411] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, - ACTIONS(8071), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [130421] = 2, - ACTIONS(8073), 1, - sym_block_continuation, - ACTIONS(2315), 2, - sym__block_close, - sym__blank_line_start, - [130429] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, - ACTIONS(8075), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [130439] = 3, - ACTIONS(6528), 1, - sym__key_specifier_token, - ACTIONS(6638), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - [130449] = 3, - ACTIONS(6522), 1, + ACTIONS(8105), 1, + sym__eof, + STATE(4090), 1, + sym__newline, + [130287] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(8077), 1, + ACTIONS(8107), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [130459] = 3, - ACTIONS(6528), 1, + [130297] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(8079), 1, + ACTIONS(8109), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [130469] = 3, - ACTIONS(233), 1, - sym__line_ending, - ACTIONS(8081), 1, - sym__eof, - STATE(342), 1, - sym__newline, - [130479] = 3, - ACTIONS(7965), 1, + [130307] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(8083), 1, + ACTIONS(8111), 1, sym__eof, - STATE(4343), 1, + STATE(4106), 1, sym__newline, - [130489] = 3, - ACTIONS(7965), 1, + [130317] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(8085), 1, + ACTIONS(8113), 1, sym__eof, - STATE(3695), 1, + STATE(4107), 1, sym__newline, - [130499] = 3, - ACTIONS(2755), 1, - aux_sym_target_token1, - ACTIONS(8087), 1, - aux_sym_pandoc_span_token1, - STATE(1389), 1, - sym_target, - [130509] = 3, - ACTIONS(2755), 1, - aux_sym_target_token1, - ACTIONS(8089), 1, - aux_sym_pandoc_span_token1, - STATE(1391), 1, - sym_target, - [130519] = 3, - ACTIONS(2695), 1, - aux_sym_target_token1, - ACTIONS(8091), 1, - aux_sym_pandoc_span_token1, - STATE(1085), 1, - sym_target, - [130529] = 3, - ACTIONS(233), 1, + [130327] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(8093), 1, + ACTIONS(8115), 1, sym__eof, - STATE(226), 1, + STATE(4108), 1, sym__newline, - [130539] = 3, - ACTIONS(8095), 1, + [130337] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(8097), 1, + ACTIONS(8117), 1, sym__eof, - STATE(3714), 1, + STATE(4109), 1, sym__newline, - [130549] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, - ACTIONS(8099), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [130559] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, - ACTIONS(8101), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [130569] = 3, - ACTIONS(23), 1, + [130347] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(8103), 1, + ACTIONS(8119), 1, sym__eof, - STATE(426), 1, + STATE(4110), 1, sym__newline, - [130579] = 3, - ACTIONS(233), 1, + [130357] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(8105), 1, + ACTIONS(8121), 1, sym__eof, - STATE(255), 1, + STATE(4113), 1, sym__newline, - [130589] = 3, - ACTIONS(2755), 1, + [130367] = 3, + ACTIONS(2897), 1, aux_sym_target_token1, - ACTIONS(8107), 1, + ACTIONS(8123), 1, aux_sym_pandoc_span_token1, - STATE(1398), 1, + STATE(1441), 1, sym_target, - [130599] = 3, - ACTIONS(2755), 1, + [130377] = 3, + ACTIONS(2827), 1, aux_sym_target_token1, - ACTIONS(8109), 1, + ACTIONS(8125), 1, aux_sym_pandoc_span_token1, - STATE(1399), 1, + STATE(1154), 1, sym_target, - [130609] = 3, - ACTIONS(2805), 1, + [130387] = 3, + ACTIONS(2779), 1, aux_sym_target_token1, - ACTIONS(8111), 1, + ACTIONS(8127), 1, aux_sym_pandoc_span_token1, - STATE(1442), 1, + STATE(1070), 1, sym_target, - [130619] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6634), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [130629] = 3, - ACTIONS(2805), 1, + [130397] = 3, + ACTIONS(2897), 1, aux_sym_target_token1, - ACTIONS(8113), 1, + ACTIONS(8129), 1, aux_sym_pandoc_span_token1, - STATE(1445), 1, + STATE(1442), 1, sym_target, - [130639] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, - ACTIONS(8115), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [130649] = 3, - ACTIONS(6528), 1, - sym__key_specifier_token, - ACTIONS(6636), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - [130659] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6610), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [130669] = 3, - ACTIONS(7965), 1, + [130407] = 1, + ACTIONS(7864), 3, sym__line_ending, - ACTIONS(8117), 1, + sym__pipe_table_delimiter, + sym__whitespace, + [130413] = 3, + ACTIONS(23), 1, + sym__line_ending, + ACTIONS(8131), 1, sym__eof, - STATE(3683), 1, + STATE(379), 1, sym__newline, - [130679] = 3, - ACTIONS(6528), 1, - sym__key_specifier_token, - ACTIONS(6614), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - [130689] = 3, - ACTIONS(7965), 1, + [130423] = 3, + ACTIONS(117), 1, sym__line_ending, - ACTIONS(8119), 1, + ACTIONS(8133), 1, sym__eof, - STATE(3689), 1, + STATE(449), 1, sym__newline, - [130699] = 3, - ACTIONS(2805), 1, - aux_sym_target_token1, - ACTIONS(8121), 1, - aux_sym_pandoc_span_token1, - STATE(1452), 1, - sym_target, - [130709] = 3, - ACTIONS(2805), 1, + [130433] = 3, + ACTIONS(8061), 1, + sym__line_ending, + ACTIONS(8135), 1, + sym__eof, + STATE(4017), 1, + sym__newline, + [130443] = 3, + ACTIONS(2779), 1, aux_sym_target_token1, - ACTIONS(8123), 1, + ACTIONS(8137), 1, aux_sym_pandoc_span_token1, - STATE(1454), 1, + STATE(1072), 1, sym_target, - [130719] = 3, - ACTIONS(6522), 1, + [130453] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(8125), 1, + ACTIONS(6642), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [130729] = 3, - ACTIONS(23), 1, + [130463] = 3, + ACTIONS(117), 1, sym__line_ending, - ACTIONS(8127), 1, + ACTIONS(8139), 1, sym__eof, - STATE(424), 1, + STATE(427), 1, sym__newline, - [130739] = 3, - ACTIONS(3015), 1, - sym__line_ending, - ACTIONS(7989), 1, - sym__pipe_table_delimiter, - ACTIONS(8129), 1, - sym__whitespace, - [130749] = 3, - ACTIONS(6528), 1, + [130473] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(8131), 1, + ACTIONS(6644), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [130759] = 3, - ACTIONS(6522), 1, + [130483] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6652), 1, + ACTIONS(8141), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [130769] = 2, - ACTIONS(8135), 1, - sym__whitespace, - ACTIONS(8133), 2, - sym__soft_line_ending, - aux_sym_inline_note_token1, - [130777] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, - ACTIONS(8137), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [130787] = 3, - ACTIONS(6528), 1, + [130493] = 3, + ACTIONS(8061), 1, + sym__line_ending, + ACTIONS(8143), 1, + sym__eof, + STATE(4384), 1, + sym__newline, + [130503] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6662), 1, + ACTIONS(8145), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [130797] = 3, - ACTIONS(2561), 1, - aux_sym_target_token1, - ACTIONS(8139), 1, - aux_sym_pandoc_span_token1, - STATE(1240), 1, - sym_target, - [130807] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(8141), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [130817] = 3, - ACTIONS(6528), 1, + [130513] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(8143), 1, + ACTIONS(8147), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [130827] = 3, + [130523] = 3, + ACTIONS(6596), 1, + sym__key_specifier_token, + ACTIONS(6726), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + [130533] = 3, ACTIONS(117), 1, sym__line_ending, - ACTIONS(8145), 1, + ACTIONS(8149), 1, sym__eof, - STATE(433), 1, + STATE(478), 1, sym__newline, - [130837] = 3, - ACTIONS(117), 1, + [130543] = 3, + ACTIONS(7411), 1, + sym__shortcode_open, + ACTIONS(8151), 1, + aux_sym__commonmark_double_quote_string_token2, + STATE(2800), 1, + sym_shortcode, + [130553] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(8147), 1, + ACTIONS(8153), 1, sym__eof, - STATE(434), 1, + STATE(4408), 1, sym__newline, - [130847] = 3, - ACTIONS(2913), 1, + [130563] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(7989), 1, - sym__pipe_table_delimiter, - ACTIONS(8149), 1, - sym__whitespace, - [130857] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, - ACTIONS(8151), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [130867] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, - ACTIONS(8153), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [130877] = 2, ACTIONS(8155), 1, - sym__whitespace, - ACTIONS(6816), 2, - sym__key_specifier_token, - sym__shortcode_close, - [130885] = 3, - ACTIONS(2735), 1, - aux_sym_target_token1, + sym__eof, + STATE(4412), 1, + sym__newline, + [130573] = 3, + ACTIONS(23), 1, + sym__line_ending, ACTIONS(8157), 1, - aux_sym_pandoc_span_token1, - STATE(1330), 1, - sym_target, - [130895] = 3, - ACTIONS(2561), 1, + sym__eof, + STATE(487), 1, + sym__newline, + [130583] = 3, + ACTIONS(2887), 1, aux_sym_target_token1, ACTIONS(8159), 1, aux_sym_pandoc_span_token1, - STATE(1241), 1, + STATE(1405), 1, sym_target, - [130905] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, + [130593] = 3, + ACTIONS(8061), 1, + sym__line_ending, ACTIONS(8161), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [130915] = 3, - ACTIONS(117), 1, + sym__eof, + STATE(4085), 1, + sym__newline, + [130603] = 3, + ACTIONS(8061), 1, sym__line_ending, ACTIONS(8163), 1, sym__eof, - STATE(435), 1, + STATE(3749), 1, sym__newline, - [130925] = 2, - ACTIONS(8165), 1, - sym_block_continuation, - ACTIONS(2315), 2, + [130613] = 3, + ACTIONS(8061), 1, sym__line_ending, + ACTIONS(8165), 1, sym__eof, - [130933] = 3, - ACTIONS(2735), 1, - aux_sym_target_token1, + STATE(4043), 1, + sym__newline, + [130623] = 3, + ACTIONS(8061), 1, + sym__line_ending, ACTIONS(8167), 1, - aux_sym_pandoc_span_token1, - STATE(1332), 1, - sym_target, - [130943] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, + sym__eof, + STATE(4240), 1, + sym__newline, + [130633] = 3, + ACTIONS(8061), 1, + sym__line_ending, ACTIONS(8169), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [130953] = 3, - ACTIONS(2815), 1, - aux_sym_target_token1, - ACTIONS(8171), 1, - aux_sym_pandoc_span_token1, - STATE(1474), 1, - sym_target, - [130963] = 3, - ACTIONS(117), 1, + sym__eof, + STATE(4292), 1, + sym__newline, + [130643] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(8173), 1, + ACTIONS(8171), 1, sym__eof, - STATE(425), 1, + STATE(3929), 1, sym__newline, - [130973] = 3, - ACTIONS(2815), 1, - aux_sym_target_token1, + [130653] = 3, + ACTIONS(8173), 1, + sym__line_ending, ACTIONS(8175), 1, - aux_sym_pandoc_span_token1, - STATE(1476), 1, - sym_target, - [130983] = 3, - ACTIONS(7381), 1, - sym__shortcode_open, + sym__eof, + STATE(3556), 1, + sym__newline, + [130663] = 3, + ACTIONS(6590), 1, + sym__key_specifier_token, + ACTIONS(6728), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + [130673] = 3, + ACTIONS(241), 1, + sym__line_ending, ACTIONS(8177), 1, - aux_sym__commonmark_double_quote_string_token2, - STATE(2818), 1, - sym_shortcode, - [130993] = 3, - ACTIONS(2321), 1, - aux_sym_inline_note_token1, - ACTIONS(8179), 1, + sym__eof, + STATE(252), 1, + sym__newline, + [130683] = 1, + ACTIONS(8179), 3, + sym__soft_line_ending, + anon_sym_RBRACE, sym__whitespace, - ACTIONS(8181), 1, - sym_block_continuation, - [131003] = 3, - ACTIONS(6528), 1, + [130689] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, + ACTIONS(8181), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + [130699] = 3, + ACTIONS(2779), 1, + aux_sym_target_token1, ACTIONS(8183), 1, + aux_sym_pandoc_span_token1, + STATE(1087), 1, + sym_target, + [130709] = 3, + ACTIONS(6590), 1, + sym__key_specifier_token, + ACTIONS(8185), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [131013] = 3, - ACTIONS(6522), 1, + [130719] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(8185), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [131023] = 3, - ACTIONS(2815), 1, + ACTIONS(6616), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + [130729] = 3, + ACTIONS(2857), 1, aux_sym_target_token1, ACTIONS(8187), 1, aux_sym_pandoc_span_token1, - STATE(1485), 1, + STATE(1268), 1, sym_target, - [131033] = 3, - ACTIONS(2815), 1, - aux_sym_target_token1, + [130739] = 3, + ACTIONS(6596), 1, + sym__key_specifier_token, ACTIONS(8189), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + [130749] = 3, + ACTIONS(2857), 1, + aux_sym_target_token1, + ACTIONS(8191), 1, aux_sym_pandoc_span_token1, - STATE(1486), 1, + STATE(1273), 1, sym_target, - [131043] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, - ACTIONS(8191), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [131053] = 3, - ACTIONS(2913), 1, + [130759] = 1, + ACTIONS(8097), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + [130765] = 3, + ACTIONS(3081), 1, sym__line_ending, - ACTIONS(7993), 1, - sym__pipe_table_delimiter, ACTIONS(8193), 1, sym__whitespace, - [131063] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, ACTIONS(8195), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [131073] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, + sym__pipe_table_delimiter, + [130775] = 3, ACTIONS(8197), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [131083] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6646), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [131093] = 3, - ACTIONS(2765), 1, - aux_sym_target_token1, + sym__line_ending, ACTIONS(8199), 1, - aux_sym_pandoc_span_token1, - STATE(1444), 1, - sym_target, - [131103] = 3, - ACTIONS(6528), 1, + sym__eof, + STATE(3641), 1, + sym__newline, + [130785] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6532), 1, + ACTIONS(8201), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [131113] = 3, - ACTIONS(6522), 1, + [130795] = 3, + ACTIONS(241), 1, + sym__line_ending, + ACTIONS(8203), 1, + sym__eof, + STATE(253), 1, + sym__newline, + [130805] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(8201), 1, + ACTIONS(6622), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [131123] = 3, - ACTIONS(6528), 1, - sym__key_specifier_token, - ACTIONS(8203), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - [131133] = 3, - ACTIONS(117), 1, + [130815] = 3, + ACTIONS(3071), 1, sym__line_ending, ACTIONS(8205), 1, - sym__eof, - STATE(436), 1, - sym__newline, - [131143] = 1, - ACTIONS(7259), 3, - sym__soft_line_ending, - anon_sym_RBRACE, sym__whitespace, - [131149] = 3, - ACTIONS(117), 1, - sym__line_ending, ACTIONS(8207), 1, - sym__eof, - STATE(437), 1, - sym__newline, - [131159] = 3, - ACTIONS(117), 1, - sym__line_ending, + sym__pipe_table_delimiter, + [130825] = 3, + ACTIONS(2857), 1, + aux_sym_target_token1, ACTIONS(8209), 1, - sym__eof, - STATE(438), 1, - sym__newline, - [131169] = 3, - ACTIONS(2765), 1, + aux_sym_pandoc_span_token1, + STATE(1282), 1, + sym_target, + [130835] = 3, + ACTIONS(2857), 1, aux_sym_target_token1, ACTIONS(8211), 1, aux_sym_pandoc_span_token1, - STATE(1462), 1, + STATE(1283), 1, sym_target, - [131179] = 3, - ACTIONS(233), 1, + [130845] = 3, + ACTIONS(117), 1, sym__line_ending, ACTIONS(8213), 1, sym__eof, - STATE(343), 1, + STATE(435), 1, sym__newline, - [131189] = 3, - ACTIONS(2735), 1, - aux_sym_target_token1, + [130855] = 2, ACTIONS(8215), 1, - aux_sym_pandoc_span_token1, - STATE(1339), 1, - sym_target, - [131199] = 3, - ACTIONS(8049), 1, + sym_block_continuation, + ACTIONS(2391), 2, + sym__block_close, sym__blank_line_start, + [130863] = 3, + ACTIONS(117), 1, + sym__line_ending, ACTIONS(8217), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [131209] = 3, - ACTIONS(2765), 1, - aux_sym_target_token1, - ACTIONS(8219), 1, - aux_sym_pandoc_span_token1, - STATE(1525), 1, - sym_target, - [131219] = 3, - ACTIONS(2765), 1, - aux_sym_target_token1, - ACTIONS(8221), 1, - aux_sym_pandoc_span_token1, - STATE(1534), 1, - sym_target, - [131229] = 3, - ACTIONS(2735), 1, - aux_sym_target_token1, - ACTIONS(8223), 1, - aux_sym_pandoc_span_token1, - STATE(1340), 1, - sym_target, - [131239] = 3, - ACTIONS(2825), 1, - aux_sym_target_token1, - ACTIONS(8225), 1, - aux_sym_pandoc_span_token1, - STATE(1101), 1, - sym_target, - [131249] = 3, - ACTIONS(2825), 1, - aux_sym_target_token1, - ACTIONS(8227), 1, - aux_sym_pandoc_span_token1, - STATE(1103), 1, - sym_target, - [131259] = 3, + sym__eof, + STATE(397), 1, + sym__newline, + [130873] = 3, ACTIONS(23), 1, sym__line_ending, - ACTIONS(8229), 1, + ACTIONS(8219), 1, sym__eof, - STATE(428), 1, + STATE(465), 1, sym__newline, - [131269] = 3, - ACTIONS(8231), 1, + [130883] = 3, + ACTIONS(23), 1, sym__line_ending, - ACTIONS(8233), 1, + ACTIONS(8221), 1, sym__eof, - STATE(3638), 1, + STATE(363), 1, sym__newline, - [131279] = 1, - ACTIONS(7451), 3, - sym__soft_line_ending, - anon_sym_RBRACE, - sym__whitespace, - [131285] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6586), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [131295] = 3, - ACTIONS(6528), 1, + [130893] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6608), 1, + ACTIONS(6624), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [131305] = 3, - ACTIONS(2825), 1, - aux_sym_target_token1, - ACTIONS(8235), 1, - aux_sym_pandoc_span_token1, - STATE(989), 1, - sym_target, - [131315] = 3, - ACTIONS(2825), 1, - aux_sym_target_token1, - ACTIONS(8237), 1, - aux_sym_pandoc_span_token1, - STATE(990), 1, - sym_target, - [131325] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(8239), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [131335] = 3, - ACTIONS(6522), 1, + [130903] = 3, + ACTIONS(241), 1, + sym__line_ending, + ACTIONS(8223), 1, + sym__eof, + STATE(254), 1, + sym__newline, + [130913] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6612), 1, + ACTIONS(6630), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [131345] = 3, - ACTIONS(6528), 1, + [130923] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6616), 1, + ACTIONS(6632), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [131355] = 3, - ACTIONS(6522), 1, + [130933] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(8241), 1, + ACTIONS(8225), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [131365] = 3, - ACTIONS(6528), 1, - sym__key_specifier_token, - ACTIONS(8243), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - [131375] = 3, - ACTIONS(6528), 1, + [130943] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(8245), 1, + ACTIONS(8227), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [131385] = 3, + [130953] = 3, ACTIONS(23), 1, sym__line_ending, - ACTIONS(8247), 1, + ACTIONS(8229), 1, sym__eof, - STATE(423), 1, + STATE(480), 1, sym__newline, - [131395] = 1, - ACTIONS(2537), 3, - sym__key_specifier_token, - sym__shortcode_close_escaped, - sym__whitespace, - [131401] = 1, - ACTIONS(2541), 3, - sym__key_specifier_token, - sym__shortcode_close_escaped, - sym__whitespace, - [131407] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6642), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [131417] = 3, - ACTIONS(233), 1, + [130963] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(8249), 1, + ACTIONS(8231), 1, sym__eof, - STATE(344), 1, + STATE(4063), 1, sym__newline, - [131427] = 3, - ACTIONS(233), 1, + [130973] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(8251), 1, + ACTIONS(8233), 1, sym__eof, - STATE(258), 1, + STATE(4170), 1, sym__newline, - [131437] = 3, - ACTIONS(7449), 1, - sym__shortcode_open, - ACTIONS(8253), 1, - aux_sym__commonmark_single_quote_string_token2, - STATE(2825), 1, - sym_shortcode, - [131447] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6618), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [131457] = 2, - ACTIONS(8255), 1, - sym__whitespace, - ACTIONS(2537), 2, - sym__key_specifier_token, - sym__shortcode_close_escaped, - [131465] = 3, + [130983] = 3, ACTIONS(23), 1, sym__line_ending, - ACTIONS(8257), 1, + ACTIONS(8235), 1, sym__eof, - STATE(385), 1, + STATE(370), 1, sym__newline, - [131475] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6596), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [131485] = 3, - ACTIONS(233), 1, + [130993] = 3, + ACTIONS(241), 1, sym__line_ending, - ACTIONS(8259), 1, + ACTIONS(8237), 1, sym__eof, - STATE(233), 1, + STATE(255), 1, sym__newline, - [131495] = 3, - ACTIONS(6528), 1, - sym__key_specifier_token, - ACTIONS(6600), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - [131505] = 1, - ACTIONS(2537), 3, + [131003] = 3, + ACTIONS(117), 1, + sym__line_ending, + ACTIONS(8239), 1, + sym__eof, + STATE(410), 1, + sym__newline, + [131013] = 3, + ACTIONS(241), 1, + sym__line_ending, + ACTIONS(8241), 1, + sym__eof, + STATE(256), 1, + sym__newline, + [131023] = 3, + ACTIONS(23), 1, + sym__line_ending, + ACTIONS(8243), 1, + sym__eof, + STATE(481), 1, + sym__newline, + [131033] = 3, + ACTIONS(2779), 1, + aux_sym_target_token1, + ACTIONS(8245), 1, + aux_sym_pandoc_span_token1, + STATE(1084), 1, + sym_target, + [131043] = 3, + ACTIONS(241), 1, + sym__line_ending, + ACTIONS(8247), 1, + sym__eof, + STATE(257), 1, + sym__newline, + [131053] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - sym__shortcode_close, + ACTIONS(8249), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + [131063] = 2, + ACTIONS(8251), 1, sym__whitespace, - [131511] = 1, - ACTIONS(2541), 3, + ACTIONS(6888), 2, sym__key_specifier_token, sym__shortcode_close, - sym__whitespace, - [131517] = 3, - ACTIONS(6528), 1, + [131071] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6620), 1, + ACTIONS(8253), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [131527] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, + [131081] = 3, + ACTIONS(241), 1, + sym__line_ending, + ACTIONS(8255), 1, + sym__eof, + STATE(271), 1, + sym__newline, + [131091] = 3, + ACTIONS(2403), 1, + aux_sym_pandoc_math_token1, + ACTIONS(8257), 1, + sym__whitespace, + ACTIONS(8259), 1, + sym_block_continuation, + [131101] = 3, + ACTIONS(2867), 1, + aux_sym_target_token1, ACTIONS(8261), 1, + aux_sym_pandoc_span_token1, + STATE(1309), 1, + sym_target, + [131111] = 3, + ACTIONS(6596), 1, + sym__key_specifier_token, + ACTIONS(6718), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [131537] = 3, - ACTIONS(6528), 1, + [131121] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, ACTIONS(8263), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [131547] = 3, - ACTIONS(2835), 1, + [131131] = 3, + ACTIONS(2867), 1, aux_sym_target_token1, ACTIONS(8265), 1, aux_sym_pandoc_span_token1, - STATE(2136), 1, + STATE(1311), 1, sym_target, - [131557] = 3, - ACTIONS(2835), 1, + [131141] = 3, + ACTIONS(6504), 1, + sym__key_specifier_token, + ACTIONS(7088), 1, + anon_sym_RBRACE, + STATE(3217), 1, + sym__commonmark_key_value_specifier, + [131151] = 3, + ACTIONS(2913), 1, aux_sym_target_token1, ACTIONS(8267), 1, aux_sym_pandoc_span_token1, - STATE(2138), 1, + STATE(1488), 1, sym_target, - [131567] = 3, - ACTIONS(2695), 1, + [131161] = 3, + ACTIONS(2913), 1, aux_sym_target_token1, ACTIONS(8269), 1, aux_sym_pandoc_span_token1, - STATE(1062), 1, + STATE(1490), 1, sym_target, - [131577] = 3, - ACTIONS(3011), 1, + [131171] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(7993), 1, - sym__pipe_table_delimiter, ACTIONS(8271), 1, + sym__eof, + STATE(3750), 1, + sym__newline, + [131181] = 3, + ACTIONS(2867), 1, + aux_sym_target_token1, + ACTIONS(8273), 1, + aux_sym_pandoc_span_token1, + STATE(1321), 1, + sym_target, + [131191] = 3, + ACTIONS(2867), 1, + aux_sym_target_token1, + ACTIONS(8275), 1, + aux_sym_pandoc_span_token1, + STATE(1322), 1, + sym_target, + [131201] = 3, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8277), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, + [131211] = 3, + ACTIONS(3075), 1, + sym__line_ending, + ACTIONS(8195), 1, + sym__pipe_table_delimiter, + ACTIONS(8279), 1, sym__whitespace, - [131587] = 3, - ACTIONS(233), 1, + [131221] = 3, + ACTIONS(23), 1, sym__line_ending, - ACTIONS(8273), 1, + ACTIONS(8281), 1, sym__eof, - STATE(345), 1, + STATE(376), 1, sym__newline, - [131597] = 3, - ACTIONS(117), 1, + [131231] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(8275), 1, + ACTIONS(8283), 1, sym__eof, - STATE(457), 1, + STATE(3775), 1, sym__newline, - [131607] = 3, - ACTIONS(2775), 1, + [131241] = 3, + ACTIONS(6596), 1, + sym__key_specifier_token, + ACTIONS(6714), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + [131251] = 3, + ACTIONS(6590), 1, + sym__key_specifier_token, + ACTIONS(6716), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + [131261] = 3, + ACTIONS(6596), 1, + sym__key_specifier_token, + ACTIONS(8285), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + [131271] = 3, + ACTIONS(2887), 1, aux_sym_target_token1, - ACTIONS(8277), 1, + ACTIONS(8287), 1, aux_sym_pandoc_span_token1, - STATE(1111), 1, + STATE(1406), 1, sym_target, - [131617] = 2, - ACTIONS(8279), 1, + [131281] = 3, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8289), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, + [131291] = 1, + ACTIONS(2783), 3, + sym__key_specifier_token, + sym__shortcode_close_escaped, sym__whitespace, - ACTIONS(2537), 2, + [131297] = 1, + ACTIONS(2787), 3, sym__key_specifier_token, - sym__shortcode_close, - [131625] = 3, - ACTIONS(7965), 1, + sym__shortcode_close_escaped, + sym__whitespace, + [131303] = 3, + ACTIONS(2809), 1, + aux_sym_target_token1, + ACTIONS(8291), 1, + aux_sym_pandoc_span_token1, + STATE(1414), 1, + sym_target, + [131313] = 3, + ACTIONS(117), 1, sym__line_ending, - ACTIONS(8281), 1, + ACTIONS(8293), 1, sym__eof, - STATE(3921), 1, + STATE(417), 1, sym__newline, - [131635] = 3, - ACTIONS(2695), 1, + [131323] = 3, + ACTIONS(2809), 1, aux_sym_target_token1, - ACTIONS(8283), 1, + ACTIONS(8295), 1, aux_sym_pandoc_span_token1, - STATE(1064), 1, + STATE(1416), 1, sym_target, - [131645] = 3, - ACTIONS(2835), 1, + [131333] = 3, + ACTIONS(2913), 1, aux_sym_target_token1, - ACTIONS(8285), 1, + ACTIONS(8297), 1, aux_sym_pandoc_span_token1, - STATE(2144), 1, + STATE(1499), 1, sym_target, - [131655] = 3, - ACTIONS(2835), 1, + [131343] = 3, + ACTIONS(7720), 1, + sym__line_ending, + ACTIONS(8207), 1, + sym__pipe_table_delimiter, + ACTIONS(8299), 1, + sym__whitespace, + [131353] = 3, + ACTIONS(2827), 1, aux_sym_target_token1, - ACTIONS(8287), 1, + ACTIONS(8301), 1, aux_sym_pandoc_span_token1, - STATE(2145), 1, + STATE(1134), 1, sym_target, - [131665] = 3, - ACTIONS(2775), 1, + [131363] = 3, + ACTIONS(2837), 1, aux_sym_target_token1, - ACTIONS(8289), 1, + ACTIONS(8303), 1, aux_sym_pandoc_span_token1, - STATE(1114), 1, + STATE(1201), 1, sym_target, - [131675] = 2, - ACTIONS(8291), 1, - sym__whitespace, - ACTIONS(6816), 2, - sym__key_specifier_token, - sym__shortcode_close_escaped, - [131683] = 3, - ACTIONS(7965), 1, + [131373] = 3, + ACTIONS(2913), 1, + aux_sym_target_token1, + ACTIONS(8305), 1, + aux_sym_pandoc_span_token1, + STATE(1500), 1, + sym_target, + [131383] = 3, + ACTIONS(8307), 1, sym__line_ending, - ACTIONS(8293), 1, + ACTIONS(8309), 1, sym__eof, - STATE(3719), 1, + STATE(3843), 1, sym__newline, - [131693] = 3, - ACTIONS(6420), 1, + [131393] = 3, + ACTIONS(23), 1, + sym__line_ending, + ACTIONS(8311), 1, + sym__eof, + STATE(476), 1, + sym__newline, + [131403] = 3, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8313), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, + [131413] = 3, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8315), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, + [131423] = 3, + ACTIONS(23), 1, + sym__line_ending, + ACTIONS(8317), 1, + sym__eof, + STATE(377), 1, + sym__newline, + [131433] = 3, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(6434), 1, + ACTIONS(6502), 1, sym__language_specifier_token, - STATE(4245), 1, + STATE(4330), 1, sym_language_specifier, - [131703] = 3, - ACTIONS(23), 1, + [131443] = 3, + ACTIONS(241), 1, sym__line_ending, - ACTIONS(8295), 1, + ACTIONS(8319), 1, sym__eof, - STATE(427), 1, + STATE(284), 1, sym__newline, - [131713] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6538), 1, - sym__shortcode_close_escaped, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [131723] = 3, - ACTIONS(6522), 1, + [131453] = 3, + ACTIONS(2971), 1, + sym__line_ending, + ACTIONS(8195), 1, + sym__pipe_table_delimiter, + ACTIONS(8321), 1, + sym__whitespace, + [131463] = 3, + ACTIONS(2877), 1, + aux_sym_target_token1, + ACTIONS(8323), 1, + aux_sym_pandoc_span_token1, + STATE(1345), 1, + sym_target, + [131473] = 3, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8325), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, + [131483] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(8297), 1, + ACTIONS(6654), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [131733] = 3, - ACTIONS(6528), 1, - sym__key_specifier_token, - ACTIONS(8299), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - [131743] = 3, - ACTIONS(2725), 1, + [131493] = 3, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8327), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, + [131503] = 3, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8329), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, + [131513] = 3, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8331), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, + [131523] = 3, + ACTIONS(2877), 1, aux_sym_target_token1, - ACTIONS(8301), 1, + ACTIONS(8333), 1, aux_sym_pandoc_span_token1, - STATE(1294), 1, + STATE(1347), 1, sym_target, - [131753] = 3, - ACTIONS(6528), 1, + [131533] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6540), 1, + ACTIONS(6656), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [131763] = 3, - ACTIONS(6522), 1, + [131543] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(8303), 1, + ACTIONS(8335), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [131773] = 3, + [131553] = 3, + ACTIONS(2837), 1, + aux_sym_target_token1, + ACTIONS(8337), 1, + aux_sym_pandoc_span_token1, + STATE(1203), 1, + sym_target, + [131563] = 3, + ACTIONS(6590), 1, + sym__key_specifier_token, + ACTIONS(8339), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + [131573] = 3, + ACTIONS(117), 1, + sym__line_ending, + ACTIONS(8341), 1, + sym__eof, + STATE(353), 1, + sym__newline, + [131583] = 3, ACTIONS(23), 1, sym__line_ending, - ACTIONS(8305), 1, + ACTIONS(8343), 1, sym__eof, - STATE(357), 1, + STATE(378), 1, sym__newline, - [131783] = 3, - ACTIONS(2775), 1, + [131593] = 3, + ACTIONS(8061), 1, + sym__line_ending, + ACTIONS(8345), 1, + sym__eof, + STATE(4154), 1, + sym__newline, + [131603] = 3, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8347), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, + [131613] = 3, + ACTIONS(23), 1, + sym__line_ending, + ACTIONS(8349), 1, + sym__eof, + STATE(462), 1, + sym__newline, + [131623] = 1, + ACTIONS(7734), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [131629] = 3, + ACTIONS(2877), 1, aux_sym_target_token1, - ACTIONS(8307), 1, + ACTIONS(8351), 1, + aux_sym_pandoc_span_token1, + STATE(1360), 1, + sym_target, + [131639] = 3, + ACTIONS(2877), 1, + aux_sym_target_token1, + ACTIONS(8353), 1, aux_sym_pandoc_span_token1, - STATE(1219), 1, + STATE(1361), 1, sym_target, - [131793] = 3, - ACTIONS(23), 1, + [131649] = 3, + ACTIONS(8061), 1, sym__line_ending, - ACTIONS(8309), 1, + ACTIONS(8355), 1, sym__eof, - STATE(359), 1, + STATE(4143), 1, sym__newline, - [131803] = 3, + [131659] = 3, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8357), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, + [131669] = 3, ACTIONS(117), 1, sym__line_ending, - ACTIONS(8311), 1, + ACTIONS(8359), 1, sym__eof, - STATE(494), 1, + STATE(354), 1, sym__newline, - [131813] = 3, - ACTIONS(2775), 1, + [131679] = 3, + ACTIONS(3071), 1, + sym__line_ending, + ACTIONS(8195), 1, + sym__pipe_table_delimiter, + ACTIONS(8361), 1, + sym__whitespace, + [131689] = 3, + ACTIONS(2809), 1, aux_sym_target_token1, - ACTIONS(8313), 1, + ACTIONS(8363), 1, aux_sym_pandoc_span_token1, - STATE(1251), 1, + STATE(1112), 1, sym_target, - [131823] = 3, - ACTIONS(233), 1, - sym__line_ending, - ACTIONS(8315), 1, - sym__eof, - STATE(340), 1, - sym__newline, - [131833] = 3, - ACTIONS(2725), 1, + [131699] = 3, + ACTIONS(2809), 1, aux_sym_target_token1, - ACTIONS(8317), 1, + ACTIONS(8365), 1, aux_sym_pandoc_span_token1, - STATE(1298), 1, + STATE(1115), 1, sym_target, - [131843] = 3, - ACTIONS(6522), 1, + [131709] = 2, + ACTIONS(8367), 1, + sym__whitespace, + ACTIONS(2783), 2, sym__key_specifier_token, - ACTIONS(6664), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + [131717] = 3, + ACTIONS(241), 1, + sym__line_ending, + ACTIONS(8369), 1, + sym__eof, + STATE(302), 1, + sym__newline, + [131727] = 3, + ACTIONS(6596), 1, + sym__key_specifier_token, + ACTIONS(6736), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [131853] = 3, - ACTIONS(2695), 1, + [131737] = 3, + ACTIONS(2827), 1, aux_sym_target_token1, - ACTIONS(8319), 1, + ACTIONS(8371), 1, aux_sym_pandoc_span_token1, - STATE(1084), 1, + STATE(1136), 1, sym_target, - [131863] = 3, - ACTIONS(6528), 1, + [131747] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6530), 1, + ACTIONS(6668), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [131873] = 3, - ACTIONS(6522), 1, + [131757] = 1, + ACTIONS(2783), 3, sym__key_specifier_token, - ACTIONS(8321), 1, + sym__shortcode_close, + sym__whitespace, + [131763] = 3, + ACTIONS(6596), 1, + sym__key_specifier_token, + ACTIONS(8373), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [131883] = 3, - ACTIONS(2845), 1, - aux_sym_target_token1, - ACTIONS(8323), 1, - aux_sym_pandoc_span_token1, - STATE(959), 1, - sym_target, - [131893] = 3, - ACTIONS(6528), 1, + [131773] = 3, + ACTIONS(117), 1, + sym__line_ending, + ACTIONS(8375), 1, + sym__eof, + STATE(355), 1, + sym__newline, + [131783] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(8325), 1, + ACTIONS(8377), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [131903] = 3, - ACTIONS(2845), 1, + [131793] = 3, + ACTIONS(6752), 1, + sym__soft_line_ending, + ACTIONS(6888), 1, + sym_shortcode_name, + STATE(4072), 1, + sym__soft_line_break, + [131803] = 1, + ACTIONS(7321), 3, + sym__soft_line_ending, + anon_sym_RBRACE, + sym__whitespace, + [131809] = 3, + ACTIONS(2971), 1, + sym__line_ending, + ACTIONS(8207), 1, + sym__pipe_table_delimiter, + ACTIONS(8379), 1, + sym__whitespace, + [131819] = 2, + ACTIONS(8381), 1, + sym__whitespace, + ACTIONS(6888), 2, + sym__key_specifier_token, + sym__shortcode_close_escaped, + [131827] = 3, + ACTIONS(2923), 1, aux_sym_target_token1, - ACTIONS(8327), 1, + ACTIONS(8383), 1, aux_sym_pandoc_span_token1, - STATE(976), 1, + STATE(1104), 1, sym_target, - [131913] = 3, - ACTIONS(117), 1, - sym__line_ending, - ACTIONS(8329), 1, - sym__eof, - STATE(414), 1, - sym__newline, - [131923] = 3, - ACTIONS(8331), 1, + [131837] = 3, + ACTIONS(6504), 1, + sym__key_specifier_token, + ACTIONS(7665), 1, + anon_sym_RBRACE, + STATE(3217), 1, + sym__commonmark_key_value_specifier, + [131847] = 3, + ACTIONS(241), 1, sym__line_ending, - ACTIONS(8333), 1, + ACTIONS(8385), 1, sym__eof, - STATE(3543), 1, + STATE(275), 1, sym__newline, - [131933] = 3, - ACTIONS(2673), 1, + [131857] = 3, + ACTIONS(7527), 1, + sym__shortcode_open, + ACTIONS(8387), 1, + aux_sym__commonmark_single_quote_string_token2, + STATE(2918), 1, + sym_shortcode, + [131867] = 3, + ACTIONS(6596), 1, + sym__key_specifier_token, + ACTIONS(6646), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + [131877] = 3, + ACTIONS(2837), 1, aux_sym_target_token1, - ACTIONS(8335), 1, + ACTIONS(8389), 1, aux_sym_pandoc_span_token1, - STATE(1230), 1, + STATE(1210), 1, sym_target, - [131943] = 3, - ACTIONS(2673), 1, + [131887] = 3, + ACTIONS(2837), 1, aux_sym_target_token1, - ACTIONS(8337), 1, + ACTIONS(8391), 1, aux_sym_pandoc_span_token1, - STATE(1231), 1, + STATE(1212), 1, sym_target, - [131953] = 3, - ACTIONS(2845), 1, + [131897] = 3, + ACTIONS(117), 1, + sym__line_ending, + ACTIONS(8393), 1, + sym__eof, + STATE(357), 1, + sym__newline, + [131907] = 3, + ACTIONS(2887), 1, aux_sym_target_token1, - ACTIONS(8339), 1, + ACTIONS(8395), 1, aux_sym_pandoc_span_token1, - STATE(982), 1, + STATE(1390), 1, sym_target, - [131963] = 3, - ACTIONS(2845), 1, + [131917] = 3, + ACTIONS(6590), 1, + sym__key_specifier_token, + ACTIONS(6670), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + [131927] = 3, + ACTIONS(2923), 1, aux_sym_target_token1, - ACTIONS(8341), 1, + ACTIONS(8397), 1, aux_sym_pandoc_span_token1, - STATE(983), 1, + STATE(1106), 1, sym_target, - [131973] = 3, - ACTIONS(2745), 1, + [131937] = 3, + ACTIONS(2887), 1, aux_sym_target_token1, - ACTIONS(8343), 1, + ACTIONS(8399), 1, aux_sym_pandoc_span_token1, - STATE(1360), 1, + STATE(1396), 1, sym_target, - [131983] = 3, - ACTIONS(6688), 1, - sym__soft_line_ending, - ACTIONS(6816), 1, - sym_shortcode_name, - STATE(4360), 1, - sym__soft_line_break, - [131993] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(8345), 1, - sym__eof, - STATE(4352), 1, - sym__newline, - [132003] = 3, - ACTIONS(6522), 1, + [131947] = 1, + ACTIONS(2787), 3, sym__key_specifier_token, - ACTIONS(6552), 1, + sym__shortcode_close, + sym__whitespace, + [131953] = 3, + ACTIONS(6596), 1, + sym__key_specifier_token, + ACTIONS(6604), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [132013] = 3, - ACTIONS(6528), 1, + [131963] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6554), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - [132023] = 3, - ACTIONS(6522), 1, + ACTIONS(6732), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + [131973] = 2, + ACTIONS(8401), 1, + sym_block_continuation, + ACTIONS(2391), 2, + sym__line_ending, + sym__eof, + [131981] = 3, + ACTIONS(3075), 1, + sym__line_ending, + ACTIONS(8207), 1, + sym__pipe_table_delimiter, + ACTIONS(8403), 1, + sym__whitespace, + [131991] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(8347), 1, + ACTIONS(8405), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, - [132033] = 3, - ACTIONS(6528), 1, + [132001] = 3, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8407), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, + [132011] = 3, + ACTIONS(117), 1, + sym__line_ending, + ACTIONS(8409), 1, + sym__eof, + STATE(444), 1, + sym__newline, + [132021] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(8349), 1, + ACTIONS(8411), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [132043] = 3, - ACTIONS(2745), 1, + [132031] = 3, + ACTIONS(2923), 1, aux_sym_target_token1, - ACTIONS(8351), 1, + ACTIONS(8413), 1, aux_sym_pandoc_span_token1, - STATE(1362), 1, + STATE(992), 1, sym_target, - [132053] = 3, - ACTIONS(6816), 1, - sym__key_specifier_token, - ACTIONS(6830), 1, - sym__soft_line_ending, - STATE(4008), 1, - sym__soft_line_break, - [132063] = 3, - ACTIONS(6528), 1, + [132041] = 3, + ACTIONS(2923), 1, + aux_sym_target_token1, + ACTIONS(8415), 1, + aux_sym_pandoc_span_token1, + STATE(993), 1, + sym_target, + [132051] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(6598), 1, + ACTIONS(6606), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [132073] = 3, - ACTIONS(117), 1, - sym__line_ending, - ACTIONS(8353), 1, - sym__eof, - STATE(465), 1, - sym__newline, - [132083] = 3, - ACTIONS(6528), 1, + [132061] = 2, + ACTIONS(8095), 1, + sym__whitespace, + ACTIONS(8097), 2, + sym__soft_line_ending, + aux_sym_inline_note_token1, + [132069] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6560), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - [132093] = 3, - ACTIONS(6528), 1, + ACTIONS(6662), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + [132079] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(8355), 1, + ACTIONS(6664), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [132103] = 3, - ACTIONS(6528), 1, + [132089] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6564), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - [132113] = 3, - ACTIONS(6528), 1, + ACTIONS(8417), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + [132099] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(8357), 1, + ACTIONS(8419), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [132123] = 3, - ACTIONS(233), 1, + [132109] = 3, + ACTIONS(117), 1, sym__line_ending, - ACTIONS(8359), 1, + ACTIONS(8421), 1, sym__eof, - STATE(221), 1, + STATE(358), 1, sym__newline, - [132133] = 3, - ACTIONS(2673), 1, + [132119] = 3, + ACTIONS(2897), 1, aux_sym_target_token1, - ACTIONS(8361), 1, + ACTIONS(8423), 1, aux_sym_pandoc_span_token1, - STATE(1193), 1, + STATE(1432), 1, sym_target, - [132143] = 3, - ACTIONS(6528), 1, - sym__key_specifier_token, - ACTIONS(6568), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - [132153] = 3, - ACTIONS(6528), 1, + [132129] = 3, + ACTIONS(2847), 1, + aux_sym_target_token1, + ACTIONS(8425), 1, + aux_sym_pandoc_span_token1, + STATE(1232), 1, + sym_target, + [132139] = 3, + ACTIONS(6590), 1, sym__key_specifier_token, - ACTIONS(8363), 1, + ACTIONS(6734), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [132163] = 1, - ACTIONS(8365), 3, - sym__soft_line_ending, - anon_sym_RBRACE, - sym__whitespace, + [132149] = 3, + ACTIONS(2933), 1, + aux_sym_target_token1, + ACTIONS(8427), 1, + aux_sym_pandoc_span_token1, + STATE(2145), 1, + sym_target, + [132159] = 3, + ACTIONS(8061), 1, + sym__line_ending, + ACTIONS(8429), 1, + sym__eof, + STATE(4158), 1, + sym__newline, [132169] = 3, - ACTIONS(6528), 1, - sym__key_specifier_token, - ACTIONS(6572), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, + ACTIONS(2933), 1, + aux_sym_target_token1, + ACTIONS(8431), 1, + aux_sym_pandoc_span_token1, + STATE(2147), 1, + sym_target, [132179] = 3, - ACTIONS(6528), 1, - sym__key_specifier_token, - ACTIONS(8367), 1, - sym__shortcode_close, - STATE(3566), 1, - sym__shortcode_key_value_specifier, + ACTIONS(241), 1, + sym__line_ending, + ACTIONS(8433), 1, + sym__eof, + STATE(237), 1, + sym__newline, [132189] = 3, - ACTIONS(2785), 1, + ACTIONS(2425), 1, aux_sym_target_token1, - ACTIONS(8369), 1, + ACTIONS(8435), 1, aux_sym_pandoc_span_token1, - STATE(1202), 1, + STATE(1460), 1, sym_target, [132199] = 3, - ACTIONS(2785), 1, + ACTIONS(2795), 1, aux_sym_target_token1, - ACTIONS(8371), 1, + ACTIONS(8437), 1, aux_sym_pandoc_span_token1, - STATE(1204), 1, + STATE(1188), 1, sym_target, [132209] = 3, - ACTIONS(8049), 1, - sym__blank_line_start, - ACTIONS(8373), 1, - sym__block_close, - STATE(3717), 1, - sym__blank_line, - [132219] = 1, - ACTIONS(8133), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - [132225] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(8375), 1, - sym__eof, - STATE(4203), 1, - sym__newline, - [132235] = 3, - ACTIONS(6436), 1, - sym__key_specifier_token, - ACTIONS(7573), 1, - anon_sym_RBRACE, - STATE(3116), 1, - sym__commonmark_key_value_specifier, - [132245] = 2, - ACTIONS(8135), 1, - aux_sym_pandoc_span_token1, - ACTIONS(8133), 2, - sym__soft_line_ending, + ACTIONS(2847), 1, aux_sym_target_token1, - [132253] = 3, - ACTIONS(2725), 1, + ACTIONS(8439), 1, + aux_sym_pandoc_span_token1, + STATE(1234), 1, + sym_target, + [132219] = 2, + ACTIONS(8441), 1, + sym__whitespace, + ACTIONS(2783), 2, + sym__key_specifier_token, + sym__shortcode_close, + [132227] = 3, + ACTIONS(2795), 1, aux_sym_target_token1, - ACTIONS(8377), 1, + ACTIONS(8443), 1, aux_sym_pandoc_span_token1, - STATE(1305), 1, + STATE(1213), 1, sym_target, - [132263] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(8379), 1, - sym__eof, - STATE(3890), 1, - sym__newline, - [132273] = 3, - ACTIONS(2785), 1, + [132237] = 3, + ACTIONS(2933), 1, aux_sym_target_token1, - ACTIONS(8381), 1, + ACTIONS(8445), 1, aux_sym_pandoc_span_token1, - STATE(1223), 1, + STATE(2153), 1, sym_target, - [132283] = 3, - ACTIONS(2785), 1, + [132247] = 3, + ACTIONS(2933), 1, aux_sym_target_token1, - ACTIONS(8383), 1, + ACTIONS(8447), 1, aux_sym_pandoc_span_token1, - STATE(1232), 1, + STATE(2154), 1, sym_target, - [132293] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(8385), 1, - sym__eof, - STATE(4301), 1, - sym__newline, - [132303] = 3, - ACTIONS(2725), 1, + [132257] = 3, + ACTIONS(2425), 1, aux_sym_target_token1, - ACTIONS(8387), 1, + ACTIONS(8449), 1, aux_sym_pandoc_span_token1, - STATE(1306), 1, + STATE(1462), 1, sym_target, - [132313] = 3, - ACTIONS(2745), 1, + [132267] = 3, + ACTIONS(2897), 1, aux_sym_target_token1, - ACTIONS(8389), 1, + ACTIONS(8451), 1, aux_sym_pandoc_span_token1, - STATE(1369), 1, + STATE(1434), 1, sym_target, - [132323] = 3, - ACTIONS(6522), 1, + [132277] = 1, + ACTIONS(7455), 3, + sym__soft_line_ending, + anon_sym_RBRACE, + sym__whitespace, + [132283] = 3, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(6602), 1, + ACTIONS(6676), 1, sym__shortcode_close_escaped, - STATE(3532), 1, + STATE(3606), 1, sym__commonmark_key_value_specifier, + [132293] = 3, + ACTIONS(6590), 1, + sym__key_specifier_token, + ACTIONS(6678), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + [132303] = 3, + ACTIONS(6596), 1, + sym__key_specifier_token, + ACTIONS(8453), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + [132313] = 3, + ACTIONS(6590), 1, + sym__key_specifier_token, + ACTIONS(8455), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + [132323] = 3, + ACTIONS(241), 1, + sym__line_ending, + ACTIONS(8457), 1, + sym__eof, + STATE(299), 1, + sym__newline, [132333] = 3, - ACTIONS(7707), 1, + ACTIONS(8459), 1, sym__line_ending, - ACTIONS(7993), 1, - sym__pipe_table_delimiter, - ACTIONS(8391), 1, - sym__whitespace, + ACTIONS(8461), 1, + sym__eof, + STATE(4366), 1, + sym__newline, [132343] = 3, - ACTIONS(7381), 1, - sym__shortcode_open, - ACTIONS(8393), 1, - aux_sym__commonmark_double_quote_string_token2, - STATE(2907), 1, - sym_shortcode, + ACTIONS(6590), 1, + sym__key_specifier_token, + ACTIONS(6724), 1, + sym__shortcode_close, + STATE(3635), 1, + sym__shortcode_key_value_specifier, [132353] = 3, - ACTIONS(7449), 1, - sym__shortcode_open, - ACTIONS(8395), 1, - aux_sym__commonmark_single_quote_string_token2, - STATE(2912), 1, - sym_shortcode, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8463), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, [132363] = 3, - ACTIONS(7965), 1, - sym__line_ending, - ACTIONS(8397), 1, - sym__eof, - STATE(4346), 1, - sym__newline, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8465), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, [132373] = 3, - ACTIONS(6528), 1, + ACTIONS(6596), 1, sym__key_specifier_token, - ACTIONS(8399), 1, + ACTIONS(8467), 1, + sym__shortcode_close_escaped, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + [132383] = 3, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8469), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, + [132393] = 3, + ACTIONS(8037), 1, + sym__blank_line_start, + ACTIONS(8471), 1, + sym__block_close, + STATE(3873), 1, + sym__blank_line, + [132403] = 3, + ACTIONS(6590), 1, + sym__key_specifier_token, + ACTIONS(8473), 1, sym__shortcode_close, - STATE(3566), 1, + STATE(3635), 1, sym__shortcode_key_value_specifier, - [132383] = 2, - ACTIONS(6528), 1, + [132413] = 2, + ACTIONS(8475), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3709), 1, + sym__commonmark_double_quote_string, + [132420] = 2, + ACTIONS(6596), 1, sym__key_specifier_token, - STATE(3566), 1, - sym__shortcode_key_value_specifier, - [132390] = 1, - ACTIONS(8133), 2, + STATE(3606), 1, + sym__commonmark_key_value_specifier, + [132427] = 1, + ACTIONS(6384), 2, sym__soft_line_ending, - aux_sym_insert_token1, - [132395] = 2, - ACTIONS(2537), 1, - aux_sym_pandoc_math_token1, - ACTIONS(8401), 1, sym__whitespace, - [132402] = 1, - ACTIONS(8133), 2, - sym__soft_line_ending, - sym__emphasis_close_underscore, - [132407] = 1, - ACTIONS(8403), 2, + [132432] = 1, + ACTIONS(6132), 2, sym__soft_line_ending, sym__whitespace, - [132412] = 1, - ACTIONS(8405), 2, + [132437] = 1, + ACTIONS(6388), 2, sym__soft_line_ending, sym__whitespace, - [132417] = 2, - ACTIONS(7279), 1, - sym__block_close, - ACTIONS(7281), 1, - sym__fenced_code_block_end_backtick, - [132424] = 2, - ACTIONS(594), 1, - sym__block_close, - ACTIONS(8407), 1, - sym_block_continuation, - [132431] = 2, - ACTIONS(6816), 1, - sym_shortcode_name, - ACTIONS(8409), 1, + [132442] = 1, + ACTIONS(8003), 2, + sym__soft_line_ending, sym__whitespace, - [132438] = 2, - ACTIONS(3011), 1, - sym__line_ending, - ACTIONS(7993), 1, - sym__pipe_table_delimiter, - [132445] = 2, - ACTIONS(7606), 1, - sym__pipe_table_delimiter, - ACTIONS(8411), 1, + [132447] = 2, + ACTIONS(6590), 1, + sym__key_specifier_token, + STATE(3635), 1, + sym__shortcode_key_value_specifier, + [132454] = 1, + ACTIONS(7924), 2, + sym__soft_line_ending, sym__whitespace, - [132452] = 2, - ACTIONS(2315), 1, - sym__close_block, - ACTIONS(8413), 1, - sym_block_continuation, [132459] = 1, - ACTIONS(8133), 2, + ACTIONS(8477), 2, sym__soft_line_ending, - sym__strong_emphasis_close_star, + sym__whitespace, [132464] = 2, - ACTIONS(3011), 1, + ACTIONS(2971), 1, sym__line_ending, - ACTIONS(8415), 1, + ACTIONS(8207), 1, sym__pipe_table_delimiter, [132471] = 2, - ACTIONS(6816), 1, - sym__key_specifier_token, - ACTIONS(8417), 1, + ACTIONS(7818), 1, + sym__pipe_table_delimiter, + ACTIONS(8479), 1, sym__whitespace, [132478] = 2, - ACTIONS(8049), 1, - sym__blank_line_start, - STATE(3717), 1, - sym__blank_line, + ACTIONS(8475), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3779), 1, + sym__commonmark_double_quote_string, [132485] = 1, - ACTIONS(8419), 2, - sym__block_close, - sym__blank_line_start, - [132490] = 1, - ACTIONS(8133), 2, - sym__soft_line_ending, - sym__single_quote_span_close, - [132495] = 1, - ACTIONS(8133), 2, + ACTIONS(8481), 2, sym__soft_line_ending, - sym__emphasis_close_star, - [132500] = 1, - ACTIONS(7862), 2, - sym__soft_line_ending, - sym__whitespace, - [132505] = 1, - ACTIONS(8421), 2, + anon_sym_DOLLAR, + [132490] = 1, + ACTIONS(8009), 2, sym__soft_line_ending, sym__whitespace, - [132510] = 2, - ACTIONS(6522), 1, - sym__key_specifier_token, - STATE(3532), 1, - sym__commonmark_key_value_specifier, - [132517] = 1, - ACTIONS(2531), 2, - sym__line_ending, - sym__eof, - [132522] = 2, - ACTIONS(7245), 1, + [132495] = 2, + ACTIONS(7331), 1, sym__line_ending, - STATE(2764), 1, + STATE(2780), 1, sym__newline, - [132529] = 2, - ACTIONS(2913), 1, - sym__line_ending, - ACTIONS(7993), 1, - sym__pipe_table_delimiter, - [132536] = 1, - ACTIONS(7756), 2, - sym__pipe_table_delimiter, - sym__whitespace, - [132541] = 1, - ACTIONS(8423), 2, + [132502] = 1, + ACTIONS(8097), 2, sym__soft_line_ending, + sym__strong_emphasis_close_star, + [132507] = 2, + ACTIONS(7623), 1, + sym__pipe_table_delimiter, + ACTIONS(8483), 1, sym__whitespace, - [132546] = 2, - ACTIONS(7245), 1, + [132514] = 2, + ACTIONS(8485), 1, + sym__block_close, + ACTIONS(8487), 1, + sym__fenced_code_block_end_backtick, + [132521] = 2, + ACTIONS(241), 1, sym__line_ending, - STATE(2772), 1, + STATE(57), 1, sym__newline, - [132553] = 1, - ACTIONS(6312), 2, - sym__soft_line_ending, - sym__whitespace, - [132558] = 2, - ACTIONS(233), 1, + [132528] = 2, + ACTIONS(3071), 1, sym__line_ending, - STATE(39), 1, - sym__newline, - [132565] = 1, - ACTIONS(6316), 2, - sym__soft_line_ending, - sym__whitespace, - [132570] = 1, - ACTIONS(6320), 2, - sym__soft_line_ending, + ACTIONS(8489), 1, + sym__pipe_table_delimiter, + [132535] = 2, + ACTIONS(8037), 1, + sym__blank_line_start, + STATE(3873), 1, + sym__blank_line, + [132542] = 1, + ACTIONS(7631), 2, + sym__pipe_table_delimiter, sym__whitespace, - [132575] = 1, - ACTIONS(6954), 2, + [132547] = 2, + ACTIONS(8475), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(4298), 1, + sym__commonmark_double_quote_string, + [132554] = 1, + ACTIONS(8491), 2, + sym__block_close, + sym__blank_line_start, + [132559] = 1, + ACTIONS(7022), 2, sym__key_specifier_token, sym__shortcode_close, - [132580] = 2, - ACTIONS(7610), 1, + [132564] = 2, + ACTIONS(7898), 1, + sym__line_ending, + ACTIONS(8489), 1, sym__pipe_table_delimiter, - ACTIONS(8425), 1, - sym__whitespace, - [132587] = 1, - ACTIONS(7961), 2, - sym__soft_line_ending, - sym__whitespace, - [132592] = 1, - ACTIONS(6954), 2, + [132571] = 1, + ACTIONS(7022), 2, sym__key_specifier_token, sym__shortcode_close_escaped, - [132597] = 2, - ACTIONS(2537), 1, - aux_sym_inline_note_token1, - ACTIONS(8427), 1, - sym__whitespace, - [132604] = 1, - ACTIONS(8133), 2, - sym__soft_line_ending, - sym__strikeout_close, - [132609] = 1, - ACTIONS(8133), 2, - sym__soft_line_ending, - sym__strong_emphasis_close_underscore, - [132614] = 1, - ACTIONS(8429), 2, - sym__soft_line_ending, - sym__whitespace, - [132619] = 1, - ACTIONS(7887), 2, - sym__soft_line_ending, + [132576] = 2, + ACTIONS(528), 1, + sym__block_close, + ACTIONS(8493), 1, + sym_block_continuation, + [132583] = 2, + ACTIONS(8207), 1, + sym__pipe_table_delimiter, + ACTIONS(8495), 1, sym__whitespace, - [132624] = 2, - ACTIONS(8431), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(4046), 1, - sym__commonmark_double_quote_string, - [132631] = 2, - ACTIONS(7895), 1, + [132590] = 2, + ACTIONS(3075), 1, sym__line_ending, - ACTIONS(8415), 1, + ACTIONS(8489), 1, + sym__pipe_table_delimiter, + [132597] = 1, + ACTIONS(7864), 2, sym__pipe_table_delimiter, - [132638] = 1, - ACTIONS(7840), 2, - sym__soft_line_ending, sym__whitespace, - [132643] = 1, - ACTIONS(7844), 2, + [132602] = 2, + ACTIONS(6504), 1, + sym__key_specifier_token, + STATE(3217), 1, + sym__commonmark_key_value_specifier, + [132609] = 2, + ACTIONS(3071), 1, + sym__line_ending, + ACTIONS(8207), 1, + sym__pipe_table_delimiter, + [132616] = 2, + ACTIONS(2391), 1, + sym__close_block, + ACTIONS(8497), 1, + sym_block_continuation, + [132623] = 1, + ACTIONS(8097), 2, sym__soft_line_ending, - sym__whitespace, - [132648] = 2, - ACTIONS(2315), 1, + sym__strikeout_close, + [132628] = 2, + ACTIONS(7363), 1, sym__block_close, - ACTIONS(8433), 1, + ACTIONS(7365), 1, + sym__fenced_code_block_end_backtick, + [132635] = 2, + ACTIONS(2391), 1, + sym__block_close, + ACTIONS(8499), 1, sym_block_continuation, - [132655] = 2, - ACTIONS(7989), 1, + [132642] = 2, + ACTIONS(7367), 1, + sym__block_close, + ACTIONS(7369), 1, + sym__fenced_code_block_end_backtick, + [132649] = 1, + ACTIONS(8501), 2, + sym__soft_line_ending, + sym__whitespace, + [132654] = 2, + ACTIONS(7690), 1, sym__pipe_table_delimiter, - ACTIONS(8435), 1, + ACTIONS(8503), 1, sym__whitespace, - [132662] = 1, - ACTIONS(8437), 2, + [132661] = 2, + ACTIONS(241), 1, sym__line_ending, - sym__eof, - [132667] = 2, - ACTIONS(7245), 1, + STATE(58), 1, + sym__newline, + [132668] = 2, + ACTIONS(7399), 1, + sym__block_close, + ACTIONS(7401), 1, + sym__fenced_code_block_end_backtick, + [132675] = 2, + ACTIONS(7331), 1, sym__line_ending, - STATE(2784), 1, + STATE(2781), 1, sym__newline, - [132674] = 2, - ACTIONS(8439), 1, + [132682] = 2, + ACTIONS(8505), 1, sym__line_ending, - STATE(2763), 1, + STATE(2764), 1, sym__newline, - [132681] = 2, - ACTIONS(233), 1, + [132689] = 2, + ACTIONS(241), 1, sym__line_ending, - STATE(47), 1, + STATE(49), 1, sym__newline, - [132688] = 2, - ACTIONS(7245), 1, + [132696] = 2, + ACTIONS(7331), 1, sym__line_ending, - STATE(2782), 1, + STATE(2788), 1, sym__newline, - [132695] = 2, - ACTIONS(233), 1, + [132703] = 2, + ACTIONS(241), 1, sym__line_ending, - STATE(49), 1, + STATE(51), 1, sym__newline, - [132702] = 2, - ACTIONS(233), 1, + [132710] = 2, + ACTIONS(241), 1, sym__line_ending, - STATE(50), 1, + STATE(52), 1, sym__newline, - [132709] = 2, - ACTIONS(8431), 1, + [132717] = 2, + ACTIONS(7379), 1, + sym__block_close, + ACTIONS(7381), 1, + sym__fenced_code_block_end_backtick, + [132724] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4340), 1, + STATE(4080), 1, sym__commonmark_double_quote_string, - [132716] = 2, - ACTIONS(8431), 1, + [132731] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4341), 1, + STATE(4081), 1, sym__commonmark_double_quote_string, - [132723] = 2, - ACTIONS(8431), 1, + [132738] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4368), 1, + STATE(4104), 1, sym__commonmark_double_quote_string, - [132730] = 2, - ACTIONS(7317), 1, - sym__block_close, - ACTIONS(7319), 1, - sym__fenced_code_block_end_backtick, - [132737] = 1, - ACTIONS(8441), 2, - sym__soft_line_ending, - sym__whitespace, - [132742] = 1, - ACTIONS(8443), 2, - sym__soft_line_ending, + [132745] = 2, + ACTIONS(6888), 1, + sym__key_specifier_token, + ACTIONS(8507), 1, sym__whitespace, - [132747] = 2, - ACTIONS(7245), 1, + [132752] = 2, + ACTIONS(8509), 1, + anon_sym_DASH, + STATE(2761), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + [132759] = 2, + ACTIONS(7720), 1, + sym__line_ending, + ACTIONS(8489), 1, + sym__pipe_table_delimiter, + [132766] = 2, + ACTIONS(7331), 1, sym__line_ending, - STATE(2790), 1, + STATE(2776), 1, sym__newline, - [132754] = 2, - ACTIONS(8439), 1, + [132773] = 2, + ACTIONS(8505), 1, sym__line_ending, - STATE(2756), 1, + STATE(2766), 1, sym__newline, - [132761] = 2, - ACTIONS(233), 1, + [132780] = 2, + ACTIONS(241), 1, sym__line_ending, - STATE(54), 1, + STATE(42), 1, sym__newline, - [132768] = 2, - ACTIONS(7614), 1, - sym__pipe_table_delimiter, - ACTIONS(8445), 1, + [132787] = 1, + ACTIONS(8511), 2, + sym__soft_line_ending, sym__whitespace, - [132775] = 2, - ACTIONS(7668), 1, + [132792] = 2, + ACTIONS(8513), 1, + sym__block_close, + ACTIONS(8515), 1, + sym__fenced_code_block_end_backtick, + [132799] = 2, + ACTIONS(7720), 1, + sym__line_ending, + ACTIONS(8207), 1, sym__pipe_table_delimiter, - ACTIONS(8447), 1, - sym__whitespace, - [132782] = 2, - ACTIONS(7245), 1, + [132806] = 2, + ACTIONS(7331), 1, sym__line_ending, - STATE(2781), 1, + STATE(2773), 1, sym__newline, - [132789] = 2, - ACTIONS(233), 1, + [132813] = 2, + ACTIONS(241), 1, sym__line_ending, - STATE(56), 1, + STATE(44), 1, sym__newline, - [132796] = 2, - ACTIONS(233), 1, + [132820] = 2, + ACTIONS(241), 1, sym__line_ending, - STATE(57), 1, + STATE(45), 1, sym__newline, - [132803] = 2, - ACTIONS(8431), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(3765), 1, - sym__commonmark_double_quote_string, - [132810] = 2, - ACTIONS(8431), 1, + [132827] = 1, + ACTIONS(8517), 2, + sym__line_ending, + sym__eof, + [132832] = 1, + ACTIONS(8097), 2, + sym__soft_line_ending, + sym__double_quote_span_close, + [132837] = 1, + ACTIONS(7749), 2, + sym__pipe_table_delimiter, + sym__whitespace, + [132842] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3707), 1, + STATE(4404), 1, sym__commonmark_double_quote_string, - [132817] = 2, - ACTIONS(8431), 1, + [132849] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3738), 1, + STATE(4405), 1, sym__commonmark_double_quote_string, - [132824] = 2, - ACTIONS(8431), 1, + [132856] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4019), 1, + STATE(4320), 1, sym__commonmark_double_quote_string, - [132831] = 1, - ACTIONS(7846), 2, + [132863] = 2, + ACTIONS(7724), 1, + sym__pipe_table_delimiter, + ACTIONS(8519), 1, + sym__whitespace, + [132870] = 1, + ACTIONS(8521), 2, sym__soft_line_ending, sym__whitespace, - [132836] = 1, - ACTIONS(8133), 2, + [132875] = 1, + ACTIONS(8523), 2, sym__soft_line_ending, - sym__double_quote_span_close, - [132841] = 2, - ACTIONS(8431), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(4091), 1, - sym__commonmark_double_quote_string, - [132848] = 2, - ACTIONS(8431), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(4096), 1, - sym__commonmark_double_quote_string, - [132855] = 1, - ACTIONS(8449), 2, + sym__whitespace, + [132880] = 1, + ACTIONS(8525), 2, sym__soft_line_ending, sym__whitespace, - [132860] = 2, - ACTIONS(8431), 1, + [132885] = 2, + ACTIONS(8527), 1, + anon_sym_DASH, + STATE(2998), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + [132892] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3854), 1, + STATE(3930), 1, sym__commonmark_double_quote_string, - [132867] = 1, - ACTIONS(8451), 2, + [132899] = 1, + ACTIONS(7932), 2, sym__soft_line_ending, sym__whitespace, - [132872] = 2, - ACTIONS(8453), 1, - anon_sym_DASH, - STATE(2937), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - [132879] = 2, - ACTIONS(8431), 1, + [132904] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4083), 1, + STATE(4058), 1, sym__commonmark_double_quote_string, - [132886] = 2, - ACTIONS(8431), 1, + [132911] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4208), 1, + STATE(4167), 1, sym__commonmark_double_quote_string, - [132893] = 2, - ACTIONS(8431), 1, + [132918] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3684), 1, + STATE(4168), 1, sym__commonmark_double_quote_string, - [132900] = 1, - ACTIONS(2531), 2, - sym__block_close, - sym__blank_line_start, - [132905] = 1, - ACTIONS(7927), 2, + [132925] = 2, + ACTIONS(8475), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(4179), 1, + sym__commonmark_double_quote_string, + [132932] = 2, + ACTIONS(8475), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3790), 1, + sym__commonmark_double_quote_string, + [132939] = 1, + ACTIONS(8529), 2, sym__soft_line_ending, sym__whitespace, - [132910] = 2, - ACTIONS(7309), 1, + [132944] = 1, + ACTIONS(2773), 2, sym__block_close, - ACTIONS(7311), 1, - sym__fenced_code_block_end_backtick, - [132917] = 2, - ACTIONS(8439), 1, - sym__line_ending, - STATE(2762), 1, - sym__newline, - [132924] = 2, - ACTIONS(8431), 1, + sym__blank_line_start, + [132949] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3723), 1, + STATE(4059), 1, sym__commonmark_double_quote_string, - [132931] = 2, - ACTIONS(8431), 1, + [132956] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3731), 1, + STATE(4068), 1, sym__commonmark_double_quote_string, - [132938] = 2, - ACTIONS(8431), 1, + [132963] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3741), 1, + STATE(4129), 1, sym__commonmark_double_quote_string, - [132945] = 2, - ACTIONS(233), 1, - sym__line_ending, - STATE(41), 1, - sym__newline, - [132952] = 1, - ACTIONS(8455), 2, + [132970] = 1, + ACTIONS(8531), 2, sym__soft_line_ending, sym__whitespace, - [132957] = 1, - ACTIONS(8457), 2, + [132975] = 1, + ACTIONS(8533), 2, sym__soft_line_ending, - anon_sym_DOLLAR, - [132962] = 2, - ACTIONS(8431), 1, + sym__whitespace, + [132980] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3929), 1, + STATE(3823), 1, sym__commonmark_double_quote_string, - [132969] = 2, - ACTIONS(8431), 1, + [132987] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3932), 1, + STATE(3824), 1, sym__commonmark_double_quote_string, - [132976] = 2, - ACTIONS(8431), 1, + [132994] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3942), 1, + STATE(3827), 1, sym__commonmark_double_quote_string, - [132983] = 2, - ACTIONS(233), 1, + [133001] = 2, + ACTIONS(7331), 1, sym__line_ending, - STATE(42), 1, + STATE(2798), 1, sym__newline, - [132990] = 2, - ACTIONS(8459), 1, - sym__block_close, - ACTIONS(8461), 1, - sym__fenced_code_block_end_backtick, - [132997] = 2, - ACTIONS(8431), 1, + [133008] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4070), 1, + STATE(4022), 1, sym__commonmark_double_quote_string, - [133004] = 2, - ACTIONS(8431), 1, + [133015] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4072), 1, + STATE(4024), 1, sym__commonmark_double_quote_string, - [133011] = 2, - ACTIONS(8431), 1, + [133022] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4077), 1, + STATE(4030), 1, sym__commonmark_double_quote_string, - [133018] = 2, - ACTIONS(8431), 1, + [133029] = 2, + ACTIONS(8505), 1, + sym__line_ending, + STATE(2762), 1, + sym__newline, + [133036] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4228), 1, + STATE(4183), 1, sym__commonmark_double_quote_string, - [133025] = 2, - ACTIONS(8431), 1, + [133043] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4229), 1, + STATE(4190), 1, sym__commonmark_double_quote_string, - [133032] = 2, - ACTIONS(3015), 1, - sym__line_ending, - ACTIONS(8415), 1, - sym__pipe_table_delimiter, - [133039] = 2, - ACTIONS(8431), 1, + [133050] = 2, + ACTIONS(2391), 1, + sym__blank_line_start, + ACTIONS(8535), 1, + sym_block_continuation, + [133057] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4234), 1, + STATE(4194), 1, sym__commonmark_double_quote_string, - [133046] = 2, - ACTIONS(8431), 1, + [133064] = 1, + ACTIONS(8097), 2, + sym__soft_line_ending, + aux_sym_insert_token1, + [133069] = 1, + ACTIONS(8537), 2, + sym__soft_line_ending, + sym__whitespace, + [133074] = 2, + ACTIONS(8195), 1, + sym__pipe_table_delimiter, + ACTIONS(8539), 1, + sym__whitespace, + [133081] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4378), 1, + STATE(4391), 1, sym__commonmark_double_quote_string, - [133053] = 2, - ACTIONS(8431), 1, + [133088] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4379), 1, + STATE(4392), 1, sym__commonmark_double_quote_string, - [133060] = 2, - ACTIONS(8431), 1, + [133095] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4384), 1, + STATE(4398), 1, sym__commonmark_double_quote_string, - [133067] = 2, - ACTIONS(7303), 1, - sym__block_close, - ACTIONS(7305), 1, - sym__fenced_code_block_end_backtick, - [133074] = 2, - ACTIONS(6436), 1, - sym__key_specifier_token, - STATE(3116), 1, - sym__commonmark_key_value_specifier, - [133081] = 2, - ACTIONS(8463), 1, - anon_sym_DASH, - STATE(2758), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - [133088] = 1, - ACTIONS(2403), 2, + [133102] = 1, + ACTIONS(8097), 2, + sym__soft_line_ending, + sym__superscript_close, + [133107] = 1, + ACTIONS(2665), 2, sym__line_ending, sym__eof, - [133093] = 2, - ACTIONS(8431), 1, + [133112] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4294), 1, + STATE(3782), 1, sym__commonmark_double_quote_string, - [133100] = 2, - ACTIONS(8431), 1, + [133119] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3681), 1, + STATE(3787), 1, sym__commonmark_double_quote_string, - [133107] = 2, - ACTIONS(8431), 1, + [133126] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3693), 1, + STATE(3842), 1, sym__commonmark_double_quote_string, - [133114] = 1, - ACTIONS(8133), 2, + [133133] = 1, + ACTIONS(8097), 2, sym__soft_line_ending, sym__subscript_close, - [133119] = 2, - ACTIONS(8431), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(4157), 1, - sym__commonmark_double_quote_string, - [133126] = 2, - ACTIONS(8431), 1, + [133138] = 1, + ACTIONS(8097), 2, + sym__soft_line_ending, + sym__emphasis_close_star, + [133143] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4158), 1, + STATE(4221), 1, sym__commonmark_double_quote_string, - [133133] = 2, - ACTIONS(8431), 1, + [133150] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(4172), 1, + STATE(4222), 1, sym__commonmark_double_quote_string, - [133140] = 1, - ACTIONS(7648), 2, - sym__pipe_table_delimiter, + [133157] = 1, + ACTIONS(7892), 2, + sym__soft_line_ending, sym__whitespace, - [133145] = 2, - ACTIONS(7993), 1, - sym__pipe_table_delimiter, - ACTIONS(8465), 1, + [133162] = 2, + ACTIONS(2783), 1, + aux_sym_pandoc_math_token1, + ACTIONS(8541), 1, sym__whitespace, - [133152] = 2, - ACTIONS(8467), 1, - sym__block_close, - ACTIONS(8469), 1, - sym__fenced_code_block_end_backtick, - [133159] = 2, - ACTIONS(8431), 1, + [133169] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3698), 1, + STATE(4239), 1, sym__commonmark_double_quote_string, - [133166] = 2, - ACTIONS(8431), 1, + [133176] = 1, + ACTIONS(8097), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_underscore, + [133181] = 2, + ACTIONS(7349), 1, + sym__block_close, + ACTIONS(7351), 1, + sym__fenced_code_block_end_backtick, + [133188] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3699), 1, + STATE(3710), 1, sym__commonmark_double_quote_string, - [133173] = 2, - ACTIONS(8431), 1, + [133195] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3702), 1, + STATE(3713), 1, sym__commonmark_double_quote_string, - [133180] = 2, - ACTIONS(7247), 1, - sym__block_close, - ACTIONS(7249), 1, - sym__fenced_code_block_end_backtick, - [133187] = 2, - ACTIONS(8431), 1, + [133202] = 1, + ACTIONS(2773), 2, + sym__line_ending, + sym__eof, + [133207] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3773), 1, + STATE(3784), 1, sym__commonmark_double_quote_string, - [133194] = 2, - ACTIONS(8431), 1, + [133214] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3774), 1, + STATE(3785), 1, sym__commonmark_double_quote_string, - [133201] = 2, - ACTIONS(8431), 1, + [133221] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3777), 1, + STATE(3788), 1, sym__commonmark_double_quote_string, - [133208] = 2, - ACTIONS(7299), 1, + [133228] = 2, + ACTIONS(7333), 1, sym__block_close, - ACTIONS(7301), 1, + ACTIONS(7335), 1, sym__fenced_code_block_end_backtick, - [133215] = 2, - ACTIONS(2315), 1, - sym__blank_line_start, - ACTIONS(8471), 1, - sym_block_continuation, - [133222] = 2, - ACTIONS(8431), 1, + [133235] = 2, + ACTIONS(3075), 1, + sym__line_ending, + ACTIONS(8207), 1, + sym__pipe_table_delimiter, + [133242] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3848), 1, + STATE(3859), 1, sym__commonmark_double_quote_string, - [133229] = 2, - ACTIONS(8431), 1, + [133249] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3849), 1, + STATE(3860), 1, sym__commonmark_double_quote_string, - [133236] = 2, - ACTIONS(8431), 1, + [133256] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3852), 1, + STATE(3863), 1, sym__commonmark_double_quote_string, - [133243] = 2, - ACTIONS(7707), 1, - sym__line_ending, - ACTIONS(8415), 1, - sym__pipe_table_delimiter, - [133250] = 2, - ACTIONS(8431), 1, + [133263] = 2, + ACTIONS(6888), 1, + sym_shortcode_name, + ACTIONS(8543), 1, + sym__whitespace, + [133270] = 2, + ACTIONS(8545), 1, + sym__block_close, + ACTIONS(8547), 1, + sym__fenced_code_block_end_backtick, + [133277] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3923), 1, + STATE(3934), 1, sym__commonmark_double_quote_string, - [133257] = 2, - ACTIONS(8431), 1, + [133284] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3924), 1, + STATE(3935), 1, sym__commonmark_double_quote_string, - [133264] = 2, - ACTIONS(7707), 1, - sym__line_ending, - ACTIONS(7993), 1, - sym__pipe_table_delimiter, - [133271] = 2, - ACTIONS(8431), 1, + [133291] = 2, + ACTIONS(8475), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3927), 1, + STATE(3938), 1, sym__commonmark_double_quote_string, - [133278] = 1, - ACTIONS(7733), 2, - sym__pipe_table_delimiter, - sym__whitespace, - [133283] = 2, - ACTIONS(3015), 1, + [133298] = 2, + ACTIONS(241), 1, sym__line_ending, - ACTIONS(7993), 1, - sym__pipe_table_delimiter, - [133290] = 2, - ACTIONS(8473), 1, - sym__block_close, - ACTIONS(8475), 1, - sym__fenced_code_block_end_backtick, - [133297] = 1, - ACTIONS(8133), 2, + STATE(48), 1, + sym__newline, + [133305] = 1, + ACTIONS(8097), 2, sym__soft_line_ending, - sym__superscript_close, - [133302] = 2, - ACTIONS(8431), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(4110), 1, - sym__commonmark_double_quote_string, - [133309] = 1, - ACTIONS(8477), 1, - anon_sym_RPAREN, - [133313] = 1, - ACTIONS(8479), 1, - anon_sym_RBRACE, - [133317] = 1, - ACTIONS(8481), 1, - anon_sym_RBRACE, - [133321] = 1, - ACTIONS(8483), 1, - aux_sym_insert_token1, - [133325] = 1, - ACTIONS(8485), 1, - aux_sym_insert_token1, - [133329] = 1, - ACTIONS(8487), 1, - aux_sym_insert_token1, - [133333] = 1, - ACTIONS(8489), 1, - aux_sym_insert_token1, - [133337] = 1, - ACTIONS(7752), 1, - aux_sym_inline_note_token1, - [133341] = 1, - ACTIONS(8491), 1, - aux_sym_insert_token1, - [133345] = 1, - ACTIONS(8493), 1, - aux_sym_insert_token1, - [133349] = 1, - ACTIONS(8495), 1, - anon_sym_RPAREN, - [133353] = 1, - ACTIONS(7717), 1, - aux_sym_inline_note_token1, - [133357] = 1, - ACTIONS(8497), 1, - sym__block_close, - [133361] = 1, - ACTIONS(8499), 1, - anon_sym_RPAREN, - [133365] = 1, - ACTIONS(8501), 1, - anon_sym_RBRACE, - [133369] = 1, - ACTIONS(8503), 1, - anon_sym_RBRACE, - [133373] = 1, - ACTIONS(8505), 1, - anon_sym_RBRACE, - [133377] = 1, - ACTIONS(8507), 1, - anon_sym_RBRACE, - [133381] = 1, - ACTIONS(8509), 1, - sym__block_close, - [133385] = 1, - ACTIONS(8099), 1, - sym__block_close, - [133389] = 1, - ACTIONS(8511), 1, - aux_sym_inline_note_token1, - [133393] = 1, - ACTIONS(8513), 1, - anon_sym_RPAREN, - [133397] = 1, - ACTIONS(8515), 1, - anon_sym_RPAREN, - [133401] = 1, - ACTIONS(8517), 1, - sym__close_block, - [133405] = 1, - ACTIONS(8519), 1, - sym__block_close, - [133409] = 1, - ACTIONS(8521), 1, - anon_sym_RBRACE, - [133413] = 1, - ACTIONS(8523), 1, - anon_sym_RBRACE, - [133417] = 1, - ACTIONS(8525), 1, - anon_sym_RPAREN, - [133421] = 1, - ACTIONS(8527), 1, - anon_sym_RPAREN, - [133425] = 1, - ACTIONS(8529), 1, - anon_sym_RBRACE, - [133429] = 1, - ACTIONS(8531), 1, - anon_sym_RBRACE, - [133433] = 1, - ACTIONS(8533), 1, - anon_sym_RPAREN, - [133437] = 1, - ACTIONS(8535), 1, - aux_sym_citation_token2, - [133441] = 1, - ACTIONS(8537), 1, - anon_sym_RBRACE, - [133445] = 1, - ACTIONS(8539), 1, - anon_sym_RBRACE, - [133449] = 1, - ACTIONS(8541), 1, + sym__single_quote_span_close, + [133310] = 1, + ACTIONS(8097), 2, + sym__soft_line_ending, + sym__emphasis_close_underscore, + [133315] = 2, + ACTIONS(2783), 1, aux_sym_inline_note_token1, - [133453] = 1, - ACTIONS(8543), 1, - anon_sym_RPAREN, - [133457] = 1, - ACTIONS(8217), 1, - sym__block_close, - [133461] = 1, - ACTIONS(8545), 1, - aux_sym_citation_token2, - [133465] = 1, - ACTIONS(8547), 1, - aux_sym_citation_token2, - [133469] = 1, ACTIONS(8549), 1, - anon_sym_RPAREN, - [133473] = 1, - ACTIONS(2531), 1, - sym__close_block, - [133477] = 1, + sym__whitespace, + [133322] = 1, + ACTIONS(7982), 2, + sym__soft_line_ending, + sym__whitespace, + [133327] = 1, + ACTIONS(7926), 2, + sym__soft_line_ending, + sym__whitespace, + [133332] = 2, + ACTIONS(8475), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(4050), 1, + sym__commonmark_double_quote_string, + [133339] = 1, ACTIONS(8551), 1, - aux_sym_citation_token2, - [133481] = 1, - ACTIONS(8419), 1, - sym__close_block, - [133485] = 1, + sym__strikeout_close, + [133343] = 1, ACTIONS(8553), 1, - aux_sym_citation_token2, - [133489] = 1, + anon_sym_DOLLAR_DOLLAR, + [133347] = 1, + ACTIONS(6850), 1, + anon_sym_RBRACE, + [133351] = 1, ACTIONS(8555), 1, - aux_sym_insert_token1, - [133493] = 1, + anon_sym_RBRACE, + [133355] = 1, ACTIONS(8557), 1, - sym__close_block, - [133497] = 1, + aux_sym_citation_token2, + [133359] = 1, + ACTIONS(6790), 1, + anon_sym_RBRACE, + [133363] = 1, ACTIONS(8559), 1, - aux_sym_insert_token1, - [133501] = 1, + anon_sym_RBRACE, + [133367] = 1, ACTIONS(8561), 1, - sym__block_close, - [133505] = 1, + aux_sym_citation_token2, + [133371] = 1, ACTIONS(8563), 1, aux_sym_insert_token1, - [133509] = 1, - ACTIONS(8115), 1, - sym__block_close, - [133513] = 1, + [133375] = 1, ACTIONS(8565), 1, aux_sym_insert_token1, - [133517] = 1, + [133379] = 1, ACTIONS(8567), 1, - anon_sym_RPAREN, - [133521] = 1, + aux_sym_insert_token1, + [133383] = 1, ACTIONS(8569), 1, - sym__single_quote_span_close, - [133525] = 1, + aux_sym_insert_token1, + [133387] = 1, + ACTIONS(7783), 1, + aux_sym_inline_note_token1, + [133391] = 1, ACTIONS(8571), 1, - sym__double_quote_span_close, - [133529] = 1, + sym__strong_emphasis_close_star, + [133395] = 1, + ACTIONS(8571), 1, + sym__strong_emphasis_close_underscore, + [133399] = 1, ACTIONS(8573), 1, - anon_sym_RBRACE, - [133533] = 1, + sym__emphasis_close_star, + [133403] = 1, + ACTIONS(8573), 1, + sym__emphasis_close_underscore, + [133407] = 1, ACTIONS(8575), 1, - anon_sym_RBRACE, - [133537] = 1, + aux_sym_inline_note_token1, + [133411] = 1, ACTIONS(8577), 1, - sym__strikeout_close, - [133541] = 1, + aux_sym_citation_token1, + [133415] = 1, ACTIONS(8579), 1, - sym__subscript_close, - [133545] = 1, + anon_sym_RBRACE, + [133419] = 1, ACTIONS(8581), 1, - sym__superscript_close, - [133549] = 1, + anon_sym_RBRACE, + [133423] = 1, ACTIONS(8583), 1, - anon_sym_RPAREN, - [133553] = 1, - ACTIONS(8585), 1, - sym__strong_emphasis_close_star, - [133557] = 1, + anon_sym_RBRACE, + [133427] = 1, ACTIONS(8585), 1, - sym__strong_emphasis_close_underscore, - [133561] = 1, - ACTIONS(8587), 1, - sym__emphasis_close_star, - [133565] = 1, + anon_sym_RBRACE, + [133431] = 1, ACTIONS(8587), 1, - sym__emphasis_close_underscore, - [133569] = 1, + anon_sym_RPAREN, + [133435] = 1, ACTIONS(8589), 1, - anon_sym_EQ, - [133573] = 1, + aux_sym_insert_token1, + [133439] = 1, ACTIONS(8591), 1, - sym__close_block, - [133577] = 1, + aux_sym_inline_note_token1, + [133443] = 1, ACTIONS(8593), 1, anon_sym_RPAREN, - [133581] = 1, - ACTIONS(8151), 1, - sym__block_close, - [133585] = 1, + [133447] = 1, ACTIONS(8595), 1, - sym__emphasis_close_star, - [133589] = 1, + anon_sym_EQ, + [133451] = 1, + ACTIONS(8179), 1, + anon_sym_RBRACE, + [133455] = 1, + ACTIONS(2773), 1, + sym__blank_line_start, + [133459] = 1, ACTIONS(8597), 1, - anon_sym_RPAREN, - [133593] = 1, + aux_sym_pandoc_math_token1, + [133463] = 1, ACTIONS(8599), 1, - anon_sym_DOLLAR_DOLLAR, - [133597] = 1, - ACTIONS(6786), 1, - anon_sym_RBRACE, - [133601] = 1, + ts_builtin_sym_end, + [133467] = 1, ACTIONS(8601), 1, - anon_sym_RBRACE, - [133605] = 1, + anon_sym_RPAREN, + [133471] = 1, ACTIONS(8603), 1, - aux_sym_insert_token1, - [133609] = 1, - ACTIONS(6684), 1, - anon_sym_RBRACE, - [133613] = 1, + anon_sym_RPAREN, + [133475] = 1, ACTIONS(8605), 1, - anon_sym_RBRACE, - [133617] = 1, - ACTIONS(8607), 1, aux_sym_insert_token1, - [133621] = 1, + [133479] = 1, + ACTIONS(8607), 1, + anon_sym_DOLLAR_DOLLAR, + [133483] = 1, ACTIONS(8609), 1, - aux_sym_insert_token1, - [133625] = 1, + anon_sym_RPAREN, + [133487] = 1, + ACTIONS(6866), 1, + anon_sym_RBRACE, + [133491] = 1, ACTIONS(8611), 1, - aux_sym_insert_token1, - [133629] = 1, + anon_sym_RBRACE, + [133495] = 1, ACTIONS(8613), 1, - aux_sym_insert_token1, - [133633] = 1, + sym__superscript_close, + [133499] = 1, + ACTIONS(6808), 1, + anon_sym_RBRACE, + [133503] = 1, ACTIONS(8615), 1, - aux_sym_insert_token1, - [133637] = 1, - ACTIONS(7764), 1, - aux_sym_inline_note_token1, - [133641] = 1, - ACTIONS(8617), 1, anon_sym_RBRACE, - [133645] = 1, - ACTIONS(7862), 1, - anon_sym_RPAREN, - [133649] = 1, + [133507] = 1, + ACTIONS(8617), 1, + aux_sym_insert_token1, + [133511] = 1, ACTIONS(8619), 1, - sym__strikeout_close, - [133653] = 1, + aux_sym_citation_token2, + [133515] = 1, ACTIONS(8621), 1, - aux_sym_insert_token1, - [133657] = 1, - ACTIONS(8153), 1, - sym__block_close, - [133661] = 1, + aux_sym_citation_token2, + [133519] = 1, ACTIONS(8623), 1, aux_sym_insert_token1, - [133665] = 1, + [133523] = 1, ACTIONS(8625), 1, anon_sym_RBRACE, - [133669] = 1, + [133527] = 1, ACTIONS(8627), 1, - anon_sym_RBRACE, - [133673] = 1, + aux_sym_insert_token1, + [133531] = 1, ACTIONS(8629), 1, - anon_sym_RBRACE, - [133677] = 1, + aux_sym_insert_token1, + [133535] = 1, ACTIONS(8631), 1, - anon_sym_RBRACE, - [133681] = 1, - ACTIONS(8415), 1, - sym__pipe_table_delimiter, - [133685] = 1, + aux_sym_insert_token1, + [133539] = 1, ACTIONS(8633), 1, - anon_sym_RPAREN, - [133689] = 1, + aux_sym_insert_token1, + [133543] = 1, ACTIONS(8635), 1, - aux_sym_inline_note_token1, - [133693] = 1, + sym__block_close, + [133547] = 1, ACTIONS(8637), 1, - anon_sym_RPAREN, - [133697] = 1, - ACTIONS(7806), 1, - aux_sym_inline_note_token1, - [133701] = 1, + aux_sym_insert_token1, + [133551] = 1, ACTIONS(8639), 1, - sym__block_close, - [133705] = 1, + aux_sym_insert_token1, + [133555] = 1, ACTIONS(8641), 1, - aux_sym_citation_token2, - [133709] = 1, + aux_sym_insert_token1, + [133559] = 1, ACTIONS(8643), 1, - aux_sym_citation_token2, - [133713] = 1, + anon_sym_DOLLAR_DOLLAR, + [133563] = 1, ACTIONS(8645), 1, - aux_sym_citation_token2, - [133717] = 1, + aux_sym_insert_token1, + [133567] = 1, ACTIONS(8647), 1, - anon_sym_RPAREN, - [133721] = 1, + aux_sym_insert_token1, + [133571] = 1, ACTIONS(8649), 1, - anon_sym_RPAREN, - [133725] = 1, + sym__single_quote_span_close, + [133575] = 1, ACTIONS(8651), 1, - aux_sym_citation_token2, - [133729] = 1, - ACTIONS(7961), 1, - anon_sym_RPAREN, - [133733] = 1, + sym__double_quote_span_close, + [133579] = 1, ACTIONS(8653), 1, - anon_sym_RPAREN, - [133737] = 1, + anon_sym_RBRACE, + [133583] = 1, ACTIONS(8655), 1, - aux_sym_inline_note_token1, - [133741] = 1, + anon_sym_RBRACE, + [133587] = 1, ACTIONS(8657), 1, - anon_sym_RPAREN, - [133745] = 1, + sym__strikeout_close, + [133591] = 1, ACTIONS(8659), 1, - aux_sym_insert_token1, - [133749] = 1, + sym__subscript_close, + [133595] = 1, ACTIONS(8661), 1, - ts_builtin_sym_end, - [133753] = 1, + sym__superscript_close, + [133599] = 1, + ACTIONS(7696), 1, + aux_sym_inline_note_token1, + [133603] = 1, ACTIONS(8663), 1, - sym__block_close, - [133757] = 1, + sym__strong_emphasis_close_star, + [133607] = 1, + ACTIONS(8663), 1, + sym__strong_emphasis_close_underscore, + [133611] = 1, ACTIONS(8665), 1, - sym__single_quote_span_close, - [133761] = 1, + sym__emphasis_close_star, + [133615] = 1, + ACTIONS(8665), 1, + sym__emphasis_close_underscore, + [133619] = 1, + ACTIONS(7854), 1, + aux_sym_inline_note_token1, + [133623] = 1, ACTIONS(8667), 1, - aux_sym_citation_token2, - [133765] = 1, + aux_sym_insert_token1, + [133627] = 1, ACTIONS(8669), 1, - aux_sym_citation_token2, - [133769] = 1, + sym__block_close, + [133631] = 1, + ACTIONS(8485), 1, + sym__block_close, + [133635] = 1, + ACTIONS(7623), 1, + sym__pipe_table_delimiter, + [133639] = 1, ACTIONS(8671), 1, aux_sym_insert_token1, - [133773] = 1, + [133643] = 1, ACTIONS(8673), 1, - sym__double_quote_span_close, - [133777] = 1, + anon_sym_DOLLAR_DOLLAR, + [133647] = 1, + ACTIONS(6876), 1, + anon_sym_RBRACE, + [133651] = 1, ACTIONS(8675), 1, - aux_sym_insert_token1, - [133781] = 1, + anon_sym_RBRACE, + [133655] = 1, + ACTIONS(6348), 1, + sym__line_ending, + [133659] = 1, + ACTIONS(6822), 1, + anon_sym_RBRACE, + [133663] = 1, ACTIONS(8677), 1, anon_sym_RBRACE, - [133785] = 1, + [133667] = 1, ACTIONS(8679), 1, aux_sym_insert_token1, - [133789] = 1, + [133671] = 1, ACTIONS(8681), 1, aux_sym_insert_token1, - [133793] = 1, - ACTIONS(7610), 1, - sym__pipe_table_delimiter, - [133797] = 1, + [133675] = 1, ACTIONS(8683), 1, aux_sym_insert_token1, - [133801] = 1, + [133679] = 1, ACTIONS(8685), 1, aux_sym_insert_token1, - [133805] = 1, + [133683] = 1, ACTIONS(8687), 1, aux_sym_insert_token1, - [133809] = 1, + [133687] = 1, + ACTIONS(7795), 1, + aux_sym_inline_note_token1, + [133691] = 1, ACTIONS(8689), 1, - anon_sym_RBRACE, - [133813] = 1, + sym__single_quote_span_close, + [133695] = 1, ACTIONS(8691), 1, - aux_sym_insert_token1, - [133817] = 1, + anon_sym_RBRACE, + [133699] = 1, ACTIONS(8693), 1, - sym__single_quote_span_close, - [133821] = 1, + aux_sym_insert_token1, + [133703] = 1, ACTIONS(8695), 1, - sym__single_quote_span_close, - [133825] = 1, + anon_sym_RBRACE, + [133707] = 1, ACTIONS(8697), 1, - sym__double_quote_span_close, - [133829] = 1, + anon_sym_RBRACE, + [133711] = 1, ACTIONS(8699), 1, anon_sym_RBRACE, - [133833] = 1, + [133715] = 1, ACTIONS(8701), 1, anon_sym_RBRACE, - [133837] = 1, + [133719] = 1, ACTIONS(8703), 1, - sym__strikeout_close, - [133841] = 1, + anon_sym_RBRACE, + [133723] = 1, ACTIONS(8705), 1, - sym__subscript_close, - [133845] = 1, + anon_sym_RBRACE, + [133727] = 1, ACTIONS(8707), 1, - sym__superscript_close, - [133849] = 1, + anon_sym_RBRACE, + [133731] = 1, ACTIONS(8709), 1, - sym__double_quote_span_close, - [133853] = 1, - ACTIONS(8711), 1, - sym__strong_emphasis_close_star, - [133857] = 1, + sym__block_close, + [133735] = 1, ACTIONS(8711), 1, - sym__strong_emphasis_close_underscore, - [133861] = 1, - ACTIONS(8713), 1, - sym__emphasis_close_star, - [133865] = 1, + aux_sym_insert_token1, + [133739] = 1, ACTIONS(8713), 1, - sym__emphasis_close_underscore, - [133869] = 1, + aux_sym_inline_note_token1, + [133743] = 1, ACTIONS(8715), 1, - anon_sym_RBRACE, - [133873] = 1, + anon_sym_RPAREN, + [133747] = 1, ACTIONS(8717), 1, - anon_sym_RBRACE, - [133877] = 1, + anon_sym_RPAREN, + [133751] = 1, ACTIONS(8719), 1, - sym__block_close, - [133881] = 1, + aux_sym_insert_token1, + [133755] = 1, ACTIONS(8721), 1, - sym__strikeout_close, - [133885] = 1, + sym__double_quote_span_close, + [133759] = 1, ACTIONS(8723), 1, - aux_sym_insert_token1, - [133889] = 1, + anon_sym_RPAREN, + [133763] = 1, ACTIONS(8725), 1, - sym__subscript_close, - [133893] = 1, + aux_sym_inline_note_token1, + [133767] = 1, ACTIONS(8727), 1, - anon_sym_DOLLAR_DOLLAR, - [133897] = 1, - ACTIONS(6796), 1, - anon_sym_RBRACE, - [133901] = 1, + anon_sym_RPAREN, + [133771] = 1, ACTIONS(8729), 1, - anon_sym_RBRACE, - [133905] = 1, + anon_sym_RPAREN, + [133775] = 1, ACTIONS(8731), 1, - sym__superscript_close, - [133909] = 1, - ACTIONS(6702), 1, - anon_sym_RBRACE, - [133913] = 1, + anon_sym_RPAREN, + [133779] = 1, ACTIONS(8733), 1, - anon_sym_RBRACE, - [133917] = 1, + anon_sym_RPAREN, + [133783] = 1, ACTIONS(8735), 1, - sym__strikeout_close, - [133921] = 1, + anon_sym_RPAREN, + [133787] = 1, ACTIONS(8737), 1, aux_sym_insert_token1, - [133925] = 1, + [133791] = 1, ACTIONS(8739), 1, - aux_sym_insert_token1, - [133929] = 1, + anon_sym_RPAREN, + [133795] = 1, ACTIONS(8741), 1, - aux_sym_insert_token1, - [133933] = 1, + sym__single_quote_span_close, + [133799] = 1, ACTIONS(8743), 1, - aux_sym_insert_token1, - [133937] = 1, - ACTIONS(7778), 1, - aux_sym_inline_note_token1, - [133941] = 1, - ACTIONS(8745), 1, - sym__strong_emphasis_close_star, - [133945] = 1, + anon_sym_RBRACE, + [133803] = 1, ACTIONS(8745), 1, - sym__strong_emphasis_close_underscore, - [133949] = 1, - ACTIONS(8747), 1, - sym__emphasis_close_star, - [133953] = 1, + sym__double_quote_span_close, + [133807] = 1, ACTIONS(8747), 1, - sym__emphasis_close_underscore, - [133957] = 1, - ACTIONS(8595), 1, - sym__emphasis_close_underscore, - [133961] = 1, + anon_sym_RBRACE, + [133811] = 1, ACTIONS(8749), 1, - sym__subscript_close, - [133965] = 1, + aux_sym_citation_token2, + [133815] = 1, ACTIONS(8751), 1, - anon_sym_RBRACE, - [133969] = 1, + aux_sym_citation_token2, + [133819] = 1, ACTIONS(8753), 1, anon_sym_RBRACE, - [133973] = 1, + [133823] = 1, ACTIONS(8755), 1, - anon_sym_RBRACE, - [133977] = 1, + aux_sym_insert_token1, + [133827] = 1, ACTIONS(8757), 1, - anon_sym_RBRACE, - [133981] = 1, + sym__strikeout_close, + [133831] = 1, ACTIONS(8759), 1, - aux_sym_citation_token2, - [133985] = 1, + sym__subscript_close, + [133835] = 1, ACTIONS(8761), 1, sym__superscript_close, - [133989] = 1, + [133839] = 1, ACTIONS(8763), 1, - aux_sym_inline_note_token1, - [133993] = 1, + aux_sym_insert_token1, + [133843] = 1, ACTIONS(8765), 1, - anon_sym_RPAREN, - [133997] = 1, - ACTIONS(8195), 1, - sym__block_close, - [134001] = 1, + anon_sym_RBRACE, + [133847] = 1, ACTIONS(8767), 1, - sym__strong_emphasis_close_star, - [134005] = 1, + aux_sym_insert_token1, + [133851] = 1, ACTIONS(8769), 1, - anon_sym_DOLLAR_DOLLAR, - [134009] = 1, - ACTIONS(6810), 1, - anon_sym_RBRACE, - [134013] = 1, + sym__strong_emphasis_close_star, + [133855] = 1, ACTIONS(8771), 1, - anon_sym_RBRACE, - [134017] = 1, + aux_sym_insert_token1, + [133859] = 1, + ACTIONS(8769), 1, + sym__strong_emphasis_close_underscore, + [133863] = 1, ACTIONS(8773), 1, - anon_sym_RPAREN, - [134021] = 1, + aux_sym_insert_token1, + [133867] = 1, ACTIONS(8775), 1, - anon_sym_RPAREN, - [134025] = 1, - ACTIONS(8767), 1, - sym__strong_emphasis_close_underscore, - [134029] = 1, - ACTIONS(6716), 1, - anon_sym_RBRACE, - [134033] = 1, + sym__emphasis_close_star, + [133871] = 1, ACTIONS(8777), 1, - anon_sym_RPAREN, - [134037] = 1, + sym__single_quote_span_close, + [133875] = 1, ACTIONS(8779), 1, - anon_sym_RBRACE, - [134041] = 1, + sym__double_quote_span_close, + [133879] = 1, ACTIONS(8781), 1, - anon_sym_RPAREN, - [134045] = 1, + anon_sym_RBRACE, + [133883] = 1, ACTIONS(8783), 1, - sym__block_close, - [134049] = 1, + anon_sym_RBRACE, + [133887] = 1, ACTIONS(8785), 1, - aux_sym_insert_token1, - [134053] = 1, + sym__strikeout_close, + [133891] = 1, ACTIONS(8787), 1, - aux_sym_insert_token1, - [134057] = 1, + sym__subscript_close, + [133895] = 1, ACTIONS(8789), 1, - aux_sym_insert_token1, - [134061] = 1, + sym__superscript_close, + [133899] = 1, ACTIONS(8791), 1, - aux_sym_citation_token2, - [134065] = 1, + anon_sym_RBRACE, + [133903] = 1, ACTIONS(8793), 1, - aux_sym_citation_token2, - [134069] = 1, - ACTIONS(2537), 1, - aux_sym_pandoc_math_token1, - [134073] = 1, + sym__strong_emphasis_close_star, + [133907] = 1, + ACTIONS(8793), 1, + sym__strong_emphasis_close_underscore, + [133911] = 1, ACTIONS(8795), 1, - aux_sym_citation_token2, - [134077] = 1, - ACTIONS(8365), 1, - anon_sym_RBRACE, - [134081] = 1, + sym__emphasis_close_star, + [133915] = 1, + ACTIONS(8795), 1, + sym__emphasis_close_underscore, + [133919] = 1, + ACTIONS(8775), 1, + sym__emphasis_close_underscore, + [133923] = 1, ACTIONS(8797), 1, - anon_sym_RBRACE, - [134085] = 1, + anon_sym_RPAREN, + [133927] = 1, ACTIONS(8799), 1, - aux_sym_insert_token1, - [134089] = 1, + anon_sym_RPAREN, + [133931] = 1, ACTIONS(8801), 1, - aux_sym_insert_token1, - [134093] = 1, + sym__strikeout_close, + [133935] = 1, ACTIONS(8803), 1, - aux_sym_insert_token1, - [134097] = 1, + sym__subscript_close, + [133939] = 1, ACTIONS(8805), 1, - aux_sym_insert_token1, - [134101] = 1, - ACTIONS(7549), 1, - aux_sym_inline_note_token1, - [134105] = 1, + anon_sym_RPAREN, + [133943] = 1, ACTIONS(8807), 1, - aux_sym_insert_token1, - [134109] = 1, - ACTIONS(8373), 1, - sym__block_close, - [134113] = 1, + anon_sym_DOLLAR_DOLLAR, + [133947] = 1, + ACTIONS(6852), 1, + anon_sym_RBRACE, + [133951] = 1, ACTIONS(8809), 1, - aux_sym_insert_token1, - [134117] = 1, + anon_sym_RBRACE, + [133955] = 1, ACTIONS(8811), 1, - sym__emphasis_close_star, - [134121] = 1, + sym__superscript_close, + [133959] = 1, + ACTIONS(6748), 1, + anon_sym_RBRACE, + [133963] = 1, ACTIONS(8813), 1, - sym__single_quote_span_close, - [134125] = 1, + anon_sym_RBRACE, + [133967] = 1, ACTIONS(8815), 1, - sym__double_quote_span_close, - [134129] = 1, + sym__strong_emphasis_close_star, + [133971] = 1, ACTIONS(8817), 1, - anon_sym_RBRACE, - [134133] = 1, + aux_sym_insert_token1, + [133975] = 1, ACTIONS(8819), 1, - anon_sym_RBRACE, - [134137] = 1, + aux_sym_insert_token1, + [133979] = 1, ACTIONS(8821), 1, - sym__strikeout_close, - [134141] = 1, + aux_sym_insert_token1, + [133983] = 1, ACTIONS(8823), 1, - sym__subscript_close, - [134145] = 1, + aux_sym_insert_token1, + [133987] = 1, + ACTIONS(7809), 1, + aux_sym_inline_note_token1, + [133991] = 1, ACTIONS(8825), 1, - sym__superscript_close, - [134149] = 1, - ACTIONS(8827), 1, - anon_sym_RBRACE, - [134153] = 1, - ACTIONS(8829), 1, sym__strong_emphasis_close_star, - [134157] = 1, - ACTIONS(8829), 1, + [133995] = 1, + ACTIONS(8825), 1, sym__strong_emphasis_close_underscore, - [134161] = 1, - ACTIONS(8831), 1, + [133999] = 1, + ACTIONS(8827), 1, + anon_sym_RPAREN, + [134003] = 1, + ACTIONS(8491), 1, + sym__close_block, + [134007] = 1, + ACTIONS(8829), 1, sym__emphasis_close_star, - [134165] = 1, - ACTIONS(8831), 1, + [134011] = 1, + ACTIONS(8829), 1, sym__emphasis_close_underscore, - [134169] = 1, + [134015] = 1, + ACTIONS(8831), 1, + anon_sym_RBRACE, + [134019] = 1, ACTIONS(8833), 1, - aux_sym_insert_token1, - [134173] = 1, - ACTIONS(8811), 1, - sym__emphasis_close_underscore, - [134177] = 1, + anon_sym_RBRACE, + [134023] = 1, ACTIONS(8835), 1, - anon_sym_DOLLAR_DOLLAR, - [134181] = 1, + anon_sym_RBRACE, + [134027] = 1, ACTIONS(8837), 1, - anon_sym_EQ, - [134185] = 1, + anon_sym_RBRACE, + [134031] = 1, ACTIONS(8839), 1, - sym__block_close, - [134189] = 1, + sym__emphasis_close_star, + [134035] = 1, ACTIONS(8841), 1, - anon_sym_RBRACE, - [134193] = 1, - ACTIONS(8843), 1, anon_sym_DOLLAR_DOLLAR, - [134197] = 1, - ACTIONS(6814), 1, - anon_sym_RBRACE, - [134201] = 1, + [134039] = 1, + ACTIONS(8843), 1, + aux_sym_inline_note_token1, + [134043] = 1, ACTIONS(8845), 1, - anon_sym_RBRACE, - [134205] = 1, + anon_sym_RPAREN, + [134047] = 1, ACTIONS(8847), 1, aux_sym_citation_token2, - [134209] = 1, - ACTIONS(6712), 1, + [134051] = 1, + ACTIONS(6870), 1, anon_sym_RBRACE, - [134213] = 1, + [134055] = 1, ACTIONS(8849), 1, - anon_sym_RBRACE, - [134217] = 1, - ACTIONS(8851), 1, aux_sym_citation_token2, - [134221] = 1, + [134059] = 1, + ACTIONS(8851), 1, + anon_sym_RBRACE, + [134063] = 1, ACTIONS(8853), 1, - aux_sym_insert_token1, - [134225] = 1, + sym__close_block, + [134067] = 1, ACTIONS(8855), 1, - aux_sym_insert_token1, - [134229] = 1, + anon_sym_RPAREN, + [134071] = 1, ACTIONS(8857), 1, - aux_sym_insert_token1, - [134233] = 1, + anon_sym_RPAREN, + [134075] = 1, + ACTIONS(6862), 1, + anon_sym_RBRACE, + [134079] = 1, + ACTIONS(7459), 1, + anon_sym_RBRACE, + [134083] = 1, ACTIONS(8859), 1, - aux_sym_insert_token1, - [134237] = 1, - ACTIONS(7814), 1, - aux_sym_inline_note_token1, - [134241] = 1, + anon_sym_RPAREN, + [134087] = 1, ACTIONS(8861), 1, + aux_sym_insert_token1, + [134091] = 1, + ACTIONS(7455), 1, anon_sym_RBRACE, - [134245] = 1, + [134095] = 1, + ACTIONS(7671), 1, + aux_sym_inline_note_token1, + [134099] = 1, + ACTIONS(8463), 1, + sym__block_close, + [134103] = 1, ACTIONS(8863), 1, - anon_sym_RBRACE, - [134249] = 1, + aux_sym_insert_token1, + [134107] = 1, ACTIONS(8865), 1, - anon_sym_RBRACE, - [134253] = 1, - ACTIONS(8867), 1, aux_sym_insert_token1, - [134257] = 1, + [134111] = 1, + ACTIONS(8867), 1, + aux_sym_citation_token2, + [134115] = 1, ACTIONS(8869), 1, - aux_sym_insert_token1, - [134261] = 1, + aux_sym_citation_token2, + [134119] = 1, + ACTIONS(7373), 1, + aux_sym__commonmark_specifier_start_with_class_token2, + [134123] = 1, ACTIONS(8871), 1, - aux_sym_inline_note_token1, - [134265] = 1, + sym__close_block, + [134127] = 1, + ACTIONS(8465), 1, + sym__block_close, + [134131] = 1, ACTIONS(8873), 1, - anon_sym_RBRACE, - [134269] = 1, + aux_sym_insert_token1, + [134135] = 1, + ACTIONS(8469), 1, + sym__block_close, + [134139] = 1, ACTIONS(8875), 1, - anon_sym_RBRACE, - [134273] = 1, + aux_sym_insert_token1, + [134143] = 1, + ACTIONS(6380), 1, + sym__line_ending, + [134147] = 1, ACTIONS(8877), 1, - anon_sym_RBRACE, - [134277] = 1, + aux_sym_insert_token1, + [134151] = 1, ACTIONS(8879), 1, - anon_sym_RBRACE, - [134281] = 1, - ACTIONS(7897), 1, - sym__pipe_table_delimiter, - [134285] = 1, + aux_sym_insert_token1, + [134155] = 1, ACTIONS(8881), 1, - anon_sym_RPAREN, - [134289] = 1, + aux_sym_insert_token1, + [134159] = 1, + ACTIONS(8471), 1, + sym__block_close, + [134163] = 1, ACTIONS(8883), 1, - aux_sym_inline_note_token1, - [134293] = 1, + aux_sym_insert_token1, + [134167] = 1, + ACTIONS(7022), 1, + sym__key_specifier_token, + [134171] = 1, ACTIONS(8885), 1, - anon_sym_RPAREN, - [134297] = 1, - ACTIONS(8887), 1, sym__single_quote_span_close, - [134301] = 1, + [134175] = 1, + ACTIONS(8887), 1, + sym__double_quote_span_close, + [134179] = 1, ACTIONS(8889), 1, - sym__superscript_close, - [134305] = 1, - ACTIONS(8197), 1, - sym__block_close, - [134309] = 1, + anon_sym_RBRACE, + [134183] = 1, ACTIONS(8891), 1, - sym__block_close, - [134313] = 1, + anon_sym_RBRACE, + [134187] = 1, ACTIONS(8893), 1, - aux_sym_insert_token1, - [134317] = 1, + sym__strikeout_close, + [134191] = 1, ACTIONS(8895), 1, - anon_sym_RPAREN, - [134321] = 1, + sym__subscript_close, + [134195] = 1, ACTIONS(8897), 1, - anon_sym_RPAREN, - [134325] = 1, - ACTIONS(8419), 1, - sym__blank_line_start, - [134329] = 1, + sym__superscript_close, + [134199] = 1, ACTIONS(8899), 1, aux_sym_insert_token1, - [134333] = 1, + [134203] = 1, ACTIONS(8901), 1, - anon_sym_RPAREN, - [134337] = 1, + sym__strong_emphasis_close_star, + [134207] = 1, + ACTIONS(8901), 1, + sym__strong_emphasis_close_underscore, + [134211] = 1, ACTIONS(8903), 1, - aux_sym_insert_token1, - [134341] = 1, + sym__emphasis_close_star, + [134215] = 1, + ACTIONS(8903), 1, + sym__emphasis_close_underscore, + [134219] = 1, + ACTIONS(8035), 1, + sym__block_close, + [134223] = 1, ACTIONS(8905), 1, - anon_sym_RPAREN, - [134345] = 1, - ACTIONS(6788), 1, - anon_sym_RBRACE, - [134349] = 1, + aux_sym_insert_token1, + [134227] = 1, ACTIONS(8907), 1, - anon_sym_RBRACE, - [134353] = 1, + sym__single_quote_span_close, + [134231] = 1, ACTIONS(8909), 1, - anon_sym_RPAREN, - [134357] = 1, - ACTIONS(6722), 1, - anon_sym_RBRACE, - [134361] = 1, + sym__double_quote_span_close, + [134235] = 1, ACTIONS(8911), 1, - anon_sym_RBRACE, - [134365] = 1, - ACTIONS(6748), 1, - anon_sym_RBRACE, - [134369] = 1, + aux_sym_citation_token2, + [134239] = 1, ACTIONS(8913), 1, anon_sym_RBRACE, - [134373] = 1, + [134243] = 1, ACTIONS(8915), 1, + anon_sym_DOLLAR_DOLLAR, + [134247] = 1, + ACTIONS(6860), 1, anon_sym_RBRACE, - [134377] = 1, + [134251] = 1, ACTIONS(8917), 1, anon_sym_RBRACE, - [134381] = 1, - ACTIONS(8919), 1, + [134255] = 1, + ACTIONS(8043), 1, + sym__block_close, + [134259] = 1, + ACTIONS(6764), 1, anon_sym_RBRACE, - [134385] = 1, - ACTIONS(6730), 1, + [134263] = 1, + ACTIONS(8919), 1, anon_sym_RBRACE, - [134389] = 1, + [134267] = 1, ACTIONS(8921), 1, - anon_sym_DOLLAR_DOLLAR, - [134393] = 1, - ACTIONS(8923), 1, - anon_sym_RPAREN, - [134397] = 1, - ACTIONS(6808), 1, anon_sym_RBRACE, - [134401] = 1, + [134271] = 1, + ACTIONS(8923), 1, + aux_sym_insert_token1, + [134275] = 1, ACTIONS(8925), 1, - anon_sym_DOLLAR_DOLLAR, - [134405] = 1, + aux_sym_insert_token1, + [134279] = 1, ACTIONS(8927), 1, - sym__single_quote_span_close, - [134409] = 1, + aux_sym_insert_token1, + [134283] = 1, ACTIONS(8929), 1, - sym__double_quote_span_close, - [134413] = 1, + aux_sym_insert_token1, + [134287] = 1, + ACTIONS(7826), 1, + aux_sym_inline_note_token1, + [134291] = 1, ACTIONS(8931), 1, - anon_sym_RBRACE, - [134417] = 1, + sym__strikeout_close, + [134295] = 1, ACTIONS(8933), 1, + aux_sym_citation_token2, + [134299] = 1, + ACTIONS(6818), 1, anon_sym_RBRACE, - [134421] = 1, - ACTIONS(6766), 1, - anon_sym_RBRACE, - [134425] = 1, + [134303] = 1, ACTIONS(8935), 1, sym__subscript_close, - [134429] = 1, + [134307] = 1, ACTIONS(8937), 1, - anon_sym_RBRACE, - [134433] = 1, + sym__superscript_close, + [134311] = 1, + ACTIONS(8815), 1, + sym__strong_emphasis_close_underscore, + [134315] = 1, ACTIONS(8939), 1, - aux_sym_insert_token1, - [134437] = 1, + anon_sym_RBRACE, + [134319] = 1, ACTIONS(8941), 1, - aux_sym_citation_token2, - [134441] = 1, + anon_sym_RBRACE, + [134323] = 1, ACTIONS(8943), 1, - aux_sym_citation_token2, - [134445] = 1, + anon_sym_RBRACE, + [134327] = 1, ACTIONS(8945), 1, - aux_sym_citation_token2, - [134449] = 1, + anon_sym_RBRACE, + [134331] = 1, ACTIONS(8947), 1, anon_sym_RBRACE, - [134453] = 1, + [134335] = 1, ACTIONS(8949), 1, - sym__whitespace, - [134457] = 1, + sym__strong_emphasis_close_star, + [134339] = 1, ACTIONS(8951), 1, - aux_sym_insert_token1, - [134461] = 1, + aux_sym_inline_note_token1, + [134343] = 1, ACTIONS(8953), 1, - aux_sym_citation_token1, - [134465] = 1, + anon_sym_RPAREN, + [134347] = 1, ACTIONS(8955), 1, - aux_sym_citation_token1, - [134469] = 1, + sym__block_close, + [134351] = 1, ACTIONS(8957), 1, - aux_sym_insert_token1, - [134473] = 1, + anon_sym_RPAREN, + [134355] = 1, + ACTIONS(8949), 1, + sym__strong_emphasis_close_underscore, + [134359] = 1, ACTIONS(8959), 1, - anon_sym_RBRACE, - [134477] = 1, + sym__minus_metadata_end, + [134363] = 1, ACTIONS(8961), 1, - aux_sym_insert_token1, - [134481] = 1, + sym__emphasis_close_star, + [134367] = 1, ACTIONS(8963), 1, - aux_sym_insert_token1, - [134485] = 1, + anon_sym_RPAREN, + [134371] = 1, ACTIONS(8965), 1, - aux_sym_insert_token1, - [134489] = 1, + anon_sym_RPAREN, + [134375] = 1, + ACTIONS(8961), 1, + sym__emphasis_close_underscore, + [134379] = 1, ACTIONS(8967), 1, aux_sym_insert_token1, - [134493] = 1, + [134383] = 1, ACTIONS(8969), 1, - aux_sym_insert_token1, - [134497] = 1, + anon_sym_RPAREN, + [134387] = 1, + ACTIONS(8207), 1, + sym__pipe_table_delimiter, + [134391] = 1, ACTIONS(8971), 1, - sym__single_quote_span_close, - [134501] = 1, + sym__emphasis_close_star, + [134395] = 1, + ACTIONS(6868), 1, + anon_sym_RBRACE, + [134399] = 1, ACTIONS(8973), 1, - aux_sym_insert_token1, - [134505] = 1, + anon_sym_RBRACE, + [134403] = 1, ACTIONS(8975), 1, - aux_sym_pandoc_math_token1, - [134509] = 1, + aux_sym_insert_token1, + [134407] = 1, + ACTIONS(6776), 1, + anon_sym_RBRACE, + [134411] = 1, ACTIONS(8977), 1, - aux_sym_pandoc_display_math_token1, - [134513] = 1, + anon_sym_RBRACE, + [134415] = 1, ACTIONS(8979), 1, - sym__strikeout_close, - [134517] = 1, - ACTIONS(7794), 1, - aux_sym_inline_note_token1, - [134521] = 1, + aux_sym_insert_token1, + [134419] = 1, ACTIONS(8981), 1, - sym__subscript_close, - [134525] = 1, + anon_sym_RBRACE, + [134423] = 1, ACTIONS(8983), 1, - sym__superscript_close, - [134529] = 1, + anon_sym_RBRACE, + [134427] = 1, ACTIONS(8985), 1, - sym__double_quote_span_close, - [134533] = 1, + anon_sym_RBRACE, + [134431] = 1, ACTIONS(8987), 1, - aux_sym_insert_token1, - [134537] = 1, - ACTIONS(8989), 1, anon_sym_RBRACE, - [134541] = 1, + [134435] = 1, + ACTIONS(8989), 1, + aux_sym_insert_token1, + [134439] = 1, ACTIONS(8991), 1, - anon_sym_RBRACE, - [134545] = 1, + aux_sym_insert_token1, + [134443] = 1, ACTIONS(8993), 1, - sym__strikeout_close, - [134549] = 1, + sym__block_close, + [134447] = 1, + ACTIONS(8971), 1, + sym__emphasis_close_underscore, + [134451] = 1, + ACTIONS(7830), 1, + aux_sym_inline_note_token1, + [134455] = 1, ACTIONS(8995), 1, - sym__subscript_close, - [134553] = 1, + anon_sym_RBRACE, + [134459] = 1, ACTIONS(8997), 1, - sym__superscript_close, - [134557] = 1, - ACTIONS(8999), 1, - aux_sym_pandoc_math_token1, - [134561] = 1, - ACTIONS(6802), 1, anon_sym_RBRACE, - [134565] = 1, - ACTIONS(9001), 1, - sym__strong_emphasis_close_star, - [134569] = 1, + [134463] = 1, + ACTIONS(8999), 1, + anon_sym_DOLLAR_DOLLAR, + [134467] = 1, ACTIONS(9001), 1, - sym__strong_emphasis_close_underscore, - [134573] = 1, + anon_sym_RBRACE, + [134471] = 1, ACTIONS(9003), 1, - aux_sym_insert_token1, - [134577] = 1, + sym__close_block, + [134475] = 1, + ACTIONS(6858), 1, + anon_sym_RBRACE, + [134479] = 1, ACTIONS(9005), 1, anon_sym_RBRACE, - [134581] = 1, + [134483] = 1, ACTIONS(9007), 1, - anon_sym_EQ, - [134585] = 1, - ACTIONS(9009), 1, aux_sym_insert_token1, - [134589] = 1, - ACTIONS(9011), 1, + [134487] = 1, + ACTIONS(6798), 1, + anon_sym_RBRACE, + [134491] = 1, + ACTIONS(9009), 1, anon_sym_RBRACE, - [134593] = 1, + [134495] = 1, + ACTIONS(9011), 1, + anon_sym_DOLLAR_DOLLAR, + [134499] = 1, ACTIONS(9013), 1, - sym__single_quote_span_close, - [134597] = 1, + aux_sym_insert_token1, + [134503] = 1, ACTIONS(9015), 1, - sym__double_quote_span_close, - [134601] = 1, + sym__whitespace, + [134507] = 1, ACTIONS(9017), 1, - anon_sym_RBRACE, - [134605] = 1, + aux_sym_insert_token1, + [134511] = 1, ACTIONS(9019), 1, - anon_sym_RBRACE, - [134609] = 1, - ACTIONS(9021), 1, - sym__emphasis_close_star, - [134613] = 1, + aux_sym_citation_token1, + [134515] = 1, ACTIONS(9021), 1, - sym__emphasis_close_underscore, - [134617] = 1, + aux_sym_citation_token1, + [134519] = 1, ACTIONS(9023), 1, - sym__strikeout_close, - [134621] = 1, + aux_sym_insert_token1, + [134523] = 1, ACTIONS(9025), 1, - sym__subscript_close, - [134625] = 1, + aux_sym_insert_token1, + [134527] = 1, ACTIONS(9027), 1, - sym__superscript_close, - [134629] = 1, + sym__block_close, + [134531] = 1, ACTIONS(9029), 1, - aux_sym_insert_token1, - [134633] = 1, + sym__close_block, + [134535] = 1, + ACTIONS(7714), 1, + aux_sym_inline_note_token1, + [134539] = 1, ACTIONS(9031), 1, - sym__strong_emphasis_close_star, - [134637] = 1, + anon_sym_RBRACE, + [134543] = 1, ACTIONS(9033), 1, - sym_shortcode_name, - [134641] = 1, - ACTIONS(9031), 1, - sym__strong_emphasis_close_underscore, - [134645] = 1, - ACTIONS(9035), 1, - sym__emphasis_close_star, - [134649] = 1, + anon_sym_RBRACE, + [134547] = 1, ACTIONS(9035), 1, - sym__emphasis_close_underscore, - [134653] = 1, - ACTIONS(2531), 1, sym__block_close, - [134657] = 1, - ACTIONS(6954), 1, - sym__key_specifier_token, - [134661] = 1, - ACTIONS(9037), 1, + [134551] = 1, + ACTIONS(6854), 1, anon_sym_RBRACE, - [134665] = 1, + [134555] = 1, + ACTIONS(9037), 1, + aux_sym_pandoc_math_token1, + [134559] = 1, ACTIONS(9039), 1, - aux_sym_insert_token1, - [134669] = 1, + aux_sym_pandoc_display_math_token1, + [134563] = 1, ACTIONS(9041), 1, - sym__whitespace, - [134673] = 1, - ACTIONS(2531), 1, - sym__blank_line_start, - [134677] = 1, + anon_sym_RBRACE, + [134567] = 1, + ACTIONS(6856), 1, + anon_sym_RBRACE, + [134571] = 1, ACTIONS(9043), 1, - aux_sym_citation_token1, - [134681] = 1, + sym__minus_metadata_body, + [134575] = 1, ACTIONS(9045), 1, - aux_sym_citation_token1, - [134685] = 1, - ACTIONS(9047), 1, - sym__strong_emphasis_close_star, - [134689] = 1, + aux_sym_insert_token1, + [134579] = 1, ACTIONS(9047), 1, - sym__strong_emphasis_close_underscore, - [134693] = 1, - ACTIONS(9049), 1, - sym__emphasis_close_star, - [134697] = 1, + anon_sym_DOLLAR_DOLLAR, + [134583] = 1, + ACTIONS(8091), 1, + sym__block_close, + [134587] = 1, ACTIONS(9049), 1, - sym__emphasis_close_underscore, - [134701] = 1, + aux_sym_insert_token1, + [134591] = 1, ACTIONS(9051), 1, - anon_sym_RPAREN, - [134705] = 1, + sym__block_close, + [134595] = 1, ACTIONS(9053), 1, - anon_sym_DOLLAR_DOLLAR, - [134709] = 1, - ACTIONS(6806), 1, - anon_sym_RBRACE, - [134713] = 1, + sym__block_close, + [134599] = 1, ACTIONS(9055), 1, anon_sym_RBRACE, - [134717] = 1, - ACTIONS(2537), 1, - aux_sym_inline_note_token1, - [134721] = 1, + [134603] = 1, ACTIONS(9057), 1, - aux_sym_pandoc_math_token1, - [134725] = 1, + sym__block_close, + [134607] = 1, ACTIONS(9059), 1, - aux_sym_pandoc_display_math_token1, - [134729] = 1, - ACTIONS(9061), 1, - aux_sym_insert_token1, - [134733] = 1, - ACTIONS(6696), 1, - anon_sym_RBRACE, - [134737] = 1, - ACTIONS(9063), 1, sym__block_close, - [134741] = 1, + [134611] = 1, + ACTIONS(9061), 1, + sym__block_close, + [134615] = 1, + ACTIONS(9063), 1, + aux_sym_insert_token1, + [134619] = 1, ACTIONS(9065), 1, - anon_sym_DOLLAR_DOLLAR, - [134745] = 1, + aux_sym_citation_token2, + [134623] = 1, ACTIONS(9067), 1, - anon_sym_RBRACE, - [134749] = 1, - ACTIONS(6800), 1, - anon_sym_RBRACE, - [134753] = 1, - ACTIONS(9069), 1, aux_sym_insert_token1, - [134757] = 1, + [134627] = 1, + ACTIONS(9069), 1, + sym__block_close, + [134631] = 1, ACTIONS(9071), 1, - anon_sym_DOLLAR_DOLLAR, - [134761] = 1, - ACTIONS(9073), 1, - anon_sym_RBRACE, - [134765] = 1, - ACTIONS(6792), 1, anon_sym_RBRACE, - [134769] = 1, + [134635] = 1, + ACTIONS(9073), 1, + anon_sym_EQ, + [134639] = 1, ACTIONS(9075), 1, - anon_sym_RBRACE, - [134773] = 1, + sym_shortcode_name, + [134643] = 1, ACTIONS(9077), 1, - aux_sym_insert_token1, - [134777] = 1, - ACTIONS(6752), 1, anon_sym_RBRACE, - [134781] = 1, - ACTIONS(9079), 1, + [134647] = 1, + ACTIONS(6846), 1, anon_sym_RBRACE, - [134785] = 1, + [134651] = 1, + ACTIONS(9079), 1, + aux_sym_inline_note_token1, + [134655] = 1, ACTIONS(9081), 1, - aux_sym_insert_token1, - [134789] = 1, + anon_sym_RBRACE, + [134659] = 1, ACTIONS(9083), 1, - aux_sym_insert_token1, - [134793] = 1, + anon_sym_RBRACE, + [134663] = 1, ACTIONS(9085), 1, - aux_sym_insert_token1, - [134797] = 1, - ACTIONS(7598), 1, - aux_sym_inline_note_token1, - [134801] = 1, + sym__single_quote_span_close, + [134667] = 1, ACTIONS(9087), 1, - aux_sym_insert_token1, - [134805] = 1, + sym__double_quote_span_close, + [134671] = 1, ACTIONS(9089), 1, - sym__block_close, - [134809] = 1, + anon_sym_RBRACE, + [134675] = 1, ACTIONS(9091), 1, - anon_sym_RPAREN, - [134813] = 1, + anon_sym_RBRACE, + [134679] = 1, ACTIONS(9093), 1, anon_sym_RBRACE, - [134817] = 1, + [134683] = 1, ACTIONS(9095), 1, - aux_sym_insert_token1, - [134821] = 1, + anon_sym_RBRACE, + [134687] = 1, ACTIONS(9097), 1, - aux_sym_insert_token1, - [134825] = 1, + aux_sym_inline_note_token1, + [134691] = 1, ACTIONS(9099), 1, anon_sym_RBRACE, - [134829] = 1, + [134695] = 1, ACTIONS(9101), 1, - anon_sym_RBRACE, - [134833] = 1, + anon_sym_RPAREN, + [134699] = 1, ACTIONS(9103), 1, - anon_sym_RBRACE, - [134837] = 1, + sym__block_close, + [134703] = 1, ACTIONS(9105), 1, - anon_sym_RBRACE, - [134841] = 1, + sym__double_quote_span_close, + [134707] = 1, ACTIONS(9107), 1, aux_sym_insert_token1, - [134845] = 1, + [134711] = 1, ACTIONS(9109), 1, anon_sym_RBRACE, - [134849] = 1, + [134715] = 1, ACTIONS(9111), 1, - anon_sym_RBRACE, - [134853] = 1, + aux_sym_insert_token1, + [134719] = 1, ACTIONS(9113), 1, - anon_sym_RBRACE, - [134857] = 1, + anon_sym_RPAREN, + [134723] = 1, ACTIONS(9115), 1, - aux_sym_insert_token1, - [134861] = 1, + sym__whitespace, + [134727] = 1, ACTIONS(9117), 1, - aux_sym_inline_note_token1, - [134865] = 1, - ACTIONS(9119), 1, anon_sym_RPAREN, - [134869] = 1, + [134731] = 1, + ACTIONS(9119), 1, + aux_sym_citation_token1, + [134735] = 1, ACTIONS(9121), 1, - aux_sym_insert_token1, - [134873] = 1, - ACTIONS(9123), 1, aux_sym_citation_token1, - [134877] = 1, + [134739] = 1, + ACTIONS(9123), 1, + sym__strikeout_close, + [134743] = 1, ACTIONS(9125), 1, - aux_sym_citation_token1, - [134881] = 1, + aux_sym_insert_token1, + [134747] = 1, ACTIONS(9127), 1, - anon_sym_RBRACE, - [134885] = 1, - ACTIONS(8191), 1, - sym__block_close, - [134889] = 1, + aux_sym_insert_token1, + [134751] = 1, ACTIONS(9129), 1, anon_sym_RPAREN, - [134893] = 1, - ACTIONS(8047), 1, - sym__block_close, - [134897] = 1, + [134755] = 1, ACTIONS(9131), 1, - aux_sym_inline_note_token1, - [134901] = 1, - ACTIONS(8051), 1, - sym__block_close, - [134905] = 1, + aux_sym_pandoc_display_math_token1, + [134759] = 1, ACTIONS(9133), 1, - anon_sym_RPAREN, - [134909] = 1, - ACTIONS(8055), 1, - sym__block_close, - [134913] = 1, + sym__close_block, + [134763] = 1, ACTIONS(9135), 1, - anon_sym_RPAREN, - [134917] = 1, + aux_sym_inline_note_token1, + [134767] = 1, ACTIONS(9137), 1, - aux_sym_pandoc_math_token1, - [134921] = 1, + anon_sym_RPAREN, + [134771] = 1, ACTIONS(9139), 1, - aux_sym_pandoc_display_math_token1, - [134925] = 1, - ACTIONS(2541), 1, - aux_sym_pandoc_math_token1, - [134929] = 1, - ACTIONS(6304), 1, - sym__line_ending, - [134933] = 1, + sym__subscript_close, + [134775] = 1, ACTIONS(9141), 1, - anon_sym_RPAREN, - [134937] = 1, + aux_sym_pandoc_math_token1, + [134779] = 1, ACTIONS(9143), 1, - anon_sym_RBRACE, - [134941] = 1, + aux_sym_pandoc_display_math_token1, + [134783] = 1, ACTIONS(9145), 1, - aux_sym_insert_token1, - [134945] = 1, - ACTIONS(9147), 1, - aux_sym_insert_token1, - [134949] = 1, - ACTIONS(7735), 1, + sym__superscript_close, + [134787] = 1, + ACTIONS(7661), 1, aux_sym_inline_note_token1, - [134953] = 1, + [134791] = 1, + ACTIONS(9147), 1, + sym__minus_metadata_body, + [134795] = 1, ACTIONS(9149), 1, - aux_sym_insert_token1, - [134957] = 1, - ACTIONS(9151), 1, anon_sym_RPAREN, - [134961] = 1, + [134799] = 1, + ACTIONS(9151), 1, + sym__strong_emphasis_close_star, + [134803] = 1, ACTIONS(9153), 1, - aux_sym_insert_token1, - [134965] = 1, - ACTIONS(7782), 1, - aux_sym_inline_note_token1, - [134969] = 1, + sym__block_close, + [134807] = 1, ACTIONS(9155), 1, - sym__close_block, - [134973] = 1, + aux_sym_insert_token1, + [134811] = 1, + ACTIONS(9151), 1, + sym__strong_emphasis_close_underscore, + [134815] = 1, ACTIONS(9157), 1, - sym__single_quote_span_close, - [134977] = 1, + aux_sym_citation_token2, + [134819] = 1, ACTIONS(9159), 1, - aux_sym_citation_token1, - [134981] = 1, - ACTIONS(9161), 1, - aux_sym_citation_token1, - [134985] = 1, - ACTIONS(8069), 1, + sym__emphasis_close_star, + [134823] = 1, + ACTIONS(8513), 1, sym__block_close, - [134989] = 1, + [134827] = 1, + ACTIONS(9159), 1, + sym__emphasis_close_underscore, + [134831] = 1, + ACTIONS(9161), 1, + anon_sym_RPAREN, + [134835] = 1, ACTIONS(9163), 1, anon_sym_RPAREN, - [134993] = 1, - ACTIONS(8071), 1, - sym__block_close, - [134997] = 1, + [134839] = 1, ACTIONS(9165), 1, - aux_sym_citation_token2, - [135001] = 1, - ACTIONS(8075), 1, - sym__block_close, - [135005] = 1, + aux_sym_insert_token1, + [134843] = 1, ACTIONS(9167), 1, - aux_sym_citation_token2, - [135009] = 1, + sym__strikeout_close, + [134847] = 1, ACTIONS(9169), 1, - anon_sym_RPAREN, - [135013] = 1, + anon_sym_RBRACE, + [134851] = 1, ACTIONS(9171), 1, aux_sym_citation_token2, - [135017] = 1, + [134855] = 1, ACTIONS(9173), 1, - aux_sym_pandoc_math_token1, - [135021] = 1, + aux_sym_citation_token2, + [134859] = 1, ACTIONS(9175), 1, - aux_sym_pandoc_display_math_token1, - [135025] = 1, + aux_sym_citation_token2, + [134863] = 1, ACTIONS(9177), 1, - aux_sym_insert_token1, - [135029] = 1, + anon_sym_RPAREN, + [134867] = 1, ACTIONS(9179), 1, - sym__double_quote_span_close, - [135033] = 1, + anon_sym_RPAREN, + [134871] = 1, ACTIONS(9181), 1, - sym__single_quote_span_close, - [135037] = 1, + sym__minus_metadata_end, + [134875] = 1, ACTIONS(9183), 1, - aux_sym_insert_token1, - [135041] = 1, + anon_sym_DOLLAR_DOLLAR, + [134879] = 1, + ACTIONS(6864), 1, + anon_sym_RBRACE, + [134883] = 1, ACTIONS(9185), 1, - sym__double_quote_span_close, - [135045] = 1, + sym__block_close, + [134887] = 1, ACTIONS(9187), 1, aux_sym_insert_token1, - [135049] = 1, + [134891] = 1, ACTIONS(9189), 1, - anon_sym_RBRACE, - [135053] = 1, + aux_sym_inline_note_token1, + [134895] = 1, ACTIONS(9191), 1, - anon_sym_RBRACE, - [135057] = 1, + aux_sym_insert_token1, + [134899] = 1, ACTIONS(9193), 1, anon_sym_RBRACE, - [135061] = 1, + [134903] = 1, ACTIONS(9195), 1, - aux_sym_insert_token1, - [135065] = 1, - ACTIONS(9197), 1, anon_sym_RPAREN, - [135069] = 1, + [134907] = 1, + ACTIONS(9197), 1, + aux_sym_insert_token1, + [134911] = 1, + ACTIONS(7970), 1, + sym__pipe_table_delimiter, + [134915] = 1, ACTIONS(9199), 1, - anon_sym_RBRACE, - [135073] = 1, - ACTIONS(9201), 1, aux_sym_insert_token1, - [135077] = 1, + [134919] = 1, + ACTIONS(7022), 1, + sym_shortcode_name, + [134923] = 1, + ACTIONS(9201), 1, + sym__single_quote_span_close, + [134927] = 1, ACTIONS(9203), 1, - aux_sym_citation_token1, - [135081] = 1, + sym__double_quote_span_close, + [134931] = 1, ACTIONS(9205), 1, aux_sym_citation_token1, - [135085] = 1, - ACTIONS(6734), 1, - anon_sym_RBRACE, - [135089] = 1, + [134935] = 1, ACTIONS(9207), 1, + aux_sym_citation_token1, + [134939] = 1, + ACTIONS(6768), 1, anon_sym_RBRACE, - [135093] = 1, + [134943] = 1, ACTIONS(9209), 1, anon_sym_RBRACE, - [135097] = 1, + [134947] = 1, ACTIONS(9211), 1, - sym__double_quote_span_close, - [135101] = 1, + anon_sym_RBRACE, + [134951] = 1, ACTIONS(9213), 1, - sym__block_close, - [135105] = 1, + anon_sym_RPAREN, + [134955] = 1, ACTIONS(9215), 1, - sym__single_quote_span_close, - [135109] = 1, + anon_sym_RPAREN, + [134959] = 1, ACTIONS(9217), 1, anon_sym_RBRACE, - [135113] = 1, + [134963] = 1, ACTIONS(9219), 1, - sym__close_block, - [135117] = 1, + aux_sym_citation_token1, + [134967] = 1, ACTIONS(9221), 1, - aux_sym_pandoc_math_token1, - [135121] = 1, + aux_sym_insert_token1, + [134971] = 1, ACTIONS(9223), 1, - aux_sym_pandoc_display_math_token1, - [135125] = 1, + sym__block_close, + [134975] = 1, ACTIONS(9225), 1, - sym__double_quote_span_close, - [135129] = 1, + aux_sym_pandoc_math_token1, + [134979] = 1, ACTIONS(9227), 1, - anon_sym_RBRACE, - [135133] = 1, + aux_sym_pandoc_display_math_token1, + [134983] = 1, ACTIONS(9229), 1, - anon_sym_RBRACE, - [135137] = 1, + sym__block_close, + [134987] = 1, ACTIONS(9231), 1, - sym__strikeout_close, - [135141] = 1, + anon_sym_RBRACE, + [134991] = 1, ACTIONS(9233), 1, - sym__subscript_close, - [135145] = 1, + sym__block_close, + [134995] = 1, ACTIONS(9235), 1, - sym__superscript_close, - [135149] = 1, + sym__subscript_close, + [134999] = 1, ACTIONS(9237), 1, - aux_sym_inline_note_token1, - [135153] = 1, + sym__superscript_close, + [135003] = 1, ACTIONS(9239), 1, - anon_sym_RPAREN, - [135157] = 1, + anon_sym_RBRACE, + [135007] = 1, ACTIONS(9241), 1, - sym__strikeout_close, - [135161] = 1, - ACTIONS(9243), 1, sym__strong_emphasis_close_star, - [135165] = 1, - ACTIONS(6774), 1, - anon_sym_RBRACE, - [135169] = 1, + [135011] = 1, + ACTIONS(9243), 1, + aux_sym_insert_token1, + [135015] = 1, ACTIONS(9245), 1, - sym__subscript_close, - [135173] = 1, + aux_sym_insert_token1, + [135019] = 1, + ACTIONS(9241), 1, + sym__strong_emphasis_close_underscore, + [135023] = 1, ACTIONS(9247), 1, sym__emphasis_close_star, - [135177] = 1, + [135027] = 1, ACTIONS(9249), 1, - aux_sym_citation_token1, - [135181] = 1, + aux_sym_insert_token1, + [135031] = 1, + ACTIONS(9247), 1, + sym__emphasis_close_underscore, + [135035] = 1, ACTIONS(9251), 1, aux_sym_citation_token1, - [135185] = 1, + [135039] = 1, ACTIONS(9253), 1, - sym__superscript_close, - [135189] = 1, + aux_sym_citation_token1, + [135043] = 1, ACTIONS(9255), 1, - aux_sym_insert_token1, - [135193] = 1, + anon_sym_RBRACE, + [135047] = 1, ACTIONS(9257), 1, - aux_sym_insert_token1, - [135197] = 1, + anon_sym_RPAREN, + [135051] = 1, ACTIONS(9259), 1, - aux_sym_insert_token1, - [135201] = 1, + anon_sym_RBRACE, + [135055] = 1, ACTIONS(9261), 1, - aux_sym_insert_token1, - [135205] = 1, + sym__block_close, + [135059] = 1, ACTIONS(9263), 1, - aux_sym_insert_token1, - [135209] = 1, + sym__block_close, + [135063] = 1, ACTIONS(9265), 1, sym__block_close, - [135213] = 1, - ACTIONS(7658), 1, - aux_sym_inline_note_token1, - [135217] = 1, + [135067] = 1, ACTIONS(9267), 1, - aux_sym_pandoc_math_token1, - [135221] = 1, + sym__block_close, + [135071] = 1, ACTIONS(9269), 1, - aux_sym_pandoc_display_math_token1, - [135225] = 1, - ACTIONS(9247), 1, - sym__emphasis_close_underscore, - [135229] = 1, + sym__block_close, + [135075] = 1, ACTIONS(9271), 1, - anon_sym_RBRACE, - [135233] = 1, + aux_sym_pandoc_math_token1, + [135079] = 1, ACTIONS(9273), 1, - sym__block_close, - [135237] = 1, + aux_sym_pandoc_display_math_token1, + [135083] = 1, ACTIONS(9275), 1, - anon_sym_RBRACE, - [135241] = 1, + sym__block_close, + [135087] = 1, + ACTIONS(6368), 1, + sym__line_ending, + [135091] = 1, + ACTIONS(6372), 1, + sym__line_ending, + [135095] = 1, ACTIONS(9277), 1, - sym__strikeout_close, - [135245] = 1, - ACTIONS(9279), 1, sym__strong_emphasis_close_star, - [135249] = 1, + [135099] = 1, + ACTIONS(9279), 1, + anon_sym_RBRACE, + [135103] = 1, + ACTIONS(8357), 1, + sym__block_close, + [135107] = 1, ACTIONS(9281), 1, - aux_sym_insert_token1, - [135253] = 1, + sym__close_block, + [135111] = 1, + ACTIONS(7769), 1, + aux_sym_inline_note_token1, + [135115] = 1, ACTIONS(9283), 1, - anon_sym_RPAREN, - [135257] = 1, + sym__single_quote_span_close, + [135119] = 1, ACTIONS(9285), 1, - anon_sym_RPAREN, - [135261] = 1, - ACTIONS(9287), 1, anon_sym_DOLLAR_DOLLAR, - [135265] = 1, - ACTIONS(6804), 1, + [135123] = 1, + ACTIONS(6878), 1, anon_sym_RBRACE, - [135269] = 1, - ACTIONS(9279), 1, - sym__strong_emphasis_close_underscore, - [135273] = 1, + [135127] = 1, + ACTIONS(9287), 1, + anon_sym_RPAREN, + [135131] = 1, ACTIONS(9289), 1, anon_sym_RBRACE, - [135277] = 1, + [135135] = 1, ACTIONS(9291), 1, aux_sym_citation_token1, - [135281] = 1, + [135139] = 1, ACTIONS(9293), 1, aux_sym_citation_token1, - [135285] = 1, - ACTIONS(8137), 1, - sym__block_close, - [135289] = 1, + [135143] = 1, + ACTIONS(7892), 1, + anon_sym_RPAREN, + [135147] = 1, ACTIONS(9295), 1, - sym__close_block, - [135293] = 1, + anon_sym_RPAREN, + [135151] = 1, + ACTIONS(6836), 1, + anon_sym_RBRACE, + [135155] = 1, ACTIONS(9297), 1, - sym__emphasis_close_star, - [135297] = 1, - ACTIONS(6762), 1, anon_sym_RBRACE, - [135301] = 1, + [135159] = 1, ACTIONS(9299), 1, - anon_sym_RBRACE, - [135305] = 1, + aux_sym_inline_note_token1, + [135163] = 1, ACTIONS(9301), 1, - sym__block_close, - [135309] = 1, + aux_sym_insert_token1, + [135167] = 1, ACTIONS(9303), 1, - aux_sym_citation_token1, - [135313] = 1, + aux_sym_citation_token2, + [135171] = 1, + ACTIONS(6832), 1, + anon_sym_RBRACE, + [135175] = 1, ACTIONS(9305), 1, - anon_sym_RPAREN, - [135317] = 1, - ACTIONS(9307), 1, aux_sym_pandoc_math_token1, - [135321] = 1, - ACTIONS(9309), 1, + [135179] = 1, + ACTIONS(9307), 1, aux_sym_pandoc_display_math_token1, - [135325] = 1, + [135183] = 1, + ACTIONS(9309), 1, + aux_sym_insert_token1, + [135187] = 1, ACTIONS(9311), 1, - aux_sym_citation_token1, - [135329] = 1, + aux_sym_citation_token2, + [135191] = 1, ACTIONS(9313), 1, - aux_sym_insert_token1, - [135333] = 1, + aux_sym_citation_token2, + [135195] = 1, ACTIONS(9315), 1, aux_sym_insert_token1, - [135337] = 1, + [135199] = 1, ACTIONS(9317), 1, aux_sym_insert_token1, - [135341] = 1, + [135203] = 1, ACTIONS(9319), 1, - aux_sym_insert_token1, - [135345] = 1, - ACTIONS(7630), 1, + sym__block_close, + [135207] = 1, + ACTIONS(7730), 1, aux_sym_inline_note_token1, - [135349] = 1, + [135211] = 1, ACTIONS(9321), 1, - aux_sym_citation_token2, - [135353] = 1, - ACTIONS(9297), 1, - sym__emphasis_close_underscore, - [135357] = 1, + sym__double_quote_span_close, + [135215] = 1, ACTIONS(9323), 1, - sym__block_close, - [135361] = 1, + anon_sym_RBRACE, + [135219] = 1, ACTIONS(9325), 1, - aux_sym_citation_token2, - [135365] = 1, + anon_sym_RPAREN, + [135223] = 1, ACTIONS(9327), 1, - anon_sym_RBRACE, - [135369] = 1, + anon_sym_DOLLAR_DOLLAR, + [135227] = 1, ACTIONS(9329), 1, - sym__block_close, - [135373] = 1, - ACTIONS(9331), 1, + aux_sym_insert_token1, + [135231] = 1, + ACTIONS(6872), 1, anon_sym_RBRACE, - [135377] = 1, + [135235] = 1, + ACTIONS(9331), 1, + aux_sym_citation_token1, + [135239] = 1, ACTIONS(9333), 1, aux_sym_citation_token1, - [135381] = 1, + [135243] = 1, ACTIONS(9335), 1, - aux_sym_citation_token1, - [135385] = 1, - ACTIONS(8161), 1, - sym__block_close, - [135389] = 1, - ACTIONS(6308), 1, - sym__line_ending, - [135393] = 1, + anon_sym_RBRACE, + [135247] = 1, ACTIONS(9337), 1, sym__block_close, - [135397] = 1, - ACTIONS(6288), 1, - sym__line_ending, - [135401] = 1, + [135251] = 1, ACTIONS(9339), 1, anon_sym_RBRACE, - [135405] = 1, + [135255] = 1, ACTIONS(9341), 1, - anon_sym_RBRACE, - [135409] = 1, + aux_sym_insert_token1, + [135259] = 1, ACTIONS(9343), 1, - anon_sym_RBRACE, - [135413] = 1, + sym__whitespace, + [135263] = 1, ACTIONS(9345), 1, + sym__block_close, + [135267] = 1, + ACTIONS(6784), 1, anon_sym_RBRACE, - [135417] = 1, + [135271] = 1, ACTIONS(9347), 1, - aux_sym_pandoc_math_token1, - [135421] = 1, + anon_sym_RBRACE, + [135275] = 1, ACTIONS(9349), 1, - aux_sym_pandoc_display_math_token1, - [135425] = 1, - ACTIONS(7668), 1, - sym__pipe_table_delimiter, - [135429] = 1, + aux_sym_pandoc_math_token1, + [135279] = 1, ACTIONS(9351), 1, - anon_sym_RBRACE, - [135433] = 1, + aux_sym_pandoc_display_math_token1, + [135283] = 1, ACTIONS(9353), 1, anon_sym_RBRACE, - [135437] = 1, - ACTIONS(8459), 1, - sym__block_close, - [135441] = 1, + [135287] = 1, ACTIONS(9355), 1, - sym__block_close, - [135445] = 1, + anon_sym_RBRACE, + [135291] = 1, ACTIONS(9357), 1, - aux_sym_inline_note_token1, - [135449] = 1, + anon_sym_RBRACE, + [135295] = 1, ACTIONS(9359), 1, - anon_sym_RPAREN, - [135453] = 1, + anon_sym_RBRACE, + [135299] = 1, ACTIONS(9361), 1, - sym__block_close, - [135457] = 1, + anon_sym_RPAREN, + [135303] = 1, ACTIONS(9363), 1, anon_sym_RPAREN, - [135461] = 1, + [135307] = 1, ACTIONS(9365), 1, - sym__block_close, - [135465] = 1, - ACTIONS(7453), 1, - anon_sym_RBRACE, - [135469] = 1, - ACTIONS(9367), 1, aux_sym_inline_note_token1, - [135473] = 1, + [135311] = 1, + ACTIONS(9367), 1, + sym__block_close, + [135315] = 1, ACTIONS(9369), 1, - aux_sym_insert_token1, - [135477] = 1, + anon_sym_RBRACE, + [135319] = 1, ACTIONS(9371), 1, - aux_sym_citation_token1, - [135481] = 1, + anon_sym_RPAREN, + [135323] = 1, ACTIONS(9373), 1, - aux_sym_citation_token1, - [135485] = 1, - ACTIONS(9375), 1, anon_sym_RBRACE, - [135489] = 1, + [135327] = 1, + ACTIONS(9375), 1, + aux_sym_inline_note_token1, + [135331] = 1, + ACTIONS(2787), 1, + aux_sym_pandoc_math_token1, + [135335] = 1, ACTIONS(9377), 1, - anon_sym_RBRACE, - [135493] = 1, + aux_sym_citation_token1, + [135339] = 1, ACTIONS(9379), 1, - anon_sym_RBRACE, - [135497] = 1, + aux_sym_citation_token1, + [135343] = 1, ACTIONS(9381), 1, - sym__block_close, - [135501] = 1, + anon_sym_RBRACE, + [135347] = 1, ACTIONS(9383), 1, - sym__block_close, - [135505] = 1, + anon_sym_RPAREN, + [135351] = 1, ACTIONS(9385), 1, - sym__block_close, - [135509] = 1, + aux_sym_insert_token1, + [135355] = 1, ACTIONS(9387), 1, - sym__block_close, - [135513] = 1, + aux_sym_insert_token1, + [135359] = 1, ACTIONS(9389), 1, - sym__block_close, - [135517] = 1, + anon_sym_RPAREN, + [135363] = 1, ACTIONS(9391), 1, - aux_sym_pandoc_math_token1, - [135521] = 1, + anon_sym_RPAREN, + [135367] = 1, ACTIONS(9393), 1, - aux_sym_pandoc_display_math_token1, - [135525] = 1, - ACTIONS(9395), 1, sym__block_close, - [135529] = 1, + [135371] = 1, + ACTIONS(9395), 1, + aux_sym_insert_token1, + [135375] = 1, ACTIONS(9397), 1, - sym__block_close, - [135533] = 1, + aux_sym_pandoc_math_token1, + [135379] = 1, ACTIONS(9399), 1, - aux_sym_insert_token1, - [135537] = 1, - ACTIONS(9401), 1, + aux_sym_pandoc_display_math_token1, + [135383] = 1, + ACTIONS(7924), 1, anon_sym_RPAREN, - [135541] = 1, + [135387] = 1, + ACTIONS(9401), 1, + aux_sym_insert_token1, + [135391] = 1, ACTIONS(9403), 1, anon_sym_RPAREN, - [135545] = 1, + [135395] = 1, ACTIONS(9405), 1, - sym__block_close, - [135549] = 1, + aux_sym_insert_token1, + [135399] = 1, ACTIONS(9407), 1, aux_sym_insert_token1, - [135553] = 1, + [135403] = 1, ACTIONS(9409), 1, - anon_sym_RBRACE, - [135557] = 1, + aux_sym_insert_token1, + [135407] = 1, ACTIONS(9411), 1, - aux_sym_citation_token2, - [135561] = 1, - ACTIONS(9413), 1, anon_sym_RPAREN, - [135565] = 1, - ACTIONS(7451), 1, + [135411] = 1, + ACTIONS(9413), 1, anon_sym_RBRACE, - [135569] = 1, + [135415] = 1, ACTIONS(9415), 1, - aux_sym_citation_token2, - [135573] = 1, + anon_sym_RBRACE, + [135419] = 1, ACTIONS(9417), 1, - sym__block_close, - [135577] = 1, + aux_sym_insert_token1, + [135423] = 1, + ACTIONS(2773), 1, + sym__close_block, + [135427] = 1, ACTIONS(9419), 1, - aux_sym_citation_token1, - [135581] = 1, + sym__minus_metadata_body, + [135431] = 1, ACTIONS(9421), 1, - aux_sym_citation_token1, - [135585] = 1, - ACTIONS(9423), 1, anon_sym_RBRACE, - [135589] = 1, + [135435] = 1, + ACTIONS(9423), 1, + aux_sym_citation_token1, + [135439] = 1, ACTIONS(9425), 1, - anon_sym_RBRACE, - [135593] = 1, + aux_sym_citation_token1, + [135443] = 1, + ACTIONS(8277), 1, + sym__block_close, + [135447] = 1, ACTIONS(9427), 1, - aux_sym_insert_token1, - [135597] = 1, - ACTIONS(7269), 1, - aux_sym__commonmark_specifier_start_with_class_token2, - [135601] = 1, - ACTIONS(6280), 1, - sym__line_ending, - [135605] = 1, + sym__single_quote_span_close, + [135451] = 1, ACTIONS(9429), 1, - anon_sym_RBRACE, - [135609] = 1, - ACTIONS(6292), 1, - sym__line_ending, - [135613] = 1, + aux_sym_citation_token2, + [135455] = 1, ACTIONS(9431), 1, - anon_sym_RBRACE, - [135617] = 1, + sym__block_close, + [135459] = 1, ACTIONS(9433), 1, - aux_sym_pandoc_math_token1, - [135621] = 1, + sym__double_quote_span_close, + [135463] = 1, ACTIONS(9435), 1, - aux_sym_pandoc_display_math_token1, - [135625] = 1, - ACTIONS(6284), 1, - sym__line_ending, - [135629] = 1, + sym__subscript_close, + [135467] = 1, ACTIONS(9437), 1, - sym__block_close, - [135633] = 1, + aux_sym_insert_token1, + [135471] = 1, ACTIONS(9439), 1, - sym__single_quote_span_close, - [135637] = 1, + anon_sym_RBRACE, + [135475] = 1, ACTIONS(9441), 1, - sym__strong_emphasis_close_star, - [135641] = 1, + aux_sym_pandoc_math_token1, + [135479] = 1, ACTIONS(9443), 1, - aux_sym_citation_token2, - [135645] = 1, + aux_sym_pandoc_display_math_token1, + [135483] = 1, ACTIONS(9445), 1, - aux_sym_citation_token2, - [135649] = 1, + sym__block_close, + [135487] = 1, ACTIONS(9447), 1, - sym__double_quote_span_close, - [135653] = 1, + anon_sym_RBRACE, + [135491] = 1, ACTIONS(9449), 1, - sym__close_block, - [135657] = 1, + sym__strikeout_close, + [135495] = 1, ACTIONS(9451), 1, - aux_sym_insert_token1, - [135661] = 1, + sym__subscript_close, + [135499] = 1, ACTIONS(9453), 1, anon_sym_RBRACE, - [135665] = 1, + [135503] = 1, ACTIONS(9455), 1, - anon_sym_RBRACE, - [135669] = 1, + sym__superscript_close, + [135507] = 1, ACTIONS(9457), 1, - anon_sym_DOLLAR_DOLLAR, - [135673] = 1, + sym__superscript_close, + [135511] = 1, ACTIONS(9459), 1, - sym__strikeout_close, - [135677] = 1, + aux_sym_citation_token2, + [135515] = 1, ACTIONS(9461), 1, - aux_sym_citation_token1, - [135681] = 1, + anon_sym_RPAREN, + [135519] = 1, ACTIONS(9463), 1, - aux_sym_citation_token1, - [135685] = 1, + anon_sym_RPAREN, + [135523] = 1, ACTIONS(9465), 1, - sym__subscript_close, - [135689] = 1, + aux_sym_citation_token2, + [135527] = 1, ACTIONS(9467), 1, - aux_sym_insert_token1, - [135693] = 1, + aux_sym_citation_token2, + [135531] = 1, ACTIONS(9469), 1, - aux_sym_insert_token1, - [135697] = 1, + aux_sym_citation_token2, + [135535] = 1, ACTIONS(9471), 1, - sym__block_close, - [135701] = 1, - ACTIONS(6296), 1, - sym__line_ending, - [135705] = 1, + aux_sym_citation_token1, + [135539] = 1, ACTIONS(9473), 1, + aux_sym_citation_token1, + [135543] = 1, + ACTIONS(8289), 1, + sym__block_close, + [135547] = 1, + ACTIONS(9277), 1, + sym__strong_emphasis_close_underscore, + [135551] = 1, + ACTIONS(6812), 1, anon_sym_RBRACE, - [135709] = 1, + [135555] = 1, ACTIONS(9475), 1, - aux_sym_insert_token1, - [135713] = 1, + anon_sym_RBRACE, + [135559] = 1, ACTIONS(9477), 1, - sym__superscript_close, - [135717] = 1, + sym__strong_emphasis_close_star, + [135563] = 1, + ACTIONS(9477), 1, + sym__strong_emphasis_close_underscore, + [135567] = 1, ACTIONS(9479), 1, - aux_sym_pandoc_math_token1, - [135721] = 1, + sym__emphasis_close_star, + [135571] = 1, + ACTIONS(9479), 1, + sym__emphasis_close_underscore, + [135575] = 1, ACTIONS(9481), 1, - aux_sym_pandoc_display_math_token1, - [135725] = 1, + aux_sym_pandoc_math_token1, + [135579] = 1, ACTIONS(9483), 1, + aux_sym_pandoc_display_math_token1, + [135583] = 1, + ACTIONS(7639), 1, aux_sym_inline_note_token1, - [135729] = 1, + [135587] = 1, ACTIONS(9485), 1, - aux_sym_insert_token1, - [135733] = 1, - ACTIONS(8101), 1, - sym__block_close, - [135737] = 1, + anon_sym_RPAREN, + [135591] = 1, ACTIONS(9487), 1, - aux_sym_insert_token1, - [135741] = 1, - ACTIONS(2541), 1, - aux_sym_inline_note_token1, - [135745] = 1, + sym__block_close, + [135595] = 1, ACTIONS(9489), 1, - sym__single_quote_span_close, - [135749] = 1, - ACTIONS(9491), 1, - sym__double_quote_span_close, - [135753] = 1, - ACTIONS(6798), 1, anon_sym_RBRACE, - [135757] = 1, - ACTIONS(9493), 1, + [135599] = 1, + ACTIONS(9491), 1, aux_sym_insert_token1, - [135761] = 1, - ACTIONS(9495), 1, + [135603] = 1, + ACTIONS(9493), 1, anon_sym_RBRACE, - [135765] = 1, + [135607] = 1, + ACTIONS(9495), 1, + aux_sym_insert_token1, + [135611] = 1, + ACTIONS(2783), 1, + aux_sym_pandoc_math_token1, + [135615] = 1, ACTIONS(9497), 1, - anon_sym_RBRACE, - [135769] = 1, + aux_sym_citation_token2, + [135619] = 1, ACTIONS(9499), 1, anon_sym_RBRACE, - [135773] = 1, + [135623] = 1, ACTIONS(9501), 1, - sym__strikeout_close, - [135777] = 1, + aux_sym_insert_token1, + [135627] = 1, ACTIONS(9503), 1, - aux_sym_citation_token1, - [135781] = 1, + anon_sym_RBRACE, + [135631] = 1, ACTIONS(9505), 1, - aux_sym_citation_token1, - [135785] = 1, + aux_sym_citation_token2, + [135635] = 1, ACTIONS(9507), 1, - anon_sym_RPAREN, - [135789] = 1, + aux_sym_citation_token1, + [135639] = 1, ACTIONS(9509), 1, - aux_sym_insert_token1, - [135793] = 1, + aux_sym_citation_token1, + [135643] = 1, + ACTIONS(2773), 1, + sym__block_close, + [135647] = 1, ACTIONS(9511), 1, - anon_sym_RBRACE, - [135797] = 1, + aux_sym_insert_token1, + [135651] = 1, ACTIONS(9513), 1, - sym__subscript_close, - [135801] = 1, + anon_sym_DOLLAR_DOLLAR, + [135655] = 1, + ACTIONS(6882), 1, + anon_sym_RBRACE, + [135659] = 1, ACTIONS(9515), 1, - anon_sym_RPAREN, - [135805] = 1, + anon_sym_RBRACE, + [135663] = 1, ACTIONS(9517), 1, aux_sym_insert_token1, - [135809] = 1, + [135667] = 1, ACTIONS(9519), 1, - sym__superscript_close, - [135813] = 1, + anon_sym_EQ, + [135671] = 1, + ACTIONS(8313), 1, + sym__block_close, + [135675] = 1, ACTIONS(9521), 1, - sym__single_quote_span_close, - [135817] = 1, - ACTIONS(9523), 1, aux_sym_pandoc_math_token1, - [135821] = 1, - ACTIONS(9525), 1, + [135679] = 1, + ACTIONS(9523), 1, aux_sym_pandoc_display_math_token1, - [135825] = 1, + [135683] = 1, + ACTIONS(9525), 1, + sym__single_quote_span_close, + [135687] = 1, ACTIONS(9527), 1, - sym__close_block, - [135829] = 1, - ACTIONS(8467), 1, + sym__double_quote_span_close, + [135691] = 1, + ACTIONS(8315), 1, sym__block_close, - [135833] = 1, + [135695] = 1, ACTIONS(9529), 1, anon_sym_RBRACE, - [135837] = 1, - ACTIONS(9531), 1, - sym__strong_emphasis_close_star, - [135841] = 1, + [135699] = 1, ACTIONS(9531), 1, - sym__strong_emphasis_close_underscore, - [135845] = 1, - ACTIONS(9533), 1, - sym__emphasis_close_star, - [135849] = 1, + anon_sym_RBRACE, + [135703] = 1, + ACTIONS(8325), 1, + sym__block_close, + [135707] = 1, ACTIONS(9533), 1, - sym__emphasis_close_underscore, - [135853] = 1, + sym__strikeout_close, + [135711] = 1, ACTIONS(9535), 1, - sym__double_quote_span_close, - [135857] = 1, + aux_sym_insert_token1, + [135715] = 1, ACTIONS(9537), 1, - anon_sym_RBRACE, - [135861] = 1, - ACTIONS(6782), 1, - anon_sym_RBRACE, - [135865] = 1, + sym__close_block, + [135719] = 1, ACTIONS(9539), 1, - sym__strong_emphasis_close_star, - [135869] = 1, + sym__subscript_close, + [135723] = 1, ACTIONS(9541), 1, - anon_sym_RBRACE, - [135873] = 1, + sym__superscript_close, + [135727] = 1, ACTIONS(9543), 1, - aux_sym_insert_token1, - [135877] = 1, + aux_sym_citation_token2, + [135731] = 1, ACTIONS(9545), 1, - aux_sym_citation_token1, - [135881] = 1, + aux_sym_citation_token2, + [135735] = 1, ACTIONS(9547), 1, aux_sym_citation_token1, - [135885] = 1, - ACTIONS(6300), 1, - sym__line_ending, - [135889] = 1, - ACTIONS(9539), 1, - sym__strong_emphasis_close_underscore, - [135893] = 1, + [135739] = 1, ACTIONS(9549), 1, - sym__strikeout_close, - [135897] = 1, - ACTIONS(9551), 1, - sym__emphasis_close_star, - [135901] = 1, - ACTIONS(7993), 1, - sym__pipe_table_delimiter, - [135905] = 1, + aux_sym_citation_token1, + [135743] = 1, + ACTIONS(6360), 1, + sym__line_ending, + [135747] = 1, ACTIONS(9551), 1, - sym__emphasis_close_underscore, - [135909] = 1, + sym__strong_emphasis_close_star, + [135751] = 1, ACTIONS(9553), 1, - anon_sym_DOLLAR_DOLLAR, - [135913] = 1, - ACTIONS(6790), 1, anon_sym_RBRACE, - [135917] = 1, + [135755] = 1, + ACTIONS(9551), 1, + sym__strong_emphasis_close_underscore, + [135759] = 1, + ACTIONS(8327), 1, + sym__block_close, + [135763] = 1, ACTIONS(9555), 1, - aux_sym_pandoc_math_token1, - [135921] = 1, + sym__emphasis_close_star, + [135767] = 1, + ACTIONS(8329), 1, + sym__block_close, + [135771] = 1, + ACTIONS(9555), 1, + sym__emphasis_close_underscore, + [135775] = 1, ACTIONS(9557), 1, - aux_sym_pandoc_display_math_token1, - [135925] = 1, + aux_sym_pandoc_math_token1, + [135779] = 1, ACTIONS(9559), 1, - anon_sym_RBRACE, - [135929] = 1, + aux_sym_pandoc_display_math_token1, + [135783] = 1, ACTIONS(9561), 1, - anon_sym_RBRACE, - [135933] = 1, - ACTIONS(6706), 1, - anon_sym_RBRACE, - [135937] = 1, + aux_sym_citation_token2, + [135787] = 1, + ACTIONS(8331), 1, + sym__block_close, + [135791] = 1, + ACTIONS(7690), 1, + sym__pipe_table_delimiter, + [135795] = 1, ACTIONS(9563), 1, - anon_sym_RBRACE, - [135941] = 1, + aux_sym_insert_token1, + [135799] = 1, ACTIONS(9565), 1, + sym__block_close, + [135803] = 1, + ACTIONS(6842), 1, anon_sym_RBRACE, - [135945] = 1, + [135807] = 1, ACTIONS(9567), 1, aux_sym_insert_token1, - [135949] = 1, + [135811] = 1, + ACTIONS(7759), 1, + aux_sym_inline_note_token1, + [135815] = 1, ACTIONS(9569), 1, - aux_sym_insert_token1, - [135953] = 1, + sym__strikeout_close, + [135819] = 1, ACTIONS(9571), 1, - sym__subscript_close, - [135957] = 1, + aux_sym_insert_token1, + [135823] = 1, ACTIONS(9573), 1, - sym__superscript_close, - [135961] = 1, + anon_sym_RPAREN, + [135827] = 1, ACTIONS(9575), 1, aux_sym_insert_token1, - [135965] = 1, + [135831] = 1, ACTIONS(9577), 1, aux_sym_insert_token1, - [135969] = 1, + [135835] = 1, ACTIONS(9579), 1, - sym__whitespace, - [135973] = 1, - ACTIONS(7654), 1, - aux_sym_inline_note_token1, - [135977] = 1, + aux_sym_citation_token1, + [135839] = 1, ACTIONS(9581), 1, aux_sym_citation_token1, - [135981] = 1, + [135843] = 1, ACTIONS(9583), 1, - aux_sym_citation_token1, - [135985] = 1, + anon_sym_DOLLAR_DOLLAR, + [135847] = 1, ACTIONS(9585), 1, - anon_sym_RPAREN, - [135989] = 1, + anon_sym_RBRACE, + [135851] = 1, ACTIONS(9587), 1, - anon_sym_RPAREN, - [135993] = 1, + anon_sym_RBRACE, + [135855] = 1, + ACTIONS(6880), 1, + anon_sym_RBRACE, + [135859] = 1, ACTIONS(9589), 1, - sym__strong_emphasis_close_star, - [135997] = 1, + sym__single_quote_span_close, + [135863] = 1, ACTIONS(9591), 1, - sym__block_close, - [136001] = 1, - ACTIONS(9589), 1, - sym__strong_emphasis_close_underscore, - [136005] = 1, + aux_sym_insert_token1, + [135867] = 1, ACTIONS(9593), 1, - aux_sym_pandoc_math_token1, - [136009] = 1, + sym__minus_metadata_end, + [135871] = 1, ACTIONS(9595), 1, - sym__block_close, - [136013] = 1, + anon_sym_RBRACE, + [135875] = 1, ACTIONS(9597), 1, - sym__subscript_close, - [136017] = 1, - ACTIONS(9599), 1, aux_sym_pandoc_math_token1, - [136021] = 1, - ACTIONS(9601), 1, + [135879] = 1, + ACTIONS(9599), 1, aux_sym_pandoc_display_math_token1, - [136025] = 1, + [135883] = 1, + ACTIONS(9601), 1, + anon_sym_RBRACE, + [135887] = 1, ACTIONS(9603), 1, - sym__block_close, - [136029] = 1, + aux_sym_insert_token1, + [135891] = 1, ACTIONS(9605), 1, - sym__superscript_close, - [136033] = 1, + aux_sym_insert_token1, + [135895] = 1, ACTIONS(9607), 1, - sym__block_close, - [136037] = 1, - ACTIONS(9609), 1, + aux_sym_insert_token1, + [135899] = 1, + ACTIONS(6758), 1, anon_sym_RBRACE, - [136041] = 1, + [135903] = 1, + ACTIONS(9609), 1, + aux_sym_insert_token1, + [135907] = 1, ACTIONS(9611), 1, anon_sym_RBRACE, - [136045] = 1, + [135911] = 1, ACTIONS(9613), 1, - anon_sym_RBRACE, - [136049] = 1, + anon_sym_RPAREN, + [135915] = 1, ACTIONS(9615), 1, - anon_sym_RBRACE, - [136053] = 1, - ACTIONS(9617), 1, - sym__emphasis_close_star, - [136057] = 1, + sym__single_quote_span_close, + [135919] = 1, ACTIONS(9617), 1, - sym__emphasis_close_underscore, - [136061] = 1, + aux_sym_insert_token1, + [135923] = 1, ACTIONS(9619), 1, - anon_sym_DOLLAR_DOLLAR, - [136065] = 1, - ACTIONS(6954), 1, - sym_shortcode_name, - [136069] = 1, - ACTIONS(9441), 1, - sym__strong_emphasis_close_underscore, - [136073] = 1, + aux_sym_insert_token1, + [135927] = 1, ACTIONS(9621), 1, - aux_sym_inline_note_token1, - [136077] = 1, + aux_sym_insert_token1, + [135931] = 1, ACTIONS(9623), 1, - aux_sym_citation_token1, - [136081] = 1, + aux_sym_insert_token1, + [135935] = 1, ACTIONS(9625), 1, aux_sym_citation_token1, - [136085] = 1, + [135939] = 1, ACTIONS(9627), 1, - anon_sym_RPAREN, - [136089] = 1, + aux_sym_citation_token1, + [135943] = 1, + ACTIONS(7880), 1, + aux_sym_inline_note_token1, + [135947] = 1, ACTIONS(9629), 1, - sym__close_block, - [136093] = 1, - ACTIONS(6756), 1, - anon_sym_RBRACE, - [136097] = 1, + aux_sym_insert_token1, + [135951] = 1, ACTIONS(9631), 1, - anon_sym_RPAREN, - [136101] = 1, - ACTIONS(6784), 1, anon_sym_RBRACE, - [136105] = 1, + [135955] = 1, ACTIONS(9633), 1, - sym__block_close, - [136109] = 1, + aux_sym_insert_token1, + [135959] = 1, + ACTIONS(7751), 1, + aux_sym_inline_note_token1, + [135963] = 1, + ACTIONS(6364), 1, + sym__line_ending, + [135967] = 1, ACTIONS(9635), 1, - sym__block_close, - [136113] = 1, + anon_sym_RBRACE, + [135971] = 1, ACTIONS(9637), 1, - sym__block_close, - [136117] = 1, + aux_sym_insert_token1, + [135975] = 1, ACTIONS(9639), 1, aux_sym_pandoc_math_token1, - [136121] = 1, + [135979] = 1, ACTIONS(9641), 1, aux_sym_pandoc_display_math_token1, - [136125] = 1, + [135983] = 1, ACTIONS(9643), 1, - sym__block_close, - [136129] = 1, + anon_sym_RBRACE, + [135987] = 1, + ACTIONS(8489), 1, + sym__pipe_table_delimiter, + [135991] = 1, ACTIONS(9645), 1, anon_sym_RBRACE, - [136133] = 1, + [135995] = 1, ACTIONS(9647), 1, - aux_sym_citation_token2, - [136137] = 1, + anon_sym_RBRACE, + [135999] = 1, ACTIONS(9649), 1, - anon_sym_RPAREN, - [136141] = 1, + sym__block_close, + [136003] = 1, ACTIONS(9651), 1, - anon_sym_RPAREN, - [136145] = 1, - ACTIONS(6778), 1, - anon_sym_RBRACE, - [136149] = 1, + sym__block_close, + [136007] = 1, ACTIONS(9653), 1, - anon_sym_RBRACE, - [136153] = 1, + sym__double_quote_span_close, + [136011] = 1, ACTIONS(9655), 1, - anon_sym_RBRACE, - [136157] = 1, - ACTIONS(6330), 1, - sym__line_ending, - [136161] = 1, + aux_sym_insert_token1, + [136015] = 1, ACTIONS(9657), 1, - anon_sym_RPAREN, - [136165] = 1, + anon_sym_RBRACE, + [136019] = 1, ACTIONS(9659), 1, - sym__close_block, - [136169] = 1, - ACTIONS(9661), 1, aux_sym_insert_token1, - [136173] = 1, + [136023] = 1, + ACTIONS(9661), 1, + aux_sym_pandoc_math_token1, + [136027] = 1, ACTIONS(9663), 1, - sym__strong_emphasis_close_star, - [136177] = 1, + sym__single_quote_span_close, + [136031] = 1, ACTIONS(9665), 1, - aux_sym_insert_token1, - [136181] = 1, + anon_sym_RBRACE, + [136035] = 1, ACTIONS(9667), 1, - anon_sym_DOLLAR_DOLLAR, - [136185] = 1, + aux_sym_citation_token1, + [136039] = 1, ACTIONS(9669), 1, - aux_sym_insert_token1, - [136189] = 1, - ACTIONS(6812), 1, - anon_sym_RBRACE, - [136193] = 1, + aux_sym_citation_token1, + [136043] = 1, ACTIONS(9671), 1, - aux_sym_insert_token1, - [136197] = 1, - ACTIONS(7826), 1, - sym__pipe_table_delimiter, - [136201] = 1, + sym__block_close, + [136047] = 1, ACTIONS(9673), 1, - aux_sym_citation_token2, - [136205] = 1, + sym__block_close, + [136051] = 1, ACTIONS(9675), 1, - aux_sym_citation_token2, - [136209] = 1, + sym__block_close, + [136055] = 1, ACTIONS(9677), 1, - aux_sym_insert_token1, - [136213] = 1, - ACTIONS(7642), 1, - aux_sym_inline_note_token1, - [136217] = 1, - ACTIONS(9663), 1, - sym__strong_emphasis_close_underscore, - [136221] = 1, + sym__block_close, + [136059] = 1, ACTIONS(9679), 1, - aux_sym_inline_note_token1, - [136225] = 1, + anon_sym_RBRACE, + [136063] = 1, ACTIONS(9681), 1, - aux_sym_pandoc_display_math_token1, - [136229] = 1, + anon_sym_RBRACE, + [136067] = 1, ACTIONS(9683), 1, - aux_sym_insert_token1, - [136233] = 1, + anon_sym_RBRACE, + [136071] = 1, ACTIONS(9685), 1, - anon_sym_RPAREN, - [136237] = 1, + sym__double_quote_span_close, + [136075] = 1, ACTIONS(9687), 1, - sym__block_close, - [136241] = 1, + aux_sym_pandoc_math_token1, + [136079] = 1, ACTIONS(9689), 1, - aux_sym_insert_token1, - [136245] = 1, + aux_sym_pandoc_display_math_token1, + [136083] = 1, + ACTIONS(8407), 1, + sym__block_close, + [136087] = 1, + ACTIONS(2783), 1, + aux_sym_inline_note_token1, + [136091] = 1, ACTIONS(9691), 1, - sym_shortcode_name, - [136249] = 1, + anon_sym_RBRACE, + [136095] = 1, + ACTIONS(8491), 1, + sym__blank_line_start, + [136099] = 1, ACTIONS(9693), 1, - sym_shortcode_name, - [136253] = 1, + anon_sym_RBRACE, + [136103] = 1, ACTIONS(9695), 1, - sym_shortcode_name, - [136257] = 1, + anon_sym_RBRACE, + [136107] = 1, ACTIONS(9697), 1, - sym__close_block, - [136261] = 1, + anon_sym_RBRACE, + [136111] = 1, ACTIONS(9699), 1, - sym__close_block, - [136265] = 1, + anon_sym_RBRACE, + [136115] = 1, ACTIONS(9701), 1, - sym__close_block, - [136269] = 1, + sym__strikeout_close, + [136119] = 1, ACTIONS(9703), 1, - sym__close_block, - [136273] = 1, + sym__block_close, + [136123] = 1, ACTIONS(9705), 1, - sym__close_block, - [136277] = 1, + aux_sym_inline_note_token1, + [136127] = 1, ACTIONS(9707), 1, - sym__close_block, - [136281] = 1, + sym__subscript_close, + [136131] = 1, ACTIONS(9709), 1, - sym__close_block, - [136285] = 1, + anon_sym_RPAREN, + [136135] = 1, ACTIONS(9711), 1, - sym__close_block, - [136289] = 1, + aux_sym_citation_token1, + [136139] = 1, ACTIONS(9713), 1, - sym__close_block, - [136293] = 1, + aux_sym_citation_token1, + [136143] = 1, ACTIONS(9715), 1, - sym__block_close, - [136297] = 1, + sym_shortcode_name, + [136147] = 1, ACTIONS(9717), 1, - aux_sym_insert_token1, - [136301] = 1, - ACTIONS(7521), 1, - aux_sym_commonmark_specifier_token1, - [136305] = 1, + sym__single_quote_span_close, + [136151] = 1, ACTIONS(9719), 1, - sym_shortcode_name, - [136309] = 1, + aux_sym_inline_note_token1, + [136155] = 1, ACTIONS(9721), 1, - sym_shortcode_name, - [136313] = 1, + anon_sym_RPAREN, + [136159] = 1, ACTIONS(9723), 1, - sym__close_block, - [136317] = 1, + sym__superscript_close, + [136163] = 1, ACTIONS(9725), 1, - sym__close_block, - [136321] = 1, + anon_sym_RBRACE, + [136167] = 1, + ACTIONS(8545), 1, + sym__block_close, + [136171] = 1, + ACTIONS(7900), 1, + sym__pipe_table_delimiter, + [136175] = 1, ACTIONS(9727), 1, - sym__close_block, - [136325] = 1, + aux_sym_pandoc_math_token1, + [136179] = 1, ACTIONS(9729), 1, - sym__close_block, - [136329] = 1, + aux_sym_pandoc_display_math_token1, + [136183] = 1, ACTIONS(9731), 1, - sym__close_block, - [136333] = 1, + sym__double_quote_span_close, + [136187] = 1, + ACTIONS(8839), 1, + sym__emphasis_close_underscore, + [136191] = 1, ACTIONS(9733), 1, - sym__close_block, - [136337] = 1, + anon_sym_RBRACE, + [136195] = 1, ACTIONS(9735), 1, - sym__close_block, - [136341] = 1, + anon_sym_RPAREN, + [136199] = 1, ACTIONS(9737), 1, - sym__close_block, - [136345] = 1, + anon_sym_RPAREN, + [136203] = 1, ACTIONS(9739), 1, - sym__close_block, - [136349] = 1, + aux_sym_insert_token1, + [136207] = 1, ACTIONS(9741), 1, - sym_shortcode_name, - [136353] = 1, + anon_sym_RBRACE, + [136211] = 1, ACTIONS(9743), 1, - sym_shortcode_name, - [136357] = 1, + sym__strong_emphasis_close_star, + [136215] = 1, + ACTIONS(9743), 1, + sym__strong_emphasis_close_underscore, + [136219] = 1, ACTIONS(9745), 1, - sym_shortcode_name, - [136361] = 1, + sym__strikeout_close, + [136223] = 1, ACTIONS(9747), 1, - sym_shortcode_name, - [136365] = 1, + anon_sym_RPAREN, + [136227] = 1, ACTIONS(9749), 1, - sym_shortcode_name, - [136369] = 1, + sym__emphasis_close_star, + [136231] = 1, ACTIONS(9751), 1, - sym_shortcode_name, - [136373] = 1, + sym__subscript_close, + [136235] = 1, ACTIONS(9753), 1, - sym_shortcode_name, - [136377] = 1, + anon_sym_RBRACE, + [136239] = 1, + ACTIONS(6398), 1, + sym__line_ending, + [136243] = 1, ACTIONS(9755), 1, - sym_shortcode_name, - [136381] = 1, + sym__minus_metadata_open_newline, + [136247] = 1, ACTIONS(9757), 1, - sym_shortcode_name, - [136385] = 1, + anon_sym_RPAREN, + [136251] = 1, ACTIONS(9759), 1, - sym_shortcode_name, - [136389] = 1, + anon_sym_RPAREN, + [136255] = 1, + ACTIONS(6356), 1, + sym__line_ending, + [136259] = 1, ACTIONS(9761), 1, - sym_shortcode_name, - [136393] = 1, + sym__superscript_close, + [136263] = 1, ACTIONS(9763), 1, - sym_shortcode_name, - [136397] = 1, + sym__block_close, + [136267] = 1, + ACTIONS(9749), 1, + sym__emphasis_close_underscore, + [136271] = 1, ACTIONS(9765), 1, - sym_shortcode_name, - [136401] = 1, + anon_sym_RBRACE, + [136275] = 1, + ACTIONS(7554), 1, + aux_sym_commonmark_specifier_token1, + [136279] = 1, ACTIONS(9767), 1, - sym_shortcode_name, - [136405] = 1, + sym__block_close, + [136283] = 1, ACTIONS(9769), 1, - sym_shortcode_name, - [136409] = 1, + aux_sym_citation_token2, + [136287] = 1, ACTIONS(9771), 1, - sym_shortcode_name, - [136413] = 1, + aux_sym_citation_token2, + [136291] = 1, + ACTIONS(6352), 1, + sym__line_ending, + [136295] = 1, ACTIONS(9773), 1, - sym_shortcode_name, - [136417] = 1, + sym__minus_metadata_open_newline, + [136299] = 1, ACTIONS(9775), 1, - sym_shortcode_name, - [136421] = 1, + sym__close_block, + [136303] = 1, ACTIONS(9777), 1, - sym_shortcode_name, - [136425] = 1, + sym__strong_emphasis_close_star, + [136307] = 1, ACTIONS(9779), 1, - sym_shortcode_name, - [136429] = 1, + sym__close_block, + [136311] = 1, ACTIONS(9781), 1, sym_shortcode_name, - [136433] = 1, + [136315] = 1, ACTIONS(9783), 1, sym_shortcode_name, - [136437] = 1, + [136319] = 1, ACTIONS(9785), 1, - sym_shortcode_name, - [136441] = 1, + sym__close_block, + [136323] = 1, ACTIONS(9787), 1, - sym_shortcode_name, - [136445] = 1, + sym__close_block, + [136327] = 1, ACTIONS(9789), 1, - sym_shortcode_name, - [136449] = 1, + sym__close_block, + [136331] = 1, ACTIONS(9791), 1, - sym_shortcode_name, - [136453] = 1, + sym__close_block, + [136335] = 1, ACTIONS(9793), 1, - sym_shortcode_name, - [136457] = 1, + sym__close_block, + [136339] = 1, ACTIONS(9795), 1, - sym_shortcode_name, - [136461] = 1, + sym__close_block, + [136343] = 1, ACTIONS(9797), 1, - sym_shortcode_name, - [136465] = 1, + sym__close_block, + [136347] = 1, ACTIONS(9799), 1, - sym_shortcode_name, - [136469] = 1, + sym__close_block, + [136351] = 1, ACTIONS(9801), 1, - aux_sym_insert_token1, - [136473] = 1, + sym__close_block, + [136355] = 1, ACTIONS(9803), 1, - sym__emphasis_close_star, - [136477] = 1, + sym__minus_metadata_open_newline, + [136359] = 1, + ACTIONS(9777), 1, + sym__strong_emphasis_close_underscore, + [136363] = 1, ACTIONS(9805), 1, - sym__single_quote_span_close, - [136481] = 1, + aux_sym_insert_token1, + [136367] = 1, ACTIONS(9807), 1, - sym__double_quote_span_close, - [136485] = 1, + sym__strikeout_close, + [136371] = 1, ACTIONS(9809), 1, - anon_sym_RBRACE, - [136489] = 1, + sym_shortcode_name, + [136375] = 1, ACTIONS(9811), 1, - anon_sym_RBRACE, - [136493] = 1, + sym_shortcode_name, + [136379] = 1, ACTIONS(9813), 1, - sym__strikeout_close, - [136497] = 1, + sym__close_block, + [136383] = 1, ACTIONS(9815), 1, - sym__subscript_close, - [136501] = 1, + sym__close_block, + [136387] = 1, ACTIONS(9817), 1, - sym__superscript_close, - [136505] = 1, + sym__close_block, + [136391] = 1, ACTIONS(9819), 1, - anon_sym_RBRACE, - [136509] = 1, - ACTIONS(9821), 1, - sym__strong_emphasis_close_star, - [136513] = 1, + sym__close_block, + [136395] = 1, ACTIONS(9821), 1, - sym__strong_emphasis_close_underscore, - [136517] = 1, - ACTIONS(9823), 1, - sym__emphasis_close_star, - [136521] = 1, + sym__close_block, + [136399] = 1, ACTIONS(9823), 1, - sym__emphasis_close_underscore, - [136525] = 1, + sym__close_block, + [136403] = 1, ACTIONS(9825), 1, - aux_sym_insert_token1, - [136529] = 1, + sym__close_block, + [136407] = 1, ACTIONS(9827), 1, - anon_sym_RBRACE, - [136533] = 1, + sym__close_block, + [136411] = 1, ACTIONS(9829), 1, - anon_sym_RBRACE, - [136537] = 1, + sym__close_block, + [136415] = 1, ACTIONS(9831), 1, - anon_sym_RBRACE, - [136541] = 1, + sym_shortcode_name, + [136419] = 1, ACTIONS(9833), 1, - anon_sym_RBRACE, - [136545] = 1, - ACTIONS(8473), 1, - sym__block_close, - [136549] = 1, + sym_shortcode_name, + [136423] = 1, ACTIONS(9835), 1, - anon_sym_DOLLAR_DOLLAR, - [136553] = 1, - ACTIONS(6794), 1, - anon_sym_RBRACE, - [136557] = 1, + sym_shortcode_name, + [136427] = 1, ACTIONS(9837), 1, - anon_sym_RBRACE, - [136561] = 1, - ACTIONS(9803), 1, - sym__emphasis_close_underscore, - [136565] = 1, - ACTIONS(6738), 1, - anon_sym_RBRACE, - [136569] = 1, + sym_shortcode_name, + [136431] = 1, ACTIONS(9839), 1, - anon_sym_RBRACE, - [136573] = 1, + sym_shortcode_name, + [136435] = 1, ACTIONS(9841), 1, - aux_sym_inline_note_token1, - [136577] = 1, + sym_shortcode_name, + [136439] = 1, ACTIONS(9843), 1, - aux_sym_insert_token1, - [136581] = 1, + sym_shortcode_name, + [136443] = 1, ACTIONS(9845), 1, - aux_sym_insert_token1, - [136585] = 1, + sym_shortcode_name, + [136447] = 1, ACTIONS(9847), 1, - aux_sym_insert_token1, - [136589] = 1, + sym_shortcode_name, + [136451] = 1, ACTIONS(9849), 1, - aux_sym_insert_token1, - [136593] = 1, - ACTIONS(7697), 1, - aux_sym_inline_note_token1, - [136597] = 1, + sym_shortcode_name, + [136455] = 1, ACTIONS(9851), 1, - anon_sym_RPAREN, - [136601] = 1, - ACTIONS(6276), 1, - sym__line_ending, - [136605] = 1, - ACTIONS(9243), 1, + sym_shortcode_name, + [136459] = 1, + ACTIONS(9853), 1, + sym_shortcode_name, + [136463] = 1, + ACTIONS(9855), 1, + sym_shortcode_name, + [136467] = 1, + ACTIONS(9857), 1, + sym_shortcode_name, + [136471] = 1, + ACTIONS(9859), 1, + sym_shortcode_name, + [136475] = 1, + ACTIONS(9861), 1, + sym_shortcode_name, + [136479] = 1, + ACTIONS(9863), 1, + sym_shortcode_name, + [136483] = 1, + ACTIONS(9865), 1, + sym_shortcode_name, + [136487] = 1, + ACTIONS(9867), 1, + sym_shortcode_name, + [136491] = 1, + ACTIONS(9869), 1, + sym_shortcode_name, + [136495] = 1, + ACTIONS(9871), 1, + sym_shortcode_name, + [136499] = 1, + ACTIONS(9873), 1, + sym_shortcode_name, + [136503] = 1, + ACTIONS(9875), 1, + sym_shortcode_name, + [136507] = 1, + ACTIONS(9877), 1, + sym_shortcode_name, + [136511] = 1, + ACTIONS(9879), 1, + sym_shortcode_name, + [136515] = 1, + ACTIONS(9881), 1, + sym_shortcode_name, + [136519] = 1, + ACTIONS(9883), 1, + sym_shortcode_name, + [136523] = 1, + ACTIONS(9885), 1, + sym_shortcode_name, + [136527] = 1, + ACTIONS(9887), 1, + sym_shortcode_name, + [136531] = 1, + ACTIONS(9889), 1, + sym_shortcode_name, + [136535] = 1, + ACTIONS(9891), 1, + aux_sym_insert_token1, + [136539] = 1, + ACTIONS(9893), 1, + sym__subscript_close, + [136543] = 1, + ACTIONS(9895), 1, + aux_sym_insert_token1, + [136547] = 1, + ACTIONS(9897), 1, + sym__emphasis_close_star, + [136551] = 1, + ACTIONS(9899), 1, + aux_sym_insert_token1, + [136555] = 1, + ACTIONS(9897), 1, + sym__emphasis_close_underscore, + [136559] = 1, + ACTIONS(9901), 1, + sym__single_quote_span_close, + [136563] = 1, + ACTIONS(9903), 1, + sym__double_quote_span_close, + [136567] = 1, + ACTIONS(9905), 1, + anon_sym_RBRACE, + [136571] = 1, + ACTIONS(9907), 1, + anon_sym_RBRACE, + [136575] = 1, + ACTIONS(9909), 1, + sym__strikeout_close, + [136579] = 1, + ACTIONS(9911), 1, + sym__subscript_close, + [136583] = 1, + ACTIONS(9913), 1, + sym__superscript_close, + [136587] = 1, + ACTIONS(9915), 1, + anon_sym_RBRACE, + [136591] = 1, + ACTIONS(9917), 1, + sym__strong_emphasis_close_star, + [136595] = 1, + ACTIONS(9917), 1, sym__strong_emphasis_close_underscore, + [136599] = 1, + ACTIONS(9919), 1, + sym__emphasis_close_star, + [136603] = 1, + ACTIONS(9919), 1, + sym__emphasis_close_underscore, + [136607] = 1, + ACTIONS(9921), 1, + anon_sym_RBRACE, + [136611] = 1, + ACTIONS(6376), 1, + sym__line_ending, + [136615] = 1, + ACTIONS(2787), 1, + aux_sym_inline_note_token1, + [136619] = 1, + ACTIONS(9923), 1, + sym__superscript_close, + [136623] = 1, + ACTIONS(9925), 1, + sym__close_block, + [136627] = 1, + ACTIONS(9927), 1, + aux_sym_inline_note_token1, + [136631] = 1, + ACTIONS(9929), 1, + anon_sym_DOLLAR_DOLLAR, + [136635] = 1, + ACTIONS(6874), 1, + anon_sym_RBRACE, + [136639] = 1, + ACTIONS(9931), 1, + anon_sym_RBRACE, + [136643] = 1, + ACTIONS(8347), 1, + sym__block_close, + [136647] = 1, + ACTIONS(6780), 1, + anon_sym_RBRACE, + [136651] = 1, + ACTIONS(9933), 1, + anon_sym_RBRACE, + [136655] = 1, + ACTIONS(9935), 1, + sym__subscript_close, + [136659] = 1, + ACTIONS(9937), 1, + aux_sym_insert_token1, + [136663] = 1, + ACTIONS(9939), 1, + aux_sym_insert_token1, + [136667] = 1, + ACTIONS(9941), 1, + aux_sym_insert_token1, + [136671] = 1, + ACTIONS(9943), 1, + anon_sym_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(621)] = 0, - [SMALL_STATE(622)] = 135, - [SMALL_STATE(623)] = 270, - [SMALL_STATE(624)] = 405, - [SMALL_STATE(625)] = 538, - [SMALL_STATE(626)] = 673, - [SMALL_STATE(627)] = 808, - [SMALL_STATE(628)] = 943, - [SMALL_STATE(629)] = 1078, - [SMALL_STATE(630)] = 1213, - [SMALL_STATE(631)] = 1348, - [SMALL_STATE(632)] = 1477, - [SMALL_STATE(633)] = 1612, - [SMALL_STATE(634)] = 1747, - [SMALL_STATE(635)] = 1882, - [SMALL_STATE(636)] = 2017, - [SMALL_STATE(637)] = 2152, - [SMALL_STATE(638)] = 2287, - [SMALL_STATE(639)] = 2422, - [SMALL_STATE(640)] = 2557, - [SMALL_STATE(641)] = 2692, - [SMALL_STATE(642)] = 2827, - [SMALL_STATE(643)] = 2962, - [SMALL_STATE(644)] = 3097, - [SMALL_STATE(645)] = 3232, - [SMALL_STATE(646)] = 3367, - [SMALL_STATE(647)] = 3498, - [SMALL_STATE(648)] = 3629, - [SMALL_STATE(649)] = 3762, - [SMALL_STATE(650)] = 3893, - [SMALL_STATE(651)] = 4026, - [SMALL_STATE(652)] = 4161, - [SMALL_STATE(653)] = 4296, - [SMALL_STATE(654)] = 4425, - [SMALL_STATE(655)] = 4558, - [SMALL_STATE(656)] = 4693, - [SMALL_STATE(657)] = 4828, - [SMALL_STATE(658)] = 4963, - [SMALL_STATE(659)] = 5098, - [SMALL_STATE(660)] = 5227, - [SMALL_STATE(661)] = 5362, - [SMALL_STATE(662)] = 5497, - [SMALL_STATE(663)] = 5632, - [SMALL_STATE(664)] = 5760, - [SMALL_STATE(665)] = 5888, - [SMALL_STATE(666)] = 6016, - [SMALL_STATE(667)] = 6144, - [SMALL_STATE(668)] = 6272, - [SMALL_STATE(669)] = 6400, - [SMALL_STATE(670)] = 6528, - [SMALL_STATE(671)] = 6656, - [SMALL_STATE(672)] = 6784, - [SMALL_STATE(673)] = 6912, - [SMALL_STATE(674)] = 7040, - [SMALL_STATE(675)] = 7168, - [SMALL_STATE(676)] = 7296, - [SMALL_STATE(677)] = 7424, - [SMALL_STATE(678)] = 7552, - [SMALL_STATE(679)] = 7680, - [SMALL_STATE(680)] = 7808, - [SMALL_STATE(681)] = 7936, - [SMALL_STATE(682)] = 8064, - [SMALL_STATE(683)] = 8192, - [SMALL_STATE(684)] = 8320, - [SMALL_STATE(685)] = 8448, - [SMALL_STATE(686)] = 8576, - [SMALL_STATE(687)] = 8704, - [SMALL_STATE(688)] = 8832, - [SMALL_STATE(689)] = 8960, - [SMALL_STATE(690)] = 9088, - [SMALL_STATE(691)] = 9216, - [SMALL_STATE(692)] = 9344, - [SMALL_STATE(693)] = 9472, - [SMALL_STATE(694)] = 9600, - [SMALL_STATE(695)] = 9728, - [SMALL_STATE(696)] = 9856, - [SMALL_STATE(697)] = 9984, - [SMALL_STATE(698)] = 10112, - [SMALL_STATE(699)] = 10241, - [SMALL_STATE(700)] = 10370, - [SMALL_STATE(701)] = 10499, - [SMALL_STATE(702)] = 10628, - [SMALL_STATE(703)] = 10757, - [SMALL_STATE(704)] = 10886, - [SMALL_STATE(705)] = 11015, - [SMALL_STATE(706)] = 11144, - [SMALL_STATE(707)] = 11273, - [SMALL_STATE(708)] = 11402, - [SMALL_STATE(709)] = 11531, - [SMALL_STATE(710)] = 11660, - [SMALL_STATE(711)] = 11789, - [SMALL_STATE(712)] = 11918, - [SMALL_STATE(713)] = 12047, - [SMALL_STATE(714)] = 12176, - [SMALL_STATE(715)] = 12305, - [SMALL_STATE(716)] = 12434, - [SMALL_STATE(717)] = 12563, - [SMALL_STATE(718)] = 12692, - [SMALL_STATE(719)] = 12821, - [SMALL_STATE(720)] = 12950, - [SMALL_STATE(721)] = 13079, - [SMALL_STATE(722)] = 13208, - [SMALL_STATE(723)] = 13337, - [SMALL_STATE(724)] = 13466, - [SMALL_STATE(725)] = 13595, - [SMALL_STATE(726)] = 13724, - [SMALL_STATE(727)] = 13853, - [SMALL_STATE(728)] = 13982, - [SMALL_STATE(729)] = 14111, - [SMALL_STATE(730)] = 14240, - [SMALL_STATE(731)] = 14369, - [SMALL_STATE(732)] = 14498, - [SMALL_STATE(733)] = 14627, - [SMALL_STATE(734)] = 14756, - [SMALL_STATE(735)] = 14885, - [SMALL_STATE(736)] = 15012, - [SMALL_STATE(737)] = 15141, - [SMALL_STATE(738)] = 15270, - [SMALL_STATE(739)] = 15399, - [SMALL_STATE(740)] = 15528, - [SMALL_STATE(741)] = 15657, - [SMALL_STATE(742)] = 15786, - [SMALL_STATE(743)] = 15915, - [SMALL_STATE(744)] = 16044, - [SMALL_STATE(745)] = 16173, - [SMALL_STATE(746)] = 16302, - [SMALL_STATE(747)] = 16431, - [SMALL_STATE(748)] = 16560, - [SMALL_STATE(749)] = 16689, - [SMALL_STATE(750)] = 16818, - [SMALL_STATE(751)] = 16947, - [SMALL_STATE(752)] = 17076, - [SMALL_STATE(753)] = 17205, - [SMALL_STATE(754)] = 17334, - [SMALL_STATE(755)] = 17463, - [SMALL_STATE(756)] = 17592, - [SMALL_STATE(757)] = 17721, - [SMALL_STATE(758)] = 17850, - [SMALL_STATE(759)] = 17979, - [SMALL_STATE(760)] = 18108, - [SMALL_STATE(761)] = 18237, - [SMALL_STATE(762)] = 18366, - [SMALL_STATE(763)] = 18495, - [SMALL_STATE(764)] = 18624, - [SMALL_STATE(765)] = 18753, - [SMALL_STATE(766)] = 18882, - [SMALL_STATE(767)] = 19011, - [SMALL_STATE(768)] = 19140, - [SMALL_STATE(769)] = 19269, - [SMALL_STATE(770)] = 19398, - [SMALL_STATE(771)] = 19527, - [SMALL_STATE(772)] = 19656, - [SMALL_STATE(773)] = 19785, - [SMALL_STATE(774)] = 19914, - [SMALL_STATE(775)] = 20043, - [SMALL_STATE(776)] = 20172, - [SMALL_STATE(777)] = 20301, - [SMALL_STATE(778)] = 20430, - [SMALL_STATE(779)] = 20559, - [SMALL_STATE(780)] = 20688, - [SMALL_STATE(781)] = 20817, - [SMALL_STATE(782)] = 20946, - [SMALL_STATE(783)] = 21075, - [SMALL_STATE(784)] = 21204, - [SMALL_STATE(785)] = 21333, - [SMALL_STATE(786)] = 21462, - [SMALL_STATE(787)] = 21591, - [SMALL_STATE(788)] = 21718, - [SMALL_STATE(789)] = 21847, - [SMALL_STATE(790)] = 21976, - [SMALL_STATE(791)] = 22105, - [SMALL_STATE(792)] = 22234, - [SMALL_STATE(793)] = 22363, - [SMALL_STATE(794)] = 22492, - [SMALL_STATE(795)] = 22621, - [SMALL_STATE(796)] = 22750, - [SMALL_STATE(797)] = 22876, - [SMALL_STATE(798)] = 23002, - [SMALL_STATE(799)] = 23128, - [SMALL_STATE(800)] = 23254, - [SMALL_STATE(801)] = 23380, - [SMALL_STATE(802)] = 23506, - [SMALL_STATE(803)] = 23632, - [SMALL_STATE(804)] = 23758, - [SMALL_STATE(805)] = 23884, - [SMALL_STATE(806)] = 24010, - [SMALL_STATE(807)] = 24136, - [SMALL_STATE(808)] = 24262, - [SMALL_STATE(809)] = 24388, - [SMALL_STATE(810)] = 24514, - [SMALL_STATE(811)] = 24640, - [SMALL_STATE(812)] = 24766, - [SMALL_STATE(813)] = 24892, - [SMALL_STATE(814)] = 25018, - [SMALL_STATE(815)] = 25144, - [SMALL_STATE(816)] = 25270, - [SMALL_STATE(817)] = 25396, - [SMALL_STATE(818)] = 25522, - [SMALL_STATE(819)] = 25648, - [SMALL_STATE(820)] = 25774, - [SMALL_STATE(821)] = 25900, - [SMALL_STATE(822)] = 26026, - [SMALL_STATE(823)] = 26152, - [SMALL_STATE(824)] = 26278, - [SMALL_STATE(825)] = 26404, - [SMALL_STATE(826)] = 26530, - [SMALL_STATE(827)] = 26656, - [SMALL_STATE(828)] = 26782, - [SMALL_STATE(829)] = 26908, - [SMALL_STATE(830)] = 27034, - [SMALL_STATE(831)] = 27160, - [SMALL_STATE(832)] = 27286, - [SMALL_STATE(833)] = 27412, - [SMALL_STATE(834)] = 27538, - [SMALL_STATE(835)] = 27664, - [SMALL_STATE(836)] = 27790, - [SMALL_STATE(837)] = 27916, - [SMALL_STATE(838)] = 28042, - [SMALL_STATE(839)] = 28168, - [SMALL_STATE(840)] = 28294, - [SMALL_STATE(841)] = 28420, - [SMALL_STATE(842)] = 28546, - [SMALL_STATE(843)] = 28672, - [SMALL_STATE(844)] = 28798, - [SMALL_STATE(845)] = 28924, - [SMALL_STATE(846)] = 29050, - [SMALL_STATE(847)] = 29176, - [SMALL_STATE(848)] = 29302, - [SMALL_STATE(849)] = 29428, - [SMALL_STATE(850)] = 29554, - [SMALL_STATE(851)] = 29680, - [SMALL_STATE(852)] = 29806, - [SMALL_STATE(853)] = 29932, - [SMALL_STATE(854)] = 30058, - [SMALL_STATE(855)] = 30184, - [SMALL_STATE(856)] = 30310, - [SMALL_STATE(857)] = 30436, - [SMALL_STATE(858)] = 30562, - [SMALL_STATE(859)] = 30688, - [SMALL_STATE(860)] = 30814, - [SMALL_STATE(861)] = 30940, - [SMALL_STATE(862)] = 31066, - [SMALL_STATE(863)] = 31192, - [SMALL_STATE(864)] = 31318, - [SMALL_STATE(865)] = 31444, - [SMALL_STATE(866)] = 31570, - [SMALL_STATE(867)] = 31696, - [SMALL_STATE(868)] = 31822, - [SMALL_STATE(869)] = 31948, - [SMALL_STATE(870)] = 32074, - [SMALL_STATE(871)] = 32200, - [SMALL_STATE(872)] = 32326, - [SMALL_STATE(873)] = 32452, - [SMALL_STATE(874)] = 32578, - [SMALL_STATE(875)] = 32704, - [SMALL_STATE(876)] = 32830, - [SMALL_STATE(877)] = 32956, - [SMALL_STATE(878)] = 33082, - [SMALL_STATE(879)] = 33208, - [SMALL_STATE(880)] = 33334, - [SMALL_STATE(881)] = 33460, - [SMALL_STATE(882)] = 33586, - [SMALL_STATE(883)] = 33712, - [SMALL_STATE(884)] = 33838, - [SMALL_STATE(885)] = 33964, - [SMALL_STATE(886)] = 34090, - [SMALL_STATE(887)] = 34216, - [SMALL_STATE(888)] = 34342, - [SMALL_STATE(889)] = 34468, - [SMALL_STATE(890)] = 34594, - [SMALL_STATE(891)] = 34720, - [SMALL_STATE(892)] = 34846, - [SMALL_STATE(893)] = 34972, - [SMALL_STATE(894)] = 35098, - [SMALL_STATE(895)] = 35224, - [SMALL_STATE(896)] = 35350, - [SMALL_STATE(897)] = 35476, - [SMALL_STATE(898)] = 35602, - [SMALL_STATE(899)] = 35728, - [SMALL_STATE(900)] = 35854, - [SMALL_STATE(901)] = 35980, - [SMALL_STATE(902)] = 36106, - [SMALL_STATE(903)] = 36232, - [SMALL_STATE(904)] = 36358, - [SMALL_STATE(905)] = 36484, - [SMALL_STATE(906)] = 36610, - [SMALL_STATE(907)] = 36736, - [SMALL_STATE(908)] = 36862, - [SMALL_STATE(909)] = 36988, - [SMALL_STATE(910)] = 37114, - [SMALL_STATE(911)] = 37240, - [SMALL_STATE(912)] = 37366, - [SMALL_STATE(913)] = 37492, - [SMALL_STATE(914)] = 37618, - [SMALL_STATE(915)] = 37744, - [SMALL_STATE(916)] = 37870, - [SMALL_STATE(917)] = 37996, - [SMALL_STATE(918)] = 38122, - [SMALL_STATE(919)] = 38248, - [SMALL_STATE(920)] = 38374, - [SMALL_STATE(921)] = 38500, - [SMALL_STATE(922)] = 38626, - [SMALL_STATE(923)] = 38752, - [SMALL_STATE(924)] = 38878, - [SMALL_STATE(925)] = 39004, - [SMALL_STATE(926)] = 39130, - [SMALL_STATE(927)] = 39256, - [SMALL_STATE(928)] = 39382, - [SMALL_STATE(929)] = 39508, - [SMALL_STATE(930)] = 39634, - [SMALL_STATE(931)] = 39760, - [SMALL_STATE(932)] = 39886, - [SMALL_STATE(933)] = 40009, - [SMALL_STATE(934)] = 40132, - [SMALL_STATE(935)] = 40255, - [SMALL_STATE(936)] = 40378, - [SMALL_STATE(937)] = 40501, - [SMALL_STATE(938)] = 40624, - [SMALL_STATE(939)] = 40747, - [SMALL_STATE(940)] = 40870, - [SMALL_STATE(941)] = 40993, - [SMALL_STATE(942)] = 41116, - [SMALL_STATE(943)] = 41239, - [SMALL_STATE(944)] = 41362, - [SMALL_STATE(945)] = 41485, - [SMALL_STATE(946)] = 41605, - [SMALL_STATE(947)] = 41725, - [SMALL_STATE(948)] = 41845, - [SMALL_STATE(949)] = 41965, - [SMALL_STATE(950)] = 42085, - [SMALL_STATE(951)] = 42205, - [SMALL_STATE(952)] = 42325, - [SMALL_STATE(953)] = 42445, - [SMALL_STATE(954)] = 42565, - [SMALL_STATE(955)] = 42685, - [SMALL_STATE(956)] = 42805, - [SMALL_STATE(957)] = 42925, - [SMALL_STATE(958)] = 43045, - [SMALL_STATE(959)] = 43095, - [SMALL_STATE(960)] = 43146, - [SMALL_STATE(961)] = 43197, - [SMALL_STATE(962)] = 43246, - [SMALL_STATE(963)] = 43297, - [SMALL_STATE(964)] = 43348, - [SMALL_STATE(965)] = 43399, - [SMALL_STATE(966)] = 43450, - [SMALL_STATE(967)] = 43501, - [SMALL_STATE(968)] = 43552, - [SMALL_STATE(969)] = 43603, - [SMALL_STATE(970)] = 43650, - [SMALL_STATE(971)] = 43701, - [SMALL_STATE(972)] = 43752, - [SMALL_STATE(973)] = 43803, - [SMALL_STATE(974)] = 43854, - [SMALL_STATE(975)] = 43905, - [SMALL_STATE(976)] = 43956, - [SMALL_STATE(977)] = 44007, - [SMALL_STATE(978)] = 44058, - [SMALL_STATE(979)] = 44109, - [SMALL_STATE(980)] = 44160, - [SMALL_STATE(981)] = 44211, - [SMALL_STATE(982)] = 44262, - [SMALL_STATE(983)] = 44313, - [SMALL_STATE(984)] = 44364, - [SMALL_STATE(985)] = 44415, - [SMALL_STATE(986)] = 44466, - [SMALL_STATE(987)] = 44516, - [SMALL_STATE(988)] = 44566, - [SMALL_STATE(989)] = 44616, - [SMALL_STATE(990)] = 44666, - [SMALL_STATE(991)] = 44716, - [SMALL_STATE(992)] = 44762, - [SMALL_STATE(993)] = 44808, - [SMALL_STATE(994)] = 44854, - [SMALL_STATE(995)] = 44900, - [SMALL_STATE(996)] = 44946, - [SMALL_STATE(997)] = 44992, - [SMALL_STATE(998)] = 45038, - [SMALL_STATE(999)] = 45084, - [SMALL_STATE(1000)] = 45130, - [SMALL_STATE(1001)] = 45180, - [SMALL_STATE(1002)] = 45226, - [SMALL_STATE(1003)] = 45272, - [SMALL_STATE(1004)] = 45318, - [SMALL_STATE(1005)] = 45364, - [SMALL_STATE(1006)] = 45410, - [SMALL_STATE(1007)] = 45456, - [SMALL_STATE(1008)] = 45502, - [SMALL_STATE(1009)] = 45548, - [SMALL_STATE(1010)] = 45594, - [SMALL_STATE(1011)] = 45640, - [SMALL_STATE(1012)] = 45686, - [SMALL_STATE(1013)] = 45732, - [SMALL_STATE(1014)] = 45778, - [SMALL_STATE(1015)] = 45824, - [SMALL_STATE(1016)] = 45870, - [SMALL_STATE(1017)] = 45916, - [SMALL_STATE(1018)] = 45962, - [SMALL_STATE(1019)] = 46008, - [SMALL_STATE(1020)] = 46054, - [SMALL_STATE(1021)] = 46100, - [SMALL_STATE(1022)] = 46150, - [SMALL_STATE(1023)] = 46196, - [SMALL_STATE(1024)] = 46242, - [SMALL_STATE(1025)] = 46288, - [SMALL_STATE(1026)] = 46334, - [SMALL_STATE(1027)] = 46380, - [SMALL_STATE(1028)] = 46426, - [SMALL_STATE(1029)] = 46472, - [SMALL_STATE(1030)] = 46518, - [SMALL_STATE(1031)] = 46564, - [SMALL_STATE(1032)] = 46610, - [SMALL_STATE(1033)] = 46656, - [SMALL_STATE(1034)] = 46702, - [SMALL_STATE(1035)] = 46748, - [SMALL_STATE(1036)] = 46794, - [SMALL_STATE(1037)] = 46840, - [SMALL_STATE(1038)] = 46886, - [SMALL_STATE(1039)] = 46932, - [SMALL_STATE(1040)] = 46978, - [SMALL_STATE(1041)] = 47024, - [SMALL_STATE(1042)] = 47070, - [SMALL_STATE(1043)] = 47116, - [SMALL_STATE(1044)] = 47162, - [SMALL_STATE(1045)] = 47208, - [SMALL_STATE(1046)] = 47254, - [SMALL_STATE(1047)] = 47300, - [SMALL_STATE(1048)] = 47346, - [SMALL_STATE(1049)] = 47392, - [SMALL_STATE(1050)] = 47438, - [SMALL_STATE(1051)] = 47488, - [SMALL_STATE(1052)] = 47534, - [SMALL_STATE(1053)] = 47580, - [SMALL_STATE(1054)] = 47626, - [SMALL_STATE(1055)] = 47672, - [SMALL_STATE(1056)] = 47718, - [SMALL_STATE(1057)] = 47764, - [SMALL_STATE(1058)] = 47810, - [SMALL_STATE(1059)] = 47856, - [SMALL_STATE(1060)] = 47902, - [SMALL_STATE(1061)] = 47948, - [SMALL_STATE(1062)] = 47994, - [SMALL_STATE(1063)] = 48044, - [SMALL_STATE(1064)] = 48094, - [SMALL_STATE(1065)] = 48144, - [SMALL_STATE(1066)] = 48194, - [SMALL_STATE(1067)] = 48244, - [SMALL_STATE(1068)] = 48294, - [SMALL_STATE(1069)] = 48344, - [SMALL_STATE(1070)] = 48390, - [SMALL_STATE(1071)] = 48440, - [SMALL_STATE(1072)] = 48490, - [SMALL_STATE(1073)] = 48540, - [SMALL_STATE(1074)] = 48590, - [SMALL_STATE(1075)] = 48640, - [SMALL_STATE(1076)] = 48690, - [SMALL_STATE(1077)] = 48740, - [SMALL_STATE(1078)] = 48790, - [SMALL_STATE(1079)] = 48840, - [SMALL_STATE(1080)] = 48890, - [SMALL_STATE(1081)] = 48940, - [SMALL_STATE(1082)] = 48990, - [SMALL_STATE(1083)] = 49040, - [SMALL_STATE(1084)] = 49086, - [SMALL_STATE(1085)] = 49136, - [SMALL_STATE(1086)] = 49186, - [SMALL_STATE(1087)] = 49236, - [SMALL_STATE(1088)] = 49286, - [SMALL_STATE(1089)] = 49336, - [SMALL_STATE(1090)] = 49386, - [SMALL_STATE(1091)] = 49436, - [SMALL_STATE(1092)] = 49486, - [SMALL_STATE(1093)] = 49536, - [SMALL_STATE(1094)] = 49586, - [SMALL_STATE(1095)] = 49636, - [SMALL_STATE(1096)] = 49686, - [SMALL_STATE(1097)] = 49736, - [SMALL_STATE(1098)] = 49786, - [SMALL_STATE(1099)] = 49836, - [SMALL_STATE(1100)] = 49886, - [SMALL_STATE(1101)] = 49936, - [SMALL_STATE(1102)] = 49986, - [SMALL_STATE(1103)] = 50036, - [SMALL_STATE(1104)] = 50086, - [SMALL_STATE(1105)] = 50136, - [SMALL_STATE(1106)] = 50186, - [SMALL_STATE(1107)] = 50232, - [SMALL_STATE(1108)] = 50281, - [SMALL_STATE(1109)] = 50330, - [SMALL_STATE(1110)] = 50379, - [SMALL_STATE(1111)] = 50424, - [SMALL_STATE(1112)] = 50473, - [SMALL_STATE(1113)] = 50522, - [SMALL_STATE(1114)] = 50567, - [SMALL_STATE(1115)] = 50616, - [SMALL_STATE(1116)] = 50665, - [SMALL_STATE(1117)] = 50710, - [SMALL_STATE(1118)] = 50755, - [SMALL_STATE(1119)] = 50804, - [SMALL_STATE(1120)] = 50849, - [SMALL_STATE(1121)] = 50894, - [SMALL_STATE(1122)] = 50939, - [SMALL_STATE(1123)] = 50984, - [SMALL_STATE(1124)] = 51029, - [SMALL_STATE(1125)] = 51074, - [SMALL_STATE(1126)] = 51119, - [SMALL_STATE(1127)] = 51168, - [SMALL_STATE(1128)] = 51213, - [SMALL_STATE(1129)] = 51258, - [SMALL_STATE(1130)] = 51303, - [SMALL_STATE(1131)] = 51348, - [SMALL_STATE(1132)] = 51393, - [SMALL_STATE(1133)] = 51438, - [SMALL_STATE(1134)] = 51483, - [SMALL_STATE(1135)] = 51532, - [SMALL_STATE(1136)] = 51581, - [SMALL_STATE(1137)] = 51630, - [SMALL_STATE(1138)] = 51679, - [SMALL_STATE(1139)] = 51728, - [SMALL_STATE(1140)] = 51777, - [SMALL_STATE(1141)] = 51822, - [SMALL_STATE(1142)] = 51871, - [SMALL_STATE(1143)] = 51916, - [SMALL_STATE(1144)] = 51961, - [SMALL_STATE(1145)] = 52006, - [SMALL_STATE(1146)] = 52051, - [SMALL_STATE(1147)] = 52096, - [SMALL_STATE(1148)] = 52141, - [SMALL_STATE(1149)] = 52186, - [SMALL_STATE(1150)] = 52231, - [SMALL_STATE(1151)] = 52276, - [SMALL_STATE(1152)] = 52321, - [SMALL_STATE(1153)] = 52366, - [SMALL_STATE(1154)] = 52411, - [SMALL_STATE(1155)] = 52456, - [SMALL_STATE(1156)] = 52501, - [SMALL_STATE(1157)] = 52546, - [SMALL_STATE(1158)] = 52591, - [SMALL_STATE(1159)] = 52636, - [SMALL_STATE(1160)] = 52685, - [SMALL_STATE(1161)] = 52734, - [SMALL_STATE(1162)] = 52783, - [SMALL_STATE(1163)] = 52832, - [SMALL_STATE(1164)] = 52881, - [SMALL_STATE(1165)] = 52930, - [SMALL_STATE(1166)] = 52979, - [SMALL_STATE(1167)] = 53028, - [SMALL_STATE(1168)] = 53077, - [SMALL_STATE(1169)] = 53126, - [SMALL_STATE(1170)] = 53175, - [SMALL_STATE(1171)] = 53224, - [SMALL_STATE(1172)] = 53273, - [SMALL_STATE(1173)] = 53322, - [SMALL_STATE(1174)] = 53371, - [SMALL_STATE(1175)] = 53420, - [SMALL_STATE(1176)] = 53469, - [SMALL_STATE(1177)] = 53518, - [SMALL_STATE(1178)] = 53567, - [SMALL_STATE(1179)] = 53616, - [SMALL_STATE(1180)] = 53665, - [SMALL_STATE(1181)] = 53710, - [SMALL_STATE(1182)] = 53755, - [SMALL_STATE(1183)] = 53800, - [SMALL_STATE(1184)] = 53849, - [SMALL_STATE(1185)] = 53898, - [SMALL_STATE(1186)] = 53947, - [SMALL_STATE(1187)] = 53996, - [SMALL_STATE(1188)] = 54045, - [SMALL_STATE(1189)] = 54094, - [SMALL_STATE(1190)] = 54143, - [SMALL_STATE(1191)] = 54192, - [SMALL_STATE(1192)] = 54241, - [SMALL_STATE(1193)] = 54290, - [SMALL_STATE(1194)] = 54339, - [SMALL_STATE(1195)] = 54388, - [SMALL_STATE(1196)] = 54437, - [SMALL_STATE(1197)] = 54486, - [SMALL_STATE(1198)] = 54531, - [SMALL_STATE(1199)] = 54576, - [SMALL_STATE(1200)] = 54625, - [SMALL_STATE(1201)] = 54674, - [SMALL_STATE(1202)] = 54719, - [SMALL_STATE(1203)] = 54768, - [SMALL_STATE(1204)] = 54817, - [SMALL_STATE(1205)] = 54866, - [SMALL_STATE(1206)] = 54911, - [SMALL_STATE(1207)] = 54956, - [SMALL_STATE(1208)] = 55001, - [SMALL_STATE(1209)] = 55046, - [SMALL_STATE(1210)] = 55091, - [SMALL_STATE(1211)] = 55136, - [SMALL_STATE(1212)] = 55181, - [SMALL_STATE(1213)] = 55230, - [SMALL_STATE(1214)] = 55279, - [SMALL_STATE(1215)] = 55328, - [SMALL_STATE(1216)] = 55373, - [SMALL_STATE(1217)] = 55422, - [SMALL_STATE(1218)] = 55471, - [SMALL_STATE(1219)] = 55516, - [SMALL_STATE(1220)] = 55565, - [SMALL_STATE(1221)] = 55610, - [SMALL_STATE(1222)] = 55659, - [SMALL_STATE(1223)] = 55704, - [SMALL_STATE(1224)] = 55753, - [SMALL_STATE(1225)] = 55798, - [SMALL_STATE(1226)] = 55847, - [SMALL_STATE(1227)] = 55896, - [SMALL_STATE(1228)] = 55945, - [SMALL_STATE(1229)] = 55994, - [SMALL_STATE(1230)] = 56039, - [SMALL_STATE(1231)] = 56088, - [SMALL_STATE(1232)] = 56137, - [SMALL_STATE(1233)] = 56186, - [SMALL_STATE(1234)] = 56231, - [SMALL_STATE(1235)] = 56280, - [SMALL_STATE(1236)] = 56329, - [SMALL_STATE(1237)] = 56378, - [SMALL_STATE(1238)] = 56427, - [SMALL_STATE(1239)] = 56476, - [SMALL_STATE(1240)] = 56525, - [SMALL_STATE(1241)] = 56574, - [SMALL_STATE(1242)] = 56623, - [SMALL_STATE(1243)] = 56672, - [SMALL_STATE(1244)] = 56717, - [SMALL_STATE(1245)] = 56762, - [SMALL_STATE(1246)] = 56811, - [SMALL_STATE(1247)] = 56856, - [SMALL_STATE(1248)] = 56901, - [SMALL_STATE(1249)] = 56950, - [SMALL_STATE(1250)] = 56999, - [SMALL_STATE(1251)] = 57044, - [SMALL_STATE(1252)] = 57093, - [SMALL_STATE(1253)] = 57138, - [SMALL_STATE(1254)] = 57187, - [SMALL_STATE(1255)] = 57232, - [SMALL_STATE(1256)] = 57277, - [SMALL_STATE(1257)] = 57322, - [SMALL_STATE(1258)] = 57367, - [SMALL_STATE(1259)] = 57412, - [SMALL_STATE(1260)] = 57457, - [SMALL_STATE(1261)] = 57502, - [SMALL_STATE(1262)] = 57547, - [SMALL_STATE(1263)] = 57592, - [SMALL_STATE(1264)] = 57637, - [SMALL_STATE(1265)] = 57686, - [SMALL_STATE(1266)] = 57735, - [SMALL_STATE(1267)] = 57780, - [SMALL_STATE(1268)] = 57825, - [SMALL_STATE(1269)] = 57870, - [SMALL_STATE(1270)] = 57915, - [SMALL_STATE(1271)] = 57960, - [SMALL_STATE(1272)] = 58005, - [SMALL_STATE(1273)] = 58050, - [SMALL_STATE(1274)] = 58095, - [SMALL_STATE(1275)] = 58140, - [SMALL_STATE(1276)] = 58189, - [SMALL_STATE(1277)] = 58238, - [SMALL_STATE(1278)] = 58287, - [SMALL_STATE(1279)] = 58336, - [SMALL_STATE(1280)] = 58385, - [SMALL_STATE(1281)] = 58434, - [SMALL_STATE(1282)] = 58483, - [SMALL_STATE(1283)] = 58532, - [SMALL_STATE(1284)] = 58581, - [SMALL_STATE(1285)] = 58626, - [SMALL_STATE(1286)] = 58675, - [SMALL_STATE(1287)] = 58724, - [SMALL_STATE(1288)] = 58773, - [SMALL_STATE(1289)] = 58822, - [SMALL_STATE(1290)] = 58871, - [SMALL_STATE(1291)] = 58920, - [SMALL_STATE(1292)] = 58969, - [SMALL_STATE(1293)] = 59018, - [SMALL_STATE(1294)] = 59067, - [SMALL_STATE(1295)] = 59116, - [SMALL_STATE(1296)] = 59165, - [SMALL_STATE(1297)] = 59214, - [SMALL_STATE(1298)] = 59263, - [SMALL_STATE(1299)] = 59312, - [SMALL_STATE(1300)] = 59361, - [SMALL_STATE(1301)] = 59406, - [SMALL_STATE(1302)] = 59455, - [SMALL_STATE(1303)] = 59504, - [SMALL_STATE(1304)] = 59553, - [SMALL_STATE(1305)] = 59602, - [SMALL_STATE(1306)] = 59651, - [SMALL_STATE(1307)] = 59700, - [SMALL_STATE(1308)] = 59745, - [SMALL_STATE(1309)] = 59790, - [SMALL_STATE(1310)] = 59835, - [SMALL_STATE(1311)] = 59884, - [SMALL_STATE(1312)] = 59933, - [SMALL_STATE(1313)] = 59982, - [SMALL_STATE(1314)] = 60031, - [SMALL_STATE(1315)] = 60080, - [SMALL_STATE(1316)] = 60129, - [SMALL_STATE(1317)] = 60178, - [SMALL_STATE(1318)] = 60227, - [SMALL_STATE(1319)] = 60272, - [SMALL_STATE(1320)] = 60321, - [SMALL_STATE(1321)] = 60370, - [SMALL_STATE(1322)] = 60419, - [SMALL_STATE(1323)] = 60468, - [SMALL_STATE(1324)] = 60517, - [SMALL_STATE(1325)] = 60566, - [SMALL_STATE(1326)] = 60615, - [SMALL_STATE(1327)] = 60664, - [SMALL_STATE(1328)] = 60713, - [SMALL_STATE(1329)] = 60762, - [SMALL_STATE(1330)] = 60811, - [SMALL_STATE(1331)] = 60860, - [SMALL_STATE(1332)] = 60909, - [SMALL_STATE(1333)] = 60958, - [SMALL_STATE(1334)] = 61007, - [SMALL_STATE(1335)] = 61052, - [SMALL_STATE(1336)] = 61101, - [SMALL_STATE(1337)] = 61150, - [SMALL_STATE(1338)] = 61199, - [SMALL_STATE(1339)] = 61248, - [SMALL_STATE(1340)] = 61297, - [SMALL_STATE(1341)] = 61346, - [SMALL_STATE(1342)] = 61391, - [SMALL_STATE(1343)] = 61440, - [SMALL_STATE(1344)] = 61489, - [SMALL_STATE(1345)] = 61538, - [SMALL_STATE(1346)] = 61587, - [SMALL_STATE(1347)] = 61636, - [SMALL_STATE(1348)] = 61685, - [SMALL_STATE(1349)] = 61734, - [SMALL_STATE(1350)] = 61783, - [SMALL_STATE(1351)] = 61832, - [SMALL_STATE(1352)] = 61877, - [SMALL_STATE(1353)] = 61926, - [SMALL_STATE(1354)] = 61975, - [SMALL_STATE(1355)] = 62024, - [SMALL_STATE(1356)] = 62073, - [SMALL_STATE(1357)] = 62122, - [SMALL_STATE(1358)] = 62171, - [SMALL_STATE(1359)] = 62220, - [SMALL_STATE(1360)] = 62269, - [SMALL_STATE(1361)] = 62318, - [SMALL_STATE(1362)] = 62367, - [SMALL_STATE(1363)] = 62416, - [SMALL_STATE(1364)] = 62465, - [SMALL_STATE(1365)] = 62514, - [SMALL_STATE(1366)] = 62563, - [SMALL_STATE(1367)] = 62612, - [SMALL_STATE(1368)] = 62661, - [SMALL_STATE(1369)] = 62710, - [SMALL_STATE(1370)] = 62759, - [SMALL_STATE(1371)] = 62808, - [SMALL_STATE(1372)] = 62857, - [SMALL_STATE(1373)] = 62906, - [SMALL_STATE(1374)] = 62955, - [SMALL_STATE(1375)] = 63004, - [SMALL_STATE(1376)] = 63053, - [SMALL_STATE(1377)] = 63102, - [SMALL_STATE(1378)] = 63151, - [SMALL_STATE(1379)] = 63200, - [SMALL_STATE(1380)] = 63249, - [SMALL_STATE(1381)] = 63298, - [SMALL_STATE(1382)] = 63347, - [SMALL_STATE(1383)] = 63396, - [SMALL_STATE(1384)] = 63445, - [SMALL_STATE(1385)] = 63494, - [SMALL_STATE(1386)] = 63543, - [SMALL_STATE(1387)] = 63592, - [SMALL_STATE(1388)] = 63641, - [SMALL_STATE(1389)] = 63690, - [SMALL_STATE(1390)] = 63739, - [SMALL_STATE(1391)] = 63788, - [SMALL_STATE(1392)] = 63837, - [SMALL_STATE(1393)] = 63886, - [SMALL_STATE(1394)] = 63935, - [SMALL_STATE(1395)] = 63984, - [SMALL_STATE(1396)] = 64033, - [SMALL_STATE(1397)] = 64082, - [SMALL_STATE(1398)] = 64131, - [SMALL_STATE(1399)] = 64180, - [SMALL_STATE(1400)] = 64229, - [SMALL_STATE(1401)] = 64278, - [SMALL_STATE(1402)] = 64327, - [SMALL_STATE(1403)] = 64376, - [SMALL_STATE(1404)] = 64421, - [SMALL_STATE(1405)] = 64470, - [SMALL_STATE(1406)] = 64519, - [SMALL_STATE(1407)] = 64568, - [SMALL_STATE(1408)] = 64617, - [SMALL_STATE(1409)] = 64666, - [SMALL_STATE(1410)] = 64715, - [SMALL_STATE(1411)] = 64764, - [SMALL_STATE(1412)] = 64813, - [SMALL_STATE(1413)] = 64862, - [SMALL_STATE(1414)] = 64911, - [SMALL_STATE(1415)] = 64960, - [SMALL_STATE(1416)] = 65005, - [SMALL_STATE(1417)] = 65054, - [SMALL_STATE(1418)] = 65099, - [SMALL_STATE(1419)] = 65148, - [SMALL_STATE(1420)] = 65197, - [SMALL_STATE(1421)] = 65246, - [SMALL_STATE(1422)] = 65295, - [SMALL_STATE(1423)] = 65344, - [SMALL_STATE(1424)] = 65393, - [SMALL_STATE(1425)] = 65442, - [SMALL_STATE(1426)] = 65491, - [SMALL_STATE(1427)] = 65540, - [SMALL_STATE(1428)] = 65589, - [SMALL_STATE(1429)] = 65638, - [SMALL_STATE(1430)] = 65687, - [SMALL_STATE(1431)] = 65736, - [SMALL_STATE(1432)] = 65785, - [SMALL_STATE(1433)] = 65834, - [SMALL_STATE(1434)] = 65883, - [SMALL_STATE(1435)] = 65932, - [SMALL_STATE(1436)] = 65981, - [SMALL_STATE(1437)] = 66030, - [SMALL_STATE(1438)] = 66079, - [SMALL_STATE(1439)] = 66128, - [SMALL_STATE(1440)] = 66177, - [SMALL_STATE(1441)] = 66226, - [SMALL_STATE(1442)] = 66275, - [SMALL_STATE(1443)] = 66324, - [SMALL_STATE(1444)] = 66373, - [SMALL_STATE(1445)] = 66422, - [SMALL_STATE(1446)] = 66471, - [SMALL_STATE(1447)] = 66520, - [SMALL_STATE(1448)] = 66565, - [SMALL_STATE(1449)] = 66614, - [SMALL_STATE(1450)] = 66663, - [SMALL_STATE(1451)] = 66712, - [SMALL_STATE(1452)] = 66761, - [SMALL_STATE(1453)] = 66810, - [SMALL_STATE(1454)] = 66859, - [SMALL_STATE(1455)] = 66908, - [SMALL_STATE(1456)] = 66953, - [SMALL_STATE(1457)] = 67002, - [SMALL_STATE(1458)] = 67051, - [SMALL_STATE(1459)] = 67100, - [SMALL_STATE(1460)] = 67149, - [SMALL_STATE(1461)] = 67198, - [SMALL_STATE(1462)] = 67247, - [SMALL_STATE(1463)] = 67296, - [SMALL_STATE(1464)] = 67341, - [SMALL_STATE(1465)] = 67390, - [SMALL_STATE(1466)] = 67439, - [SMALL_STATE(1467)] = 67488, - [SMALL_STATE(1468)] = 67537, - [SMALL_STATE(1469)] = 67586, - [SMALL_STATE(1470)] = 67635, - [SMALL_STATE(1471)] = 67684, - [SMALL_STATE(1472)] = 67733, - [SMALL_STATE(1473)] = 67782, - [SMALL_STATE(1474)] = 67831, - [SMALL_STATE(1475)] = 67880, - [SMALL_STATE(1476)] = 67929, - [SMALL_STATE(1477)] = 67978, - [SMALL_STATE(1478)] = 68027, - [SMALL_STATE(1479)] = 68072, - [SMALL_STATE(1480)] = 68117, - [SMALL_STATE(1481)] = 68162, - [SMALL_STATE(1482)] = 68211, - [SMALL_STATE(1483)] = 68260, - [SMALL_STATE(1484)] = 68309, - [SMALL_STATE(1485)] = 68358, - [SMALL_STATE(1486)] = 68407, - [SMALL_STATE(1487)] = 68456, - [SMALL_STATE(1488)] = 68501, - [SMALL_STATE(1489)] = 68546, - [SMALL_STATE(1490)] = 68595, - [SMALL_STATE(1491)] = 68640, - [SMALL_STATE(1492)] = 68689, - [SMALL_STATE(1493)] = 68734, - [SMALL_STATE(1494)] = 68779, - [SMALL_STATE(1495)] = 68824, - [SMALL_STATE(1496)] = 68869, - [SMALL_STATE(1497)] = 68914, - [SMALL_STATE(1498)] = 68959, - [SMALL_STATE(1499)] = 69008, - [SMALL_STATE(1500)] = 69053, - [SMALL_STATE(1501)] = 69098, - [SMALL_STATE(1502)] = 69143, - [SMALL_STATE(1503)] = 69188, - [SMALL_STATE(1504)] = 69237, - [SMALL_STATE(1505)] = 69282, - [SMALL_STATE(1506)] = 69327, - [SMALL_STATE(1507)] = 69376, - [SMALL_STATE(1508)] = 69425, - [SMALL_STATE(1509)] = 69470, - [SMALL_STATE(1510)] = 69519, - [SMALL_STATE(1511)] = 69568, - [SMALL_STATE(1512)] = 69613, - [SMALL_STATE(1513)] = 69662, - [SMALL_STATE(1514)] = 69711, - [SMALL_STATE(1515)] = 69756, - [SMALL_STATE(1516)] = 69801, - [SMALL_STATE(1517)] = 69850, - [SMALL_STATE(1518)] = 69895, - [SMALL_STATE(1519)] = 69940, - [SMALL_STATE(1520)] = 69985, - [SMALL_STATE(1521)] = 70030, - [SMALL_STATE(1522)] = 70075, - [SMALL_STATE(1523)] = 70120, - [SMALL_STATE(1524)] = 70165, - [SMALL_STATE(1525)] = 70210, - [SMALL_STATE(1526)] = 70259, - [SMALL_STATE(1527)] = 70304, - [SMALL_STATE(1528)] = 70349, - [SMALL_STATE(1529)] = 70394, - [SMALL_STATE(1530)] = 70439, - [SMALL_STATE(1531)] = 70484, - [SMALL_STATE(1532)] = 70529, - [SMALL_STATE(1533)] = 70574, - [SMALL_STATE(1534)] = 70619, - [SMALL_STATE(1535)] = 70668, - [SMALL_STATE(1536)] = 70717, - [SMALL_STATE(1537)] = 70766, - [SMALL_STATE(1538)] = 70811, - [SMALL_STATE(1539)] = 70856, - [SMALL_STATE(1540)] = 70901, - [SMALL_STATE(1541)] = 70946, - [SMALL_STATE(1542)] = 70991, - [SMALL_STATE(1543)] = 71040, - [SMALL_STATE(1544)] = 71085, - [SMALL_STATE(1545)] = 71130, - [SMALL_STATE(1546)] = 71175, - [SMALL_STATE(1547)] = 71224, - [SMALL_STATE(1548)] = 71269, - [SMALL_STATE(1549)] = 71314, - [SMALL_STATE(1550)] = 71363, - [SMALL_STATE(1551)] = 71412, - [SMALL_STATE(1552)] = 71461, - [SMALL_STATE(1553)] = 71505, - [SMALL_STATE(1554)] = 71549, - [SMALL_STATE(1555)] = 71593, - [SMALL_STATE(1556)] = 71637, - [SMALL_STATE(1557)] = 71681, - [SMALL_STATE(1558)] = 71725, - [SMALL_STATE(1559)] = 71771, - [SMALL_STATE(1560)] = 71815, - [SMALL_STATE(1561)] = 71859, - [SMALL_STATE(1562)] = 71903, - [SMALL_STATE(1563)] = 71947, - [SMALL_STATE(1564)] = 71991, - [SMALL_STATE(1565)] = 72035, - [SMALL_STATE(1566)] = 72079, - [SMALL_STATE(1567)] = 72123, - [SMALL_STATE(1568)] = 72167, - [SMALL_STATE(1569)] = 72211, - [SMALL_STATE(1570)] = 72255, - [SMALL_STATE(1571)] = 72299, - [SMALL_STATE(1572)] = 72343, - [SMALL_STATE(1573)] = 72387, - [SMALL_STATE(1574)] = 72431, - [SMALL_STATE(1575)] = 72475, - [SMALL_STATE(1576)] = 72519, - [SMALL_STATE(1577)] = 72563, - [SMALL_STATE(1578)] = 72607, - [SMALL_STATE(1579)] = 72651, - [SMALL_STATE(1580)] = 72695, - [SMALL_STATE(1581)] = 72739, - [SMALL_STATE(1582)] = 72783, - [SMALL_STATE(1583)] = 72827, - [SMALL_STATE(1584)] = 72871, - [SMALL_STATE(1585)] = 72915, - [SMALL_STATE(1586)] = 72959, - [SMALL_STATE(1587)] = 73003, - [SMALL_STATE(1588)] = 73047, - [SMALL_STATE(1589)] = 73091, - [SMALL_STATE(1590)] = 73135, - [SMALL_STATE(1591)] = 73179, - [SMALL_STATE(1592)] = 73223, - [SMALL_STATE(1593)] = 73267, - [SMALL_STATE(1594)] = 73311, - [SMALL_STATE(1595)] = 73355, - [SMALL_STATE(1596)] = 73399, - [SMALL_STATE(1597)] = 73443, - [SMALL_STATE(1598)] = 73487, - [SMALL_STATE(1599)] = 73531, - [SMALL_STATE(1600)] = 73575, - [SMALL_STATE(1601)] = 73619, - [SMALL_STATE(1602)] = 73663, - [SMALL_STATE(1603)] = 73707, - [SMALL_STATE(1604)] = 73751, - [SMALL_STATE(1605)] = 73795, - [SMALL_STATE(1606)] = 73839, - [SMALL_STATE(1607)] = 73883, - [SMALL_STATE(1608)] = 73927, - [SMALL_STATE(1609)] = 73971, - [SMALL_STATE(1610)] = 74015, - [SMALL_STATE(1611)] = 74059, - [SMALL_STATE(1612)] = 74103, - [SMALL_STATE(1613)] = 74147, - [SMALL_STATE(1614)] = 74191, - [SMALL_STATE(1615)] = 74235, - [SMALL_STATE(1616)] = 74279, - [SMALL_STATE(1617)] = 74323, - [SMALL_STATE(1618)] = 74367, - [SMALL_STATE(1619)] = 74411, - [SMALL_STATE(1620)] = 74455, - [SMALL_STATE(1621)] = 74499, - [SMALL_STATE(1622)] = 74543, - [SMALL_STATE(1623)] = 74587, - [SMALL_STATE(1624)] = 74631, - [SMALL_STATE(1625)] = 74675, - [SMALL_STATE(1626)] = 74719, - [SMALL_STATE(1627)] = 74763, - [SMALL_STATE(1628)] = 74807, - [SMALL_STATE(1629)] = 74851, - [SMALL_STATE(1630)] = 74895, - [SMALL_STATE(1631)] = 74939, - [SMALL_STATE(1632)] = 74983, - [SMALL_STATE(1633)] = 75027, - [SMALL_STATE(1634)] = 75071, - [SMALL_STATE(1635)] = 75115, - [SMALL_STATE(1636)] = 75159, - [SMALL_STATE(1637)] = 75203, - [SMALL_STATE(1638)] = 75247, - [SMALL_STATE(1639)] = 75291, - [SMALL_STATE(1640)] = 75335, - [SMALL_STATE(1641)] = 75379, - [SMALL_STATE(1642)] = 75423, - [SMALL_STATE(1643)] = 75467, - [SMALL_STATE(1644)] = 75511, - [SMALL_STATE(1645)] = 75555, - [SMALL_STATE(1646)] = 75599, - [SMALL_STATE(1647)] = 75643, - [SMALL_STATE(1648)] = 75687, - [SMALL_STATE(1649)] = 75731, - [SMALL_STATE(1650)] = 75775, - [SMALL_STATE(1651)] = 75819, - [SMALL_STATE(1652)] = 75863, - [SMALL_STATE(1653)] = 75907, - [SMALL_STATE(1654)] = 75951, - [SMALL_STATE(1655)] = 75995, - [SMALL_STATE(1656)] = 76039, - [SMALL_STATE(1657)] = 76083, - [SMALL_STATE(1658)] = 76127, - [SMALL_STATE(1659)] = 76171, - [SMALL_STATE(1660)] = 76215, - [SMALL_STATE(1661)] = 76259, - [SMALL_STATE(1662)] = 76303, - [SMALL_STATE(1663)] = 76347, - [SMALL_STATE(1664)] = 76391, - [SMALL_STATE(1665)] = 76435, - [SMALL_STATE(1666)] = 76479, - [SMALL_STATE(1667)] = 76523, - [SMALL_STATE(1668)] = 76567, - [SMALL_STATE(1669)] = 76611, - [SMALL_STATE(1670)] = 76655, - [SMALL_STATE(1671)] = 76699, - [SMALL_STATE(1672)] = 76743, - [SMALL_STATE(1673)] = 76787, - [SMALL_STATE(1674)] = 76831, - [SMALL_STATE(1675)] = 76875, - [SMALL_STATE(1676)] = 76919, - [SMALL_STATE(1677)] = 76963, - [SMALL_STATE(1678)] = 77007, - [SMALL_STATE(1679)] = 77051, - [SMALL_STATE(1680)] = 77095, - [SMALL_STATE(1681)] = 77139, - [SMALL_STATE(1682)] = 77183, - [SMALL_STATE(1683)] = 77227, - [SMALL_STATE(1684)] = 77271, - [SMALL_STATE(1685)] = 77315, - [SMALL_STATE(1686)] = 77359, - [SMALL_STATE(1687)] = 77403, - [SMALL_STATE(1688)] = 77447, - [SMALL_STATE(1689)] = 77491, - [SMALL_STATE(1690)] = 77535, - [SMALL_STATE(1691)] = 77579, - [SMALL_STATE(1692)] = 77623, - [SMALL_STATE(1693)] = 77667, - [SMALL_STATE(1694)] = 77711, - [SMALL_STATE(1695)] = 77755, - [SMALL_STATE(1696)] = 77799, - [SMALL_STATE(1697)] = 77843, - [SMALL_STATE(1698)] = 77887, - [SMALL_STATE(1699)] = 77931, - [SMALL_STATE(1700)] = 77975, - [SMALL_STATE(1701)] = 78019, - [SMALL_STATE(1702)] = 78063, - [SMALL_STATE(1703)] = 78107, - [SMALL_STATE(1704)] = 78151, - [SMALL_STATE(1705)] = 78195, - [SMALL_STATE(1706)] = 78239, - [SMALL_STATE(1707)] = 78283, - [SMALL_STATE(1708)] = 78327, - [SMALL_STATE(1709)] = 78371, - [SMALL_STATE(1710)] = 78415, - [SMALL_STATE(1711)] = 78459, - [SMALL_STATE(1712)] = 78503, - [SMALL_STATE(1713)] = 78547, - [SMALL_STATE(1714)] = 78591, - [SMALL_STATE(1715)] = 78635, - [SMALL_STATE(1716)] = 78679, - [SMALL_STATE(1717)] = 78723, - [SMALL_STATE(1718)] = 78767, - [SMALL_STATE(1719)] = 78811, - [SMALL_STATE(1720)] = 78855, - [SMALL_STATE(1721)] = 78899, - [SMALL_STATE(1722)] = 78943, - [SMALL_STATE(1723)] = 78987, - [SMALL_STATE(1724)] = 79031, - [SMALL_STATE(1725)] = 79075, - [SMALL_STATE(1726)] = 79119, - [SMALL_STATE(1727)] = 79163, - [SMALL_STATE(1728)] = 79207, - [SMALL_STATE(1729)] = 79251, - [SMALL_STATE(1730)] = 79295, - [SMALL_STATE(1731)] = 79339, - [SMALL_STATE(1732)] = 79383, - [SMALL_STATE(1733)] = 79427, - [SMALL_STATE(1734)] = 79471, - [SMALL_STATE(1735)] = 79515, - [SMALL_STATE(1736)] = 79559, - [SMALL_STATE(1737)] = 79603, - [SMALL_STATE(1738)] = 79647, - [SMALL_STATE(1739)] = 79691, - [SMALL_STATE(1740)] = 79735, - [SMALL_STATE(1741)] = 79779, - [SMALL_STATE(1742)] = 79823, - [SMALL_STATE(1743)] = 79867, - [SMALL_STATE(1744)] = 79911, - [SMALL_STATE(1745)] = 79955, - [SMALL_STATE(1746)] = 79999, - [SMALL_STATE(1747)] = 80043, - [SMALL_STATE(1748)] = 80087, - [SMALL_STATE(1749)] = 80131, - [SMALL_STATE(1750)] = 80175, - [SMALL_STATE(1751)] = 80219, - [SMALL_STATE(1752)] = 80263, - [SMALL_STATE(1753)] = 80307, - [SMALL_STATE(1754)] = 80351, - [SMALL_STATE(1755)] = 80395, - [SMALL_STATE(1756)] = 80439, - [SMALL_STATE(1757)] = 80483, - [SMALL_STATE(1758)] = 80527, - [SMALL_STATE(1759)] = 80571, - [SMALL_STATE(1760)] = 80615, - [SMALL_STATE(1761)] = 80659, - [SMALL_STATE(1762)] = 80703, - [SMALL_STATE(1763)] = 80747, - [SMALL_STATE(1764)] = 80791, - [SMALL_STATE(1765)] = 80835, - [SMALL_STATE(1766)] = 80879, - [SMALL_STATE(1767)] = 80923, - [SMALL_STATE(1768)] = 80967, - [SMALL_STATE(1769)] = 81011, - [SMALL_STATE(1770)] = 81055, - [SMALL_STATE(1771)] = 81099, - [SMALL_STATE(1772)] = 81143, - [SMALL_STATE(1773)] = 81187, - [SMALL_STATE(1774)] = 81231, - [SMALL_STATE(1775)] = 81275, - [SMALL_STATE(1776)] = 81319, - [SMALL_STATE(1777)] = 81363, - [SMALL_STATE(1778)] = 81407, - [SMALL_STATE(1779)] = 81451, - [SMALL_STATE(1780)] = 81495, - [SMALL_STATE(1781)] = 81539, - [SMALL_STATE(1782)] = 81583, - [SMALL_STATE(1783)] = 81627, - [SMALL_STATE(1784)] = 81671, - [SMALL_STATE(1785)] = 81715, - [SMALL_STATE(1786)] = 81759, - [SMALL_STATE(1787)] = 81803, - [SMALL_STATE(1788)] = 81847, - [SMALL_STATE(1789)] = 81891, - [SMALL_STATE(1790)] = 81935, - [SMALL_STATE(1791)] = 81979, - [SMALL_STATE(1792)] = 82023, - [SMALL_STATE(1793)] = 82067, - [SMALL_STATE(1794)] = 82111, - [SMALL_STATE(1795)] = 82155, - [SMALL_STATE(1796)] = 82199, - [SMALL_STATE(1797)] = 82243, - [SMALL_STATE(1798)] = 82287, - [SMALL_STATE(1799)] = 82331, - [SMALL_STATE(1800)] = 82375, - [SMALL_STATE(1801)] = 82419, - [SMALL_STATE(1802)] = 82463, - [SMALL_STATE(1803)] = 82507, - [SMALL_STATE(1804)] = 82551, - [SMALL_STATE(1805)] = 82595, - [SMALL_STATE(1806)] = 82639, - [SMALL_STATE(1807)] = 82683, - [SMALL_STATE(1808)] = 82727, - [SMALL_STATE(1809)] = 82771, - [SMALL_STATE(1810)] = 82815, - [SMALL_STATE(1811)] = 82859, - [SMALL_STATE(1812)] = 82903, - [SMALL_STATE(1813)] = 82947, - [SMALL_STATE(1814)] = 82991, - [SMALL_STATE(1815)] = 83035, - [SMALL_STATE(1816)] = 83079, - [SMALL_STATE(1817)] = 83123, - [SMALL_STATE(1818)] = 83167, - [SMALL_STATE(1819)] = 83211, - [SMALL_STATE(1820)] = 83255, - [SMALL_STATE(1821)] = 83299, - [SMALL_STATE(1822)] = 83343, - [SMALL_STATE(1823)] = 83387, - [SMALL_STATE(1824)] = 83431, - [SMALL_STATE(1825)] = 83475, - [SMALL_STATE(1826)] = 83519, - [SMALL_STATE(1827)] = 83563, - [SMALL_STATE(1828)] = 83607, - [SMALL_STATE(1829)] = 83651, - [SMALL_STATE(1830)] = 83695, - [SMALL_STATE(1831)] = 83739, - [SMALL_STATE(1832)] = 83783, - [SMALL_STATE(1833)] = 83827, - [SMALL_STATE(1834)] = 83871, - [SMALL_STATE(1835)] = 83915, - [SMALL_STATE(1836)] = 83959, - [SMALL_STATE(1837)] = 84003, - [SMALL_STATE(1838)] = 84047, - [SMALL_STATE(1839)] = 84091, - [SMALL_STATE(1840)] = 84135, - [SMALL_STATE(1841)] = 84179, - [SMALL_STATE(1842)] = 84223, - [SMALL_STATE(1843)] = 84267, - [SMALL_STATE(1844)] = 84311, - [SMALL_STATE(1845)] = 84355, - [SMALL_STATE(1846)] = 84399, - [SMALL_STATE(1847)] = 84443, - [SMALL_STATE(1848)] = 84487, - [SMALL_STATE(1849)] = 84531, - [SMALL_STATE(1850)] = 84575, - [SMALL_STATE(1851)] = 84619, - [SMALL_STATE(1852)] = 84663, - [SMALL_STATE(1853)] = 84707, - [SMALL_STATE(1854)] = 84751, - [SMALL_STATE(1855)] = 84795, - [SMALL_STATE(1856)] = 84839, - [SMALL_STATE(1857)] = 84883, - [SMALL_STATE(1858)] = 84927, - [SMALL_STATE(1859)] = 84971, - [SMALL_STATE(1860)] = 85015, - [SMALL_STATE(1861)] = 85059, - [SMALL_STATE(1862)] = 85103, - [SMALL_STATE(1863)] = 85147, - [SMALL_STATE(1864)] = 85191, - [SMALL_STATE(1865)] = 85235, - [SMALL_STATE(1866)] = 85279, - [SMALL_STATE(1867)] = 85323, - [SMALL_STATE(1868)] = 85367, - [SMALL_STATE(1869)] = 85411, - [SMALL_STATE(1870)] = 85455, - [SMALL_STATE(1871)] = 85499, - [SMALL_STATE(1872)] = 85543, - [SMALL_STATE(1873)] = 85587, - [SMALL_STATE(1874)] = 85631, - [SMALL_STATE(1875)] = 85675, - [SMALL_STATE(1876)] = 85719, - [SMALL_STATE(1877)] = 85763, - [SMALL_STATE(1878)] = 85807, - [SMALL_STATE(1879)] = 85851, - [SMALL_STATE(1880)] = 85895, - [SMALL_STATE(1881)] = 85939, - [SMALL_STATE(1882)] = 85983, - [SMALL_STATE(1883)] = 86027, - [SMALL_STATE(1884)] = 86071, - [SMALL_STATE(1885)] = 86115, - [SMALL_STATE(1886)] = 86159, - [SMALL_STATE(1887)] = 86203, - [SMALL_STATE(1888)] = 86247, - [SMALL_STATE(1889)] = 86291, - [SMALL_STATE(1890)] = 86335, - [SMALL_STATE(1891)] = 86379, - [SMALL_STATE(1892)] = 86423, - [SMALL_STATE(1893)] = 86467, - [SMALL_STATE(1894)] = 86511, - [SMALL_STATE(1895)] = 86555, - [SMALL_STATE(1896)] = 86599, - [SMALL_STATE(1897)] = 86643, - [SMALL_STATE(1898)] = 86687, - [SMALL_STATE(1899)] = 86731, - [SMALL_STATE(1900)] = 86775, - [SMALL_STATE(1901)] = 86819, - [SMALL_STATE(1902)] = 86863, - [SMALL_STATE(1903)] = 86907, - [SMALL_STATE(1904)] = 86951, - [SMALL_STATE(1905)] = 86995, - [SMALL_STATE(1906)] = 87039, - [SMALL_STATE(1907)] = 87083, - [SMALL_STATE(1908)] = 87127, - [SMALL_STATE(1909)] = 87171, - [SMALL_STATE(1910)] = 87215, - [SMALL_STATE(1911)] = 87259, - [SMALL_STATE(1912)] = 87303, - [SMALL_STATE(1913)] = 87347, - [SMALL_STATE(1914)] = 87391, - [SMALL_STATE(1915)] = 87435, - [SMALL_STATE(1916)] = 87479, - [SMALL_STATE(1917)] = 87523, - [SMALL_STATE(1918)] = 87567, - [SMALL_STATE(1919)] = 87611, - [SMALL_STATE(1920)] = 87655, - [SMALL_STATE(1921)] = 87699, - [SMALL_STATE(1922)] = 87743, - [SMALL_STATE(1923)] = 87787, - [SMALL_STATE(1924)] = 87831, - [SMALL_STATE(1925)] = 87875, - [SMALL_STATE(1926)] = 87919, - [SMALL_STATE(1927)] = 87963, - [SMALL_STATE(1928)] = 88007, - [SMALL_STATE(1929)] = 88051, - [SMALL_STATE(1930)] = 88095, - [SMALL_STATE(1931)] = 88139, - [SMALL_STATE(1932)] = 88183, - [SMALL_STATE(1933)] = 88227, - [SMALL_STATE(1934)] = 88271, - [SMALL_STATE(1935)] = 88315, - [SMALL_STATE(1936)] = 88359, - [SMALL_STATE(1937)] = 88403, - [SMALL_STATE(1938)] = 88447, - [SMALL_STATE(1939)] = 88491, - [SMALL_STATE(1940)] = 88535, - [SMALL_STATE(1941)] = 88579, - [SMALL_STATE(1942)] = 88623, - [SMALL_STATE(1943)] = 88667, - [SMALL_STATE(1944)] = 88711, - [SMALL_STATE(1945)] = 88755, - [SMALL_STATE(1946)] = 88799, - [SMALL_STATE(1947)] = 88843, - [SMALL_STATE(1948)] = 88887, - [SMALL_STATE(1949)] = 88931, - [SMALL_STATE(1950)] = 88975, - [SMALL_STATE(1951)] = 89019, - [SMALL_STATE(1952)] = 89063, - [SMALL_STATE(1953)] = 89107, - [SMALL_STATE(1954)] = 89151, - [SMALL_STATE(1955)] = 89195, - [SMALL_STATE(1956)] = 89239, - [SMALL_STATE(1957)] = 89283, - [SMALL_STATE(1958)] = 89327, - [SMALL_STATE(1959)] = 89371, - [SMALL_STATE(1960)] = 89415, - [SMALL_STATE(1961)] = 89459, - [SMALL_STATE(1962)] = 89503, - [SMALL_STATE(1963)] = 89547, - [SMALL_STATE(1964)] = 89591, - [SMALL_STATE(1965)] = 89635, - [SMALL_STATE(1966)] = 89679, - [SMALL_STATE(1967)] = 89723, - [SMALL_STATE(1968)] = 89767, - [SMALL_STATE(1969)] = 89811, - [SMALL_STATE(1970)] = 89855, - [SMALL_STATE(1971)] = 89899, - [SMALL_STATE(1972)] = 89943, - [SMALL_STATE(1973)] = 89987, - [SMALL_STATE(1974)] = 90031, - [SMALL_STATE(1975)] = 90075, - [SMALL_STATE(1976)] = 90119, - [SMALL_STATE(1977)] = 90163, - [SMALL_STATE(1978)] = 90207, - [SMALL_STATE(1979)] = 90251, - [SMALL_STATE(1980)] = 90295, - [SMALL_STATE(1981)] = 90339, - [SMALL_STATE(1982)] = 90383, - [SMALL_STATE(1983)] = 90427, - [SMALL_STATE(1984)] = 90471, - [SMALL_STATE(1985)] = 90515, - [SMALL_STATE(1986)] = 90559, - [SMALL_STATE(1987)] = 90603, - [SMALL_STATE(1988)] = 90647, - [SMALL_STATE(1989)] = 90691, - [SMALL_STATE(1990)] = 90735, - [SMALL_STATE(1991)] = 90779, - [SMALL_STATE(1992)] = 90823, - [SMALL_STATE(1993)] = 90867, - [SMALL_STATE(1994)] = 90911, - [SMALL_STATE(1995)] = 90955, - [SMALL_STATE(1996)] = 90999, - [SMALL_STATE(1997)] = 91043, - [SMALL_STATE(1998)] = 91087, - [SMALL_STATE(1999)] = 91131, - [SMALL_STATE(2000)] = 91175, - [SMALL_STATE(2001)] = 91219, - [SMALL_STATE(2002)] = 91263, - [SMALL_STATE(2003)] = 91307, - [SMALL_STATE(2004)] = 91351, - [SMALL_STATE(2005)] = 91395, - [SMALL_STATE(2006)] = 91439, - [SMALL_STATE(2007)] = 91483, - [SMALL_STATE(2008)] = 91527, - [SMALL_STATE(2009)] = 91571, - [SMALL_STATE(2010)] = 91615, - [SMALL_STATE(2011)] = 91659, - [SMALL_STATE(2012)] = 91703, - [SMALL_STATE(2013)] = 91747, - [SMALL_STATE(2014)] = 91791, - [SMALL_STATE(2015)] = 91835, - [SMALL_STATE(2016)] = 91879, - [SMALL_STATE(2017)] = 91923, - [SMALL_STATE(2018)] = 91967, - [SMALL_STATE(2019)] = 92011, - [SMALL_STATE(2020)] = 92055, - [SMALL_STATE(2021)] = 92099, - [SMALL_STATE(2022)] = 92143, - [SMALL_STATE(2023)] = 92187, - [SMALL_STATE(2024)] = 92231, - [SMALL_STATE(2025)] = 92275, - [SMALL_STATE(2026)] = 92319, - [SMALL_STATE(2027)] = 92363, - [SMALL_STATE(2028)] = 92407, - [SMALL_STATE(2029)] = 92451, - [SMALL_STATE(2030)] = 92495, - [SMALL_STATE(2031)] = 92539, - [SMALL_STATE(2032)] = 92583, - [SMALL_STATE(2033)] = 92627, - [SMALL_STATE(2034)] = 92671, - [SMALL_STATE(2035)] = 92715, - [SMALL_STATE(2036)] = 92759, - [SMALL_STATE(2037)] = 92803, - [SMALL_STATE(2038)] = 92847, - [SMALL_STATE(2039)] = 92891, - [SMALL_STATE(2040)] = 92935, - [SMALL_STATE(2041)] = 92979, - [SMALL_STATE(2042)] = 93023, - [SMALL_STATE(2043)] = 93067, - [SMALL_STATE(2044)] = 93111, - [SMALL_STATE(2045)] = 93155, - [SMALL_STATE(2046)] = 93199, - [SMALL_STATE(2047)] = 93243, - [SMALL_STATE(2048)] = 93287, - [SMALL_STATE(2049)] = 93331, - [SMALL_STATE(2050)] = 93375, - [SMALL_STATE(2051)] = 93419, - [SMALL_STATE(2052)] = 93463, - [SMALL_STATE(2053)] = 93507, - [SMALL_STATE(2054)] = 93551, - [SMALL_STATE(2055)] = 93595, - [SMALL_STATE(2056)] = 93639, - [SMALL_STATE(2057)] = 93683, - [SMALL_STATE(2058)] = 93727, - [SMALL_STATE(2059)] = 93771, - [SMALL_STATE(2060)] = 93815, - [SMALL_STATE(2061)] = 93859, - [SMALL_STATE(2062)] = 93903, - [SMALL_STATE(2063)] = 93947, - [SMALL_STATE(2064)] = 93991, - [SMALL_STATE(2065)] = 94035, - [SMALL_STATE(2066)] = 94079, - [SMALL_STATE(2067)] = 94123, - [SMALL_STATE(2068)] = 94167, - [SMALL_STATE(2069)] = 94211, - [SMALL_STATE(2070)] = 94255, - [SMALL_STATE(2071)] = 94299, - [SMALL_STATE(2072)] = 94343, - [SMALL_STATE(2073)] = 94387, - [SMALL_STATE(2074)] = 94431, - [SMALL_STATE(2075)] = 94475, - [SMALL_STATE(2076)] = 94519, - [SMALL_STATE(2077)] = 94563, - [SMALL_STATE(2078)] = 94607, - [SMALL_STATE(2079)] = 94651, - [SMALL_STATE(2080)] = 94695, - [SMALL_STATE(2081)] = 94739, - [SMALL_STATE(2082)] = 94783, - [SMALL_STATE(2083)] = 94827, - [SMALL_STATE(2084)] = 94871, - [SMALL_STATE(2085)] = 94915, - [SMALL_STATE(2086)] = 94959, - [SMALL_STATE(2087)] = 95003, - [SMALL_STATE(2088)] = 95047, - [SMALL_STATE(2089)] = 95091, - [SMALL_STATE(2090)] = 95135, - [SMALL_STATE(2091)] = 95179, - [SMALL_STATE(2092)] = 95223, - [SMALL_STATE(2093)] = 95267, - [SMALL_STATE(2094)] = 95311, - [SMALL_STATE(2095)] = 95355, - [SMALL_STATE(2096)] = 95399, - [SMALL_STATE(2097)] = 95443, - [SMALL_STATE(2098)] = 95487, - [SMALL_STATE(2099)] = 95531, - [SMALL_STATE(2100)] = 95575, - [SMALL_STATE(2101)] = 95619, - [SMALL_STATE(2102)] = 95663, - [SMALL_STATE(2103)] = 95707, - [SMALL_STATE(2104)] = 95751, - [SMALL_STATE(2105)] = 95795, - [SMALL_STATE(2106)] = 95839, - [SMALL_STATE(2107)] = 95883, - [SMALL_STATE(2108)] = 95927, - [SMALL_STATE(2109)] = 95971, - [SMALL_STATE(2110)] = 96015, - [SMALL_STATE(2111)] = 96059, - [SMALL_STATE(2112)] = 96103, - [SMALL_STATE(2113)] = 96147, - [SMALL_STATE(2114)] = 96191, - [SMALL_STATE(2115)] = 96235, - [SMALL_STATE(2116)] = 96279, - [SMALL_STATE(2117)] = 96323, - [SMALL_STATE(2118)] = 96367, - [SMALL_STATE(2119)] = 96411, - [SMALL_STATE(2120)] = 96455, - [SMALL_STATE(2121)] = 96499, - [SMALL_STATE(2122)] = 96547, - [SMALL_STATE(2123)] = 96595, - [SMALL_STATE(2124)] = 96643, - [SMALL_STATE(2125)] = 96691, - [SMALL_STATE(2126)] = 96739, - [SMALL_STATE(2127)] = 96787, - [SMALL_STATE(2128)] = 96835, - [SMALL_STATE(2129)] = 96883, - [SMALL_STATE(2130)] = 96931, - [SMALL_STATE(2131)] = 96979, - [SMALL_STATE(2132)] = 97027, - [SMALL_STATE(2133)] = 97075, - [SMALL_STATE(2134)] = 97123, - [SMALL_STATE(2135)] = 97171, - [SMALL_STATE(2136)] = 97219, - [SMALL_STATE(2137)] = 97267, - [SMALL_STATE(2138)] = 97315, - [SMALL_STATE(2139)] = 97363, - [SMALL_STATE(2140)] = 97411, - [SMALL_STATE(2141)] = 97459, - [SMALL_STATE(2142)] = 97507, - [SMALL_STATE(2143)] = 97555, - [SMALL_STATE(2144)] = 97603, - [SMALL_STATE(2145)] = 97651, - [SMALL_STATE(2146)] = 97699, - [SMALL_STATE(2147)] = 97743, - [SMALL_STATE(2148)] = 97787, - [SMALL_STATE(2149)] = 97831, - [SMALL_STATE(2150)] = 97875, - [SMALL_STATE(2151)] = 97919, - [SMALL_STATE(2152)] = 97963, - [SMALL_STATE(2153)] = 98007, - [SMALL_STATE(2154)] = 98051, - [SMALL_STATE(2155)] = 98095, - [SMALL_STATE(2156)] = 98139, - [SMALL_STATE(2157)] = 98183, - [SMALL_STATE(2158)] = 98227, - [SMALL_STATE(2159)] = 98271, - [SMALL_STATE(2160)] = 98315, - [SMALL_STATE(2161)] = 98359, - [SMALL_STATE(2162)] = 98403, - [SMALL_STATE(2163)] = 98447, - [SMALL_STATE(2164)] = 98491, - [SMALL_STATE(2165)] = 98535, - [SMALL_STATE(2166)] = 98579, - [SMALL_STATE(2167)] = 98623, - [SMALL_STATE(2168)] = 98667, - [SMALL_STATE(2169)] = 98711, - [SMALL_STATE(2170)] = 98755, - [SMALL_STATE(2171)] = 98799, - [SMALL_STATE(2172)] = 98843, - [SMALL_STATE(2173)] = 98887, - [SMALL_STATE(2174)] = 98931, - [SMALL_STATE(2175)] = 98975, - [SMALL_STATE(2176)] = 99019, - [SMALL_STATE(2177)] = 99063, - [SMALL_STATE(2178)] = 99107, - [SMALL_STATE(2179)] = 99151, - [SMALL_STATE(2180)] = 99195, - [SMALL_STATE(2181)] = 99239, - [SMALL_STATE(2182)] = 99283, - [SMALL_STATE(2183)] = 99327, - [SMALL_STATE(2184)] = 99371, - [SMALL_STATE(2185)] = 99415, - [SMALL_STATE(2186)] = 99459, - [SMALL_STATE(2187)] = 99503, - [SMALL_STATE(2188)] = 99547, - [SMALL_STATE(2189)] = 99591, - [SMALL_STATE(2190)] = 99635, - [SMALL_STATE(2191)] = 99679, - [SMALL_STATE(2192)] = 99723, - [SMALL_STATE(2193)] = 99767, - [SMALL_STATE(2194)] = 99811, - [SMALL_STATE(2195)] = 99855, - [SMALL_STATE(2196)] = 99899, - [SMALL_STATE(2197)] = 99943, - [SMALL_STATE(2198)] = 99987, - [SMALL_STATE(2199)] = 100031, - [SMALL_STATE(2200)] = 100075, - [SMALL_STATE(2201)] = 100119, - [SMALL_STATE(2202)] = 100163, - [SMALL_STATE(2203)] = 100207, - [SMALL_STATE(2204)] = 100251, - [SMALL_STATE(2205)] = 100295, - [SMALL_STATE(2206)] = 100339, - [SMALL_STATE(2207)] = 100387, - [SMALL_STATE(2208)] = 100431, - [SMALL_STATE(2209)] = 100475, - [SMALL_STATE(2210)] = 100519, - [SMALL_STATE(2211)] = 100563, - [SMALL_STATE(2212)] = 100607, - [SMALL_STATE(2213)] = 100651, - [SMALL_STATE(2214)] = 100695, - [SMALL_STATE(2215)] = 100739, - [SMALL_STATE(2216)] = 100783, - [SMALL_STATE(2217)] = 100827, - [SMALL_STATE(2218)] = 100871, - [SMALL_STATE(2219)] = 100915, - [SMALL_STATE(2220)] = 100959, - [SMALL_STATE(2221)] = 101003, - [SMALL_STATE(2222)] = 101047, - [SMALL_STATE(2223)] = 101091, - [SMALL_STATE(2224)] = 101135, - [SMALL_STATE(2225)] = 101179, - [SMALL_STATE(2226)] = 101223, - [SMALL_STATE(2227)] = 101267, - [SMALL_STATE(2228)] = 101311, - [SMALL_STATE(2229)] = 101355, - [SMALL_STATE(2230)] = 101399, - [SMALL_STATE(2231)] = 101443, - [SMALL_STATE(2232)] = 101487, - [SMALL_STATE(2233)] = 101531, - [SMALL_STATE(2234)] = 101575, - [SMALL_STATE(2235)] = 101619, - [SMALL_STATE(2236)] = 101663, - [SMALL_STATE(2237)] = 101707, - [SMALL_STATE(2238)] = 101751, - [SMALL_STATE(2239)] = 101795, - [SMALL_STATE(2240)] = 101839, - [SMALL_STATE(2241)] = 101883, - [SMALL_STATE(2242)] = 101927, - [SMALL_STATE(2243)] = 101971, - [SMALL_STATE(2244)] = 102015, - [SMALL_STATE(2245)] = 102059, - [SMALL_STATE(2246)] = 102103, - [SMALL_STATE(2247)] = 102147, - [SMALL_STATE(2248)] = 102191, - [SMALL_STATE(2249)] = 102235, - [SMALL_STATE(2250)] = 102279, - [SMALL_STATE(2251)] = 102323, - [SMALL_STATE(2252)] = 102367, - [SMALL_STATE(2253)] = 102411, - [SMALL_STATE(2254)] = 102455, - [SMALL_STATE(2255)] = 102499, - [SMALL_STATE(2256)] = 102543, - [SMALL_STATE(2257)] = 102587, - [SMALL_STATE(2258)] = 102631, - [SMALL_STATE(2259)] = 102675, - [SMALL_STATE(2260)] = 102719, - [SMALL_STATE(2261)] = 102763, - [SMALL_STATE(2262)] = 102807, - [SMALL_STATE(2263)] = 102851, - [SMALL_STATE(2264)] = 102895, - [SMALL_STATE(2265)] = 102939, - [SMALL_STATE(2266)] = 102983, - [SMALL_STATE(2267)] = 103027, - [SMALL_STATE(2268)] = 103071, - [SMALL_STATE(2269)] = 103115, - [SMALL_STATE(2270)] = 103159, - [SMALL_STATE(2271)] = 103203, - [SMALL_STATE(2272)] = 103247, - [SMALL_STATE(2273)] = 103291, - [SMALL_STATE(2274)] = 103335, - [SMALL_STATE(2275)] = 103379, - [SMALL_STATE(2276)] = 103423, - [SMALL_STATE(2277)] = 103467, - [SMALL_STATE(2278)] = 103511, - [SMALL_STATE(2279)] = 103555, - [SMALL_STATE(2280)] = 103599, - [SMALL_STATE(2281)] = 103643, - [SMALL_STATE(2282)] = 103687, - [SMALL_STATE(2283)] = 103731, - [SMALL_STATE(2284)] = 103775, - [SMALL_STATE(2285)] = 103819, - [SMALL_STATE(2286)] = 103863, - [SMALL_STATE(2287)] = 103907, - [SMALL_STATE(2288)] = 103951, - [SMALL_STATE(2289)] = 103995, - [SMALL_STATE(2290)] = 104039, - [SMALL_STATE(2291)] = 104083, - [SMALL_STATE(2292)] = 104127, - [SMALL_STATE(2293)] = 104171, - [SMALL_STATE(2294)] = 104215, - [SMALL_STATE(2295)] = 104259, - [SMALL_STATE(2296)] = 104303, - [SMALL_STATE(2297)] = 104347, - [SMALL_STATE(2298)] = 104391, - [SMALL_STATE(2299)] = 104435, - [SMALL_STATE(2300)] = 104479, - [SMALL_STATE(2301)] = 104523, - [SMALL_STATE(2302)] = 104567, - [SMALL_STATE(2303)] = 104611, - [SMALL_STATE(2304)] = 104655, - [SMALL_STATE(2305)] = 104699, - [SMALL_STATE(2306)] = 104743, - [SMALL_STATE(2307)] = 104787, - [SMALL_STATE(2308)] = 104831, - [SMALL_STATE(2309)] = 104875, - [SMALL_STATE(2310)] = 104919, - [SMALL_STATE(2311)] = 104963, - [SMALL_STATE(2312)] = 105007, - [SMALL_STATE(2313)] = 105051, - [SMALL_STATE(2314)] = 105095, - [SMALL_STATE(2315)] = 105139, - [SMALL_STATE(2316)] = 105183, - [SMALL_STATE(2317)] = 105227, - [SMALL_STATE(2318)] = 105271, - [SMALL_STATE(2319)] = 105315, - [SMALL_STATE(2320)] = 105359, - [SMALL_STATE(2321)] = 105403, - [SMALL_STATE(2322)] = 105447, - [SMALL_STATE(2323)] = 105491, - [SMALL_STATE(2324)] = 105535, - [SMALL_STATE(2325)] = 105579, - [SMALL_STATE(2326)] = 105623, - [SMALL_STATE(2327)] = 105667, - [SMALL_STATE(2328)] = 105711, - [SMALL_STATE(2329)] = 105755, - [SMALL_STATE(2330)] = 105799, - [SMALL_STATE(2331)] = 105843, - [SMALL_STATE(2332)] = 105887, - [SMALL_STATE(2333)] = 105931, - [SMALL_STATE(2334)] = 105975, - [SMALL_STATE(2335)] = 106019, - [SMALL_STATE(2336)] = 106063, - [SMALL_STATE(2337)] = 106107, - [SMALL_STATE(2338)] = 106151, - [SMALL_STATE(2339)] = 106195, - [SMALL_STATE(2340)] = 106239, - [SMALL_STATE(2341)] = 106283, - [SMALL_STATE(2342)] = 106327, - [SMALL_STATE(2343)] = 106371, - [SMALL_STATE(2344)] = 106415, - [SMALL_STATE(2345)] = 106459, - [SMALL_STATE(2346)] = 106503, - [SMALL_STATE(2347)] = 106547, - [SMALL_STATE(2348)] = 106591, - [SMALL_STATE(2349)] = 106635, - [SMALL_STATE(2350)] = 106679, - [SMALL_STATE(2351)] = 106723, - [SMALL_STATE(2352)] = 106767, - [SMALL_STATE(2353)] = 106811, - [SMALL_STATE(2354)] = 106855, - [SMALL_STATE(2355)] = 106899, - [SMALL_STATE(2356)] = 106943, - [SMALL_STATE(2357)] = 106987, - [SMALL_STATE(2358)] = 107031, - [SMALL_STATE(2359)] = 107075, - [SMALL_STATE(2360)] = 107119, - [SMALL_STATE(2361)] = 107163, - [SMALL_STATE(2362)] = 107207, - [SMALL_STATE(2363)] = 107251, - [SMALL_STATE(2364)] = 107295, - [SMALL_STATE(2365)] = 107339, - [SMALL_STATE(2366)] = 107383, - [SMALL_STATE(2367)] = 107427, - [SMALL_STATE(2368)] = 107471, - [SMALL_STATE(2369)] = 107515, - [SMALL_STATE(2370)] = 107559, - [SMALL_STATE(2371)] = 107603, - [SMALL_STATE(2372)] = 107647, - [SMALL_STATE(2373)] = 107691, - [SMALL_STATE(2374)] = 107735, - [SMALL_STATE(2375)] = 107779, - [SMALL_STATE(2376)] = 107823, - [SMALL_STATE(2377)] = 107867, - [SMALL_STATE(2378)] = 107911, - [SMALL_STATE(2379)] = 107955, - [SMALL_STATE(2380)] = 107999, - [SMALL_STATE(2381)] = 108043, - [SMALL_STATE(2382)] = 108087, - [SMALL_STATE(2383)] = 108131, - [SMALL_STATE(2384)] = 108175, - [SMALL_STATE(2385)] = 108219, - [SMALL_STATE(2386)] = 108263, - [SMALL_STATE(2387)] = 108307, - [SMALL_STATE(2388)] = 108351, - [SMALL_STATE(2389)] = 108395, - [SMALL_STATE(2390)] = 108439, - [SMALL_STATE(2391)] = 108483, - [SMALL_STATE(2392)] = 108527, - [SMALL_STATE(2393)] = 108571, - [SMALL_STATE(2394)] = 108615, - [SMALL_STATE(2395)] = 108659, - [SMALL_STATE(2396)] = 108703, - [SMALL_STATE(2397)] = 108747, - [SMALL_STATE(2398)] = 108791, - [SMALL_STATE(2399)] = 108835, - [SMALL_STATE(2400)] = 108879, - [SMALL_STATE(2401)] = 108923, - [SMALL_STATE(2402)] = 108967, - [SMALL_STATE(2403)] = 109011, - [SMALL_STATE(2404)] = 109055, - [SMALL_STATE(2405)] = 109099, - [SMALL_STATE(2406)] = 109143, - [SMALL_STATE(2407)] = 109187, - [SMALL_STATE(2408)] = 109231, - [SMALL_STATE(2409)] = 109275, - [SMALL_STATE(2410)] = 109319, - [SMALL_STATE(2411)] = 109363, - [SMALL_STATE(2412)] = 109407, - [SMALL_STATE(2413)] = 109451, - [SMALL_STATE(2414)] = 109495, - [SMALL_STATE(2415)] = 109539, - [SMALL_STATE(2416)] = 109583, - [SMALL_STATE(2417)] = 109627, - [SMALL_STATE(2418)] = 109671, - [SMALL_STATE(2419)] = 109715, - [SMALL_STATE(2420)] = 109758, - [SMALL_STATE(2421)] = 109801, - [SMALL_STATE(2422)] = 109844, - [SMALL_STATE(2423)] = 109887, - [SMALL_STATE(2424)] = 109930, - [SMALL_STATE(2425)] = 109973, - [SMALL_STATE(2426)] = 110016, - [SMALL_STATE(2427)] = 110059, - [SMALL_STATE(2428)] = 110102, - [SMALL_STATE(2429)] = 110145, - [SMALL_STATE(2430)] = 110188, - [SMALL_STATE(2431)] = 110231, - [SMALL_STATE(2432)] = 110274, - [SMALL_STATE(2433)] = 110317, - [SMALL_STATE(2434)] = 110360, - [SMALL_STATE(2435)] = 110403, - [SMALL_STATE(2436)] = 110446, - [SMALL_STATE(2437)] = 110489, - [SMALL_STATE(2438)] = 110532, - [SMALL_STATE(2439)] = 110575, - [SMALL_STATE(2440)] = 110618, - [SMALL_STATE(2441)] = 110661, - [SMALL_STATE(2442)] = 110704, - [SMALL_STATE(2443)] = 110747, - [SMALL_STATE(2444)] = 110790, - [SMALL_STATE(2445)] = 110833, - [SMALL_STATE(2446)] = 110876, - [SMALL_STATE(2447)] = 110919, - [SMALL_STATE(2448)] = 110962, - [SMALL_STATE(2449)] = 111005, - [SMALL_STATE(2450)] = 111048, - [SMALL_STATE(2451)] = 111091, - [SMALL_STATE(2452)] = 111134, - [SMALL_STATE(2453)] = 111177, - [SMALL_STATE(2454)] = 111220, - [SMALL_STATE(2455)] = 111263, - [SMALL_STATE(2456)] = 111306, - [SMALL_STATE(2457)] = 111349, - [SMALL_STATE(2458)] = 111392, - [SMALL_STATE(2459)] = 111435, - [SMALL_STATE(2460)] = 111480, - [SMALL_STATE(2461)] = 111523, - [SMALL_STATE(2462)] = 111566, - [SMALL_STATE(2463)] = 111609, - [SMALL_STATE(2464)] = 111652, - [SMALL_STATE(2465)] = 111695, - [SMALL_STATE(2466)] = 111738, - [SMALL_STATE(2467)] = 111781, - [SMALL_STATE(2468)] = 111824, - [SMALL_STATE(2469)] = 111867, - [SMALL_STATE(2470)] = 111910, - [SMALL_STATE(2471)] = 111953, - [SMALL_STATE(2472)] = 111996, - [SMALL_STATE(2473)] = 112039, - [SMALL_STATE(2474)] = 112082, - [SMALL_STATE(2475)] = 112125, - [SMALL_STATE(2476)] = 112168, - [SMALL_STATE(2477)] = 112211, - [SMALL_STATE(2478)] = 112254, - [SMALL_STATE(2479)] = 112301, - [SMALL_STATE(2480)] = 112344, - [SMALL_STATE(2481)] = 112387, - [SMALL_STATE(2482)] = 112430, - [SMALL_STATE(2483)] = 112473, - [SMALL_STATE(2484)] = 112516, - [SMALL_STATE(2485)] = 112559, - [SMALL_STATE(2486)] = 112602, - [SMALL_STATE(2487)] = 112645, - [SMALL_STATE(2488)] = 112688, - [SMALL_STATE(2489)] = 112731, - [SMALL_STATE(2490)] = 112774, - [SMALL_STATE(2491)] = 112817, - [SMALL_STATE(2492)] = 112860, - [SMALL_STATE(2493)] = 112903, - [SMALL_STATE(2494)] = 112946, - [SMALL_STATE(2495)] = 112989, - [SMALL_STATE(2496)] = 113032, - [SMALL_STATE(2497)] = 113075, - [SMALL_STATE(2498)] = 113117, - [SMALL_STATE(2499)] = 113161, - [SMALL_STATE(2500)] = 113203, - [SMALL_STATE(2501)] = 113255, - [SMALL_STATE(2502)] = 113307, - [SMALL_STATE(2503)] = 113359, - [SMALL_STATE(2504)] = 113411, - [SMALL_STATE(2505)] = 113463, - [SMALL_STATE(2506)] = 113512, - [SMALL_STATE(2507)] = 113561, - [SMALL_STATE(2508)] = 113610, - [SMALL_STATE(2509)] = 113659, - [SMALL_STATE(2510)] = 113708, - [SMALL_STATE(2511)] = 113757, - [SMALL_STATE(2512)] = 113802, - [SMALL_STATE(2513)] = 113851, - [SMALL_STATE(2514)] = 113900, - [SMALL_STATE(2515)] = 113949, - [SMALL_STATE(2516)] = 113998, - [SMALL_STATE(2517)] = 114047, - [SMALL_STATE(2518)] = 114096, - [SMALL_STATE(2519)] = 114141, - [SMALL_STATE(2520)] = 114190, - [SMALL_STATE(2521)] = 114239, - [SMALL_STATE(2522)] = 114288, - [SMALL_STATE(2523)] = 114337, - [SMALL_STATE(2524)] = 114386, - [SMALL_STATE(2525)] = 114430, - [SMALL_STATE(2526)] = 114474, - [SMALL_STATE(2527)] = 114518, - [SMALL_STATE(2528)] = 114562, - [SMALL_STATE(2529)] = 114606, - [SMALL_STATE(2530)] = 114650, - [SMALL_STATE(2531)] = 114694, - [SMALL_STATE(2532)] = 114738, - [SMALL_STATE(2533)] = 114782, - [SMALL_STATE(2534)] = 114826, - [SMALL_STATE(2535)] = 114870, - [SMALL_STATE(2536)] = 114914, - [SMALL_STATE(2537)] = 114958, - [SMALL_STATE(2538)] = 115002, - [SMALL_STATE(2539)] = 115046, - [SMALL_STATE(2540)] = 115090, - [SMALL_STATE(2541)] = 115134, - [SMALL_STATE(2542)] = 115178, - [SMALL_STATE(2543)] = 115222, - [SMALL_STATE(2544)] = 115266, - [SMALL_STATE(2545)] = 115310, - [SMALL_STATE(2546)] = 115354, - [SMALL_STATE(2547)] = 115398, - [SMALL_STATE(2548)] = 115442, - [SMALL_STATE(2549)] = 115486, - [SMALL_STATE(2550)] = 115530, - [SMALL_STATE(2551)] = 115574, - [SMALL_STATE(2552)] = 115618, - [SMALL_STATE(2553)] = 115662, - [SMALL_STATE(2554)] = 115706, - [SMALL_STATE(2555)] = 115750, - [SMALL_STATE(2556)] = 115794, - [SMALL_STATE(2557)] = 115838, - [SMALL_STATE(2558)] = 115882, - [SMALL_STATE(2559)] = 115926, - [SMALL_STATE(2560)] = 115970, - [SMALL_STATE(2561)] = 116014, - [SMALL_STATE(2562)] = 116058, - [SMALL_STATE(2563)] = 116102, - [SMALL_STATE(2564)] = 116146, - [SMALL_STATE(2565)] = 116190, - [SMALL_STATE(2566)] = 116234, - [SMALL_STATE(2567)] = 116278, - [SMALL_STATE(2568)] = 116322, - [SMALL_STATE(2569)] = 116366, - [SMALL_STATE(2570)] = 116410, - [SMALL_STATE(2571)] = 116454, - [SMALL_STATE(2572)] = 116498, - [SMALL_STATE(2573)] = 116542, - [SMALL_STATE(2574)] = 116586, - [SMALL_STATE(2575)] = 116630, - [SMALL_STATE(2576)] = 116674, - [SMALL_STATE(2577)] = 116718, - [SMALL_STATE(2578)] = 116762, - [SMALL_STATE(2579)] = 116806, - [SMALL_STATE(2580)] = 116850, - [SMALL_STATE(2581)] = 116894, - [SMALL_STATE(2582)] = 116938, - [SMALL_STATE(2583)] = 116982, - [SMALL_STATE(2584)] = 117026, - [SMALL_STATE(2585)] = 117070, - [SMALL_STATE(2586)] = 117114, - [SMALL_STATE(2587)] = 117158, - [SMALL_STATE(2588)] = 117202, - [SMALL_STATE(2589)] = 117246, - [SMALL_STATE(2590)] = 117290, - [SMALL_STATE(2591)] = 117334, - [SMALL_STATE(2592)] = 117378, - [SMALL_STATE(2593)] = 117422, - [SMALL_STATE(2594)] = 117466, - [SMALL_STATE(2595)] = 117510, - [SMALL_STATE(2596)] = 117554, - [SMALL_STATE(2597)] = 117597, - [SMALL_STATE(2598)] = 117640, - [SMALL_STATE(2599)] = 117683, - [SMALL_STATE(2600)] = 117726, - [SMALL_STATE(2601)] = 117769, - [SMALL_STATE(2602)] = 117812, - [SMALL_STATE(2603)] = 117855, - [SMALL_STATE(2604)] = 117898, - [SMALL_STATE(2605)] = 117941, - [SMALL_STATE(2606)] = 117984, - [SMALL_STATE(2607)] = 118027, - [SMALL_STATE(2608)] = 118070, - [SMALL_STATE(2609)] = 118113, - [SMALL_STATE(2610)] = 118156, - [SMALL_STATE(2611)] = 118199, - [SMALL_STATE(2612)] = 118242, - [SMALL_STATE(2613)] = 118285, - [SMALL_STATE(2614)] = 118328, - [SMALL_STATE(2615)] = 118371, - [SMALL_STATE(2616)] = 118414, - [SMALL_STATE(2617)] = 118457, - [SMALL_STATE(2618)] = 118500, - [SMALL_STATE(2619)] = 118543, - [SMALL_STATE(2620)] = 118586, - [SMALL_STATE(2621)] = 118629, - [SMALL_STATE(2622)] = 118672, - [SMALL_STATE(2623)] = 118715, - [SMALL_STATE(2624)] = 118758, - [SMALL_STATE(2625)] = 118801, - [SMALL_STATE(2626)] = 118844, - [SMALL_STATE(2627)] = 118887, - [SMALL_STATE(2628)] = 118930, - [SMALL_STATE(2629)] = 118973, - [SMALL_STATE(2630)] = 119016, - [SMALL_STATE(2631)] = 119053, - [SMALL_STATE(2632)] = 119090, - [SMALL_STATE(2633)] = 119127, - [SMALL_STATE(2634)] = 119164, - [SMALL_STATE(2635)] = 119201, - [SMALL_STATE(2636)] = 119236, - [SMALL_STATE(2637)] = 119273, - [SMALL_STATE(2638)] = 119310, - [SMALL_STATE(2639)] = 119347, - [SMALL_STATE(2640)] = 119382, - [SMALL_STATE(2641)] = 119419, - [SMALL_STATE(2642)] = 119456, - [SMALL_STATE(2643)] = 119493, - [SMALL_STATE(2644)] = 119530, - [SMALL_STATE(2645)] = 119565, - [SMALL_STATE(2646)] = 119602, - [SMALL_STATE(2647)] = 119639, - [SMALL_STATE(2648)] = 119676, - [SMALL_STATE(2649)] = 119713, - [SMALL_STATE(2650)] = 119750, - [SMALL_STATE(2651)] = 119771, - [SMALL_STATE(2652)] = 119792, - [SMALL_STATE(2653)] = 119825, - [SMALL_STATE(2654)] = 119846, - [SMALL_STATE(2655)] = 119867, - [SMALL_STATE(2656)] = 119899, - [SMALL_STATE(2657)] = 119915, - [SMALL_STATE(2658)] = 119947, - [SMALL_STATE(2659)] = 119973, - [SMALL_STATE(2660)] = 119991, - [SMALL_STATE(2661)] = 120011, - [SMALL_STATE(2662)] = 120043, - [SMALL_STATE(2663)] = 120059, - [SMALL_STATE(2664)] = 120091, - [SMALL_STATE(2665)] = 120107, - [SMALL_STATE(2666)] = 120139, - [SMALL_STATE(2667)] = 120171, - [SMALL_STATE(2668)] = 120203, - [SMALL_STATE(2669)] = 120221, - [SMALL_STATE(2670)] = 120253, - [SMALL_STATE(2671)] = 120285, - [SMALL_STATE(2672)] = 120301, - [SMALL_STATE(2673)] = 120333, - [SMALL_STATE(2674)] = 120351, - [SMALL_STATE(2675)] = 120383, - [SMALL_STATE(2676)] = 120409, - [SMALL_STATE(2677)] = 120441, - [SMALL_STATE(2678)] = 120473, - [SMALL_STATE(2679)] = 120505, - [SMALL_STATE(2680)] = 120531, - [SMALL_STATE(2681)] = 120557, - [SMALL_STATE(2682)] = 120575, - [SMALL_STATE(2683)] = 120595, - [SMALL_STATE(2684)] = 120627, - [SMALL_STATE(2685)] = 120659, - [SMALL_STATE(2686)] = 120678, - [SMALL_STATE(2687)] = 120693, - [SMALL_STATE(2688)] = 120712, - [SMALL_STATE(2689)] = 120727, - [SMALL_STATE(2690)] = 120744, - [SMALL_STATE(2691)] = 120770, - [SMALL_STATE(2692)] = 120796, - [SMALL_STATE(2693)] = 120814, - [SMALL_STATE(2694)] = 120840, - [SMALL_STATE(2695)] = 120866, - [SMALL_STATE(2696)] = 120892, - [SMALL_STATE(2697)] = 120916, - [SMALL_STATE(2698)] = 120942, - [SMALL_STATE(2699)] = 120956, - [SMALL_STATE(2700)] = 120980, - [SMALL_STATE(2701)] = 121006, - [SMALL_STATE(2702)] = 121032, - [SMALL_STATE(2703)] = 121056, - [SMALL_STATE(2704)] = 121070, - [SMALL_STATE(2705)] = 121096, - [SMALL_STATE(2706)] = 121122, - [SMALL_STATE(2707)] = 121148, - [SMALL_STATE(2708)] = 121174, - [SMALL_STATE(2709)] = 121200, - [SMALL_STATE(2710)] = 121226, - [SMALL_STATE(2711)] = 121252, - [SMALL_STATE(2712)] = 121268, - [SMALL_STATE(2713)] = 121294, - [SMALL_STATE(2714)] = 121320, - [SMALL_STATE(2715)] = 121346, - [SMALL_STATE(2716)] = 121362, - [SMALL_STATE(2717)] = 121388, - [SMALL_STATE(2718)] = 121414, - [SMALL_STATE(2719)] = 121440, - [SMALL_STATE(2720)] = 121466, - [SMALL_STATE(2721)] = 121492, - [SMALL_STATE(2722)] = 121518, - [SMALL_STATE(2723)] = 121544, - [SMALL_STATE(2724)] = 121570, - [SMALL_STATE(2725)] = 121596, - [SMALL_STATE(2726)] = 121622, - [SMALL_STATE(2727)] = 121648, - [SMALL_STATE(2728)] = 121672, - [SMALL_STATE(2729)] = 121684, - [SMALL_STATE(2730)] = 121710, - [SMALL_STATE(2731)] = 121734, - [SMALL_STATE(2732)] = 121758, - [SMALL_STATE(2733)] = 121784, - [SMALL_STATE(2734)] = 121810, - [SMALL_STATE(2735)] = 121836, - [SMALL_STATE(2736)] = 121862, - [SMALL_STATE(2737)] = 121888, - [SMALL_STATE(2738)] = 121914, - [SMALL_STATE(2739)] = 121938, - [SMALL_STATE(2740)] = 121952, - [SMALL_STATE(2741)] = 121978, - [SMALL_STATE(2742)] = 122004, - [SMALL_STATE(2743)] = 122030, - [SMALL_STATE(2744)] = 122056, - [SMALL_STATE(2745)] = 122082, - [SMALL_STATE(2746)] = 122108, - [SMALL_STATE(2747)] = 122134, - [SMALL_STATE(2748)] = 122160, - [SMALL_STATE(2749)] = 122172, - [SMALL_STATE(2750)] = 122198, - [SMALL_STATE(2751)] = 122224, - [SMALL_STATE(2752)] = 122248, - [SMALL_STATE(2753)] = 122274, - [SMALL_STATE(2754)] = 122300, - [SMALL_STATE(2755)] = 122318, - [SMALL_STATE(2756)] = 122342, - [SMALL_STATE(2757)] = 122367, - [SMALL_STATE(2758)] = 122382, - [SMALL_STATE(2759)] = 122399, - [SMALL_STATE(2760)] = 122416, - [SMALL_STATE(2761)] = 122429, - [SMALL_STATE(2762)] = 122444, - [SMALL_STATE(2763)] = 122469, - [SMALL_STATE(2764)] = 122494, - [SMALL_STATE(2765)] = 122514, - [SMALL_STATE(2766)] = 122530, - [SMALL_STATE(2767)] = 122550, - [SMALL_STATE(2768)] = 122570, - [SMALL_STATE(2769)] = 122588, - [SMALL_STATE(2770)] = 122606, - [SMALL_STATE(2771)] = 122622, - [SMALL_STATE(2772)] = 122634, - [SMALL_STATE(2773)] = 122654, - [SMALL_STATE(2774)] = 122670, - [SMALL_STATE(2775)] = 122690, - [SMALL_STATE(2776)] = 122710, - [SMALL_STATE(2777)] = 122728, - [SMALL_STATE(2778)] = 122738, - [SMALL_STATE(2779)] = 122754, - [SMALL_STATE(2780)] = 122770, - [SMALL_STATE(2781)] = 122786, - [SMALL_STATE(2782)] = 122806, - [SMALL_STATE(2783)] = 122826, - [SMALL_STATE(2784)] = 122846, - [SMALL_STATE(2785)] = 122866, - [SMALL_STATE(2786)] = 122886, - [SMALL_STATE(2787)] = 122904, - [SMALL_STATE(2788)] = 122914, - [SMALL_STATE(2789)] = 122934, - [SMALL_STATE(2790)] = 122952, - [SMALL_STATE(2791)] = 122972, - [SMALL_STATE(2792)] = 122988, - [SMALL_STATE(2793)] = 123008, - [SMALL_STATE(2794)] = 123024, - [SMALL_STATE(2795)] = 123042, - [SMALL_STATE(2796)] = 123052, - [SMALL_STATE(2797)] = 123071, - [SMALL_STATE(2798)] = 123090, - [SMALL_STATE(2799)] = 123107, - [SMALL_STATE(2800)] = 123124, - [SMALL_STATE(2801)] = 123143, - [SMALL_STATE(2802)] = 123160, - [SMALL_STATE(2803)] = 123177, - [SMALL_STATE(2804)] = 123194, - [SMALL_STATE(2805)] = 123211, - [SMALL_STATE(2806)] = 123222, - [SMALL_STATE(2807)] = 123239, - [SMALL_STATE(2808)] = 123258, - [SMALL_STATE(2809)] = 123275, - [SMALL_STATE(2810)] = 123290, - [SMALL_STATE(2811)] = 123307, - [SMALL_STATE(2812)] = 123322, - [SMALL_STATE(2813)] = 123339, - [SMALL_STATE(2814)] = 123358, - [SMALL_STATE(2815)] = 123375, - [SMALL_STATE(2816)] = 123388, - [SMALL_STATE(2817)] = 123405, - [SMALL_STATE(2818)] = 123422, - [SMALL_STATE(2819)] = 123439, - [SMALL_STATE(2820)] = 123458, - [SMALL_STATE(2821)] = 123475, - [SMALL_STATE(2822)] = 123490, - [SMALL_STATE(2823)] = 123507, - [SMALL_STATE(2824)] = 123524, - [SMALL_STATE(2825)] = 123543, - [SMALL_STATE(2826)] = 123560, - [SMALL_STATE(2827)] = 123577, - [SMALL_STATE(2828)] = 123594, - [SMALL_STATE(2829)] = 123611, - [SMALL_STATE(2830)] = 123628, - [SMALL_STATE(2831)] = 123637, - [SMALL_STATE(2832)] = 123656, - [SMALL_STATE(2833)] = 123675, - [SMALL_STATE(2834)] = 123692, - [SMALL_STATE(2835)] = 123711, - [SMALL_STATE(2836)] = 123726, - [SMALL_STATE(2837)] = 123739, - [SMALL_STATE(2838)] = 123756, - [SMALL_STATE(2839)] = 123773, - [SMALL_STATE(2840)] = 123790, - [SMALL_STATE(2841)] = 123809, - [SMALL_STATE(2842)] = 123826, - [SMALL_STATE(2843)] = 123843, - [SMALL_STATE(2844)] = 123856, - [SMALL_STATE(2845)] = 123873, - [SMALL_STATE(2846)] = 123890, - [SMALL_STATE(2847)] = 123903, - [SMALL_STATE(2848)] = 123920, - [SMALL_STATE(2849)] = 123931, - [SMALL_STATE(2850)] = 123950, - [SMALL_STATE(2851)] = 123967, - [SMALL_STATE(2852)] = 123986, - [SMALL_STATE(2853)] = 124005, - [SMALL_STATE(2854)] = 124024, - [SMALL_STATE(2855)] = 124043, - [SMALL_STATE(2856)] = 124062, - [SMALL_STATE(2857)] = 124081, - [SMALL_STATE(2858)] = 124100, - [SMALL_STATE(2859)] = 124119, - [SMALL_STATE(2860)] = 124138, - [SMALL_STATE(2861)] = 124157, - [SMALL_STATE(2862)] = 124176, - [SMALL_STATE(2863)] = 124195, - [SMALL_STATE(2864)] = 124214, - [SMALL_STATE(2865)] = 124233, - [SMALL_STATE(2866)] = 124252, - [SMALL_STATE(2867)] = 124271, - [SMALL_STATE(2868)] = 124290, - [SMALL_STATE(2869)] = 124309, - [SMALL_STATE(2870)] = 124328, - [SMALL_STATE(2871)] = 124347, - [SMALL_STATE(2872)] = 124366, - [SMALL_STATE(2873)] = 124383, - [SMALL_STATE(2874)] = 124402, - [SMALL_STATE(2875)] = 124421, - [SMALL_STATE(2876)] = 124440, - [SMALL_STATE(2877)] = 124459, - [SMALL_STATE(2878)] = 124478, - [SMALL_STATE(2879)] = 124497, - [SMALL_STATE(2880)] = 124516, - [SMALL_STATE(2881)] = 124535, - [SMALL_STATE(2882)] = 124554, - [SMALL_STATE(2883)] = 124573, - [SMALL_STATE(2884)] = 124582, - [SMALL_STATE(2885)] = 124601, - [SMALL_STATE(2886)] = 124620, - [SMALL_STATE(2887)] = 124639, - [SMALL_STATE(2888)] = 124658, - [SMALL_STATE(2889)] = 124677, - [SMALL_STATE(2890)] = 124696, - [SMALL_STATE(2891)] = 124715, - [SMALL_STATE(2892)] = 124734, - [SMALL_STATE(2893)] = 124751, - [SMALL_STATE(2894)] = 124770, - [SMALL_STATE(2895)] = 124789, - [SMALL_STATE(2896)] = 124808, - [SMALL_STATE(2897)] = 124827, - [SMALL_STATE(2898)] = 124836, - [SMALL_STATE(2899)] = 124849, - [SMALL_STATE(2900)] = 124868, - [SMALL_STATE(2901)] = 124887, - [SMALL_STATE(2902)] = 124906, - [SMALL_STATE(2903)] = 124925, - [SMALL_STATE(2904)] = 124942, - [SMALL_STATE(2905)] = 124961, - [SMALL_STATE(2906)] = 124980, - [SMALL_STATE(2907)] = 124999, - [SMALL_STATE(2908)] = 125016, - [SMALL_STATE(2909)] = 125035, - [SMALL_STATE(2910)] = 125054, - [SMALL_STATE(2911)] = 125073, - [SMALL_STATE(2912)] = 125092, - [SMALL_STATE(2913)] = 125109, - [SMALL_STATE(2914)] = 125126, - [SMALL_STATE(2915)] = 125145, - [SMALL_STATE(2916)] = 125164, - [SMALL_STATE(2917)] = 125183, - [SMALL_STATE(2918)] = 125202, - [SMALL_STATE(2919)] = 125219, - [SMALL_STATE(2920)] = 125236, - [SMALL_STATE(2921)] = 125255, - [SMALL_STATE(2922)] = 125274, - [SMALL_STATE(2923)] = 125293, - [SMALL_STATE(2924)] = 125312, - [SMALL_STATE(2925)] = 125331, - [SMALL_STATE(2926)] = 125350, - [SMALL_STATE(2927)] = 125369, - [SMALL_STATE(2928)] = 125388, - [SMALL_STATE(2929)] = 125407, - [SMALL_STATE(2930)] = 125426, - [SMALL_STATE(2931)] = 125445, - [SMALL_STATE(2932)] = 125464, - [SMALL_STATE(2933)] = 125483, - [SMALL_STATE(2934)] = 125499, - [SMALL_STATE(2935)] = 125513, - [SMALL_STATE(2936)] = 125529, - [SMALL_STATE(2937)] = 125543, - [SMALL_STATE(2938)] = 125557, - [SMALL_STATE(2939)] = 125573, - [SMALL_STATE(2940)] = 125587, - [SMALL_STATE(2941)] = 125601, - [SMALL_STATE(2942)] = 125613, - [SMALL_STATE(2943)] = 125629, - [SMALL_STATE(2944)] = 125645, - [SMALL_STATE(2945)] = 125661, - [SMALL_STATE(2946)] = 125671, - [SMALL_STATE(2947)] = 125687, - [SMALL_STATE(2948)] = 125703, - [SMALL_STATE(2949)] = 125719, - [SMALL_STATE(2950)] = 125733, - [SMALL_STATE(2951)] = 125747, - [SMALL_STATE(2952)] = 125761, - [SMALL_STATE(2953)] = 125777, - [SMALL_STATE(2954)] = 125789, - [SMALL_STATE(2955)] = 125801, - [SMALL_STATE(2956)] = 125809, - [SMALL_STATE(2957)] = 125821, - [SMALL_STATE(2958)] = 125837, - [SMALL_STATE(2959)] = 125853, - [SMALL_STATE(2960)] = 125869, - [SMALL_STATE(2961)] = 125885, - [SMALL_STATE(2962)] = 125901, - [SMALL_STATE(2963)] = 125915, - [SMALL_STATE(2964)] = 125927, - [SMALL_STATE(2965)] = 125943, - [SMALL_STATE(2966)] = 125951, - [SMALL_STATE(2967)] = 125967, - [SMALL_STATE(2968)] = 125983, - [SMALL_STATE(2969)] = 125997, - [SMALL_STATE(2970)] = 126013, - [SMALL_STATE(2971)] = 126029, - [SMALL_STATE(2972)] = 126045, - [SMALL_STATE(2973)] = 126059, - [SMALL_STATE(2974)] = 126073, - [SMALL_STATE(2975)] = 126081, - [SMALL_STATE(2976)] = 126095, - [SMALL_STATE(2977)] = 126111, - [SMALL_STATE(2978)] = 126125, - [SMALL_STATE(2979)] = 126141, - [SMALL_STATE(2980)] = 126157, - [SMALL_STATE(2981)] = 126173, - [SMALL_STATE(2982)] = 126187, - [SMALL_STATE(2983)] = 126201, - [SMALL_STATE(2984)] = 126215, - [SMALL_STATE(2985)] = 126231, - [SMALL_STATE(2986)] = 126245, - [SMALL_STATE(2987)] = 126257, - [SMALL_STATE(2988)] = 126273, - [SMALL_STATE(2989)] = 126281, - [SMALL_STATE(2990)] = 126297, - [SMALL_STATE(2991)] = 126313, - [SMALL_STATE(2992)] = 126329, - [SMALL_STATE(2993)] = 126343, - [SMALL_STATE(2994)] = 126357, - [SMALL_STATE(2995)] = 126371, - [SMALL_STATE(2996)] = 126385, - [SMALL_STATE(2997)] = 126401, - [SMALL_STATE(2998)] = 126417, - [SMALL_STATE(2999)] = 126433, - [SMALL_STATE(3000)] = 126449, - [SMALL_STATE(3001)] = 126465, - [SMALL_STATE(3002)] = 126479, - [SMALL_STATE(3003)] = 126493, - [SMALL_STATE(3004)] = 126505, - [SMALL_STATE(3005)] = 126517, - [SMALL_STATE(3006)] = 126531, - [SMALL_STATE(3007)] = 126541, - [SMALL_STATE(3008)] = 126557, - [SMALL_STATE(3009)] = 126573, - [SMALL_STATE(3010)] = 126589, - [SMALL_STATE(3011)] = 126605, - [SMALL_STATE(3012)] = 126621, - [SMALL_STATE(3013)] = 126635, - [SMALL_STATE(3014)] = 126649, - [SMALL_STATE(3015)] = 126663, - [SMALL_STATE(3016)] = 126677, - [SMALL_STATE(3017)] = 126689, - [SMALL_STATE(3018)] = 126705, - [SMALL_STATE(3019)] = 126719, - [SMALL_STATE(3020)] = 126735, - [SMALL_STATE(3021)] = 126751, - [SMALL_STATE(3022)] = 126767, - [SMALL_STATE(3023)] = 126781, - [SMALL_STATE(3024)] = 126795, - [SMALL_STATE(3025)] = 126803, - [SMALL_STATE(3026)] = 126815, - [SMALL_STATE(3027)] = 126831, - [SMALL_STATE(3028)] = 126843, - [SMALL_STATE(3029)] = 126859, - [SMALL_STATE(3030)] = 126871, - [SMALL_STATE(3031)] = 126887, - [SMALL_STATE(3032)] = 126901, - [SMALL_STATE(3033)] = 126915, - [SMALL_STATE(3034)] = 126925, - [SMALL_STATE(3035)] = 126941, - [SMALL_STATE(3036)] = 126953, - [SMALL_STATE(3037)] = 126967, - [SMALL_STATE(3038)] = 126983, - [SMALL_STATE(3039)] = 126993, - [SMALL_STATE(3040)] = 127009, - [SMALL_STATE(3041)] = 127025, - [SMALL_STATE(3042)] = 127041, - [SMALL_STATE(3043)] = 127055, - [SMALL_STATE(3044)] = 127069, - [SMALL_STATE(3045)] = 127077, - [SMALL_STATE(3046)] = 127089, - [SMALL_STATE(3047)] = 127101, - [SMALL_STATE(3048)] = 127109, - [SMALL_STATE(3049)] = 127117, - [SMALL_STATE(3050)] = 127131, - [SMALL_STATE(3051)] = 127147, - [SMALL_STATE(3052)] = 127163, - [SMALL_STATE(3053)] = 127179, - [SMALL_STATE(3054)] = 127195, - [SMALL_STATE(3055)] = 127211, - [SMALL_STATE(3056)] = 127225, - [SMALL_STATE(3057)] = 127237, - [SMALL_STATE(3058)] = 127245, - [SMALL_STATE(3059)] = 127259, - [SMALL_STATE(3060)] = 127273, - [SMALL_STATE(3061)] = 127289, - [SMALL_STATE(3062)] = 127297, - [SMALL_STATE(3063)] = 127313, - [SMALL_STATE(3064)] = 127329, - [SMALL_STATE(3065)] = 127345, - [SMALL_STATE(3066)] = 127359, - [SMALL_STATE(3067)] = 127375, - [SMALL_STATE(3068)] = 127389, - [SMALL_STATE(3069)] = 127397, - [SMALL_STATE(3070)] = 127407, - [SMALL_STATE(3071)] = 127423, - [SMALL_STATE(3072)] = 127439, - [SMALL_STATE(3073)] = 127449, - [SMALL_STATE(3074)] = 127465, - [SMALL_STATE(3075)] = 127481, - [SMALL_STATE(3076)] = 127497, - [SMALL_STATE(3077)] = 127511, - [SMALL_STATE(3078)] = 127523, - [SMALL_STATE(3079)] = 127537, - [SMALL_STATE(3080)] = 127551, - [SMALL_STATE(3081)] = 127565, - [SMALL_STATE(3082)] = 127581, - [SMALL_STATE(3083)] = 127597, - [SMALL_STATE(3084)] = 127607, - [SMALL_STATE(3085)] = 127623, - [SMALL_STATE(3086)] = 127639, - [SMALL_STATE(3087)] = 127655, - [SMALL_STATE(3088)] = 127669, - [SMALL_STATE(3089)] = 127683, - [SMALL_STATE(3090)] = 127697, - [SMALL_STATE(3091)] = 127711, - [SMALL_STATE(3092)] = 127723, - [SMALL_STATE(3093)] = 127739, - [SMALL_STATE(3094)] = 127755, - [SMALL_STATE(3095)] = 127769, - [SMALL_STATE(3096)] = 127785, - [SMALL_STATE(3097)] = 127801, - [SMALL_STATE(3098)] = 127817, - [SMALL_STATE(3099)] = 127831, - [SMALL_STATE(3100)] = 127843, - [SMALL_STATE(3101)] = 127859, - [SMALL_STATE(3102)] = 127875, - [SMALL_STATE(3103)] = 127889, - [SMALL_STATE(3104)] = 127903, - [SMALL_STATE(3105)] = 127919, - [SMALL_STATE(3106)] = 127935, - [SMALL_STATE(3107)] = 127949, - [SMALL_STATE(3108)] = 127963, - [SMALL_STATE(3109)] = 127979, - [SMALL_STATE(3110)] = 127995, - [SMALL_STATE(3111)] = 128011, - [SMALL_STATE(3112)] = 128027, - [SMALL_STATE(3113)] = 128043, - [SMALL_STATE(3114)] = 128059, - [SMALL_STATE(3115)] = 128072, - [SMALL_STATE(3116)] = 128083, - [SMALL_STATE(3117)] = 128090, - [SMALL_STATE(3118)] = 128099, - [SMALL_STATE(3119)] = 128108, - [SMALL_STATE(3120)] = 128117, - [SMALL_STATE(3121)] = 128130, - [SMALL_STATE(3122)] = 128139, - [SMALL_STATE(3123)] = 128150, - [SMALL_STATE(3124)] = 128163, - [SMALL_STATE(3125)] = 128170, - [SMALL_STATE(3126)] = 128183, - [SMALL_STATE(3127)] = 128196, - [SMALL_STATE(3128)] = 128203, - [SMALL_STATE(3129)] = 128210, - [SMALL_STATE(3130)] = 128223, - [SMALL_STATE(3131)] = 128230, - [SMALL_STATE(3132)] = 128237, - [SMALL_STATE(3133)] = 128246, - [SMALL_STATE(3134)] = 128259, - [SMALL_STATE(3135)] = 128272, - [SMALL_STATE(3136)] = 128285, - [SMALL_STATE(3137)] = 128292, - [SMALL_STATE(3138)] = 128305, - [SMALL_STATE(3139)] = 128318, - [SMALL_STATE(3140)] = 128331, - [SMALL_STATE(3141)] = 128344, - [SMALL_STATE(3142)] = 128357, - [SMALL_STATE(3143)] = 128364, - [SMALL_STATE(3144)] = 128377, - [SMALL_STATE(3145)] = 128386, - [SMALL_STATE(3146)] = 128399, - [SMALL_STATE(3147)] = 128412, - [SMALL_STATE(3148)] = 128425, - [SMALL_STATE(3149)] = 128432, - [SMALL_STATE(3150)] = 128439, - [SMALL_STATE(3151)] = 128452, - [SMALL_STATE(3152)] = 128461, - [SMALL_STATE(3153)] = 128468, - [SMALL_STATE(3154)] = 128481, - [SMALL_STATE(3155)] = 128494, - [SMALL_STATE(3156)] = 128507, - [SMALL_STATE(3157)] = 128518, - [SMALL_STATE(3158)] = 128531, - [SMALL_STATE(3159)] = 128538, - [SMALL_STATE(3160)] = 128551, - [SMALL_STATE(3161)] = 128564, - [SMALL_STATE(3162)] = 128577, - [SMALL_STATE(3163)] = 128590, - [SMALL_STATE(3164)] = 128603, - [SMALL_STATE(3165)] = 128610, - [SMALL_STATE(3166)] = 128623, - [SMALL_STATE(3167)] = 128636, - [SMALL_STATE(3168)] = 128649, - [SMALL_STATE(3169)] = 128662, - [SMALL_STATE(3170)] = 128675, - [SMALL_STATE(3171)] = 128684, - [SMALL_STATE(3172)] = 128693, - [SMALL_STATE(3173)] = 128706, - [SMALL_STATE(3174)] = 128717, - [SMALL_STATE(3175)] = 128726, - [SMALL_STATE(3176)] = 128739, - [SMALL_STATE(3177)] = 128752, - [SMALL_STATE(3178)] = 128761, - [SMALL_STATE(3179)] = 128770, - [SMALL_STATE(3180)] = 128779, - [SMALL_STATE(3181)] = 128792, - [SMALL_STATE(3182)] = 128799, - [SMALL_STATE(3183)] = 128812, - [SMALL_STATE(3184)] = 128821, - [SMALL_STATE(3185)] = 128834, - [SMALL_STATE(3186)] = 128841, - [SMALL_STATE(3187)] = 128854, - [SMALL_STATE(3188)] = 128863, - [SMALL_STATE(3189)] = 128874, - [SMALL_STATE(3190)] = 128881, - [SMALL_STATE(3191)] = 128894, - [SMALL_STATE(3192)] = 128907, - [SMALL_STATE(3193)] = 128920, - [SMALL_STATE(3194)] = 128933, - [SMALL_STATE(3195)] = 128944, - [SMALL_STATE(3196)] = 128957, - [SMALL_STATE(3197)] = 128970, - [SMALL_STATE(3198)] = 128983, - [SMALL_STATE(3199)] = 128996, - [SMALL_STATE(3200)] = 129009, - [SMALL_STATE(3201)] = 129020, - [SMALL_STATE(3202)] = 129031, - [SMALL_STATE(3203)] = 129044, - [SMALL_STATE(3204)] = 129057, - [SMALL_STATE(3205)] = 129066, - [SMALL_STATE(3206)] = 129079, - [SMALL_STATE(3207)] = 129092, - [SMALL_STATE(3208)] = 129099, - [SMALL_STATE(3209)] = 129112, - [SMALL_STATE(3210)] = 129125, - [SMALL_STATE(3211)] = 129138, - [SMALL_STATE(3212)] = 129147, - [SMALL_STATE(3213)] = 129160, - [SMALL_STATE(3214)] = 129173, - [SMALL_STATE(3215)] = 129186, - [SMALL_STATE(3216)] = 129199, - [SMALL_STATE(3217)] = 129212, - [SMALL_STATE(3218)] = 129225, - [SMALL_STATE(3219)] = 129238, - [SMALL_STATE(3220)] = 129251, - [SMALL_STATE(3221)] = 129264, - [SMALL_STATE(3222)] = 129273, - [SMALL_STATE(3223)] = 129286, - [SMALL_STATE(3224)] = 129299, - [SMALL_STATE(3225)] = 129312, - [SMALL_STATE(3226)] = 129321, - [SMALL_STATE(3227)] = 129334, - [SMALL_STATE(3228)] = 129343, - [SMALL_STATE(3229)] = 129352, - [SMALL_STATE(3230)] = 129361, - [SMALL_STATE(3231)] = 129374, - [SMALL_STATE(3232)] = 129387, - [SMALL_STATE(3233)] = 129400, - [SMALL_STATE(3234)] = 129413, - [SMALL_STATE(3235)] = 129426, - [SMALL_STATE(3236)] = 129439, - [SMALL_STATE(3237)] = 129452, - [SMALL_STATE(3238)] = 129465, - [SMALL_STATE(3239)] = 129478, - [SMALL_STATE(3240)] = 129491, - [SMALL_STATE(3241)] = 129504, - [SMALL_STATE(3242)] = 129517, - [SMALL_STATE(3243)] = 129530, - [SMALL_STATE(3244)] = 129543, - [SMALL_STATE(3245)] = 129556, - [SMALL_STATE(3246)] = 129569, - [SMALL_STATE(3247)] = 129582, - [SMALL_STATE(3248)] = 129595, - [SMALL_STATE(3249)] = 129608, - [SMALL_STATE(3250)] = 129621, - [SMALL_STATE(3251)] = 129634, - [SMALL_STATE(3252)] = 129647, - [SMALL_STATE(3253)] = 129660, - [SMALL_STATE(3254)] = 129673, - [SMALL_STATE(3255)] = 129686, - [SMALL_STATE(3256)] = 129699, - [SMALL_STATE(3257)] = 129712, - [SMALL_STATE(3258)] = 129725, - [SMALL_STATE(3259)] = 129738, - [SMALL_STATE(3260)] = 129751, - [SMALL_STATE(3261)] = 129764, - [SMALL_STATE(3262)] = 129777, - [SMALL_STATE(3263)] = 129790, - [SMALL_STATE(3264)] = 129803, - [SMALL_STATE(3265)] = 129816, - [SMALL_STATE(3266)] = 129829, - [SMALL_STATE(3267)] = 129842, - [SMALL_STATE(3268)] = 129849, - [SMALL_STATE(3269)] = 129859, - [SMALL_STATE(3270)] = 129869, - [SMALL_STATE(3271)] = 129879, - [SMALL_STATE(3272)] = 129889, - [SMALL_STATE(3273)] = 129899, - [SMALL_STATE(3274)] = 129909, - [SMALL_STATE(3275)] = 129919, - [SMALL_STATE(3276)] = 129929, - [SMALL_STATE(3277)] = 129939, - [SMALL_STATE(3278)] = 129949, - [SMALL_STATE(3279)] = 129959, - [SMALL_STATE(3280)] = 129969, - [SMALL_STATE(3281)] = 129979, - [SMALL_STATE(3282)] = 129989, - [SMALL_STATE(3283)] = 129999, - [SMALL_STATE(3284)] = 130009, - [SMALL_STATE(3285)] = 130019, - [SMALL_STATE(3286)] = 130029, - [SMALL_STATE(3287)] = 130039, - [SMALL_STATE(3288)] = 130049, - [SMALL_STATE(3289)] = 130059, - [SMALL_STATE(3290)] = 130065, - [SMALL_STATE(3291)] = 130075, - [SMALL_STATE(3292)] = 130085, - [SMALL_STATE(3293)] = 130095, - [SMALL_STATE(3294)] = 130105, - [SMALL_STATE(3295)] = 130115, - [SMALL_STATE(3296)] = 130125, - [SMALL_STATE(3297)] = 130135, - [SMALL_STATE(3298)] = 130145, - [SMALL_STATE(3299)] = 130155, - [SMALL_STATE(3300)] = 130165, - [SMALL_STATE(3301)] = 130175, - [SMALL_STATE(3302)] = 130185, - [SMALL_STATE(3303)] = 130195, - [SMALL_STATE(3304)] = 130205, - [SMALL_STATE(3305)] = 130215, - [SMALL_STATE(3306)] = 130225, - [SMALL_STATE(3307)] = 130235, - [SMALL_STATE(3308)] = 130245, - [SMALL_STATE(3309)] = 130255, - [SMALL_STATE(3310)] = 130265, - [SMALL_STATE(3311)] = 130275, - [SMALL_STATE(3312)] = 130285, - [SMALL_STATE(3313)] = 130295, - [SMALL_STATE(3314)] = 130305, - [SMALL_STATE(3315)] = 130315, - [SMALL_STATE(3316)] = 130325, - [SMALL_STATE(3317)] = 130335, - [SMALL_STATE(3318)] = 130345, - [SMALL_STATE(3319)] = 130355, - [SMALL_STATE(3320)] = 130365, - [SMALL_STATE(3321)] = 130375, - [SMALL_STATE(3322)] = 130385, - [SMALL_STATE(3323)] = 130395, - [SMALL_STATE(3324)] = 130401, - [SMALL_STATE(3325)] = 130411, - [SMALL_STATE(3326)] = 130421, - [SMALL_STATE(3327)] = 130429, - [SMALL_STATE(3328)] = 130439, - [SMALL_STATE(3329)] = 130449, - [SMALL_STATE(3330)] = 130459, - [SMALL_STATE(3331)] = 130469, - [SMALL_STATE(3332)] = 130479, - [SMALL_STATE(3333)] = 130489, - [SMALL_STATE(3334)] = 130499, - [SMALL_STATE(3335)] = 130509, - [SMALL_STATE(3336)] = 130519, - [SMALL_STATE(3337)] = 130529, - [SMALL_STATE(3338)] = 130539, - [SMALL_STATE(3339)] = 130549, - [SMALL_STATE(3340)] = 130559, - [SMALL_STATE(3341)] = 130569, - [SMALL_STATE(3342)] = 130579, - [SMALL_STATE(3343)] = 130589, - [SMALL_STATE(3344)] = 130599, - [SMALL_STATE(3345)] = 130609, - [SMALL_STATE(3346)] = 130619, - [SMALL_STATE(3347)] = 130629, - [SMALL_STATE(3348)] = 130639, - [SMALL_STATE(3349)] = 130649, - [SMALL_STATE(3350)] = 130659, - [SMALL_STATE(3351)] = 130669, - [SMALL_STATE(3352)] = 130679, - [SMALL_STATE(3353)] = 130689, - [SMALL_STATE(3354)] = 130699, - [SMALL_STATE(3355)] = 130709, - [SMALL_STATE(3356)] = 130719, - [SMALL_STATE(3357)] = 130729, - [SMALL_STATE(3358)] = 130739, - [SMALL_STATE(3359)] = 130749, - [SMALL_STATE(3360)] = 130759, - [SMALL_STATE(3361)] = 130769, - [SMALL_STATE(3362)] = 130777, - [SMALL_STATE(3363)] = 130787, - [SMALL_STATE(3364)] = 130797, - [SMALL_STATE(3365)] = 130807, - [SMALL_STATE(3366)] = 130817, - [SMALL_STATE(3367)] = 130827, - [SMALL_STATE(3368)] = 130837, - [SMALL_STATE(3369)] = 130847, - [SMALL_STATE(3370)] = 130857, - [SMALL_STATE(3371)] = 130867, - [SMALL_STATE(3372)] = 130877, - [SMALL_STATE(3373)] = 130885, - [SMALL_STATE(3374)] = 130895, - [SMALL_STATE(3375)] = 130905, - [SMALL_STATE(3376)] = 130915, - [SMALL_STATE(3377)] = 130925, - [SMALL_STATE(3378)] = 130933, - [SMALL_STATE(3379)] = 130943, - [SMALL_STATE(3380)] = 130953, - [SMALL_STATE(3381)] = 130963, - [SMALL_STATE(3382)] = 130973, - [SMALL_STATE(3383)] = 130983, - [SMALL_STATE(3384)] = 130993, - [SMALL_STATE(3385)] = 131003, - [SMALL_STATE(3386)] = 131013, - [SMALL_STATE(3387)] = 131023, - [SMALL_STATE(3388)] = 131033, - [SMALL_STATE(3389)] = 131043, - [SMALL_STATE(3390)] = 131053, - [SMALL_STATE(3391)] = 131063, - [SMALL_STATE(3392)] = 131073, - [SMALL_STATE(3393)] = 131083, - [SMALL_STATE(3394)] = 131093, - [SMALL_STATE(3395)] = 131103, - [SMALL_STATE(3396)] = 131113, - [SMALL_STATE(3397)] = 131123, - [SMALL_STATE(3398)] = 131133, - [SMALL_STATE(3399)] = 131143, - [SMALL_STATE(3400)] = 131149, - [SMALL_STATE(3401)] = 131159, - [SMALL_STATE(3402)] = 131169, - [SMALL_STATE(3403)] = 131179, - [SMALL_STATE(3404)] = 131189, - [SMALL_STATE(3405)] = 131199, - [SMALL_STATE(3406)] = 131209, - [SMALL_STATE(3407)] = 131219, - [SMALL_STATE(3408)] = 131229, - [SMALL_STATE(3409)] = 131239, - [SMALL_STATE(3410)] = 131249, - [SMALL_STATE(3411)] = 131259, - [SMALL_STATE(3412)] = 131269, - [SMALL_STATE(3413)] = 131279, - [SMALL_STATE(3414)] = 131285, - [SMALL_STATE(3415)] = 131295, - [SMALL_STATE(3416)] = 131305, - [SMALL_STATE(3417)] = 131315, - [SMALL_STATE(3418)] = 131325, - [SMALL_STATE(3419)] = 131335, - [SMALL_STATE(3420)] = 131345, - [SMALL_STATE(3421)] = 131355, - [SMALL_STATE(3422)] = 131365, - [SMALL_STATE(3423)] = 131375, - [SMALL_STATE(3424)] = 131385, - [SMALL_STATE(3425)] = 131395, - [SMALL_STATE(3426)] = 131401, - [SMALL_STATE(3427)] = 131407, - [SMALL_STATE(3428)] = 131417, - [SMALL_STATE(3429)] = 131427, - [SMALL_STATE(3430)] = 131437, - [SMALL_STATE(3431)] = 131447, - [SMALL_STATE(3432)] = 131457, - [SMALL_STATE(3433)] = 131465, - [SMALL_STATE(3434)] = 131475, - [SMALL_STATE(3435)] = 131485, - [SMALL_STATE(3436)] = 131495, - [SMALL_STATE(3437)] = 131505, - [SMALL_STATE(3438)] = 131511, - [SMALL_STATE(3439)] = 131517, - [SMALL_STATE(3440)] = 131527, - [SMALL_STATE(3441)] = 131537, - [SMALL_STATE(3442)] = 131547, - [SMALL_STATE(3443)] = 131557, - [SMALL_STATE(3444)] = 131567, - [SMALL_STATE(3445)] = 131577, - [SMALL_STATE(3446)] = 131587, - [SMALL_STATE(3447)] = 131597, - [SMALL_STATE(3448)] = 131607, - [SMALL_STATE(3449)] = 131617, - [SMALL_STATE(3450)] = 131625, - [SMALL_STATE(3451)] = 131635, - [SMALL_STATE(3452)] = 131645, - [SMALL_STATE(3453)] = 131655, - [SMALL_STATE(3454)] = 131665, - [SMALL_STATE(3455)] = 131675, - [SMALL_STATE(3456)] = 131683, - [SMALL_STATE(3457)] = 131693, - [SMALL_STATE(3458)] = 131703, - [SMALL_STATE(3459)] = 131713, - [SMALL_STATE(3460)] = 131723, - [SMALL_STATE(3461)] = 131733, - [SMALL_STATE(3462)] = 131743, - [SMALL_STATE(3463)] = 131753, - [SMALL_STATE(3464)] = 131763, - [SMALL_STATE(3465)] = 131773, - [SMALL_STATE(3466)] = 131783, - [SMALL_STATE(3467)] = 131793, - [SMALL_STATE(3468)] = 131803, - [SMALL_STATE(3469)] = 131813, - [SMALL_STATE(3470)] = 131823, - [SMALL_STATE(3471)] = 131833, - [SMALL_STATE(3472)] = 131843, - [SMALL_STATE(3473)] = 131853, - [SMALL_STATE(3474)] = 131863, - [SMALL_STATE(3475)] = 131873, - [SMALL_STATE(3476)] = 131883, - [SMALL_STATE(3477)] = 131893, - [SMALL_STATE(3478)] = 131903, - [SMALL_STATE(3479)] = 131913, - [SMALL_STATE(3480)] = 131923, - [SMALL_STATE(3481)] = 131933, - [SMALL_STATE(3482)] = 131943, - [SMALL_STATE(3483)] = 131953, - [SMALL_STATE(3484)] = 131963, - [SMALL_STATE(3485)] = 131973, - [SMALL_STATE(3486)] = 131983, - [SMALL_STATE(3487)] = 131993, - [SMALL_STATE(3488)] = 132003, - [SMALL_STATE(3489)] = 132013, - [SMALL_STATE(3490)] = 132023, - [SMALL_STATE(3491)] = 132033, - [SMALL_STATE(3492)] = 132043, - [SMALL_STATE(3493)] = 132053, - [SMALL_STATE(3494)] = 132063, - [SMALL_STATE(3495)] = 132073, - [SMALL_STATE(3496)] = 132083, - [SMALL_STATE(3497)] = 132093, - [SMALL_STATE(3498)] = 132103, - [SMALL_STATE(3499)] = 132113, - [SMALL_STATE(3500)] = 132123, - [SMALL_STATE(3501)] = 132133, - [SMALL_STATE(3502)] = 132143, - [SMALL_STATE(3503)] = 132153, - [SMALL_STATE(3504)] = 132163, - [SMALL_STATE(3505)] = 132169, - [SMALL_STATE(3506)] = 132179, - [SMALL_STATE(3507)] = 132189, - [SMALL_STATE(3508)] = 132199, - [SMALL_STATE(3509)] = 132209, - [SMALL_STATE(3510)] = 132219, - [SMALL_STATE(3511)] = 132225, - [SMALL_STATE(3512)] = 132235, - [SMALL_STATE(3513)] = 132245, - [SMALL_STATE(3514)] = 132253, - [SMALL_STATE(3515)] = 132263, - [SMALL_STATE(3516)] = 132273, - [SMALL_STATE(3517)] = 132283, - [SMALL_STATE(3518)] = 132293, - [SMALL_STATE(3519)] = 132303, - [SMALL_STATE(3520)] = 132313, - [SMALL_STATE(3521)] = 132323, - [SMALL_STATE(3522)] = 132333, - [SMALL_STATE(3523)] = 132343, - [SMALL_STATE(3524)] = 132353, - [SMALL_STATE(3525)] = 132363, - [SMALL_STATE(3526)] = 132373, - [SMALL_STATE(3527)] = 132383, - [SMALL_STATE(3528)] = 132390, - [SMALL_STATE(3529)] = 132395, - [SMALL_STATE(3530)] = 132402, - [SMALL_STATE(3531)] = 132407, - [SMALL_STATE(3532)] = 132412, - [SMALL_STATE(3533)] = 132417, - [SMALL_STATE(3534)] = 132424, - [SMALL_STATE(3535)] = 132431, - [SMALL_STATE(3536)] = 132438, - [SMALL_STATE(3537)] = 132445, - [SMALL_STATE(3538)] = 132452, - [SMALL_STATE(3539)] = 132459, - [SMALL_STATE(3540)] = 132464, - [SMALL_STATE(3541)] = 132471, - [SMALL_STATE(3542)] = 132478, - [SMALL_STATE(3543)] = 132485, - [SMALL_STATE(3544)] = 132490, - [SMALL_STATE(3545)] = 132495, - [SMALL_STATE(3546)] = 132500, - [SMALL_STATE(3547)] = 132505, - [SMALL_STATE(3548)] = 132510, - [SMALL_STATE(3549)] = 132517, - [SMALL_STATE(3550)] = 132522, - [SMALL_STATE(3551)] = 132529, - [SMALL_STATE(3552)] = 132536, - [SMALL_STATE(3553)] = 132541, - [SMALL_STATE(3554)] = 132546, - [SMALL_STATE(3555)] = 132553, - [SMALL_STATE(3556)] = 132558, - [SMALL_STATE(3557)] = 132565, - [SMALL_STATE(3558)] = 132570, - [SMALL_STATE(3559)] = 132575, - [SMALL_STATE(3560)] = 132580, - [SMALL_STATE(3561)] = 132587, - [SMALL_STATE(3562)] = 132592, + [SMALL_STATE(624)] = 0, + [SMALL_STATE(625)] = 135, + [SMALL_STATE(626)] = 266, + [SMALL_STATE(627)] = 397, + [SMALL_STATE(628)] = 530, + [SMALL_STATE(629)] = 665, + [SMALL_STATE(630)] = 800, + [SMALL_STATE(631)] = 935, + [SMALL_STATE(632)] = 1070, + [SMALL_STATE(633)] = 1199, + [SMALL_STATE(634)] = 1328, + [SMALL_STATE(635)] = 1461, + [SMALL_STATE(636)] = 1596, + [SMALL_STATE(637)] = 1731, + [SMALL_STATE(638)] = 1866, + [SMALL_STATE(639)] = 2001, + [SMALL_STATE(640)] = 2136, + [SMALL_STATE(641)] = 2271, + [SMALL_STATE(642)] = 2400, + [SMALL_STATE(643)] = 2533, + [SMALL_STATE(644)] = 2668, + [SMALL_STATE(645)] = 2799, + [SMALL_STATE(646)] = 2934, + [SMALL_STATE(647)] = 3069, + [SMALL_STATE(648)] = 3202, + [SMALL_STATE(649)] = 3337, + [SMALL_STATE(650)] = 3472, + [SMALL_STATE(651)] = 3607, + [SMALL_STATE(652)] = 3742, + [SMALL_STATE(653)] = 3877, + [SMALL_STATE(654)] = 4012, + [SMALL_STATE(655)] = 4147, + [SMALL_STATE(656)] = 4282, + [SMALL_STATE(657)] = 4417, + [SMALL_STATE(658)] = 4552, + [SMALL_STATE(659)] = 4687, + [SMALL_STATE(660)] = 4822, + [SMALL_STATE(661)] = 4957, + [SMALL_STATE(662)] = 5092, + [SMALL_STATE(663)] = 5227, + [SMALL_STATE(664)] = 5362, + [SMALL_STATE(665)] = 5497, + [SMALL_STATE(666)] = 5632, + [SMALL_STATE(667)] = 5760, + [SMALL_STATE(668)] = 5888, + [SMALL_STATE(669)] = 6016, + [SMALL_STATE(670)] = 6144, + [SMALL_STATE(671)] = 6272, + [SMALL_STATE(672)] = 6400, + [SMALL_STATE(673)] = 6528, + [SMALL_STATE(674)] = 6656, + [SMALL_STATE(675)] = 6784, + [SMALL_STATE(676)] = 6912, + [SMALL_STATE(677)] = 7040, + [SMALL_STATE(678)] = 7168, + [SMALL_STATE(679)] = 7296, + [SMALL_STATE(680)] = 7424, + [SMALL_STATE(681)] = 7552, + [SMALL_STATE(682)] = 7680, + [SMALL_STATE(683)] = 7808, + [SMALL_STATE(684)] = 7936, + [SMALL_STATE(685)] = 8064, + [SMALL_STATE(686)] = 8192, + [SMALL_STATE(687)] = 8320, + [SMALL_STATE(688)] = 8448, + [SMALL_STATE(689)] = 8576, + [SMALL_STATE(690)] = 8704, + [SMALL_STATE(691)] = 8832, + [SMALL_STATE(692)] = 8960, + [SMALL_STATE(693)] = 9088, + [SMALL_STATE(694)] = 9216, + [SMALL_STATE(695)] = 9344, + [SMALL_STATE(696)] = 9472, + [SMALL_STATE(697)] = 9600, + [SMALL_STATE(698)] = 9728, + [SMALL_STATE(699)] = 9856, + [SMALL_STATE(700)] = 9984, + [SMALL_STATE(701)] = 10112, + [SMALL_STATE(702)] = 10241, + [SMALL_STATE(703)] = 10370, + [SMALL_STATE(704)] = 10499, + [SMALL_STATE(705)] = 10628, + [SMALL_STATE(706)] = 10757, + [SMALL_STATE(707)] = 10886, + [SMALL_STATE(708)] = 11015, + [SMALL_STATE(709)] = 11144, + [SMALL_STATE(710)] = 11273, + [SMALL_STATE(711)] = 11402, + [SMALL_STATE(712)] = 11531, + [SMALL_STATE(713)] = 11660, + [SMALL_STATE(714)] = 11789, + [SMALL_STATE(715)] = 11918, + [SMALL_STATE(716)] = 12047, + [SMALL_STATE(717)] = 12176, + [SMALL_STATE(718)] = 12305, + [SMALL_STATE(719)] = 12434, + [SMALL_STATE(720)] = 12563, + [SMALL_STATE(721)] = 12692, + [SMALL_STATE(722)] = 12821, + [SMALL_STATE(723)] = 12950, + [SMALL_STATE(724)] = 13079, + [SMALL_STATE(725)] = 13208, + [SMALL_STATE(726)] = 13335, + [SMALL_STATE(727)] = 13464, + [SMALL_STATE(728)] = 13593, + [SMALL_STATE(729)] = 13722, + [SMALL_STATE(730)] = 13851, + [SMALL_STATE(731)] = 13980, + [SMALL_STATE(732)] = 14109, + [SMALL_STATE(733)] = 14238, + [SMALL_STATE(734)] = 14367, + [SMALL_STATE(735)] = 14496, + [SMALL_STATE(736)] = 14625, + [SMALL_STATE(737)] = 14754, + [SMALL_STATE(738)] = 14883, + [SMALL_STATE(739)] = 15012, + [SMALL_STATE(740)] = 15141, + [SMALL_STATE(741)] = 15270, + [SMALL_STATE(742)] = 15399, + [SMALL_STATE(743)] = 15528, + [SMALL_STATE(744)] = 15657, + [SMALL_STATE(745)] = 15786, + [SMALL_STATE(746)] = 15915, + [SMALL_STATE(747)] = 16044, + [SMALL_STATE(748)] = 16173, + [SMALL_STATE(749)] = 16302, + [SMALL_STATE(750)] = 16431, + [SMALL_STATE(751)] = 16560, + [SMALL_STATE(752)] = 16689, + [SMALL_STATE(753)] = 16818, + [SMALL_STATE(754)] = 16947, + [SMALL_STATE(755)] = 17076, + [SMALL_STATE(756)] = 17205, + [SMALL_STATE(757)] = 17334, + [SMALL_STATE(758)] = 17463, + [SMALL_STATE(759)] = 17590, + [SMALL_STATE(760)] = 17719, + [SMALL_STATE(761)] = 17848, + [SMALL_STATE(762)] = 17977, + [SMALL_STATE(763)] = 18106, + [SMALL_STATE(764)] = 18235, + [SMALL_STATE(765)] = 18364, + [SMALL_STATE(766)] = 18493, + [SMALL_STATE(767)] = 18622, + [SMALL_STATE(768)] = 18751, + [SMALL_STATE(769)] = 18880, + [SMALL_STATE(770)] = 19009, + [SMALL_STATE(771)] = 19138, + [SMALL_STATE(772)] = 19267, + [SMALL_STATE(773)] = 19396, + [SMALL_STATE(774)] = 19525, + [SMALL_STATE(775)] = 19654, + [SMALL_STATE(776)] = 19783, + [SMALL_STATE(777)] = 19912, + [SMALL_STATE(778)] = 20041, + [SMALL_STATE(779)] = 20170, + [SMALL_STATE(780)] = 20299, + [SMALL_STATE(781)] = 20428, + [SMALL_STATE(782)] = 20557, + [SMALL_STATE(783)] = 20686, + [SMALL_STATE(784)] = 20815, + [SMALL_STATE(785)] = 20944, + [SMALL_STATE(786)] = 21073, + [SMALL_STATE(787)] = 21202, + [SMALL_STATE(788)] = 21331, + [SMALL_STATE(789)] = 21460, + [SMALL_STATE(790)] = 21589, + [SMALL_STATE(791)] = 21718, + [SMALL_STATE(792)] = 21847, + [SMALL_STATE(793)] = 21976, + [SMALL_STATE(794)] = 22105, + [SMALL_STATE(795)] = 22234, + [SMALL_STATE(796)] = 22363, + [SMALL_STATE(797)] = 22492, + [SMALL_STATE(798)] = 22621, + [SMALL_STATE(799)] = 22750, + [SMALL_STATE(800)] = 22876, + [SMALL_STATE(801)] = 23002, + [SMALL_STATE(802)] = 23128, + [SMALL_STATE(803)] = 23254, + [SMALL_STATE(804)] = 23380, + [SMALL_STATE(805)] = 23506, + [SMALL_STATE(806)] = 23632, + [SMALL_STATE(807)] = 23758, + [SMALL_STATE(808)] = 23884, + [SMALL_STATE(809)] = 24010, + [SMALL_STATE(810)] = 24136, + [SMALL_STATE(811)] = 24262, + [SMALL_STATE(812)] = 24388, + [SMALL_STATE(813)] = 24514, + [SMALL_STATE(814)] = 24640, + [SMALL_STATE(815)] = 24766, + [SMALL_STATE(816)] = 24892, + [SMALL_STATE(817)] = 25018, + [SMALL_STATE(818)] = 25144, + [SMALL_STATE(819)] = 25270, + [SMALL_STATE(820)] = 25396, + [SMALL_STATE(821)] = 25522, + [SMALL_STATE(822)] = 25648, + [SMALL_STATE(823)] = 25774, + [SMALL_STATE(824)] = 25900, + [SMALL_STATE(825)] = 26026, + [SMALL_STATE(826)] = 26152, + [SMALL_STATE(827)] = 26278, + [SMALL_STATE(828)] = 26404, + [SMALL_STATE(829)] = 26530, + [SMALL_STATE(830)] = 26656, + [SMALL_STATE(831)] = 26782, + [SMALL_STATE(832)] = 26908, + [SMALL_STATE(833)] = 27034, + [SMALL_STATE(834)] = 27160, + [SMALL_STATE(835)] = 27286, + [SMALL_STATE(836)] = 27412, + [SMALL_STATE(837)] = 27538, + [SMALL_STATE(838)] = 27664, + [SMALL_STATE(839)] = 27790, + [SMALL_STATE(840)] = 27916, + [SMALL_STATE(841)] = 28042, + [SMALL_STATE(842)] = 28168, + [SMALL_STATE(843)] = 28294, + [SMALL_STATE(844)] = 28420, + [SMALL_STATE(845)] = 28546, + [SMALL_STATE(846)] = 28672, + [SMALL_STATE(847)] = 28798, + [SMALL_STATE(848)] = 28924, + [SMALL_STATE(849)] = 29050, + [SMALL_STATE(850)] = 29176, + [SMALL_STATE(851)] = 29302, + [SMALL_STATE(852)] = 29428, + [SMALL_STATE(853)] = 29554, + [SMALL_STATE(854)] = 29680, + [SMALL_STATE(855)] = 29806, + [SMALL_STATE(856)] = 29932, + [SMALL_STATE(857)] = 30058, + [SMALL_STATE(858)] = 30184, + [SMALL_STATE(859)] = 30310, + [SMALL_STATE(860)] = 30436, + [SMALL_STATE(861)] = 30562, + [SMALL_STATE(862)] = 30688, + [SMALL_STATE(863)] = 30814, + [SMALL_STATE(864)] = 30940, + [SMALL_STATE(865)] = 31066, + [SMALL_STATE(866)] = 31192, + [SMALL_STATE(867)] = 31318, + [SMALL_STATE(868)] = 31444, + [SMALL_STATE(869)] = 31570, + [SMALL_STATE(870)] = 31696, + [SMALL_STATE(871)] = 31822, + [SMALL_STATE(872)] = 31948, + [SMALL_STATE(873)] = 32074, + [SMALL_STATE(874)] = 32200, + [SMALL_STATE(875)] = 32326, + [SMALL_STATE(876)] = 32452, + [SMALL_STATE(877)] = 32578, + [SMALL_STATE(878)] = 32704, + [SMALL_STATE(879)] = 32830, + [SMALL_STATE(880)] = 32956, + [SMALL_STATE(881)] = 33082, + [SMALL_STATE(882)] = 33208, + [SMALL_STATE(883)] = 33334, + [SMALL_STATE(884)] = 33460, + [SMALL_STATE(885)] = 33586, + [SMALL_STATE(886)] = 33712, + [SMALL_STATE(887)] = 33838, + [SMALL_STATE(888)] = 33964, + [SMALL_STATE(889)] = 34090, + [SMALL_STATE(890)] = 34216, + [SMALL_STATE(891)] = 34342, + [SMALL_STATE(892)] = 34468, + [SMALL_STATE(893)] = 34594, + [SMALL_STATE(894)] = 34720, + [SMALL_STATE(895)] = 34846, + [SMALL_STATE(896)] = 34972, + [SMALL_STATE(897)] = 35098, + [SMALL_STATE(898)] = 35224, + [SMALL_STATE(899)] = 35350, + [SMALL_STATE(900)] = 35476, + [SMALL_STATE(901)] = 35602, + [SMALL_STATE(902)] = 35728, + [SMALL_STATE(903)] = 35854, + [SMALL_STATE(904)] = 35980, + [SMALL_STATE(905)] = 36106, + [SMALL_STATE(906)] = 36232, + [SMALL_STATE(907)] = 36358, + [SMALL_STATE(908)] = 36484, + [SMALL_STATE(909)] = 36610, + [SMALL_STATE(910)] = 36736, + [SMALL_STATE(911)] = 36862, + [SMALL_STATE(912)] = 36988, + [SMALL_STATE(913)] = 37114, + [SMALL_STATE(914)] = 37240, + [SMALL_STATE(915)] = 37366, + [SMALL_STATE(916)] = 37492, + [SMALL_STATE(917)] = 37618, + [SMALL_STATE(918)] = 37744, + [SMALL_STATE(919)] = 37870, + [SMALL_STATE(920)] = 37996, + [SMALL_STATE(921)] = 38122, + [SMALL_STATE(922)] = 38248, + [SMALL_STATE(923)] = 38374, + [SMALL_STATE(924)] = 38500, + [SMALL_STATE(925)] = 38626, + [SMALL_STATE(926)] = 38752, + [SMALL_STATE(927)] = 38878, + [SMALL_STATE(928)] = 39004, + [SMALL_STATE(929)] = 39130, + [SMALL_STATE(930)] = 39256, + [SMALL_STATE(931)] = 39382, + [SMALL_STATE(932)] = 39508, + [SMALL_STATE(933)] = 39634, + [SMALL_STATE(934)] = 39760, + [SMALL_STATE(935)] = 39886, + [SMALL_STATE(936)] = 40009, + [SMALL_STATE(937)] = 40132, + [SMALL_STATE(938)] = 40255, + [SMALL_STATE(939)] = 40378, + [SMALL_STATE(940)] = 40501, + [SMALL_STATE(941)] = 40624, + [SMALL_STATE(942)] = 40747, + [SMALL_STATE(943)] = 40870, + [SMALL_STATE(944)] = 40993, + [SMALL_STATE(945)] = 41116, + [SMALL_STATE(946)] = 41239, + [SMALL_STATE(947)] = 41362, + [SMALL_STATE(948)] = 41485, + [SMALL_STATE(949)] = 41605, + [SMALL_STATE(950)] = 41725, + [SMALL_STATE(951)] = 41845, + [SMALL_STATE(952)] = 41965, + [SMALL_STATE(953)] = 42085, + [SMALL_STATE(954)] = 42205, + [SMALL_STATE(955)] = 42325, + [SMALL_STATE(956)] = 42445, + [SMALL_STATE(957)] = 42565, + [SMALL_STATE(958)] = 42685, + [SMALL_STATE(959)] = 42805, + [SMALL_STATE(960)] = 42925, + [SMALL_STATE(961)] = 43045, + [SMALL_STATE(962)] = 43095, + [SMALL_STATE(963)] = 43146, + [SMALL_STATE(964)] = 43197, + [SMALL_STATE(965)] = 43248, + [SMALL_STATE(966)] = 43299, + [SMALL_STATE(967)] = 43350, + [SMALL_STATE(968)] = 43401, + [SMALL_STATE(969)] = 43452, + [SMALL_STATE(970)] = 43503, + [SMALL_STATE(971)] = 43554, + [SMALL_STATE(972)] = 43605, + [SMALL_STATE(973)] = 43654, + [SMALL_STATE(974)] = 43705, + [SMALL_STATE(975)] = 43756, + [SMALL_STATE(976)] = 43807, + [SMALL_STATE(977)] = 43858, + [SMALL_STATE(978)] = 43909, + [SMALL_STATE(979)] = 43960, + [SMALL_STATE(980)] = 44011, + [SMALL_STATE(981)] = 44062, + [SMALL_STATE(982)] = 44113, + [SMALL_STATE(983)] = 44164, + [SMALL_STATE(984)] = 44215, + [SMALL_STATE(985)] = 44266, + [SMALL_STATE(986)] = 44317, + [SMALL_STATE(987)] = 44368, + [SMALL_STATE(988)] = 44415, + [SMALL_STATE(989)] = 44466, + [SMALL_STATE(990)] = 44512, + [SMALL_STATE(991)] = 44562, + [SMALL_STATE(992)] = 44612, + [SMALL_STATE(993)] = 44662, + [SMALL_STATE(994)] = 44712, + [SMALL_STATE(995)] = 44758, + [SMALL_STATE(996)] = 44804, + [SMALL_STATE(997)] = 44850, + [SMALL_STATE(998)] = 44896, + [SMALL_STATE(999)] = 44942, + [SMALL_STATE(1000)] = 44988, + [SMALL_STATE(1001)] = 45038, + [SMALL_STATE(1002)] = 45084, + [SMALL_STATE(1003)] = 45130, + [SMALL_STATE(1004)] = 45176, + [SMALL_STATE(1005)] = 45222, + [SMALL_STATE(1006)] = 45268, + [SMALL_STATE(1007)] = 45314, + [SMALL_STATE(1008)] = 45360, + [SMALL_STATE(1009)] = 45406, + [SMALL_STATE(1010)] = 45452, + [SMALL_STATE(1011)] = 45498, + [SMALL_STATE(1012)] = 45544, + [SMALL_STATE(1013)] = 45590, + [SMALL_STATE(1014)] = 45636, + [SMALL_STATE(1015)] = 45682, + [SMALL_STATE(1016)] = 45728, + [SMALL_STATE(1017)] = 45774, + [SMALL_STATE(1018)] = 45820, + [SMALL_STATE(1019)] = 45866, + [SMALL_STATE(1020)] = 45912, + [SMALL_STATE(1021)] = 45958, + [SMALL_STATE(1022)] = 46004, + [SMALL_STATE(1023)] = 46050, + [SMALL_STATE(1024)] = 46096, + [SMALL_STATE(1025)] = 46142, + [SMALL_STATE(1026)] = 46188, + [SMALL_STATE(1027)] = 46234, + [SMALL_STATE(1028)] = 46280, + [SMALL_STATE(1029)] = 46326, + [SMALL_STATE(1030)] = 46372, + [SMALL_STATE(1031)] = 46418, + [SMALL_STATE(1032)] = 46464, + [SMALL_STATE(1033)] = 46510, + [SMALL_STATE(1034)] = 46556, + [SMALL_STATE(1035)] = 46602, + [SMALL_STATE(1036)] = 46648, + [SMALL_STATE(1037)] = 46694, + [SMALL_STATE(1038)] = 46740, + [SMALL_STATE(1039)] = 46786, + [SMALL_STATE(1040)] = 46832, + [SMALL_STATE(1041)] = 46878, + [SMALL_STATE(1042)] = 46924, + [SMALL_STATE(1043)] = 46970, + [SMALL_STATE(1044)] = 47016, + [SMALL_STATE(1045)] = 47062, + [SMALL_STATE(1046)] = 47108, + [SMALL_STATE(1047)] = 47154, + [SMALL_STATE(1048)] = 47200, + [SMALL_STATE(1049)] = 47246, + [SMALL_STATE(1050)] = 47292, + [SMALL_STATE(1051)] = 47338, + [SMALL_STATE(1052)] = 47384, + [SMALL_STATE(1053)] = 47430, + [SMALL_STATE(1054)] = 47480, + [SMALL_STATE(1055)] = 47526, + [SMALL_STATE(1056)] = 47572, + [SMALL_STATE(1057)] = 47618, + [SMALL_STATE(1058)] = 47664, + [SMALL_STATE(1059)] = 47710, + [SMALL_STATE(1060)] = 47756, + [SMALL_STATE(1061)] = 47802, + [SMALL_STATE(1062)] = 47848, + [SMALL_STATE(1063)] = 47894, + [SMALL_STATE(1064)] = 47944, + [SMALL_STATE(1065)] = 47994, + [SMALL_STATE(1066)] = 48044, + [SMALL_STATE(1067)] = 48094, + [SMALL_STATE(1068)] = 48144, + [SMALL_STATE(1069)] = 48194, + [SMALL_STATE(1070)] = 48240, + [SMALL_STATE(1071)] = 48290, + [SMALL_STATE(1072)] = 48340, + [SMALL_STATE(1073)] = 48390, + [SMALL_STATE(1074)] = 48440, + [SMALL_STATE(1075)] = 48490, + [SMALL_STATE(1076)] = 48540, + [SMALL_STATE(1077)] = 48590, + [SMALL_STATE(1078)] = 48640, + [SMALL_STATE(1079)] = 48690, + [SMALL_STATE(1080)] = 48740, + [SMALL_STATE(1081)] = 48790, + [SMALL_STATE(1082)] = 48840, + [SMALL_STATE(1083)] = 48890, + [SMALL_STATE(1084)] = 48940, + [SMALL_STATE(1085)] = 48990, + [SMALL_STATE(1086)] = 49040, + [SMALL_STATE(1087)] = 49086, + [SMALL_STATE(1088)] = 49136, + [SMALL_STATE(1089)] = 49186, + [SMALL_STATE(1090)] = 49236, + [SMALL_STATE(1091)] = 49286, + [SMALL_STATE(1092)] = 49336, + [SMALL_STATE(1093)] = 49386, + [SMALL_STATE(1094)] = 49436, + [SMALL_STATE(1095)] = 49486, + [SMALL_STATE(1096)] = 49536, + [SMALL_STATE(1097)] = 49586, + [SMALL_STATE(1098)] = 49636, + [SMALL_STATE(1099)] = 49686, + [SMALL_STATE(1100)] = 49736, + [SMALL_STATE(1101)] = 49786, + [SMALL_STATE(1102)] = 49836, + [SMALL_STATE(1103)] = 49886, + [SMALL_STATE(1104)] = 49936, + [SMALL_STATE(1105)] = 49986, + [SMALL_STATE(1106)] = 50036, + [SMALL_STATE(1107)] = 50086, + [SMALL_STATE(1108)] = 50136, + [SMALL_STATE(1109)] = 50186, + [SMALL_STATE(1110)] = 50232, + [SMALL_STATE(1111)] = 50281, + [SMALL_STATE(1112)] = 50326, + [SMALL_STATE(1113)] = 50375, + [SMALL_STATE(1114)] = 50420, + [SMALL_STATE(1115)] = 50465, + [SMALL_STATE(1116)] = 50514, + [SMALL_STATE(1117)] = 50563, + [SMALL_STATE(1118)] = 50608, + [SMALL_STATE(1119)] = 50657, + [SMALL_STATE(1120)] = 50706, + [SMALL_STATE(1121)] = 50751, + [SMALL_STATE(1122)] = 50800, + [SMALL_STATE(1123)] = 50849, + [SMALL_STATE(1124)] = 50894, + [SMALL_STATE(1125)] = 50939, + [SMALL_STATE(1126)] = 50984, + [SMALL_STATE(1127)] = 51029, + [SMALL_STATE(1128)] = 51078, + [SMALL_STATE(1129)] = 51123, + [SMALL_STATE(1130)] = 51168, + [SMALL_STATE(1131)] = 51213, + [SMALL_STATE(1132)] = 51258, + [SMALL_STATE(1133)] = 51303, + [SMALL_STATE(1134)] = 51348, + [SMALL_STATE(1135)] = 51397, + [SMALL_STATE(1136)] = 51446, + [SMALL_STATE(1137)] = 51495, + [SMALL_STATE(1138)] = 51540, + [SMALL_STATE(1139)] = 51585, + [SMALL_STATE(1140)] = 51630, + [SMALL_STATE(1141)] = 51675, + [SMALL_STATE(1142)] = 51720, + [SMALL_STATE(1143)] = 51765, + [SMALL_STATE(1144)] = 51810, + [SMALL_STATE(1145)] = 51859, + [SMALL_STATE(1146)] = 51904, + [SMALL_STATE(1147)] = 51949, + [SMALL_STATE(1148)] = 51998, + [SMALL_STATE(1149)] = 52043, + [SMALL_STATE(1150)] = 52092, + [SMALL_STATE(1151)] = 52141, + [SMALL_STATE(1152)] = 52190, + [SMALL_STATE(1153)] = 52239, + [SMALL_STATE(1154)] = 52288, + [SMALL_STATE(1155)] = 52337, + [SMALL_STATE(1156)] = 52386, + [SMALL_STATE(1157)] = 52431, + [SMALL_STATE(1158)] = 52476, + [SMALL_STATE(1159)] = 52521, + [SMALL_STATE(1160)] = 52566, + [SMALL_STATE(1161)] = 52615, + [SMALL_STATE(1162)] = 52660, + [SMALL_STATE(1163)] = 52705, + [SMALL_STATE(1164)] = 52750, + [SMALL_STATE(1165)] = 52795, + [SMALL_STATE(1166)] = 52844, + [SMALL_STATE(1167)] = 52893, + [SMALL_STATE(1168)] = 52938, + [SMALL_STATE(1169)] = 52983, + [SMALL_STATE(1170)] = 53028, + [SMALL_STATE(1171)] = 53073, + [SMALL_STATE(1172)] = 53118, + [SMALL_STATE(1173)] = 53167, + [SMALL_STATE(1174)] = 53216, + [SMALL_STATE(1175)] = 53261, + [SMALL_STATE(1176)] = 53306, + [SMALL_STATE(1177)] = 53351, + [SMALL_STATE(1178)] = 53400, + [SMALL_STATE(1179)] = 53449, + [SMALL_STATE(1180)] = 53494, + [SMALL_STATE(1181)] = 53539, + [SMALL_STATE(1182)] = 53588, + [SMALL_STATE(1183)] = 53637, + [SMALL_STATE(1184)] = 53682, + [SMALL_STATE(1185)] = 53727, + [SMALL_STATE(1186)] = 53772, + [SMALL_STATE(1187)] = 53821, + [SMALL_STATE(1188)] = 53870, + [SMALL_STATE(1189)] = 53919, + [SMALL_STATE(1190)] = 53968, + [SMALL_STATE(1191)] = 54017, + [SMALL_STATE(1192)] = 54066, + [SMALL_STATE(1193)] = 54115, + [SMALL_STATE(1194)] = 54160, + [SMALL_STATE(1195)] = 54205, + [SMALL_STATE(1196)] = 54254, + [SMALL_STATE(1197)] = 54303, + [SMALL_STATE(1198)] = 54352, + [SMALL_STATE(1199)] = 54401, + [SMALL_STATE(1200)] = 54446, + [SMALL_STATE(1201)] = 54495, + [SMALL_STATE(1202)] = 54544, + [SMALL_STATE(1203)] = 54593, + [SMALL_STATE(1204)] = 54642, + [SMALL_STATE(1205)] = 54691, + [SMALL_STATE(1206)] = 54740, + [SMALL_STATE(1207)] = 54789, + [SMALL_STATE(1208)] = 54838, + [SMALL_STATE(1209)] = 54887, + [SMALL_STATE(1210)] = 54936, + [SMALL_STATE(1211)] = 54985, + [SMALL_STATE(1212)] = 55034, + [SMALL_STATE(1213)] = 55083, + [SMALL_STATE(1214)] = 55132, + [SMALL_STATE(1215)] = 55181, + [SMALL_STATE(1216)] = 55230, + [SMALL_STATE(1217)] = 55279, + [SMALL_STATE(1218)] = 55328, + [SMALL_STATE(1219)] = 55377, + [SMALL_STATE(1220)] = 55426, + [SMALL_STATE(1221)] = 55475, + [SMALL_STATE(1222)] = 55524, + [SMALL_STATE(1223)] = 55569, + [SMALL_STATE(1224)] = 55618, + [SMALL_STATE(1225)] = 55667, + [SMALL_STATE(1226)] = 55716, + [SMALL_STATE(1227)] = 55765, + [SMALL_STATE(1228)] = 55810, + [SMALL_STATE(1229)] = 55859, + [SMALL_STATE(1230)] = 55908, + [SMALL_STATE(1231)] = 55957, + [SMALL_STATE(1232)] = 56006, + [SMALL_STATE(1233)] = 56055, + [SMALL_STATE(1234)] = 56104, + [SMALL_STATE(1235)] = 56153, + [SMALL_STATE(1236)] = 56202, + [SMALL_STATE(1237)] = 56247, + [SMALL_STATE(1238)] = 56292, + [SMALL_STATE(1239)] = 56341, + [SMALL_STATE(1240)] = 56386, + [SMALL_STATE(1241)] = 56431, + [SMALL_STATE(1242)] = 56480, + [SMALL_STATE(1243)] = 56529, + [SMALL_STATE(1244)] = 56574, + [SMALL_STATE(1245)] = 56619, + [SMALL_STATE(1246)] = 56668, + [SMALL_STATE(1247)] = 56717, + [SMALL_STATE(1248)] = 56766, + [SMALL_STATE(1249)] = 56815, + [SMALL_STATE(1250)] = 56864, + [SMALL_STATE(1251)] = 56913, + [SMALL_STATE(1252)] = 56962, + [SMALL_STATE(1253)] = 57011, + [SMALL_STATE(1254)] = 57060, + [SMALL_STATE(1255)] = 57109, + [SMALL_STATE(1256)] = 57158, + [SMALL_STATE(1257)] = 57207, + [SMALL_STATE(1258)] = 57256, + [SMALL_STATE(1259)] = 57305, + [SMALL_STATE(1260)] = 57354, + [SMALL_STATE(1261)] = 57403, + [SMALL_STATE(1262)] = 57452, + [SMALL_STATE(1263)] = 57501, + [SMALL_STATE(1264)] = 57550, + [SMALL_STATE(1265)] = 57599, + [SMALL_STATE(1266)] = 57648, + [SMALL_STATE(1267)] = 57697, + [SMALL_STATE(1268)] = 57746, + [SMALL_STATE(1269)] = 57795, + [SMALL_STATE(1270)] = 57844, + [SMALL_STATE(1271)] = 57893, + [SMALL_STATE(1272)] = 57942, + [SMALL_STATE(1273)] = 57991, + [SMALL_STATE(1274)] = 58040, + [SMALL_STATE(1275)] = 58089, + [SMALL_STATE(1276)] = 58138, + [SMALL_STATE(1277)] = 58187, + [SMALL_STATE(1278)] = 58236, + [SMALL_STATE(1279)] = 58285, + [SMALL_STATE(1280)] = 58334, + [SMALL_STATE(1281)] = 58383, + [SMALL_STATE(1282)] = 58432, + [SMALL_STATE(1283)] = 58481, + [SMALL_STATE(1284)] = 58530, + [SMALL_STATE(1285)] = 58579, + [SMALL_STATE(1286)] = 58628, + [SMALL_STATE(1287)] = 58677, + [SMALL_STATE(1288)] = 58726, + [SMALL_STATE(1289)] = 58775, + [SMALL_STATE(1290)] = 58824, + [SMALL_STATE(1291)] = 58873, + [SMALL_STATE(1292)] = 58922, + [SMALL_STATE(1293)] = 58971, + [SMALL_STATE(1294)] = 59020, + [SMALL_STATE(1295)] = 59069, + [SMALL_STATE(1296)] = 59118, + [SMALL_STATE(1297)] = 59167, + [SMALL_STATE(1298)] = 59216, + [SMALL_STATE(1299)] = 59265, + [SMALL_STATE(1300)] = 59314, + [SMALL_STATE(1301)] = 59363, + [SMALL_STATE(1302)] = 59412, + [SMALL_STATE(1303)] = 59461, + [SMALL_STATE(1304)] = 59506, + [SMALL_STATE(1305)] = 59555, + [SMALL_STATE(1306)] = 59600, + [SMALL_STATE(1307)] = 59649, + [SMALL_STATE(1308)] = 59694, + [SMALL_STATE(1309)] = 59739, + [SMALL_STATE(1310)] = 59788, + [SMALL_STATE(1311)] = 59837, + [SMALL_STATE(1312)] = 59886, + [SMALL_STATE(1313)] = 59935, + [SMALL_STATE(1314)] = 59984, + [SMALL_STATE(1315)] = 60033, + [SMALL_STATE(1316)] = 60082, + [SMALL_STATE(1317)] = 60131, + [SMALL_STATE(1318)] = 60176, + [SMALL_STATE(1319)] = 60225, + [SMALL_STATE(1320)] = 60270, + [SMALL_STATE(1321)] = 60315, + [SMALL_STATE(1322)] = 60364, + [SMALL_STATE(1323)] = 60413, + [SMALL_STATE(1324)] = 60458, + [SMALL_STATE(1325)] = 60507, + [SMALL_STATE(1326)] = 60556, + [SMALL_STATE(1327)] = 60605, + [SMALL_STATE(1328)] = 60654, + [SMALL_STATE(1329)] = 60703, + [SMALL_STATE(1330)] = 60752, + [SMALL_STATE(1331)] = 60801, + [SMALL_STATE(1332)] = 60850, + [SMALL_STATE(1333)] = 60899, + [SMALL_STATE(1334)] = 60948, + [SMALL_STATE(1335)] = 60997, + [SMALL_STATE(1336)] = 61046, + [SMALL_STATE(1337)] = 61091, + [SMALL_STATE(1338)] = 61140, + [SMALL_STATE(1339)] = 61189, + [SMALL_STATE(1340)] = 61234, + [SMALL_STATE(1341)] = 61283, + [SMALL_STATE(1342)] = 61332, + [SMALL_STATE(1343)] = 61381, + [SMALL_STATE(1344)] = 61430, + [SMALL_STATE(1345)] = 61479, + [SMALL_STATE(1346)] = 61528, + [SMALL_STATE(1347)] = 61577, + [SMALL_STATE(1348)] = 61626, + [SMALL_STATE(1349)] = 61675, + [SMALL_STATE(1350)] = 61720, + [SMALL_STATE(1351)] = 61765, + [SMALL_STATE(1352)] = 61814, + [SMALL_STATE(1353)] = 61859, + [SMALL_STATE(1354)] = 61908, + [SMALL_STATE(1355)] = 61953, + [SMALL_STATE(1356)] = 62002, + [SMALL_STATE(1357)] = 62047, + [SMALL_STATE(1358)] = 62096, + [SMALL_STATE(1359)] = 62145, + [SMALL_STATE(1360)] = 62194, + [SMALL_STATE(1361)] = 62243, + [SMALL_STATE(1362)] = 62292, + [SMALL_STATE(1363)] = 62341, + [SMALL_STATE(1364)] = 62386, + [SMALL_STATE(1365)] = 62431, + [SMALL_STATE(1366)] = 62476, + [SMALL_STATE(1367)] = 62521, + [SMALL_STATE(1368)] = 62570, + [SMALL_STATE(1369)] = 62619, + [SMALL_STATE(1370)] = 62664, + [SMALL_STATE(1371)] = 62709, + [SMALL_STATE(1372)] = 62758, + [SMALL_STATE(1373)] = 62807, + [SMALL_STATE(1374)] = 62856, + [SMALL_STATE(1375)] = 62905, + [SMALL_STATE(1376)] = 62950, + [SMALL_STATE(1377)] = 62999, + [SMALL_STATE(1378)] = 63048, + [SMALL_STATE(1379)] = 63097, + [SMALL_STATE(1380)] = 63142, + [SMALL_STATE(1381)] = 63191, + [SMALL_STATE(1382)] = 63240, + [SMALL_STATE(1383)] = 63289, + [SMALL_STATE(1384)] = 63338, + [SMALL_STATE(1385)] = 63387, + [SMALL_STATE(1386)] = 63436, + [SMALL_STATE(1387)] = 63485, + [SMALL_STATE(1388)] = 63534, + [SMALL_STATE(1389)] = 63583, + [SMALL_STATE(1390)] = 63632, + [SMALL_STATE(1391)] = 63681, + [SMALL_STATE(1392)] = 63730, + [SMALL_STATE(1393)] = 63779, + [SMALL_STATE(1394)] = 63828, + [SMALL_STATE(1395)] = 63877, + [SMALL_STATE(1396)] = 63926, + [SMALL_STATE(1397)] = 63975, + [SMALL_STATE(1398)] = 64024, + [SMALL_STATE(1399)] = 64073, + [SMALL_STATE(1400)] = 64122, + [SMALL_STATE(1401)] = 64167, + [SMALL_STATE(1402)] = 64216, + [SMALL_STATE(1403)] = 64265, + [SMALL_STATE(1404)] = 64314, + [SMALL_STATE(1405)] = 64363, + [SMALL_STATE(1406)] = 64412, + [SMALL_STATE(1407)] = 64461, + [SMALL_STATE(1408)] = 64506, + [SMALL_STATE(1409)] = 64555, + [SMALL_STATE(1410)] = 64604, + [SMALL_STATE(1411)] = 64653, + [SMALL_STATE(1412)] = 64702, + [SMALL_STATE(1413)] = 64751, + [SMALL_STATE(1414)] = 64800, + [SMALL_STATE(1415)] = 64849, + [SMALL_STATE(1416)] = 64898, + [SMALL_STATE(1417)] = 64947, + [SMALL_STATE(1418)] = 64996, + [SMALL_STATE(1419)] = 65041, + [SMALL_STATE(1420)] = 65086, + [SMALL_STATE(1421)] = 65131, + [SMALL_STATE(1422)] = 65180, + [SMALL_STATE(1423)] = 65229, + [SMALL_STATE(1424)] = 65278, + [SMALL_STATE(1425)] = 65327, + [SMALL_STATE(1426)] = 65376, + [SMALL_STATE(1427)] = 65425, + [SMALL_STATE(1428)] = 65474, + [SMALL_STATE(1429)] = 65523, + [SMALL_STATE(1430)] = 65568, + [SMALL_STATE(1431)] = 65617, + [SMALL_STATE(1432)] = 65662, + [SMALL_STATE(1433)] = 65711, + [SMALL_STATE(1434)] = 65760, + [SMALL_STATE(1435)] = 65809, + [SMALL_STATE(1436)] = 65858, + [SMALL_STATE(1437)] = 65903, + [SMALL_STATE(1438)] = 65952, + [SMALL_STATE(1439)] = 66001, + [SMALL_STATE(1440)] = 66050, + [SMALL_STATE(1441)] = 66099, + [SMALL_STATE(1442)] = 66148, + [SMALL_STATE(1443)] = 66197, + [SMALL_STATE(1444)] = 66242, + [SMALL_STATE(1445)] = 66291, + [SMALL_STATE(1446)] = 66340, + [SMALL_STATE(1447)] = 66389, + [SMALL_STATE(1448)] = 66438, + [SMALL_STATE(1449)] = 66487, + [SMALL_STATE(1450)] = 66536, + [SMALL_STATE(1451)] = 66581, + [SMALL_STATE(1452)] = 66630, + [SMALL_STATE(1453)] = 66679, + [SMALL_STATE(1454)] = 66728, + [SMALL_STATE(1455)] = 66777, + [SMALL_STATE(1456)] = 66826, + [SMALL_STATE(1457)] = 66875, + [SMALL_STATE(1458)] = 66924, + [SMALL_STATE(1459)] = 66973, + [SMALL_STATE(1460)] = 67022, + [SMALL_STATE(1461)] = 67071, + [SMALL_STATE(1462)] = 67120, + [SMALL_STATE(1463)] = 67169, + [SMALL_STATE(1464)] = 67218, + [SMALL_STATE(1465)] = 67263, + [SMALL_STATE(1466)] = 67312, + [SMALL_STATE(1467)] = 67361, + [SMALL_STATE(1468)] = 67410, + [SMALL_STATE(1469)] = 67459, + [SMALL_STATE(1470)] = 67508, + [SMALL_STATE(1471)] = 67557, + [SMALL_STATE(1472)] = 67602, + [SMALL_STATE(1473)] = 67651, + [SMALL_STATE(1474)] = 67700, + [SMALL_STATE(1475)] = 67749, + [SMALL_STATE(1476)] = 67798, + [SMALL_STATE(1477)] = 67847, + [SMALL_STATE(1478)] = 67896, + [SMALL_STATE(1479)] = 67941, + [SMALL_STATE(1480)] = 67990, + [SMALL_STATE(1481)] = 68039, + [SMALL_STATE(1482)] = 68088, + [SMALL_STATE(1483)] = 68137, + [SMALL_STATE(1484)] = 68186, + [SMALL_STATE(1485)] = 68235, + [SMALL_STATE(1486)] = 68284, + [SMALL_STATE(1487)] = 68333, + [SMALL_STATE(1488)] = 68382, + [SMALL_STATE(1489)] = 68431, + [SMALL_STATE(1490)] = 68480, + [SMALL_STATE(1491)] = 68529, + [SMALL_STATE(1492)] = 68578, + [SMALL_STATE(1493)] = 68623, + [SMALL_STATE(1494)] = 68668, + [SMALL_STATE(1495)] = 68717, + [SMALL_STATE(1496)] = 68766, + [SMALL_STATE(1497)] = 68815, + [SMALL_STATE(1498)] = 68864, + [SMALL_STATE(1499)] = 68913, + [SMALL_STATE(1500)] = 68962, + [SMALL_STATE(1501)] = 69011, + [SMALL_STATE(1502)] = 69056, + [SMALL_STATE(1503)] = 69105, + [SMALL_STATE(1504)] = 69154, + [SMALL_STATE(1505)] = 69199, + [SMALL_STATE(1506)] = 69244, + [SMALL_STATE(1507)] = 69289, + [SMALL_STATE(1508)] = 69334, + [SMALL_STATE(1509)] = 69379, + [SMALL_STATE(1510)] = 69424, + [SMALL_STATE(1511)] = 69469, + [SMALL_STATE(1512)] = 69514, + [SMALL_STATE(1513)] = 69559, + [SMALL_STATE(1514)] = 69604, + [SMALL_STATE(1515)] = 69653, + [SMALL_STATE(1516)] = 69698, + [SMALL_STATE(1517)] = 69743, + [SMALL_STATE(1518)] = 69788, + [SMALL_STATE(1519)] = 69833, + [SMALL_STATE(1520)] = 69882, + [SMALL_STATE(1521)] = 69927, + [SMALL_STATE(1522)] = 69972, + [SMALL_STATE(1523)] = 70017, + [SMALL_STATE(1524)] = 70062, + [SMALL_STATE(1525)] = 70107, + [SMALL_STATE(1526)] = 70152, + [SMALL_STATE(1527)] = 70197, + [SMALL_STATE(1528)] = 70242, + [SMALL_STATE(1529)] = 70287, + [SMALL_STATE(1530)] = 70332, + [SMALL_STATE(1531)] = 70377, + [SMALL_STATE(1532)] = 70422, + [SMALL_STATE(1533)] = 70467, + [SMALL_STATE(1534)] = 70512, + [SMALL_STATE(1535)] = 70557, + [SMALL_STATE(1536)] = 70602, + [SMALL_STATE(1537)] = 70647, + [SMALL_STATE(1538)] = 70692, + [SMALL_STATE(1539)] = 70737, + [SMALL_STATE(1540)] = 70782, + [SMALL_STATE(1541)] = 70827, + [SMALL_STATE(1542)] = 70872, + [SMALL_STATE(1543)] = 70917, + [SMALL_STATE(1544)] = 70962, + [SMALL_STATE(1545)] = 71007, + [SMALL_STATE(1546)] = 71052, + [SMALL_STATE(1547)] = 71097, + [SMALL_STATE(1548)] = 71142, + [SMALL_STATE(1549)] = 71187, + [SMALL_STATE(1550)] = 71232, + [SMALL_STATE(1551)] = 71277, + [SMALL_STATE(1552)] = 71322, + [SMALL_STATE(1553)] = 71367, + [SMALL_STATE(1554)] = 71412, + [SMALL_STATE(1555)] = 71461, + [SMALL_STATE(1556)] = 71505, + [SMALL_STATE(1557)] = 71549, + [SMALL_STATE(1558)] = 71593, + [SMALL_STATE(1559)] = 71637, + [SMALL_STATE(1560)] = 71681, + [SMALL_STATE(1561)] = 71725, + [SMALL_STATE(1562)] = 71769, + [SMALL_STATE(1563)] = 71813, + [SMALL_STATE(1564)] = 71857, + [SMALL_STATE(1565)] = 71901, + [SMALL_STATE(1566)] = 71945, + [SMALL_STATE(1567)] = 71989, + [SMALL_STATE(1568)] = 72035, + [SMALL_STATE(1569)] = 72079, + [SMALL_STATE(1570)] = 72123, + [SMALL_STATE(1571)] = 72167, + [SMALL_STATE(1572)] = 72211, + [SMALL_STATE(1573)] = 72255, + [SMALL_STATE(1574)] = 72299, + [SMALL_STATE(1575)] = 72343, + [SMALL_STATE(1576)] = 72387, + [SMALL_STATE(1577)] = 72431, + [SMALL_STATE(1578)] = 72475, + [SMALL_STATE(1579)] = 72519, + [SMALL_STATE(1580)] = 72563, + [SMALL_STATE(1581)] = 72607, + [SMALL_STATE(1582)] = 72651, + [SMALL_STATE(1583)] = 72695, + [SMALL_STATE(1584)] = 72739, + [SMALL_STATE(1585)] = 72783, + [SMALL_STATE(1586)] = 72827, + [SMALL_STATE(1587)] = 72871, + [SMALL_STATE(1588)] = 72915, + [SMALL_STATE(1589)] = 72959, + [SMALL_STATE(1590)] = 73003, + [SMALL_STATE(1591)] = 73047, + [SMALL_STATE(1592)] = 73091, + [SMALL_STATE(1593)] = 73135, + [SMALL_STATE(1594)] = 73179, + [SMALL_STATE(1595)] = 73223, + [SMALL_STATE(1596)] = 73267, + [SMALL_STATE(1597)] = 73311, + [SMALL_STATE(1598)] = 73355, + [SMALL_STATE(1599)] = 73399, + [SMALL_STATE(1600)] = 73443, + [SMALL_STATE(1601)] = 73487, + [SMALL_STATE(1602)] = 73531, + [SMALL_STATE(1603)] = 73575, + [SMALL_STATE(1604)] = 73619, + [SMALL_STATE(1605)] = 73663, + [SMALL_STATE(1606)] = 73707, + [SMALL_STATE(1607)] = 73751, + [SMALL_STATE(1608)] = 73795, + [SMALL_STATE(1609)] = 73839, + [SMALL_STATE(1610)] = 73883, + [SMALL_STATE(1611)] = 73927, + [SMALL_STATE(1612)] = 73971, + [SMALL_STATE(1613)] = 74015, + [SMALL_STATE(1614)] = 74059, + [SMALL_STATE(1615)] = 74103, + [SMALL_STATE(1616)] = 74147, + [SMALL_STATE(1617)] = 74191, + [SMALL_STATE(1618)] = 74235, + [SMALL_STATE(1619)] = 74279, + [SMALL_STATE(1620)] = 74323, + [SMALL_STATE(1621)] = 74367, + [SMALL_STATE(1622)] = 74411, + [SMALL_STATE(1623)] = 74455, + [SMALL_STATE(1624)] = 74499, + [SMALL_STATE(1625)] = 74543, + [SMALL_STATE(1626)] = 74587, + [SMALL_STATE(1627)] = 74631, + [SMALL_STATE(1628)] = 74675, + [SMALL_STATE(1629)] = 74719, + [SMALL_STATE(1630)] = 74763, + [SMALL_STATE(1631)] = 74807, + [SMALL_STATE(1632)] = 74851, + [SMALL_STATE(1633)] = 74895, + [SMALL_STATE(1634)] = 74939, + [SMALL_STATE(1635)] = 74983, + [SMALL_STATE(1636)] = 75027, + [SMALL_STATE(1637)] = 75071, + [SMALL_STATE(1638)] = 75115, + [SMALL_STATE(1639)] = 75159, + [SMALL_STATE(1640)] = 75203, + [SMALL_STATE(1641)] = 75247, + [SMALL_STATE(1642)] = 75291, + [SMALL_STATE(1643)] = 75335, + [SMALL_STATE(1644)] = 75379, + [SMALL_STATE(1645)] = 75423, + [SMALL_STATE(1646)] = 75467, + [SMALL_STATE(1647)] = 75511, + [SMALL_STATE(1648)] = 75555, + [SMALL_STATE(1649)] = 75599, + [SMALL_STATE(1650)] = 75643, + [SMALL_STATE(1651)] = 75687, + [SMALL_STATE(1652)] = 75731, + [SMALL_STATE(1653)] = 75775, + [SMALL_STATE(1654)] = 75819, + [SMALL_STATE(1655)] = 75863, + [SMALL_STATE(1656)] = 75907, + [SMALL_STATE(1657)] = 75951, + [SMALL_STATE(1658)] = 75995, + [SMALL_STATE(1659)] = 76039, + [SMALL_STATE(1660)] = 76083, + [SMALL_STATE(1661)] = 76127, + [SMALL_STATE(1662)] = 76171, + [SMALL_STATE(1663)] = 76215, + [SMALL_STATE(1664)] = 76259, + [SMALL_STATE(1665)] = 76303, + [SMALL_STATE(1666)] = 76347, + [SMALL_STATE(1667)] = 76391, + [SMALL_STATE(1668)] = 76435, + [SMALL_STATE(1669)] = 76479, + [SMALL_STATE(1670)] = 76523, + [SMALL_STATE(1671)] = 76567, + [SMALL_STATE(1672)] = 76611, + [SMALL_STATE(1673)] = 76655, + [SMALL_STATE(1674)] = 76699, + [SMALL_STATE(1675)] = 76743, + [SMALL_STATE(1676)] = 76787, + [SMALL_STATE(1677)] = 76831, + [SMALL_STATE(1678)] = 76875, + [SMALL_STATE(1679)] = 76919, + [SMALL_STATE(1680)] = 76963, + [SMALL_STATE(1681)] = 77007, + [SMALL_STATE(1682)] = 77051, + [SMALL_STATE(1683)] = 77095, + [SMALL_STATE(1684)] = 77139, + [SMALL_STATE(1685)] = 77183, + [SMALL_STATE(1686)] = 77227, + [SMALL_STATE(1687)] = 77271, + [SMALL_STATE(1688)] = 77315, + [SMALL_STATE(1689)] = 77359, + [SMALL_STATE(1690)] = 77403, + [SMALL_STATE(1691)] = 77447, + [SMALL_STATE(1692)] = 77491, + [SMALL_STATE(1693)] = 77535, + [SMALL_STATE(1694)] = 77579, + [SMALL_STATE(1695)] = 77623, + [SMALL_STATE(1696)] = 77667, + [SMALL_STATE(1697)] = 77711, + [SMALL_STATE(1698)] = 77755, + [SMALL_STATE(1699)] = 77799, + [SMALL_STATE(1700)] = 77843, + [SMALL_STATE(1701)] = 77887, + [SMALL_STATE(1702)] = 77931, + [SMALL_STATE(1703)] = 77975, + [SMALL_STATE(1704)] = 78019, + [SMALL_STATE(1705)] = 78063, + [SMALL_STATE(1706)] = 78107, + [SMALL_STATE(1707)] = 78151, + [SMALL_STATE(1708)] = 78195, + [SMALL_STATE(1709)] = 78239, + [SMALL_STATE(1710)] = 78283, + [SMALL_STATE(1711)] = 78327, + [SMALL_STATE(1712)] = 78371, + [SMALL_STATE(1713)] = 78415, + [SMALL_STATE(1714)] = 78459, + [SMALL_STATE(1715)] = 78503, + [SMALL_STATE(1716)] = 78547, + [SMALL_STATE(1717)] = 78591, + [SMALL_STATE(1718)] = 78635, + [SMALL_STATE(1719)] = 78679, + [SMALL_STATE(1720)] = 78723, + [SMALL_STATE(1721)] = 78767, + [SMALL_STATE(1722)] = 78811, + [SMALL_STATE(1723)] = 78855, + [SMALL_STATE(1724)] = 78899, + [SMALL_STATE(1725)] = 78943, + [SMALL_STATE(1726)] = 78987, + [SMALL_STATE(1727)] = 79031, + [SMALL_STATE(1728)] = 79075, + [SMALL_STATE(1729)] = 79119, + [SMALL_STATE(1730)] = 79163, + [SMALL_STATE(1731)] = 79207, + [SMALL_STATE(1732)] = 79251, + [SMALL_STATE(1733)] = 79295, + [SMALL_STATE(1734)] = 79339, + [SMALL_STATE(1735)] = 79383, + [SMALL_STATE(1736)] = 79427, + [SMALL_STATE(1737)] = 79471, + [SMALL_STATE(1738)] = 79515, + [SMALL_STATE(1739)] = 79559, + [SMALL_STATE(1740)] = 79603, + [SMALL_STATE(1741)] = 79647, + [SMALL_STATE(1742)] = 79691, + [SMALL_STATE(1743)] = 79735, + [SMALL_STATE(1744)] = 79779, + [SMALL_STATE(1745)] = 79823, + [SMALL_STATE(1746)] = 79867, + [SMALL_STATE(1747)] = 79911, + [SMALL_STATE(1748)] = 79955, + [SMALL_STATE(1749)] = 79999, + [SMALL_STATE(1750)] = 80043, + [SMALL_STATE(1751)] = 80087, + [SMALL_STATE(1752)] = 80131, + [SMALL_STATE(1753)] = 80175, + [SMALL_STATE(1754)] = 80219, + [SMALL_STATE(1755)] = 80263, + [SMALL_STATE(1756)] = 80307, + [SMALL_STATE(1757)] = 80351, + [SMALL_STATE(1758)] = 80395, + [SMALL_STATE(1759)] = 80439, + [SMALL_STATE(1760)] = 80483, + [SMALL_STATE(1761)] = 80527, + [SMALL_STATE(1762)] = 80571, + [SMALL_STATE(1763)] = 80615, + [SMALL_STATE(1764)] = 80659, + [SMALL_STATE(1765)] = 80703, + [SMALL_STATE(1766)] = 80747, + [SMALL_STATE(1767)] = 80791, + [SMALL_STATE(1768)] = 80835, + [SMALL_STATE(1769)] = 80879, + [SMALL_STATE(1770)] = 80923, + [SMALL_STATE(1771)] = 80967, + [SMALL_STATE(1772)] = 81011, + [SMALL_STATE(1773)] = 81055, + [SMALL_STATE(1774)] = 81099, + [SMALL_STATE(1775)] = 81143, + [SMALL_STATE(1776)] = 81187, + [SMALL_STATE(1777)] = 81231, + [SMALL_STATE(1778)] = 81275, + [SMALL_STATE(1779)] = 81319, + [SMALL_STATE(1780)] = 81363, + [SMALL_STATE(1781)] = 81407, + [SMALL_STATE(1782)] = 81451, + [SMALL_STATE(1783)] = 81495, + [SMALL_STATE(1784)] = 81539, + [SMALL_STATE(1785)] = 81583, + [SMALL_STATE(1786)] = 81627, + [SMALL_STATE(1787)] = 81671, + [SMALL_STATE(1788)] = 81715, + [SMALL_STATE(1789)] = 81759, + [SMALL_STATE(1790)] = 81803, + [SMALL_STATE(1791)] = 81847, + [SMALL_STATE(1792)] = 81891, + [SMALL_STATE(1793)] = 81935, + [SMALL_STATE(1794)] = 81979, + [SMALL_STATE(1795)] = 82023, + [SMALL_STATE(1796)] = 82067, + [SMALL_STATE(1797)] = 82111, + [SMALL_STATE(1798)] = 82155, + [SMALL_STATE(1799)] = 82199, + [SMALL_STATE(1800)] = 82243, + [SMALL_STATE(1801)] = 82287, + [SMALL_STATE(1802)] = 82331, + [SMALL_STATE(1803)] = 82375, + [SMALL_STATE(1804)] = 82419, + [SMALL_STATE(1805)] = 82463, + [SMALL_STATE(1806)] = 82507, + [SMALL_STATE(1807)] = 82551, + [SMALL_STATE(1808)] = 82595, + [SMALL_STATE(1809)] = 82639, + [SMALL_STATE(1810)] = 82683, + [SMALL_STATE(1811)] = 82727, + [SMALL_STATE(1812)] = 82771, + [SMALL_STATE(1813)] = 82815, + [SMALL_STATE(1814)] = 82859, + [SMALL_STATE(1815)] = 82903, + [SMALL_STATE(1816)] = 82947, + [SMALL_STATE(1817)] = 82991, + [SMALL_STATE(1818)] = 83035, + [SMALL_STATE(1819)] = 83079, + [SMALL_STATE(1820)] = 83123, + [SMALL_STATE(1821)] = 83167, + [SMALL_STATE(1822)] = 83211, + [SMALL_STATE(1823)] = 83255, + [SMALL_STATE(1824)] = 83299, + [SMALL_STATE(1825)] = 83343, + [SMALL_STATE(1826)] = 83387, + [SMALL_STATE(1827)] = 83431, + [SMALL_STATE(1828)] = 83475, + [SMALL_STATE(1829)] = 83519, + [SMALL_STATE(1830)] = 83563, + [SMALL_STATE(1831)] = 83607, + [SMALL_STATE(1832)] = 83651, + [SMALL_STATE(1833)] = 83695, + [SMALL_STATE(1834)] = 83739, + [SMALL_STATE(1835)] = 83783, + [SMALL_STATE(1836)] = 83827, + [SMALL_STATE(1837)] = 83871, + [SMALL_STATE(1838)] = 83915, + [SMALL_STATE(1839)] = 83959, + [SMALL_STATE(1840)] = 84003, + [SMALL_STATE(1841)] = 84047, + [SMALL_STATE(1842)] = 84091, + [SMALL_STATE(1843)] = 84135, + [SMALL_STATE(1844)] = 84179, + [SMALL_STATE(1845)] = 84223, + [SMALL_STATE(1846)] = 84267, + [SMALL_STATE(1847)] = 84311, + [SMALL_STATE(1848)] = 84355, + [SMALL_STATE(1849)] = 84399, + [SMALL_STATE(1850)] = 84443, + [SMALL_STATE(1851)] = 84487, + [SMALL_STATE(1852)] = 84531, + [SMALL_STATE(1853)] = 84575, + [SMALL_STATE(1854)] = 84619, + [SMALL_STATE(1855)] = 84663, + [SMALL_STATE(1856)] = 84707, + [SMALL_STATE(1857)] = 84751, + [SMALL_STATE(1858)] = 84795, + [SMALL_STATE(1859)] = 84839, + [SMALL_STATE(1860)] = 84883, + [SMALL_STATE(1861)] = 84927, + [SMALL_STATE(1862)] = 84971, + [SMALL_STATE(1863)] = 85015, + [SMALL_STATE(1864)] = 85059, + [SMALL_STATE(1865)] = 85103, + [SMALL_STATE(1866)] = 85147, + [SMALL_STATE(1867)] = 85191, + [SMALL_STATE(1868)] = 85235, + [SMALL_STATE(1869)] = 85279, + [SMALL_STATE(1870)] = 85323, + [SMALL_STATE(1871)] = 85367, + [SMALL_STATE(1872)] = 85411, + [SMALL_STATE(1873)] = 85455, + [SMALL_STATE(1874)] = 85499, + [SMALL_STATE(1875)] = 85543, + [SMALL_STATE(1876)] = 85587, + [SMALL_STATE(1877)] = 85631, + [SMALL_STATE(1878)] = 85675, + [SMALL_STATE(1879)] = 85719, + [SMALL_STATE(1880)] = 85763, + [SMALL_STATE(1881)] = 85807, + [SMALL_STATE(1882)] = 85851, + [SMALL_STATE(1883)] = 85895, + [SMALL_STATE(1884)] = 85939, + [SMALL_STATE(1885)] = 85983, + [SMALL_STATE(1886)] = 86027, + [SMALL_STATE(1887)] = 86071, + [SMALL_STATE(1888)] = 86115, + [SMALL_STATE(1889)] = 86159, + [SMALL_STATE(1890)] = 86203, + [SMALL_STATE(1891)] = 86247, + [SMALL_STATE(1892)] = 86291, + [SMALL_STATE(1893)] = 86335, + [SMALL_STATE(1894)] = 86379, + [SMALL_STATE(1895)] = 86423, + [SMALL_STATE(1896)] = 86467, + [SMALL_STATE(1897)] = 86511, + [SMALL_STATE(1898)] = 86555, + [SMALL_STATE(1899)] = 86599, + [SMALL_STATE(1900)] = 86643, + [SMALL_STATE(1901)] = 86687, + [SMALL_STATE(1902)] = 86731, + [SMALL_STATE(1903)] = 86775, + [SMALL_STATE(1904)] = 86819, + [SMALL_STATE(1905)] = 86863, + [SMALL_STATE(1906)] = 86907, + [SMALL_STATE(1907)] = 86951, + [SMALL_STATE(1908)] = 86995, + [SMALL_STATE(1909)] = 87039, + [SMALL_STATE(1910)] = 87083, + [SMALL_STATE(1911)] = 87127, + [SMALL_STATE(1912)] = 87171, + [SMALL_STATE(1913)] = 87215, + [SMALL_STATE(1914)] = 87259, + [SMALL_STATE(1915)] = 87303, + [SMALL_STATE(1916)] = 87347, + [SMALL_STATE(1917)] = 87391, + [SMALL_STATE(1918)] = 87435, + [SMALL_STATE(1919)] = 87479, + [SMALL_STATE(1920)] = 87523, + [SMALL_STATE(1921)] = 87567, + [SMALL_STATE(1922)] = 87611, + [SMALL_STATE(1923)] = 87655, + [SMALL_STATE(1924)] = 87699, + [SMALL_STATE(1925)] = 87743, + [SMALL_STATE(1926)] = 87787, + [SMALL_STATE(1927)] = 87831, + [SMALL_STATE(1928)] = 87875, + [SMALL_STATE(1929)] = 87919, + [SMALL_STATE(1930)] = 87963, + [SMALL_STATE(1931)] = 88007, + [SMALL_STATE(1932)] = 88051, + [SMALL_STATE(1933)] = 88095, + [SMALL_STATE(1934)] = 88139, + [SMALL_STATE(1935)] = 88183, + [SMALL_STATE(1936)] = 88227, + [SMALL_STATE(1937)] = 88271, + [SMALL_STATE(1938)] = 88315, + [SMALL_STATE(1939)] = 88359, + [SMALL_STATE(1940)] = 88403, + [SMALL_STATE(1941)] = 88447, + [SMALL_STATE(1942)] = 88491, + [SMALL_STATE(1943)] = 88535, + [SMALL_STATE(1944)] = 88579, + [SMALL_STATE(1945)] = 88623, + [SMALL_STATE(1946)] = 88667, + [SMALL_STATE(1947)] = 88711, + [SMALL_STATE(1948)] = 88755, + [SMALL_STATE(1949)] = 88799, + [SMALL_STATE(1950)] = 88843, + [SMALL_STATE(1951)] = 88887, + [SMALL_STATE(1952)] = 88931, + [SMALL_STATE(1953)] = 88975, + [SMALL_STATE(1954)] = 89019, + [SMALL_STATE(1955)] = 89063, + [SMALL_STATE(1956)] = 89107, + [SMALL_STATE(1957)] = 89151, + [SMALL_STATE(1958)] = 89195, + [SMALL_STATE(1959)] = 89239, + [SMALL_STATE(1960)] = 89283, + [SMALL_STATE(1961)] = 89327, + [SMALL_STATE(1962)] = 89371, + [SMALL_STATE(1963)] = 89415, + [SMALL_STATE(1964)] = 89459, + [SMALL_STATE(1965)] = 89503, + [SMALL_STATE(1966)] = 89547, + [SMALL_STATE(1967)] = 89591, + [SMALL_STATE(1968)] = 89635, + [SMALL_STATE(1969)] = 89679, + [SMALL_STATE(1970)] = 89723, + [SMALL_STATE(1971)] = 89767, + [SMALL_STATE(1972)] = 89811, + [SMALL_STATE(1973)] = 89855, + [SMALL_STATE(1974)] = 89899, + [SMALL_STATE(1975)] = 89943, + [SMALL_STATE(1976)] = 89987, + [SMALL_STATE(1977)] = 90031, + [SMALL_STATE(1978)] = 90075, + [SMALL_STATE(1979)] = 90119, + [SMALL_STATE(1980)] = 90163, + [SMALL_STATE(1981)] = 90207, + [SMALL_STATE(1982)] = 90251, + [SMALL_STATE(1983)] = 90295, + [SMALL_STATE(1984)] = 90339, + [SMALL_STATE(1985)] = 90383, + [SMALL_STATE(1986)] = 90427, + [SMALL_STATE(1987)] = 90471, + [SMALL_STATE(1988)] = 90515, + [SMALL_STATE(1989)] = 90559, + [SMALL_STATE(1990)] = 90603, + [SMALL_STATE(1991)] = 90647, + [SMALL_STATE(1992)] = 90691, + [SMALL_STATE(1993)] = 90735, + [SMALL_STATE(1994)] = 90779, + [SMALL_STATE(1995)] = 90823, + [SMALL_STATE(1996)] = 90867, + [SMALL_STATE(1997)] = 90911, + [SMALL_STATE(1998)] = 90955, + [SMALL_STATE(1999)] = 90999, + [SMALL_STATE(2000)] = 91043, + [SMALL_STATE(2001)] = 91087, + [SMALL_STATE(2002)] = 91131, + [SMALL_STATE(2003)] = 91175, + [SMALL_STATE(2004)] = 91219, + [SMALL_STATE(2005)] = 91263, + [SMALL_STATE(2006)] = 91307, + [SMALL_STATE(2007)] = 91351, + [SMALL_STATE(2008)] = 91395, + [SMALL_STATE(2009)] = 91439, + [SMALL_STATE(2010)] = 91483, + [SMALL_STATE(2011)] = 91527, + [SMALL_STATE(2012)] = 91571, + [SMALL_STATE(2013)] = 91615, + [SMALL_STATE(2014)] = 91659, + [SMALL_STATE(2015)] = 91703, + [SMALL_STATE(2016)] = 91747, + [SMALL_STATE(2017)] = 91791, + [SMALL_STATE(2018)] = 91835, + [SMALL_STATE(2019)] = 91879, + [SMALL_STATE(2020)] = 91923, + [SMALL_STATE(2021)] = 91967, + [SMALL_STATE(2022)] = 92011, + [SMALL_STATE(2023)] = 92055, + [SMALL_STATE(2024)] = 92099, + [SMALL_STATE(2025)] = 92143, + [SMALL_STATE(2026)] = 92187, + [SMALL_STATE(2027)] = 92231, + [SMALL_STATE(2028)] = 92275, + [SMALL_STATE(2029)] = 92319, + [SMALL_STATE(2030)] = 92363, + [SMALL_STATE(2031)] = 92407, + [SMALL_STATE(2032)] = 92451, + [SMALL_STATE(2033)] = 92495, + [SMALL_STATE(2034)] = 92539, + [SMALL_STATE(2035)] = 92583, + [SMALL_STATE(2036)] = 92627, + [SMALL_STATE(2037)] = 92671, + [SMALL_STATE(2038)] = 92715, + [SMALL_STATE(2039)] = 92759, + [SMALL_STATE(2040)] = 92803, + [SMALL_STATE(2041)] = 92847, + [SMALL_STATE(2042)] = 92891, + [SMALL_STATE(2043)] = 92935, + [SMALL_STATE(2044)] = 92979, + [SMALL_STATE(2045)] = 93023, + [SMALL_STATE(2046)] = 93067, + [SMALL_STATE(2047)] = 93111, + [SMALL_STATE(2048)] = 93155, + [SMALL_STATE(2049)] = 93199, + [SMALL_STATE(2050)] = 93243, + [SMALL_STATE(2051)] = 93287, + [SMALL_STATE(2052)] = 93331, + [SMALL_STATE(2053)] = 93375, + [SMALL_STATE(2054)] = 93419, + [SMALL_STATE(2055)] = 93463, + [SMALL_STATE(2056)] = 93507, + [SMALL_STATE(2057)] = 93551, + [SMALL_STATE(2058)] = 93595, + [SMALL_STATE(2059)] = 93639, + [SMALL_STATE(2060)] = 93683, + [SMALL_STATE(2061)] = 93727, + [SMALL_STATE(2062)] = 93771, + [SMALL_STATE(2063)] = 93815, + [SMALL_STATE(2064)] = 93859, + [SMALL_STATE(2065)] = 93903, + [SMALL_STATE(2066)] = 93947, + [SMALL_STATE(2067)] = 93991, + [SMALL_STATE(2068)] = 94035, + [SMALL_STATE(2069)] = 94079, + [SMALL_STATE(2070)] = 94123, + [SMALL_STATE(2071)] = 94167, + [SMALL_STATE(2072)] = 94211, + [SMALL_STATE(2073)] = 94255, + [SMALL_STATE(2074)] = 94299, + [SMALL_STATE(2075)] = 94343, + [SMALL_STATE(2076)] = 94387, + [SMALL_STATE(2077)] = 94431, + [SMALL_STATE(2078)] = 94475, + [SMALL_STATE(2079)] = 94519, + [SMALL_STATE(2080)] = 94563, + [SMALL_STATE(2081)] = 94607, + [SMALL_STATE(2082)] = 94651, + [SMALL_STATE(2083)] = 94695, + [SMALL_STATE(2084)] = 94739, + [SMALL_STATE(2085)] = 94783, + [SMALL_STATE(2086)] = 94827, + [SMALL_STATE(2087)] = 94871, + [SMALL_STATE(2088)] = 94915, + [SMALL_STATE(2089)] = 94959, + [SMALL_STATE(2090)] = 95003, + [SMALL_STATE(2091)] = 95047, + [SMALL_STATE(2092)] = 95091, + [SMALL_STATE(2093)] = 95135, + [SMALL_STATE(2094)] = 95179, + [SMALL_STATE(2095)] = 95223, + [SMALL_STATE(2096)] = 95267, + [SMALL_STATE(2097)] = 95311, + [SMALL_STATE(2098)] = 95355, + [SMALL_STATE(2099)] = 95399, + [SMALL_STATE(2100)] = 95443, + [SMALL_STATE(2101)] = 95487, + [SMALL_STATE(2102)] = 95531, + [SMALL_STATE(2103)] = 95575, + [SMALL_STATE(2104)] = 95619, + [SMALL_STATE(2105)] = 95663, + [SMALL_STATE(2106)] = 95707, + [SMALL_STATE(2107)] = 95751, + [SMALL_STATE(2108)] = 95795, + [SMALL_STATE(2109)] = 95839, + [SMALL_STATE(2110)] = 95883, + [SMALL_STATE(2111)] = 95927, + [SMALL_STATE(2112)] = 95971, + [SMALL_STATE(2113)] = 96015, + [SMALL_STATE(2114)] = 96059, + [SMALL_STATE(2115)] = 96103, + [SMALL_STATE(2116)] = 96147, + [SMALL_STATE(2117)] = 96191, + [SMALL_STATE(2118)] = 96235, + [SMALL_STATE(2119)] = 96279, + [SMALL_STATE(2120)] = 96323, + [SMALL_STATE(2121)] = 96367, + [SMALL_STATE(2122)] = 96411, + [SMALL_STATE(2123)] = 96455, + [SMALL_STATE(2124)] = 96499, + [SMALL_STATE(2125)] = 96543, + [SMALL_STATE(2126)] = 96587, + [SMALL_STATE(2127)] = 96631, + [SMALL_STATE(2128)] = 96675, + [SMALL_STATE(2129)] = 96723, + [SMALL_STATE(2130)] = 96771, + [SMALL_STATE(2131)] = 96819, + [SMALL_STATE(2132)] = 96867, + [SMALL_STATE(2133)] = 96915, + [SMALL_STATE(2134)] = 96963, + [SMALL_STATE(2135)] = 97007, + [SMALL_STATE(2136)] = 97051, + [SMALL_STATE(2137)] = 97099, + [SMALL_STATE(2138)] = 97147, + [SMALL_STATE(2139)] = 97195, + [SMALL_STATE(2140)] = 97243, + [SMALL_STATE(2141)] = 97291, + [SMALL_STATE(2142)] = 97339, + [SMALL_STATE(2143)] = 97387, + [SMALL_STATE(2144)] = 97435, + [SMALL_STATE(2145)] = 97483, + [SMALL_STATE(2146)] = 97531, + [SMALL_STATE(2147)] = 97579, + [SMALL_STATE(2148)] = 97627, + [SMALL_STATE(2149)] = 97675, + [SMALL_STATE(2150)] = 97723, + [SMALL_STATE(2151)] = 97771, + [SMALL_STATE(2152)] = 97819, + [SMALL_STATE(2153)] = 97867, + [SMALL_STATE(2154)] = 97915, + [SMALL_STATE(2155)] = 97963, + [SMALL_STATE(2156)] = 98007, + [SMALL_STATE(2157)] = 98051, + [SMALL_STATE(2158)] = 98095, + [SMALL_STATE(2159)] = 98139, + [SMALL_STATE(2160)] = 98183, + [SMALL_STATE(2161)] = 98227, + [SMALL_STATE(2162)] = 98271, + [SMALL_STATE(2163)] = 98315, + [SMALL_STATE(2164)] = 98359, + [SMALL_STATE(2165)] = 98403, + [SMALL_STATE(2166)] = 98447, + [SMALL_STATE(2167)] = 98491, + [SMALL_STATE(2168)] = 98535, + [SMALL_STATE(2169)] = 98579, + [SMALL_STATE(2170)] = 98623, + [SMALL_STATE(2171)] = 98667, + [SMALL_STATE(2172)] = 98711, + [SMALL_STATE(2173)] = 98755, + [SMALL_STATE(2174)] = 98799, + [SMALL_STATE(2175)] = 98843, + [SMALL_STATE(2176)] = 98887, + [SMALL_STATE(2177)] = 98931, + [SMALL_STATE(2178)] = 98975, + [SMALL_STATE(2179)] = 99019, + [SMALL_STATE(2180)] = 99063, + [SMALL_STATE(2181)] = 99107, + [SMALL_STATE(2182)] = 99151, + [SMALL_STATE(2183)] = 99195, + [SMALL_STATE(2184)] = 99239, + [SMALL_STATE(2185)] = 99283, + [SMALL_STATE(2186)] = 99327, + [SMALL_STATE(2187)] = 99371, + [SMALL_STATE(2188)] = 99415, + [SMALL_STATE(2189)] = 99459, + [SMALL_STATE(2190)] = 99503, + [SMALL_STATE(2191)] = 99547, + [SMALL_STATE(2192)] = 99591, + [SMALL_STATE(2193)] = 99635, + [SMALL_STATE(2194)] = 99679, + [SMALL_STATE(2195)] = 99723, + [SMALL_STATE(2196)] = 99767, + [SMALL_STATE(2197)] = 99811, + [SMALL_STATE(2198)] = 99855, + [SMALL_STATE(2199)] = 99899, + [SMALL_STATE(2200)] = 99943, + [SMALL_STATE(2201)] = 99987, + [SMALL_STATE(2202)] = 100031, + [SMALL_STATE(2203)] = 100075, + [SMALL_STATE(2204)] = 100119, + [SMALL_STATE(2205)] = 100163, + [SMALL_STATE(2206)] = 100207, + [SMALL_STATE(2207)] = 100251, + [SMALL_STATE(2208)] = 100295, + [SMALL_STATE(2209)] = 100339, + [SMALL_STATE(2210)] = 100383, + [SMALL_STATE(2211)] = 100427, + [SMALL_STATE(2212)] = 100471, + [SMALL_STATE(2213)] = 100515, + [SMALL_STATE(2214)] = 100559, + [SMALL_STATE(2215)] = 100603, + [SMALL_STATE(2216)] = 100651, + [SMALL_STATE(2217)] = 100695, + [SMALL_STATE(2218)] = 100739, + [SMALL_STATE(2219)] = 100783, + [SMALL_STATE(2220)] = 100827, + [SMALL_STATE(2221)] = 100871, + [SMALL_STATE(2222)] = 100915, + [SMALL_STATE(2223)] = 100959, + [SMALL_STATE(2224)] = 101003, + [SMALL_STATE(2225)] = 101047, + [SMALL_STATE(2226)] = 101091, + [SMALL_STATE(2227)] = 101135, + [SMALL_STATE(2228)] = 101179, + [SMALL_STATE(2229)] = 101223, + [SMALL_STATE(2230)] = 101267, + [SMALL_STATE(2231)] = 101311, + [SMALL_STATE(2232)] = 101355, + [SMALL_STATE(2233)] = 101399, + [SMALL_STATE(2234)] = 101443, + [SMALL_STATE(2235)] = 101487, + [SMALL_STATE(2236)] = 101531, + [SMALL_STATE(2237)] = 101575, + [SMALL_STATE(2238)] = 101619, + [SMALL_STATE(2239)] = 101663, + [SMALL_STATE(2240)] = 101707, + [SMALL_STATE(2241)] = 101751, + [SMALL_STATE(2242)] = 101795, + [SMALL_STATE(2243)] = 101839, + [SMALL_STATE(2244)] = 101883, + [SMALL_STATE(2245)] = 101927, + [SMALL_STATE(2246)] = 101971, + [SMALL_STATE(2247)] = 102015, + [SMALL_STATE(2248)] = 102059, + [SMALL_STATE(2249)] = 102103, + [SMALL_STATE(2250)] = 102147, + [SMALL_STATE(2251)] = 102191, + [SMALL_STATE(2252)] = 102235, + [SMALL_STATE(2253)] = 102279, + [SMALL_STATE(2254)] = 102323, + [SMALL_STATE(2255)] = 102367, + [SMALL_STATE(2256)] = 102411, + [SMALL_STATE(2257)] = 102455, + [SMALL_STATE(2258)] = 102499, + [SMALL_STATE(2259)] = 102543, + [SMALL_STATE(2260)] = 102587, + [SMALL_STATE(2261)] = 102631, + [SMALL_STATE(2262)] = 102675, + [SMALL_STATE(2263)] = 102719, + [SMALL_STATE(2264)] = 102763, + [SMALL_STATE(2265)] = 102807, + [SMALL_STATE(2266)] = 102851, + [SMALL_STATE(2267)] = 102895, + [SMALL_STATE(2268)] = 102939, + [SMALL_STATE(2269)] = 102983, + [SMALL_STATE(2270)] = 103027, + [SMALL_STATE(2271)] = 103071, + [SMALL_STATE(2272)] = 103115, + [SMALL_STATE(2273)] = 103159, + [SMALL_STATE(2274)] = 103203, + [SMALL_STATE(2275)] = 103247, + [SMALL_STATE(2276)] = 103291, + [SMALL_STATE(2277)] = 103335, + [SMALL_STATE(2278)] = 103379, + [SMALL_STATE(2279)] = 103423, + [SMALL_STATE(2280)] = 103467, + [SMALL_STATE(2281)] = 103511, + [SMALL_STATE(2282)] = 103555, + [SMALL_STATE(2283)] = 103599, + [SMALL_STATE(2284)] = 103643, + [SMALL_STATE(2285)] = 103687, + [SMALL_STATE(2286)] = 103731, + [SMALL_STATE(2287)] = 103775, + [SMALL_STATE(2288)] = 103819, + [SMALL_STATE(2289)] = 103863, + [SMALL_STATE(2290)] = 103907, + [SMALL_STATE(2291)] = 103951, + [SMALL_STATE(2292)] = 103995, + [SMALL_STATE(2293)] = 104039, + [SMALL_STATE(2294)] = 104083, + [SMALL_STATE(2295)] = 104127, + [SMALL_STATE(2296)] = 104171, + [SMALL_STATE(2297)] = 104215, + [SMALL_STATE(2298)] = 104259, + [SMALL_STATE(2299)] = 104303, + [SMALL_STATE(2300)] = 104347, + [SMALL_STATE(2301)] = 104391, + [SMALL_STATE(2302)] = 104435, + [SMALL_STATE(2303)] = 104479, + [SMALL_STATE(2304)] = 104523, + [SMALL_STATE(2305)] = 104567, + [SMALL_STATE(2306)] = 104611, + [SMALL_STATE(2307)] = 104655, + [SMALL_STATE(2308)] = 104699, + [SMALL_STATE(2309)] = 104743, + [SMALL_STATE(2310)] = 104787, + [SMALL_STATE(2311)] = 104831, + [SMALL_STATE(2312)] = 104875, + [SMALL_STATE(2313)] = 104919, + [SMALL_STATE(2314)] = 104963, + [SMALL_STATE(2315)] = 105007, + [SMALL_STATE(2316)] = 105051, + [SMALL_STATE(2317)] = 105095, + [SMALL_STATE(2318)] = 105139, + [SMALL_STATE(2319)] = 105183, + [SMALL_STATE(2320)] = 105227, + [SMALL_STATE(2321)] = 105271, + [SMALL_STATE(2322)] = 105315, + [SMALL_STATE(2323)] = 105359, + [SMALL_STATE(2324)] = 105403, + [SMALL_STATE(2325)] = 105447, + [SMALL_STATE(2326)] = 105491, + [SMALL_STATE(2327)] = 105535, + [SMALL_STATE(2328)] = 105579, + [SMALL_STATE(2329)] = 105623, + [SMALL_STATE(2330)] = 105667, + [SMALL_STATE(2331)] = 105711, + [SMALL_STATE(2332)] = 105755, + [SMALL_STATE(2333)] = 105799, + [SMALL_STATE(2334)] = 105843, + [SMALL_STATE(2335)] = 105887, + [SMALL_STATE(2336)] = 105931, + [SMALL_STATE(2337)] = 105975, + [SMALL_STATE(2338)] = 106019, + [SMALL_STATE(2339)] = 106063, + [SMALL_STATE(2340)] = 106107, + [SMALL_STATE(2341)] = 106151, + [SMALL_STATE(2342)] = 106195, + [SMALL_STATE(2343)] = 106239, + [SMALL_STATE(2344)] = 106283, + [SMALL_STATE(2345)] = 106327, + [SMALL_STATE(2346)] = 106371, + [SMALL_STATE(2347)] = 106415, + [SMALL_STATE(2348)] = 106459, + [SMALL_STATE(2349)] = 106503, + [SMALL_STATE(2350)] = 106547, + [SMALL_STATE(2351)] = 106591, + [SMALL_STATE(2352)] = 106635, + [SMALL_STATE(2353)] = 106679, + [SMALL_STATE(2354)] = 106723, + [SMALL_STATE(2355)] = 106767, + [SMALL_STATE(2356)] = 106811, + [SMALL_STATE(2357)] = 106855, + [SMALL_STATE(2358)] = 106899, + [SMALL_STATE(2359)] = 106943, + [SMALL_STATE(2360)] = 106987, + [SMALL_STATE(2361)] = 107031, + [SMALL_STATE(2362)] = 107075, + [SMALL_STATE(2363)] = 107119, + [SMALL_STATE(2364)] = 107163, + [SMALL_STATE(2365)] = 107207, + [SMALL_STATE(2366)] = 107251, + [SMALL_STATE(2367)] = 107295, + [SMALL_STATE(2368)] = 107339, + [SMALL_STATE(2369)] = 107383, + [SMALL_STATE(2370)] = 107427, + [SMALL_STATE(2371)] = 107471, + [SMALL_STATE(2372)] = 107515, + [SMALL_STATE(2373)] = 107559, + [SMALL_STATE(2374)] = 107603, + [SMALL_STATE(2375)] = 107647, + [SMALL_STATE(2376)] = 107691, + [SMALL_STATE(2377)] = 107735, + [SMALL_STATE(2378)] = 107779, + [SMALL_STATE(2379)] = 107823, + [SMALL_STATE(2380)] = 107867, + [SMALL_STATE(2381)] = 107911, + [SMALL_STATE(2382)] = 107955, + [SMALL_STATE(2383)] = 107999, + [SMALL_STATE(2384)] = 108043, + [SMALL_STATE(2385)] = 108087, + [SMALL_STATE(2386)] = 108131, + [SMALL_STATE(2387)] = 108175, + [SMALL_STATE(2388)] = 108219, + [SMALL_STATE(2389)] = 108263, + [SMALL_STATE(2390)] = 108307, + [SMALL_STATE(2391)] = 108351, + [SMALL_STATE(2392)] = 108395, + [SMALL_STATE(2393)] = 108439, + [SMALL_STATE(2394)] = 108483, + [SMALL_STATE(2395)] = 108527, + [SMALL_STATE(2396)] = 108571, + [SMALL_STATE(2397)] = 108615, + [SMALL_STATE(2398)] = 108659, + [SMALL_STATE(2399)] = 108703, + [SMALL_STATE(2400)] = 108747, + [SMALL_STATE(2401)] = 108791, + [SMALL_STATE(2402)] = 108835, + [SMALL_STATE(2403)] = 108879, + [SMALL_STATE(2404)] = 108923, + [SMALL_STATE(2405)] = 108967, + [SMALL_STATE(2406)] = 109011, + [SMALL_STATE(2407)] = 109055, + [SMALL_STATE(2408)] = 109099, + [SMALL_STATE(2409)] = 109143, + [SMALL_STATE(2410)] = 109187, + [SMALL_STATE(2411)] = 109231, + [SMALL_STATE(2412)] = 109275, + [SMALL_STATE(2413)] = 109319, + [SMALL_STATE(2414)] = 109363, + [SMALL_STATE(2415)] = 109407, + [SMALL_STATE(2416)] = 109451, + [SMALL_STATE(2417)] = 109495, + [SMALL_STATE(2418)] = 109539, + [SMALL_STATE(2419)] = 109583, + [SMALL_STATE(2420)] = 109627, + [SMALL_STATE(2421)] = 109671, + [SMALL_STATE(2422)] = 109715, + [SMALL_STATE(2423)] = 109758, + [SMALL_STATE(2424)] = 109801, + [SMALL_STATE(2425)] = 109844, + [SMALL_STATE(2426)] = 109887, + [SMALL_STATE(2427)] = 109932, + [SMALL_STATE(2428)] = 109975, + [SMALL_STATE(2429)] = 110018, + [SMALL_STATE(2430)] = 110061, + [SMALL_STATE(2431)] = 110104, + [SMALL_STATE(2432)] = 110147, + [SMALL_STATE(2433)] = 110190, + [SMALL_STATE(2434)] = 110233, + [SMALL_STATE(2435)] = 110276, + [SMALL_STATE(2436)] = 110319, + [SMALL_STATE(2437)] = 110362, + [SMALL_STATE(2438)] = 110405, + [SMALL_STATE(2439)] = 110448, + [SMALL_STATE(2440)] = 110491, + [SMALL_STATE(2441)] = 110534, + [SMALL_STATE(2442)] = 110577, + [SMALL_STATE(2443)] = 110620, + [SMALL_STATE(2444)] = 110663, + [SMALL_STATE(2445)] = 110706, + [SMALL_STATE(2446)] = 110749, + [SMALL_STATE(2447)] = 110792, + [SMALL_STATE(2448)] = 110835, + [SMALL_STATE(2449)] = 110878, + [SMALL_STATE(2450)] = 110921, + [SMALL_STATE(2451)] = 110964, + [SMALL_STATE(2452)] = 111007, + [SMALL_STATE(2453)] = 111050, + [SMALL_STATE(2454)] = 111093, + [SMALL_STATE(2455)] = 111136, + [SMALL_STATE(2456)] = 111179, + [SMALL_STATE(2457)] = 111222, + [SMALL_STATE(2458)] = 111265, + [SMALL_STATE(2459)] = 111308, + [SMALL_STATE(2460)] = 111351, + [SMALL_STATE(2461)] = 111394, + [SMALL_STATE(2462)] = 111437, + [SMALL_STATE(2463)] = 111480, + [SMALL_STATE(2464)] = 111523, + [SMALL_STATE(2465)] = 111566, + [SMALL_STATE(2466)] = 111609, + [SMALL_STATE(2467)] = 111652, + [SMALL_STATE(2468)] = 111695, + [SMALL_STATE(2469)] = 111738, + [SMALL_STATE(2470)] = 111781, + [SMALL_STATE(2471)] = 111824, + [SMALL_STATE(2472)] = 111867, + [SMALL_STATE(2473)] = 111910, + [SMALL_STATE(2474)] = 111953, + [SMALL_STATE(2475)] = 111996, + [SMALL_STATE(2476)] = 112039, + [SMALL_STATE(2477)] = 112082, + [SMALL_STATE(2478)] = 112125, + [SMALL_STATE(2479)] = 112168, + [SMALL_STATE(2480)] = 112211, + [SMALL_STATE(2481)] = 112254, + [SMALL_STATE(2482)] = 112297, + [SMALL_STATE(2483)] = 112340, + [SMALL_STATE(2484)] = 112383, + [SMALL_STATE(2485)] = 112426, + [SMALL_STATE(2486)] = 112469, + [SMALL_STATE(2487)] = 112512, + [SMALL_STATE(2488)] = 112555, + [SMALL_STATE(2489)] = 112598, + [SMALL_STATE(2490)] = 112641, + [SMALL_STATE(2491)] = 112684, + [SMALL_STATE(2492)] = 112727, + [SMALL_STATE(2493)] = 112774, + [SMALL_STATE(2494)] = 112817, + [SMALL_STATE(2495)] = 112860, + [SMALL_STATE(2496)] = 112903, + [SMALL_STATE(2497)] = 112946, + [SMALL_STATE(2498)] = 112989, + [SMALL_STATE(2499)] = 113032, + [SMALL_STATE(2500)] = 113075, + [SMALL_STATE(2501)] = 113117, + [SMALL_STATE(2502)] = 113161, + [SMALL_STATE(2503)] = 113203, + [SMALL_STATE(2504)] = 113255, + [SMALL_STATE(2505)] = 113307, + [SMALL_STATE(2506)] = 113359, + [SMALL_STATE(2507)] = 113411, + [SMALL_STATE(2508)] = 113463, + [SMALL_STATE(2509)] = 113512, + [SMALL_STATE(2510)] = 113561, + [SMALL_STATE(2511)] = 113610, + [SMALL_STATE(2512)] = 113659, + [SMALL_STATE(2513)] = 113708, + [SMALL_STATE(2514)] = 113757, + [SMALL_STATE(2515)] = 113806, + [SMALL_STATE(2516)] = 113855, + [SMALL_STATE(2517)] = 113904, + [SMALL_STATE(2518)] = 113953, + [SMALL_STATE(2519)] = 114002, + [SMALL_STATE(2520)] = 114051, + [SMALL_STATE(2521)] = 114100, + [SMALL_STATE(2522)] = 114149, + [SMALL_STATE(2523)] = 114194, + [SMALL_STATE(2524)] = 114243, + [SMALL_STATE(2525)] = 114292, + [SMALL_STATE(2526)] = 114337, + [SMALL_STATE(2527)] = 114386, + [SMALL_STATE(2528)] = 114430, + [SMALL_STATE(2529)] = 114474, + [SMALL_STATE(2530)] = 114518, + [SMALL_STATE(2531)] = 114562, + [SMALL_STATE(2532)] = 114606, + [SMALL_STATE(2533)] = 114650, + [SMALL_STATE(2534)] = 114694, + [SMALL_STATE(2535)] = 114738, + [SMALL_STATE(2536)] = 114782, + [SMALL_STATE(2537)] = 114826, + [SMALL_STATE(2538)] = 114870, + [SMALL_STATE(2539)] = 114914, + [SMALL_STATE(2540)] = 114958, + [SMALL_STATE(2541)] = 115002, + [SMALL_STATE(2542)] = 115046, + [SMALL_STATE(2543)] = 115090, + [SMALL_STATE(2544)] = 115134, + [SMALL_STATE(2545)] = 115178, + [SMALL_STATE(2546)] = 115222, + [SMALL_STATE(2547)] = 115266, + [SMALL_STATE(2548)] = 115310, + [SMALL_STATE(2549)] = 115354, + [SMALL_STATE(2550)] = 115398, + [SMALL_STATE(2551)] = 115442, + [SMALL_STATE(2552)] = 115486, + [SMALL_STATE(2553)] = 115530, + [SMALL_STATE(2554)] = 115574, + [SMALL_STATE(2555)] = 115618, + [SMALL_STATE(2556)] = 115662, + [SMALL_STATE(2557)] = 115706, + [SMALL_STATE(2558)] = 115750, + [SMALL_STATE(2559)] = 115794, + [SMALL_STATE(2560)] = 115838, + [SMALL_STATE(2561)] = 115882, + [SMALL_STATE(2562)] = 115926, + [SMALL_STATE(2563)] = 115970, + [SMALL_STATE(2564)] = 116014, + [SMALL_STATE(2565)] = 116058, + [SMALL_STATE(2566)] = 116102, + [SMALL_STATE(2567)] = 116146, + [SMALL_STATE(2568)] = 116190, + [SMALL_STATE(2569)] = 116234, + [SMALL_STATE(2570)] = 116278, + [SMALL_STATE(2571)] = 116322, + [SMALL_STATE(2572)] = 116366, + [SMALL_STATE(2573)] = 116410, + [SMALL_STATE(2574)] = 116454, + [SMALL_STATE(2575)] = 116498, + [SMALL_STATE(2576)] = 116542, + [SMALL_STATE(2577)] = 116586, + [SMALL_STATE(2578)] = 116630, + [SMALL_STATE(2579)] = 116674, + [SMALL_STATE(2580)] = 116718, + [SMALL_STATE(2581)] = 116762, + [SMALL_STATE(2582)] = 116806, + [SMALL_STATE(2583)] = 116850, + [SMALL_STATE(2584)] = 116894, + [SMALL_STATE(2585)] = 116938, + [SMALL_STATE(2586)] = 116982, + [SMALL_STATE(2587)] = 117026, + [SMALL_STATE(2588)] = 117070, + [SMALL_STATE(2589)] = 117114, + [SMALL_STATE(2590)] = 117158, + [SMALL_STATE(2591)] = 117202, + [SMALL_STATE(2592)] = 117246, + [SMALL_STATE(2593)] = 117290, + [SMALL_STATE(2594)] = 117334, + [SMALL_STATE(2595)] = 117378, + [SMALL_STATE(2596)] = 117422, + [SMALL_STATE(2597)] = 117466, + [SMALL_STATE(2598)] = 117510, + [SMALL_STATE(2599)] = 117554, + [SMALL_STATE(2600)] = 117597, + [SMALL_STATE(2601)] = 117640, + [SMALL_STATE(2602)] = 117683, + [SMALL_STATE(2603)] = 117726, + [SMALL_STATE(2604)] = 117769, + [SMALL_STATE(2605)] = 117812, + [SMALL_STATE(2606)] = 117855, + [SMALL_STATE(2607)] = 117898, + [SMALL_STATE(2608)] = 117941, + [SMALL_STATE(2609)] = 117984, + [SMALL_STATE(2610)] = 118027, + [SMALL_STATE(2611)] = 118070, + [SMALL_STATE(2612)] = 118113, + [SMALL_STATE(2613)] = 118156, + [SMALL_STATE(2614)] = 118199, + [SMALL_STATE(2615)] = 118242, + [SMALL_STATE(2616)] = 118285, + [SMALL_STATE(2617)] = 118328, + [SMALL_STATE(2618)] = 118371, + [SMALL_STATE(2619)] = 118414, + [SMALL_STATE(2620)] = 118457, + [SMALL_STATE(2621)] = 118500, + [SMALL_STATE(2622)] = 118543, + [SMALL_STATE(2623)] = 118586, + [SMALL_STATE(2624)] = 118629, + [SMALL_STATE(2625)] = 118672, + [SMALL_STATE(2626)] = 118715, + [SMALL_STATE(2627)] = 118758, + [SMALL_STATE(2628)] = 118801, + [SMALL_STATE(2629)] = 118844, + [SMALL_STATE(2630)] = 118887, + [SMALL_STATE(2631)] = 118930, + [SMALL_STATE(2632)] = 118973, + [SMALL_STATE(2633)] = 119016, + [SMALL_STATE(2634)] = 119051, + [SMALL_STATE(2635)] = 119088, + [SMALL_STATE(2636)] = 119125, + [SMALL_STATE(2637)] = 119162, + [SMALL_STATE(2638)] = 119199, + [SMALL_STATE(2639)] = 119236, + [SMALL_STATE(2640)] = 119271, + [SMALL_STATE(2641)] = 119308, + [SMALL_STATE(2642)] = 119343, + [SMALL_STATE(2643)] = 119380, + [SMALL_STATE(2644)] = 119417, + [SMALL_STATE(2645)] = 119454, + [SMALL_STATE(2646)] = 119491, + [SMALL_STATE(2647)] = 119528, + [SMALL_STATE(2648)] = 119565, + [SMALL_STATE(2649)] = 119602, + [SMALL_STATE(2650)] = 119639, + [SMALL_STATE(2651)] = 119676, + [SMALL_STATE(2652)] = 119713, + [SMALL_STATE(2653)] = 119750, + [SMALL_STATE(2654)] = 119771, + [SMALL_STATE(2655)] = 119792, + [SMALL_STATE(2656)] = 119813, + [SMALL_STATE(2657)] = 119846, + [SMALL_STATE(2658)] = 119867, + [SMALL_STATE(2659)] = 119893, + [SMALL_STATE(2660)] = 119925, + [SMALL_STATE(2661)] = 119945, + [SMALL_STATE(2662)] = 119977, + [SMALL_STATE(2663)] = 119997, + [SMALL_STATE(2664)] = 120029, + [SMALL_STATE(2665)] = 120061, + [SMALL_STATE(2666)] = 120093, + [SMALL_STATE(2667)] = 120109, + [SMALL_STATE(2668)] = 120141, + [SMALL_STATE(2669)] = 120167, + [SMALL_STATE(2670)] = 120199, + [SMALL_STATE(2671)] = 120231, + [SMALL_STATE(2672)] = 120249, + [SMALL_STATE(2673)] = 120281, + [SMALL_STATE(2674)] = 120299, + [SMALL_STATE(2675)] = 120331, + [SMALL_STATE(2676)] = 120363, + [SMALL_STATE(2677)] = 120379, + [SMALL_STATE(2678)] = 120411, + [SMALL_STATE(2679)] = 120443, + [SMALL_STATE(2680)] = 120469, + [SMALL_STATE(2681)] = 120485, + [SMALL_STATE(2682)] = 120517, + [SMALL_STATE(2683)] = 120535, + [SMALL_STATE(2684)] = 120567, + [SMALL_STATE(2685)] = 120599, + [SMALL_STATE(2686)] = 120617, + [SMALL_STATE(2687)] = 120633, + [SMALL_STATE(2688)] = 120659, + [SMALL_STATE(2689)] = 120678, + [SMALL_STATE(2690)] = 120693, + [SMALL_STATE(2691)] = 120710, + [SMALL_STATE(2692)] = 120729, + [SMALL_STATE(2693)] = 120744, + [SMALL_STATE(2694)] = 120770, + [SMALL_STATE(2695)] = 120796, + [SMALL_STATE(2696)] = 120822, + [SMALL_STATE(2697)] = 120848, + [SMALL_STATE(2698)] = 120874, + [SMALL_STATE(2699)] = 120900, + [SMALL_STATE(2700)] = 120926, + [SMALL_STATE(2701)] = 120952, + [SMALL_STATE(2702)] = 120978, + [SMALL_STATE(2703)] = 121004, + [SMALL_STATE(2704)] = 121030, + [SMALL_STATE(2705)] = 121056, + [SMALL_STATE(2706)] = 121068, + [SMALL_STATE(2707)] = 121094, + [SMALL_STATE(2708)] = 121118, + [SMALL_STATE(2709)] = 121132, + [SMALL_STATE(2710)] = 121158, + [SMALL_STATE(2711)] = 121184, + [SMALL_STATE(2712)] = 121210, + [SMALL_STATE(2713)] = 121236, + [SMALL_STATE(2714)] = 121262, + [SMALL_STATE(2715)] = 121288, + [SMALL_STATE(2716)] = 121314, + [SMALL_STATE(2717)] = 121340, + [SMALL_STATE(2718)] = 121366, + [SMALL_STATE(2719)] = 121390, + [SMALL_STATE(2720)] = 121416, + [SMALL_STATE(2721)] = 121442, + [SMALL_STATE(2722)] = 121468, + [SMALL_STATE(2723)] = 121494, + [SMALL_STATE(2724)] = 121520, + [SMALL_STATE(2725)] = 121546, + [SMALL_STATE(2726)] = 121570, + [SMALL_STATE(2727)] = 121588, + [SMALL_STATE(2728)] = 121614, + [SMALL_STATE(2729)] = 121628, + [SMALL_STATE(2730)] = 121652, + [SMALL_STATE(2731)] = 121678, + [SMALL_STATE(2732)] = 121694, + [SMALL_STATE(2733)] = 121720, + [SMALL_STATE(2734)] = 121744, + [SMALL_STATE(2735)] = 121770, + [SMALL_STATE(2736)] = 121788, + [SMALL_STATE(2737)] = 121814, + [SMALL_STATE(2738)] = 121840, + [SMALL_STATE(2739)] = 121856, + [SMALL_STATE(2740)] = 121882, + [SMALL_STATE(2741)] = 121906, + [SMALL_STATE(2742)] = 121932, + [SMALL_STATE(2743)] = 121944, + [SMALL_STATE(2744)] = 121970, + [SMALL_STATE(2745)] = 121996, + [SMALL_STATE(2746)] = 122022, + [SMALL_STATE(2747)] = 122046, + [SMALL_STATE(2748)] = 122072, + [SMALL_STATE(2749)] = 122096, + [SMALL_STATE(2750)] = 122122, + [SMALL_STATE(2751)] = 122148, + [SMALL_STATE(2752)] = 122172, + [SMALL_STATE(2753)] = 122198, + [SMALL_STATE(2754)] = 122224, + [SMALL_STATE(2755)] = 122250, + [SMALL_STATE(2756)] = 122276, + [SMALL_STATE(2757)] = 122302, + [SMALL_STATE(2758)] = 122328, + [SMALL_STATE(2759)] = 122342, + [SMALL_STATE(2760)] = 122359, + [SMALL_STATE(2761)] = 122374, + [SMALL_STATE(2762)] = 122391, + [SMALL_STATE(2763)] = 122416, + [SMALL_STATE(2764)] = 122431, + [SMALL_STATE(2765)] = 122456, + [SMALL_STATE(2766)] = 122469, + [SMALL_STATE(2767)] = 122494, + [SMALL_STATE(2768)] = 122504, + [SMALL_STATE(2769)] = 122520, + [SMALL_STATE(2770)] = 122536, + [SMALL_STATE(2771)] = 122552, + [SMALL_STATE(2772)] = 122568, + [SMALL_STATE(2773)] = 122588, + [SMALL_STATE(2774)] = 122608, + [SMALL_STATE(2775)] = 122626, + [SMALL_STATE(2776)] = 122646, + [SMALL_STATE(2777)] = 122666, + [SMALL_STATE(2778)] = 122682, + [SMALL_STATE(2779)] = 122702, + [SMALL_STATE(2780)] = 122714, + [SMALL_STATE(2781)] = 122734, + [SMALL_STATE(2782)] = 122754, + [SMALL_STATE(2783)] = 122772, + [SMALL_STATE(2784)] = 122792, + [SMALL_STATE(2785)] = 122810, + [SMALL_STATE(2786)] = 122830, + [SMALL_STATE(2787)] = 122850, + [SMALL_STATE(2788)] = 122860, + [SMALL_STATE(2789)] = 122880, + [SMALL_STATE(2790)] = 122900, + [SMALL_STATE(2791)] = 122916, + [SMALL_STATE(2792)] = 122926, + [SMALL_STATE(2793)] = 122944, + [SMALL_STATE(2794)] = 122960, + [SMALL_STATE(2795)] = 122978, + [SMALL_STATE(2796)] = 122996, + [SMALL_STATE(2797)] = 123016, + [SMALL_STATE(2798)] = 123032, + [SMALL_STATE(2799)] = 123052, + [SMALL_STATE(2800)] = 123071, + [SMALL_STATE(2801)] = 123088, + [SMALL_STATE(2802)] = 123107, + [SMALL_STATE(2803)] = 123126, + [SMALL_STATE(2804)] = 123141, + [SMALL_STATE(2805)] = 123158, + [SMALL_STATE(2806)] = 123177, + [SMALL_STATE(2807)] = 123196, + [SMALL_STATE(2808)] = 123215, + [SMALL_STATE(2809)] = 123234, + [SMALL_STATE(2810)] = 123249, + [SMALL_STATE(2811)] = 123268, + [SMALL_STATE(2812)] = 123285, + [SMALL_STATE(2813)] = 123296, + [SMALL_STATE(2814)] = 123315, + [SMALL_STATE(2815)] = 123332, + [SMALL_STATE(2816)] = 123351, + [SMALL_STATE(2817)] = 123370, + [SMALL_STATE(2818)] = 123389, + [SMALL_STATE(2819)] = 123408, + [SMALL_STATE(2820)] = 123425, + [SMALL_STATE(2821)] = 123442, + [SMALL_STATE(2822)] = 123459, + [SMALL_STATE(2823)] = 123476, + [SMALL_STATE(2824)] = 123493, + [SMALL_STATE(2825)] = 123510, + [SMALL_STATE(2826)] = 123527, + [SMALL_STATE(2827)] = 123546, + [SMALL_STATE(2828)] = 123565, + [SMALL_STATE(2829)] = 123584, + [SMALL_STATE(2830)] = 123603, + [SMALL_STATE(2831)] = 123620, + [SMALL_STATE(2832)] = 123639, + [SMALL_STATE(2833)] = 123652, + [SMALL_STATE(2834)] = 123669, + [SMALL_STATE(2835)] = 123686, + [SMALL_STATE(2836)] = 123703, + [SMALL_STATE(2837)] = 123722, + [SMALL_STATE(2838)] = 123741, + [SMALL_STATE(2839)] = 123760, + [SMALL_STATE(2840)] = 123779, + [SMALL_STATE(2841)] = 123798, + [SMALL_STATE(2842)] = 123817, + [SMALL_STATE(2843)] = 123832, + [SMALL_STATE(2844)] = 123851, + [SMALL_STATE(2845)] = 123870, + [SMALL_STATE(2846)] = 123889, + [SMALL_STATE(2847)] = 123908, + [SMALL_STATE(2848)] = 123927, + [SMALL_STATE(2849)] = 123946, + [SMALL_STATE(2850)] = 123965, + [SMALL_STATE(2851)] = 123982, + [SMALL_STATE(2852)] = 123995, + [SMALL_STATE(2853)] = 124014, + [SMALL_STATE(2854)] = 124027, + [SMALL_STATE(2855)] = 124046, + [SMALL_STATE(2856)] = 124065, + [SMALL_STATE(2857)] = 124084, + [SMALL_STATE(2858)] = 124103, + [SMALL_STATE(2859)] = 124122, + [SMALL_STATE(2860)] = 124139, + [SMALL_STATE(2861)] = 124156, + [SMALL_STATE(2862)] = 124169, + [SMALL_STATE(2863)] = 124188, + [SMALL_STATE(2864)] = 124205, + [SMALL_STATE(2865)] = 124224, + [SMALL_STATE(2866)] = 124241, + [SMALL_STATE(2867)] = 124260, + [SMALL_STATE(2868)] = 124279, + [SMALL_STATE(2869)] = 124298, + [SMALL_STATE(2870)] = 124317, + [SMALL_STATE(2871)] = 124326, + [SMALL_STATE(2872)] = 124343, + [SMALL_STATE(2873)] = 124360, + [SMALL_STATE(2874)] = 124377, + [SMALL_STATE(2875)] = 124394, + [SMALL_STATE(2876)] = 124413, + [SMALL_STATE(2877)] = 124432, + [SMALL_STATE(2878)] = 124451, + [SMALL_STATE(2879)] = 124470, + [SMALL_STATE(2880)] = 124487, + [SMALL_STATE(2881)] = 124506, + [SMALL_STATE(2882)] = 124523, + [SMALL_STATE(2883)] = 124540, + [SMALL_STATE(2884)] = 124559, + [SMALL_STATE(2885)] = 124576, + [SMALL_STATE(2886)] = 124593, + [SMALL_STATE(2887)] = 124612, + [SMALL_STATE(2888)] = 124631, + [SMALL_STATE(2889)] = 124650, + [SMALL_STATE(2890)] = 124669, + [SMALL_STATE(2891)] = 124686, + [SMALL_STATE(2892)] = 124703, + [SMALL_STATE(2893)] = 124720, + [SMALL_STATE(2894)] = 124739, + [SMALL_STATE(2895)] = 124748, + [SMALL_STATE(2896)] = 124767, + [SMALL_STATE(2897)] = 124786, + [SMALL_STATE(2898)] = 124805, + [SMALL_STATE(2899)] = 124824, + [SMALL_STATE(2900)] = 124841, + [SMALL_STATE(2901)] = 124860, + [SMALL_STATE(2902)] = 124873, + [SMALL_STATE(2903)] = 124890, + [SMALL_STATE(2904)] = 124909, + [SMALL_STATE(2905)] = 124928, + [SMALL_STATE(2906)] = 124945, + [SMALL_STATE(2907)] = 124964, + [SMALL_STATE(2908)] = 124983, + [SMALL_STATE(2909)] = 125002, + [SMALL_STATE(2910)] = 125021, + [SMALL_STATE(2911)] = 125040, + [SMALL_STATE(2912)] = 125059, + [SMALL_STATE(2913)] = 125076, + [SMALL_STATE(2914)] = 125095, + [SMALL_STATE(2915)] = 125106, + [SMALL_STATE(2916)] = 125121, + [SMALL_STATE(2917)] = 125138, + [SMALL_STATE(2918)] = 125155, + [SMALL_STATE(2919)] = 125172, + [SMALL_STATE(2920)] = 125191, + [SMALL_STATE(2921)] = 125200, + [SMALL_STATE(2922)] = 125219, + [SMALL_STATE(2923)] = 125238, + [SMALL_STATE(2924)] = 125257, + [SMALL_STATE(2925)] = 125276, + [SMALL_STATE(2926)] = 125295, + [SMALL_STATE(2927)] = 125314, + [SMALL_STATE(2928)] = 125333, + [SMALL_STATE(2929)] = 125352, + [SMALL_STATE(2930)] = 125371, + [SMALL_STATE(2931)] = 125390, + [SMALL_STATE(2932)] = 125409, + [SMALL_STATE(2933)] = 125428, + [SMALL_STATE(2934)] = 125445, + [SMALL_STATE(2935)] = 125464, + [SMALL_STATE(2936)] = 125483, + [SMALL_STATE(2937)] = 125499, + [SMALL_STATE(2938)] = 125515, + [SMALL_STATE(2939)] = 125527, + [SMALL_STATE(2940)] = 125543, + [SMALL_STATE(2941)] = 125553, + [SMALL_STATE(2942)] = 125561, + [SMALL_STATE(2943)] = 125575, + [SMALL_STATE(2944)] = 125589, + [SMALL_STATE(2945)] = 125605, + [SMALL_STATE(2946)] = 125619, + [SMALL_STATE(2947)] = 125629, + [SMALL_STATE(2948)] = 125645, + [SMALL_STATE(2949)] = 125659, + [SMALL_STATE(2950)] = 125671, + [SMALL_STATE(2951)] = 125685, + [SMALL_STATE(2952)] = 125697, + [SMALL_STATE(2953)] = 125705, + [SMALL_STATE(2954)] = 125719, + [SMALL_STATE(2955)] = 125733, + [SMALL_STATE(2956)] = 125749, + [SMALL_STATE(2957)] = 125765, + [SMALL_STATE(2958)] = 125773, + [SMALL_STATE(2959)] = 125785, + [SMALL_STATE(2960)] = 125793, + [SMALL_STATE(2961)] = 125809, + [SMALL_STATE(2962)] = 125823, + [SMALL_STATE(2963)] = 125831, + [SMALL_STATE(2964)] = 125839, + [SMALL_STATE(2965)] = 125853, + [SMALL_STATE(2966)] = 125869, + [SMALL_STATE(2967)] = 125883, + [SMALL_STATE(2968)] = 125897, + [SMALL_STATE(2969)] = 125911, + [SMALL_STATE(2970)] = 125925, + [SMALL_STATE(2971)] = 125939, + [SMALL_STATE(2972)] = 125953, + [SMALL_STATE(2973)] = 125965, + [SMALL_STATE(2974)] = 125977, + [SMALL_STATE(2975)] = 125991, + [SMALL_STATE(2976)] = 126007, + [SMALL_STATE(2977)] = 126021, + [SMALL_STATE(2978)] = 126037, + [SMALL_STATE(2979)] = 126051, + [SMALL_STATE(2980)] = 126063, + [SMALL_STATE(2981)] = 126075, + [SMALL_STATE(2982)] = 126089, + [SMALL_STATE(2983)] = 126097, + [SMALL_STATE(2984)] = 126111, + [SMALL_STATE(2985)] = 126127, + [SMALL_STATE(2986)] = 126137, + [SMALL_STATE(2987)] = 126151, + [SMALL_STATE(2988)] = 126161, + [SMALL_STATE(2989)] = 126175, + [SMALL_STATE(2990)] = 126187, + [SMALL_STATE(2991)] = 126201, + [SMALL_STATE(2992)] = 126215, + [SMALL_STATE(2993)] = 126227, + [SMALL_STATE(2994)] = 126237, + [SMALL_STATE(2995)] = 126245, + [SMALL_STATE(2996)] = 126259, + [SMALL_STATE(2997)] = 126273, + [SMALL_STATE(2998)] = 126287, + [SMALL_STATE(2999)] = 126301, + [SMALL_STATE(3000)] = 126309, + [SMALL_STATE(3001)] = 126319, + [SMALL_STATE(3002)] = 126333, + [SMALL_STATE(3003)] = 126347, + [SMALL_STATE(3004)] = 126359, + [SMALL_STATE(3005)] = 126373, + [SMALL_STATE(3006)] = 126387, + [SMALL_STATE(3007)] = 126403, + [SMALL_STATE(3008)] = 126417, + [SMALL_STATE(3009)] = 126429, + [SMALL_STATE(3010)] = 126441, + [SMALL_STATE(3011)] = 126453, + [SMALL_STATE(3012)] = 126467, + [SMALL_STATE(3013)] = 126481, + [SMALL_STATE(3014)] = 126495, + [SMALL_STATE(3015)] = 126509, + [SMALL_STATE(3016)] = 126525, + [SMALL_STATE(3017)] = 126539, + [SMALL_STATE(3018)] = 126555, + [SMALL_STATE(3019)] = 126571, + [SMALL_STATE(3020)] = 126587, + [SMALL_STATE(3021)] = 126603, + [SMALL_STATE(3022)] = 126617, + [SMALL_STATE(3023)] = 126629, + [SMALL_STATE(3024)] = 126641, + [SMALL_STATE(3025)] = 126657, + [SMALL_STATE(3026)] = 126667, + [SMALL_STATE(3027)] = 126683, + [SMALL_STATE(3028)] = 126699, + [SMALL_STATE(3029)] = 126715, + [SMALL_STATE(3030)] = 126731, + [SMALL_STATE(3031)] = 126745, + [SMALL_STATE(3032)] = 126761, + [SMALL_STATE(3033)] = 126773, + [SMALL_STATE(3034)] = 126789, + [SMALL_STATE(3035)] = 126805, + [SMALL_STATE(3036)] = 126819, + [SMALL_STATE(3037)] = 126831, + [SMALL_STATE(3038)] = 126847, + [SMALL_STATE(3039)] = 126863, + [SMALL_STATE(3040)] = 126879, + [SMALL_STATE(3041)] = 126895, + [SMALL_STATE(3042)] = 126909, + [SMALL_STATE(3043)] = 126921, + [SMALL_STATE(3044)] = 126935, + [SMALL_STATE(3045)] = 126951, + [SMALL_STATE(3046)] = 126967, + [SMALL_STATE(3047)] = 126983, + [SMALL_STATE(3048)] = 126999, + [SMALL_STATE(3049)] = 127013, + [SMALL_STATE(3050)] = 127029, + [SMALL_STATE(3051)] = 127045, + [SMALL_STATE(3052)] = 127061, + [SMALL_STATE(3053)] = 127077, + [SMALL_STATE(3054)] = 127093, + [SMALL_STATE(3055)] = 127107, + [SMALL_STATE(3056)] = 127123, + [SMALL_STATE(3057)] = 127131, + [SMALL_STATE(3058)] = 127147, + [SMALL_STATE(3059)] = 127163, + [SMALL_STATE(3060)] = 127177, + [SMALL_STATE(3061)] = 127193, + [SMALL_STATE(3062)] = 127209, + [SMALL_STATE(3063)] = 127225, + [SMALL_STATE(3064)] = 127239, + [SMALL_STATE(3065)] = 127253, + [SMALL_STATE(3066)] = 127269, + [SMALL_STATE(3067)] = 127285, + [SMALL_STATE(3068)] = 127301, + [SMALL_STATE(3069)] = 127317, + [SMALL_STATE(3070)] = 127331, + [SMALL_STATE(3071)] = 127345, + [SMALL_STATE(3072)] = 127361, + [SMALL_STATE(3073)] = 127377, + [SMALL_STATE(3074)] = 127393, + [SMALL_STATE(3075)] = 127409, + [SMALL_STATE(3076)] = 127423, + [SMALL_STATE(3077)] = 127439, + [SMALL_STATE(3078)] = 127455, + [SMALL_STATE(3079)] = 127471, + [SMALL_STATE(3080)] = 127487, + [SMALL_STATE(3081)] = 127501, + [SMALL_STATE(3082)] = 127517, + [SMALL_STATE(3083)] = 127533, + [SMALL_STATE(3084)] = 127549, + [SMALL_STATE(3085)] = 127565, + [SMALL_STATE(3086)] = 127579, + [SMALL_STATE(3087)] = 127595, + [SMALL_STATE(3088)] = 127611, + [SMALL_STATE(3089)] = 127627, + [SMALL_STATE(3090)] = 127643, + [SMALL_STATE(3091)] = 127657, + [SMALL_STATE(3092)] = 127671, + [SMALL_STATE(3093)] = 127687, + [SMALL_STATE(3094)] = 127703, + [SMALL_STATE(3095)] = 127719, + [SMALL_STATE(3096)] = 127735, + [SMALL_STATE(3097)] = 127749, + [SMALL_STATE(3098)] = 127765, + [SMALL_STATE(3099)] = 127781, + [SMALL_STATE(3100)] = 127797, + [SMALL_STATE(3101)] = 127813, + [SMALL_STATE(3102)] = 127827, + [SMALL_STATE(3103)] = 127843, + [SMALL_STATE(3104)] = 127851, + [SMALL_STATE(3105)] = 127867, + [SMALL_STATE(3106)] = 127883, + [SMALL_STATE(3107)] = 127899, + [SMALL_STATE(3108)] = 127915, + [SMALL_STATE(3109)] = 127931, + [SMALL_STATE(3110)] = 127947, + [SMALL_STATE(3111)] = 127963, + [SMALL_STATE(3112)] = 127979, + [SMALL_STATE(3113)] = 127995, + [SMALL_STATE(3114)] = 128011, + [SMALL_STATE(3115)] = 128027, + [SMALL_STATE(3116)] = 128043, + [SMALL_STATE(3117)] = 128059, + [SMALL_STATE(3118)] = 128072, + [SMALL_STATE(3119)] = 128085, + [SMALL_STATE(3120)] = 128092, + [SMALL_STATE(3121)] = 128105, + [SMALL_STATE(3122)] = 128118, + [SMALL_STATE(3123)] = 128131, + [SMALL_STATE(3124)] = 128144, + [SMALL_STATE(3125)] = 128153, + [SMALL_STATE(3126)] = 128162, + [SMALL_STATE(3127)] = 128171, + [SMALL_STATE(3128)] = 128180, + [SMALL_STATE(3129)] = 128191, + [SMALL_STATE(3130)] = 128200, + [SMALL_STATE(3131)] = 128209, + [SMALL_STATE(3132)] = 128218, + [SMALL_STATE(3133)] = 128231, + [SMALL_STATE(3134)] = 128238, + [SMALL_STATE(3135)] = 128249, + [SMALL_STATE(3136)] = 128256, + [SMALL_STATE(3137)] = 128269, + [SMALL_STATE(3138)] = 128276, + [SMALL_STATE(3139)] = 128289, + [SMALL_STATE(3140)] = 128298, + [SMALL_STATE(3141)] = 128311, + [SMALL_STATE(3142)] = 128324, + [SMALL_STATE(3143)] = 128337, + [SMALL_STATE(3144)] = 128344, + [SMALL_STATE(3145)] = 128351, + [SMALL_STATE(3146)] = 128362, + [SMALL_STATE(3147)] = 128369, + [SMALL_STATE(3148)] = 128382, + [SMALL_STATE(3149)] = 128395, + [SMALL_STATE(3150)] = 128406, + [SMALL_STATE(3151)] = 128413, + [SMALL_STATE(3152)] = 128426, + [SMALL_STATE(3153)] = 128439, + [SMALL_STATE(3154)] = 128452, + [SMALL_STATE(3155)] = 128461, + [SMALL_STATE(3156)] = 128474, + [SMALL_STATE(3157)] = 128487, + [SMALL_STATE(3158)] = 128500, + [SMALL_STATE(3159)] = 128513, + [SMALL_STATE(3160)] = 128526, + [SMALL_STATE(3161)] = 128539, + [SMALL_STATE(3162)] = 128552, + [SMALL_STATE(3163)] = 128559, + [SMALL_STATE(3164)] = 128572, + [SMALL_STATE(3165)] = 128585, + [SMALL_STATE(3166)] = 128598, + [SMALL_STATE(3167)] = 128611, + [SMALL_STATE(3168)] = 128624, + [SMALL_STATE(3169)] = 128637, + [SMALL_STATE(3170)] = 128650, + [SMALL_STATE(3171)] = 128663, + [SMALL_STATE(3172)] = 128672, + [SMALL_STATE(3173)] = 128685, + [SMALL_STATE(3174)] = 128698, + [SMALL_STATE(3175)] = 128711, + [SMALL_STATE(3176)] = 128722, + [SMALL_STATE(3177)] = 128735, + [SMALL_STATE(3178)] = 128748, + [SMALL_STATE(3179)] = 128759, + [SMALL_STATE(3180)] = 128768, + [SMALL_STATE(3181)] = 128775, + [SMALL_STATE(3182)] = 128788, + [SMALL_STATE(3183)] = 128797, + [SMALL_STATE(3184)] = 128804, + [SMALL_STATE(3185)] = 128817, + [SMALL_STATE(3186)] = 128826, + [SMALL_STATE(3187)] = 128839, + [SMALL_STATE(3188)] = 128850, + [SMALL_STATE(3189)] = 128857, + [SMALL_STATE(3190)] = 128870, + [SMALL_STATE(3191)] = 128883, + [SMALL_STATE(3192)] = 128894, + [SMALL_STATE(3193)] = 128907, + [SMALL_STATE(3194)] = 128920, + [SMALL_STATE(3195)] = 128929, + [SMALL_STATE(3196)] = 128938, + [SMALL_STATE(3197)] = 128951, + [SMALL_STATE(3198)] = 128958, + [SMALL_STATE(3199)] = 128965, + [SMALL_STATE(3200)] = 128974, + [SMALL_STATE(3201)] = 128987, + [SMALL_STATE(3202)] = 129000, + [SMALL_STATE(3203)] = 129009, + [SMALL_STATE(3204)] = 129022, + [SMALL_STATE(3205)] = 129029, + [SMALL_STATE(3206)] = 129042, + [SMALL_STATE(3207)] = 129055, + [SMALL_STATE(3208)] = 129068, + [SMALL_STATE(3209)] = 129081, + [SMALL_STATE(3210)] = 129094, + [SMALL_STATE(3211)] = 129107, + [SMALL_STATE(3212)] = 129120, + [SMALL_STATE(3213)] = 129133, + [SMALL_STATE(3214)] = 129146, + [SMALL_STATE(3215)] = 129159, + [SMALL_STATE(3216)] = 129172, + [SMALL_STATE(3217)] = 129185, + [SMALL_STATE(3218)] = 129192, + [SMALL_STATE(3219)] = 129205, + [SMALL_STATE(3220)] = 129218, + [SMALL_STATE(3221)] = 129231, + [SMALL_STATE(3222)] = 129244, + [SMALL_STATE(3223)] = 129257, + [SMALL_STATE(3224)] = 129270, + [SMALL_STATE(3225)] = 129283, + [SMALL_STATE(3226)] = 129290, + [SMALL_STATE(3227)] = 129299, + [SMALL_STATE(3228)] = 129308, + [SMALL_STATE(3229)] = 129317, + [SMALL_STATE(3230)] = 129326, + [SMALL_STATE(3231)] = 129339, + [SMALL_STATE(3232)] = 129346, + [SMALL_STATE(3233)] = 129359, + [SMALL_STATE(3234)] = 129372, + [SMALL_STATE(3235)] = 129385, + [SMALL_STATE(3236)] = 129394, + [SMALL_STATE(3237)] = 129407, + [SMALL_STATE(3238)] = 129420, + [SMALL_STATE(3239)] = 129433, + [SMALL_STATE(3240)] = 129446, + [SMALL_STATE(3241)] = 129459, + [SMALL_STATE(3242)] = 129472, + [SMALL_STATE(3243)] = 129485, + [SMALL_STATE(3244)] = 129498, + [SMALL_STATE(3245)] = 129511, + [SMALL_STATE(3246)] = 129524, + [SMALL_STATE(3247)] = 129537, + [SMALL_STATE(3248)] = 129550, + [SMALL_STATE(3249)] = 129563, + [SMALL_STATE(3250)] = 129576, + [SMALL_STATE(3251)] = 129589, + [SMALL_STATE(3252)] = 129602, + [SMALL_STATE(3253)] = 129615, + [SMALL_STATE(3254)] = 129628, + [SMALL_STATE(3255)] = 129641, + [SMALL_STATE(3256)] = 129654, + [SMALL_STATE(3257)] = 129667, + [SMALL_STATE(3258)] = 129680, + [SMALL_STATE(3259)] = 129693, + [SMALL_STATE(3260)] = 129706, + [SMALL_STATE(3261)] = 129719, + [SMALL_STATE(3262)] = 129732, + [SMALL_STATE(3263)] = 129745, + [SMALL_STATE(3264)] = 129758, + [SMALL_STATE(3265)] = 129771, + [SMALL_STATE(3266)] = 129784, + [SMALL_STATE(3267)] = 129797, + [SMALL_STATE(3268)] = 129810, + [SMALL_STATE(3269)] = 129823, + [SMALL_STATE(3270)] = 129836, + [SMALL_STATE(3271)] = 129849, + [SMALL_STATE(3272)] = 129859, + [SMALL_STATE(3273)] = 129869, + [SMALL_STATE(3274)] = 129879, + [SMALL_STATE(3275)] = 129889, + [SMALL_STATE(3276)] = 129899, + [SMALL_STATE(3277)] = 129909, + [SMALL_STATE(3278)] = 129919, + [SMALL_STATE(3279)] = 129929, + [SMALL_STATE(3280)] = 129939, + [SMALL_STATE(3281)] = 129949, + [SMALL_STATE(3282)] = 129959, + [SMALL_STATE(3283)] = 129969, + [SMALL_STATE(3284)] = 129979, + [SMALL_STATE(3285)] = 129989, + [SMALL_STATE(3286)] = 129999, + [SMALL_STATE(3287)] = 130009, + [SMALL_STATE(3288)] = 130019, + [SMALL_STATE(3289)] = 130029, + [SMALL_STATE(3290)] = 130039, + [SMALL_STATE(3291)] = 130049, + [SMALL_STATE(3292)] = 130059, + [SMALL_STATE(3293)] = 130069, + [SMALL_STATE(3294)] = 130079, + [SMALL_STATE(3295)] = 130089, + [SMALL_STATE(3296)] = 130099, + [SMALL_STATE(3297)] = 130109, + [SMALL_STATE(3298)] = 130119, + [SMALL_STATE(3299)] = 130129, + [SMALL_STATE(3300)] = 130139, + [SMALL_STATE(3301)] = 130149, + [SMALL_STATE(3302)] = 130159, + [SMALL_STATE(3303)] = 130169, + [SMALL_STATE(3304)] = 130179, + [SMALL_STATE(3305)] = 130189, + [SMALL_STATE(3306)] = 130199, + [SMALL_STATE(3307)] = 130209, + [SMALL_STATE(3308)] = 130219, + [SMALL_STATE(3309)] = 130229, + [SMALL_STATE(3310)] = 130237, + [SMALL_STATE(3311)] = 130247, + [SMALL_STATE(3312)] = 130257, + [SMALL_STATE(3313)] = 130267, + [SMALL_STATE(3314)] = 130277, + [SMALL_STATE(3315)] = 130287, + [SMALL_STATE(3316)] = 130297, + [SMALL_STATE(3317)] = 130307, + [SMALL_STATE(3318)] = 130317, + [SMALL_STATE(3319)] = 130327, + [SMALL_STATE(3320)] = 130337, + [SMALL_STATE(3321)] = 130347, + [SMALL_STATE(3322)] = 130357, + [SMALL_STATE(3323)] = 130367, + [SMALL_STATE(3324)] = 130377, + [SMALL_STATE(3325)] = 130387, + [SMALL_STATE(3326)] = 130397, + [SMALL_STATE(3327)] = 130407, + [SMALL_STATE(3328)] = 130413, + [SMALL_STATE(3329)] = 130423, + [SMALL_STATE(3330)] = 130433, + [SMALL_STATE(3331)] = 130443, + [SMALL_STATE(3332)] = 130453, + [SMALL_STATE(3333)] = 130463, + [SMALL_STATE(3334)] = 130473, + [SMALL_STATE(3335)] = 130483, + [SMALL_STATE(3336)] = 130493, + [SMALL_STATE(3337)] = 130503, + [SMALL_STATE(3338)] = 130513, + [SMALL_STATE(3339)] = 130523, + [SMALL_STATE(3340)] = 130533, + [SMALL_STATE(3341)] = 130543, + [SMALL_STATE(3342)] = 130553, + [SMALL_STATE(3343)] = 130563, + [SMALL_STATE(3344)] = 130573, + [SMALL_STATE(3345)] = 130583, + [SMALL_STATE(3346)] = 130593, + [SMALL_STATE(3347)] = 130603, + [SMALL_STATE(3348)] = 130613, + [SMALL_STATE(3349)] = 130623, + [SMALL_STATE(3350)] = 130633, + [SMALL_STATE(3351)] = 130643, + [SMALL_STATE(3352)] = 130653, + [SMALL_STATE(3353)] = 130663, + [SMALL_STATE(3354)] = 130673, + [SMALL_STATE(3355)] = 130683, + [SMALL_STATE(3356)] = 130689, + [SMALL_STATE(3357)] = 130699, + [SMALL_STATE(3358)] = 130709, + [SMALL_STATE(3359)] = 130719, + [SMALL_STATE(3360)] = 130729, + [SMALL_STATE(3361)] = 130739, + [SMALL_STATE(3362)] = 130749, + [SMALL_STATE(3363)] = 130759, + [SMALL_STATE(3364)] = 130765, + [SMALL_STATE(3365)] = 130775, + [SMALL_STATE(3366)] = 130785, + [SMALL_STATE(3367)] = 130795, + [SMALL_STATE(3368)] = 130805, + [SMALL_STATE(3369)] = 130815, + [SMALL_STATE(3370)] = 130825, + [SMALL_STATE(3371)] = 130835, + [SMALL_STATE(3372)] = 130845, + [SMALL_STATE(3373)] = 130855, + [SMALL_STATE(3374)] = 130863, + [SMALL_STATE(3375)] = 130873, + [SMALL_STATE(3376)] = 130883, + [SMALL_STATE(3377)] = 130893, + [SMALL_STATE(3378)] = 130903, + [SMALL_STATE(3379)] = 130913, + [SMALL_STATE(3380)] = 130923, + [SMALL_STATE(3381)] = 130933, + [SMALL_STATE(3382)] = 130943, + [SMALL_STATE(3383)] = 130953, + [SMALL_STATE(3384)] = 130963, + [SMALL_STATE(3385)] = 130973, + [SMALL_STATE(3386)] = 130983, + [SMALL_STATE(3387)] = 130993, + [SMALL_STATE(3388)] = 131003, + [SMALL_STATE(3389)] = 131013, + [SMALL_STATE(3390)] = 131023, + [SMALL_STATE(3391)] = 131033, + [SMALL_STATE(3392)] = 131043, + [SMALL_STATE(3393)] = 131053, + [SMALL_STATE(3394)] = 131063, + [SMALL_STATE(3395)] = 131071, + [SMALL_STATE(3396)] = 131081, + [SMALL_STATE(3397)] = 131091, + [SMALL_STATE(3398)] = 131101, + [SMALL_STATE(3399)] = 131111, + [SMALL_STATE(3400)] = 131121, + [SMALL_STATE(3401)] = 131131, + [SMALL_STATE(3402)] = 131141, + [SMALL_STATE(3403)] = 131151, + [SMALL_STATE(3404)] = 131161, + [SMALL_STATE(3405)] = 131171, + [SMALL_STATE(3406)] = 131181, + [SMALL_STATE(3407)] = 131191, + [SMALL_STATE(3408)] = 131201, + [SMALL_STATE(3409)] = 131211, + [SMALL_STATE(3410)] = 131221, + [SMALL_STATE(3411)] = 131231, + [SMALL_STATE(3412)] = 131241, + [SMALL_STATE(3413)] = 131251, + [SMALL_STATE(3414)] = 131261, + [SMALL_STATE(3415)] = 131271, + [SMALL_STATE(3416)] = 131281, + [SMALL_STATE(3417)] = 131291, + [SMALL_STATE(3418)] = 131297, + [SMALL_STATE(3419)] = 131303, + [SMALL_STATE(3420)] = 131313, + [SMALL_STATE(3421)] = 131323, + [SMALL_STATE(3422)] = 131333, + [SMALL_STATE(3423)] = 131343, + [SMALL_STATE(3424)] = 131353, + [SMALL_STATE(3425)] = 131363, + [SMALL_STATE(3426)] = 131373, + [SMALL_STATE(3427)] = 131383, + [SMALL_STATE(3428)] = 131393, + [SMALL_STATE(3429)] = 131403, + [SMALL_STATE(3430)] = 131413, + [SMALL_STATE(3431)] = 131423, + [SMALL_STATE(3432)] = 131433, + [SMALL_STATE(3433)] = 131443, + [SMALL_STATE(3434)] = 131453, + [SMALL_STATE(3435)] = 131463, + [SMALL_STATE(3436)] = 131473, + [SMALL_STATE(3437)] = 131483, + [SMALL_STATE(3438)] = 131493, + [SMALL_STATE(3439)] = 131503, + [SMALL_STATE(3440)] = 131513, + [SMALL_STATE(3441)] = 131523, + [SMALL_STATE(3442)] = 131533, + [SMALL_STATE(3443)] = 131543, + [SMALL_STATE(3444)] = 131553, + [SMALL_STATE(3445)] = 131563, + [SMALL_STATE(3446)] = 131573, + [SMALL_STATE(3447)] = 131583, + [SMALL_STATE(3448)] = 131593, + [SMALL_STATE(3449)] = 131603, + [SMALL_STATE(3450)] = 131613, + [SMALL_STATE(3451)] = 131623, + [SMALL_STATE(3452)] = 131629, + [SMALL_STATE(3453)] = 131639, + [SMALL_STATE(3454)] = 131649, + [SMALL_STATE(3455)] = 131659, + [SMALL_STATE(3456)] = 131669, + [SMALL_STATE(3457)] = 131679, + [SMALL_STATE(3458)] = 131689, + [SMALL_STATE(3459)] = 131699, + [SMALL_STATE(3460)] = 131709, + [SMALL_STATE(3461)] = 131717, + [SMALL_STATE(3462)] = 131727, + [SMALL_STATE(3463)] = 131737, + [SMALL_STATE(3464)] = 131747, + [SMALL_STATE(3465)] = 131757, + [SMALL_STATE(3466)] = 131763, + [SMALL_STATE(3467)] = 131773, + [SMALL_STATE(3468)] = 131783, + [SMALL_STATE(3469)] = 131793, + [SMALL_STATE(3470)] = 131803, + [SMALL_STATE(3471)] = 131809, + [SMALL_STATE(3472)] = 131819, + [SMALL_STATE(3473)] = 131827, + [SMALL_STATE(3474)] = 131837, + [SMALL_STATE(3475)] = 131847, + [SMALL_STATE(3476)] = 131857, + [SMALL_STATE(3477)] = 131867, + [SMALL_STATE(3478)] = 131877, + [SMALL_STATE(3479)] = 131887, + [SMALL_STATE(3480)] = 131897, + [SMALL_STATE(3481)] = 131907, + [SMALL_STATE(3482)] = 131917, + [SMALL_STATE(3483)] = 131927, + [SMALL_STATE(3484)] = 131937, + [SMALL_STATE(3485)] = 131947, + [SMALL_STATE(3486)] = 131953, + [SMALL_STATE(3487)] = 131963, + [SMALL_STATE(3488)] = 131973, + [SMALL_STATE(3489)] = 131981, + [SMALL_STATE(3490)] = 131991, + [SMALL_STATE(3491)] = 132001, + [SMALL_STATE(3492)] = 132011, + [SMALL_STATE(3493)] = 132021, + [SMALL_STATE(3494)] = 132031, + [SMALL_STATE(3495)] = 132041, + [SMALL_STATE(3496)] = 132051, + [SMALL_STATE(3497)] = 132061, + [SMALL_STATE(3498)] = 132069, + [SMALL_STATE(3499)] = 132079, + [SMALL_STATE(3500)] = 132089, + [SMALL_STATE(3501)] = 132099, + [SMALL_STATE(3502)] = 132109, + [SMALL_STATE(3503)] = 132119, + [SMALL_STATE(3504)] = 132129, + [SMALL_STATE(3505)] = 132139, + [SMALL_STATE(3506)] = 132149, + [SMALL_STATE(3507)] = 132159, + [SMALL_STATE(3508)] = 132169, + [SMALL_STATE(3509)] = 132179, + [SMALL_STATE(3510)] = 132189, + [SMALL_STATE(3511)] = 132199, + [SMALL_STATE(3512)] = 132209, + [SMALL_STATE(3513)] = 132219, + [SMALL_STATE(3514)] = 132227, + [SMALL_STATE(3515)] = 132237, + [SMALL_STATE(3516)] = 132247, + [SMALL_STATE(3517)] = 132257, + [SMALL_STATE(3518)] = 132267, + [SMALL_STATE(3519)] = 132277, + [SMALL_STATE(3520)] = 132283, + [SMALL_STATE(3521)] = 132293, + [SMALL_STATE(3522)] = 132303, + [SMALL_STATE(3523)] = 132313, + [SMALL_STATE(3524)] = 132323, + [SMALL_STATE(3525)] = 132333, + [SMALL_STATE(3526)] = 132343, + [SMALL_STATE(3527)] = 132353, + [SMALL_STATE(3528)] = 132363, + [SMALL_STATE(3529)] = 132373, + [SMALL_STATE(3530)] = 132383, + [SMALL_STATE(3531)] = 132393, + [SMALL_STATE(3532)] = 132403, + [SMALL_STATE(3533)] = 132413, + [SMALL_STATE(3534)] = 132420, + [SMALL_STATE(3535)] = 132427, + [SMALL_STATE(3536)] = 132432, + [SMALL_STATE(3537)] = 132437, + [SMALL_STATE(3538)] = 132442, + [SMALL_STATE(3539)] = 132447, + [SMALL_STATE(3540)] = 132454, + [SMALL_STATE(3541)] = 132459, + [SMALL_STATE(3542)] = 132464, + [SMALL_STATE(3543)] = 132471, + [SMALL_STATE(3544)] = 132478, + [SMALL_STATE(3545)] = 132485, + [SMALL_STATE(3546)] = 132490, + [SMALL_STATE(3547)] = 132495, + [SMALL_STATE(3548)] = 132502, + [SMALL_STATE(3549)] = 132507, + [SMALL_STATE(3550)] = 132514, + [SMALL_STATE(3551)] = 132521, + [SMALL_STATE(3552)] = 132528, + [SMALL_STATE(3553)] = 132535, + [SMALL_STATE(3554)] = 132542, + [SMALL_STATE(3555)] = 132547, + [SMALL_STATE(3556)] = 132554, + [SMALL_STATE(3557)] = 132559, + [SMALL_STATE(3558)] = 132564, + [SMALL_STATE(3559)] = 132571, + [SMALL_STATE(3560)] = 132576, + [SMALL_STATE(3561)] = 132583, + [SMALL_STATE(3562)] = 132590, [SMALL_STATE(3563)] = 132597, - [SMALL_STATE(3564)] = 132604, + [SMALL_STATE(3564)] = 132602, [SMALL_STATE(3565)] = 132609, - [SMALL_STATE(3566)] = 132614, - [SMALL_STATE(3567)] = 132619, - [SMALL_STATE(3568)] = 132624, - [SMALL_STATE(3569)] = 132631, - [SMALL_STATE(3570)] = 132638, - [SMALL_STATE(3571)] = 132643, - [SMALL_STATE(3572)] = 132648, - [SMALL_STATE(3573)] = 132655, - [SMALL_STATE(3574)] = 132662, - [SMALL_STATE(3575)] = 132667, - [SMALL_STATE(3576)] = 132674, - [SMALL_STATE(3577)] = 132681, - [SMALL_STATE(3578)] = 132688, - [SMALL_STATE(3579)] = 132695, - [SMALL_STATE(3580)] = 132702, - [SMALL_STATE(3581)] = 132709, - [SMALL_STATE(3582)] = 132716, - [SMALL_STATE(3583)] = 132723, - [SMALL_STATE(3584)] = 132730, - [SMALL_STATE(3585)] = 132737, - [SMALL_STATE(3586)] = 132742, - [SMALL_STATE(3587)] = 132747, - [SMALL_STATE(3588)] = 132754, - [SMALL_STATE(3589)] = 132761, - [SMALL_STATE(3590)] = 132768, - [SMALL_STATE(3591)] = 132775, - [SMALL_STATE(3592)] = 132782, - [SMALL_STATE(3593)] = 132789, - [SMALL_STATE(3594)] = 132796, - [SMALL_STATE(3595)] = 132803, - [SMALL_STATE(3596)] = 132810, - [SMALL_STATE(3597)] = 132817, - [SMALL_STATE(3598)] = 132824, - [SMALL_STATE(3599)] = 132831, - [SMALL_STATE(3600)] = 132836, - [SMALL_STATE(3601)] = 132841, - [SMALL_STATE(3602)] = 132848, - [SMALL_STATE(3603)] = 132855, - [SMALL_STATE(3604)] = 132860, - [SMALL_STATE(3605)] = 132867, - [SMALL_STATE(3606)] = 132872, - [SMALL_STATE(3607)] = 132879, - [SMALL_STATE(3608)] = 132886, - [SMALL_STATE(3609)] = 132893, - [SMALL_STATE(3610)] = 132900, - [SMALL_STATE(3611)] = 132905, - [SMALL_STATE(3612)] = 132910, - [SMALL_STATE(3613)] = 132917, - [SMALL_STATE(3614)] = 132924, - [SMALL_STATE(3615)] = 132931, - [SMALL_STATE(3616)] = 132938, - [SMALL_STATE(3617)] = 132945, - [SMALL_STATE(3618)] = 132952, - [SMALL_STATE(3619)] = 132957, - [SMALL_STATE(3620)] = 132962, - [SMALL_STATE(3621)] = 132969, - [SMALL_STATE(3622)] = 132976, - [SMALL_STATE(3623)] = 132983, - [SMALL_STATE(3624)] = 132990, - [SMALL_STATE(3625)] = 132997, - [SMALL_STATE(3626)] = 133004, - [SMALL_STATE(3627)] = 133011, - [SMALL_STATE(3628)] = 133018, - [SMALL_STATE(3629)] = 133025, - [SMALL_STATE(3630)] = 133032, - [SMALL_STATE(3631)] = 133039, - [SMALL_STATE(3632)] = 133046, - [SMALL_STATE(3633)] = 133053, - [SMALL_STATE(3634)] = 133060, - [SMALL_STATE(3635)] = 133067, + [SMALL_STATE(3566)] = 132616, + [SMALL_STATE(3567)] = 132623, + [SMALL_STATE(3568)] = 132628, + [SMALL_STATE(3569)] = 132635, + [SMALL_STATE(3570)] = 132642, + [SMALL_STATE(3571)] = 132649, + [SMALL_STATE(3572)] = 132654, + [SMALL_STATE(3573)] = 132661, + [SMALL_STATE(3574)] = 132668, + [SMALL_STATE(3575)] = 132675, + [SMALL_STATE(3576)] = 132682, + [SMALL_STATE(3577)] = 132689, + [SMALL_STATE(3578)] = 132696, + [SMALL_STATE(3579)] = 132703, + [SMALL_STATE(3580)] = 132710, + [SMALL_STATE(3581)] = 132717, + [SMALL_STATE(3582)] = 132724, + [SMALL_STATE(3583)] = 132731, + [SMALL_STATE(3584)] = 132738, + [SMALL_STATE(3585)] = 132745, + [SMALL_STATE(3586)] = 132752, + [SMALL_STATE(3587)] = 132759, + [SMALL_STATE(3588)] = 132766, + [SMALL_STATE(3589)] = 132773, + [SMALL_STATE(3590)] = 132780, + [SMALL_STATE(3591)] = 132787, + [SMALL_STATE(3592)] = 132792, + [SMALL_STATE(3593)] = 132799, + [SMALL_STATE(3594)] = 132806, + [SMALL_STATE(3595)] = 132813, + [SMALL_STATE(3596)] = 132820, + [SMALL_STATE(3597)] = 132827, + [SMALL_STATE(3598)] = 132832, + [SMALL_STATE(3599)] = 132837, + [SMALL_STATE(3600)] = 132842, + [SMALL_STATE(3601)] = 132849, + [SMALL_STATE(3602)] = 132856, + [SMALL_STATE(3603)] = 132863, + [SMALL_STATE(3604)] = 132870, + [SMALL_STATE(3605)] = 132875, + [SMALL_STATE(3606)] = 132880, + [SMALL_STATE(3607)] = 132885, + [SMALL_STATE(3608)] = 132892, + [SMALL_STATE(3609)] = 132899, + [SMALL_STATE(3610)] = 132904, + [SMALL_STATE(3611)] = 132911, + [SMALL_STATE(3612)] = 132918, + [SMALL_STATE(3613)] = 132925, + [SMALL_STATE(3614)] = 132932, + [SMALL_STATE(3615)] = 132939, + [SMALL_STATE(3616)] = 132944, + [SMALL_STATE(3617)] = 132949, + [SMALL_STATE(3618)] = 132956, + [SMALL_STATE(3619)] = 132963, + [SMALL_STATE(3620)] = 132970, + [SMALL_STATE(3621)] = 132975, + [SMALL_STATE(3622)] = 132980, + [SMALL_STATE(3623)] = 132987, + [SMALL_STATE(3624)] = 132994, + [SMALL_STATE(3625)] = 133001, + [SMALL_STATE(3626)] = 133008, + [SMALL_STATE(3627)] = 133015, + [SMALL_STATE(3628)] = 133022, + [SMALL_STATE(3629)] = 133029, + [SMALL_STATE(3630)] = 133036, + [SMALL_STATE(3631)] = 133043, + [SMALL_STATE(3632)] = 133050, + [SMALL_STATE(3633)] = 133057, + [SMALL_STATE(3634)] = 133064, + [SMALL_STATE(3635)] = 133069, [SMALL_STATE(3636)] = 133074, [SMALL_STATE(3637)] = 133081, [SMALL_STATE(3638)] = 133088, - [SMALL_STATE(3639)] = 133093, - [SMALL_STATE(3640)] = 133100, + [SMALL_STATE(3639)] = 133095, + [SMALL_STATE(3640)] = 133102, [SMALL_STATE(3641)] = 133107, - [SMALL_STATE(3642)] = 133114, + [SMALL_STATE(3642)] = 133112, [SMALL_STATE(3643)] = 133119, [SMALL_STATE(3644)] = 133126, [SMALL_STATE(3645)] = 133133, - [SMALL_STATE(3646)] = 133140, - [SMALL_STATE(3647)] = 133145, - [SMALL_STATE(3648)] = 133152, - [SMALL_STATE(3649)] = 133159, - [SMALL_STATE(3650)] = 133166, - [SMALL_STATE(3651)] = 133173, - [SMALL_STATE(3652)] = 133180, - [SMALL_STATE(3653)] = 133187, - [SMALL_STATE(3654)] = 133194, - [SMALL_STATE(3655)] = 133201, - [SMALL_STATE(3656)] = 133208, - [SMALL_STATE(3657)] = 133215, - [SMALL_STATE(3658)] = 133222, - [SMALL_STATE(3659)] = 133229, - [SMALL_STATE(3660)] = 133236, - [SMALL_STATE(3661)] = 133243, - [SMALL_STATE(3662)] = 133250, - [SMALL_STATE(3663)] = 133257, - [SMALL_STATE(3664)] = 133264, - [SMALL_STATE(3665)] = 133271, - [SMALL_STATE(3666)] = 133278, - [SMALL_STATE(3667)] = 133283, - [SMALL_STATE(3668)] = 133290, - [SMALL_STATE(3669)] = 133297, - [SMALL_STATE(3670)] = 133302, - [SMALL_STATE(3671)] = 133309, - [SMALL_STATE(3672)] = 133313, - [SMALL_STATE(3673)] = 133317, - [SMALL_STATE(3674)] = 133321, - [SMALL_STATE(3675)] = 133325, - [SMALL_STATE(3676)] = 133329, - [SMALL_STATE(3677)] = 133333, - [SMALL_STATE(3678)] = 133337, - [SMALL_STATE(3679)] = 133341, - [SMALL_STATE(3680)] = 133345, - [SMALL_STATE(3681)] = 133349, - [SMALL_STATE(3682)] = 133353, - [SMALL_STATE(3683)] = 133357, - [SMALL_STATE(3684)] = 133361, - [SMALL_STATE(3685)] = 133365, - [SMALL_STATE(3686)] = 133369, - [SMALL_STATE(3687)] = 133373, - [SMALL_STATE(3688)] = 133377, - [SMALL_STATE(3689)] = 133381, - [SMALL_STATE(3690)] = 133385, - [SMALL_STATE(3691)] = 133389, - [SMALL_STATE(3692)] = 133393, - [SMALL_STATE(3693)] = 133397, - [SMALL_STATE(3694)] = 133401, - [SMALL_STATE(3695)] = 133405, - [SMALL_STATE(3696)] = 133409, - [SMALL_STATE(3697)] = 133413, - [SMALL_STATE(3698)] = 133417, - [SMALL_STATE(3699)] = 133421, - [SMALL_STATE(3700)] = 133425, - [SMALL_STATE(3701)] = 133429, - [SMALL_STATE(3702)] = 133433, - [SMALL_STATE(3703)] = 133437, - [SMALL_STATE(3704)] = 133441, - [SMALL_STATE(3705)] = 133445, - [SMALL_STATE(3706)] = 133449, - [SMALL_STATE(3707)] = 133453, - [SMALL_STATE(3708)] = 133457, - [SMALL_STATE(3709)] = 133461, - [SMALL_STATE(3710)] = 133465, - [SMALL_STATE(3711)] = 133469, - [SMALL_STATE(3712)] = 133473, - [SMALL_STATE(3713)] = 133477, - [SMALL_STATE(3714)] = 133481, - [SMALL_STATE(3715)] = 133485, - [SMALL_STATE(3716)] = 133489, - [SMALL_STATE(3717)] = 133493, - [SMALL_STATE(3718)] = 133497, - [SMALL_STATE(3719)] = 133501, - [SMALL_STATE(3720)] = 133505, - [SMALL_STATE(3721)] = 133509, - [SMALL_STATE(3722)] = 133513, - [SMALL_STATE(3723)] = 133517, - [SMALL_STATE(3724)] = 133521, - [SMALL_STATE(3725)] = 133525, - [SMALL_STATE(3726)] = 133529, - [SMALL_STATE(3727)] = 133533, - [SMALL_STATE(3728)] = 133537, - [SMALL_STATE(3729)] = 133541, - [SMALL_STATE(3730)] = 133545, - [SMALL_STATE(3731)] = 133549, - [SMALL_STATE(3732)] = 133553, - [SMALL_STATE(3733)] = 133557, - [SMALL_STATE(3734)] = 133561, - [SMALL_STATE(3735)] = 133565, - [SMALL_STATE(3736)] = 133569, - [SMALL_STATE(3737)] = 133573, - [SMALL_STATE(3738)] = 133577, - [SMALL_STATE(3739)] = 133581, - [SMALL_STATE(3740)] = 133585, - [SMALL_STATE(3741)] = 133589, - [SMALL_STATE(3742)] = 133593, - [SMALL_STATE(3743)] = 133597, - [SMALL_STATE(3744)] = 133601, - [SMALL_STATE(3745)] = 133605, - [SMALL_STATE(3746)] = 133609, - [SMALL_STATE(3747)] = 133613, - [SMALL_STATE(3748)] = 133617, - [SMALL_STATE(3749)] = 133621, - [SMALL_STATE(3750)] = 133625, - [SMALL_STATE(3751)] = 133629, - [SMALL_STATE(3752)] = 133633, - [SMALL_STATE(3753)] = 133637, - [SMALL_STATE(3754)] = 133641, - [SMALL_STATE(3755)] = 133645, - [SMALL_STATE(3756)] = 133649, - [SMALL_STATE(3757)] = 133653, - [SMALL_STATE(3758)] = 133657, - [SMALL_STATE(3759)] = 133661, - [SMALL_STATE(3760)] = 133665, - [SMALL_STATE(3761)] = 133669, - [SMALL_STATE(3762)] = 133673, - [SMALL_STATE(3763)] = 133677, - [SMALL_STATE(3764)] = 133681, - [SMALL_STATE(3765)] = 133685, - [SMALL_STATE(3766)] = 133689, - [SMALL_STATE(3767)] = 133693, - [SMALL_STATE(3768)] = 133697, - [SMALL_STATE(3769)] = 133701, - [SMALL_STATE(3770)] = 133705, - [SMALL_STATE(3771)] = 133709, - [SMALL_STATE(3772)] = 133713, - [SMALL_STATE(3773)] = 133717, - [SMALL_STATE(3774)] = 133721, - [SMALL_STATE(3775)] = 133725, - [SMALL_STATE(3776)] = 133729, - [SMALL_STATE(3777)] = 133733, - [SMALL_STATE(3778)] = 133737, - [SMALL_STATE(3779)] = 133741, - [SMALL_STATE(3780)] = 133745, - [SMALL_STATE(3781)] = 133749, - [SMALL_STATE(3782)] = 133753, - [SMALL_STATE(3783)] = 133757, - [SMALL_STATE(3784)] = 133761, - [SMALL_STATE(3785)] = 133765, - [SMALL_STATE(3786)] = 133769, - [SMALL_STATE(3787)] = 133773, - [SMALL_STATE(3788)] = 133777, - [SMALL_STATE(3789)] = 133781, - [SMALL_STATE(3790)] = 133785, - [SMALL_STATE(3791)] = 133789, - [SMALL_STATE(3792)] = 133793, - [SMALL_STATE(3793)] = 133797, - [SMALL_STATE(3794)] = 133801, - [SMALL_STATE(3795)] = 133805, - [SMALL_STATE(3796)] = 133809, - [SMALL_STATE(3797)] = 133813, - [SMALL_STATE(3798)] = 133817, - [SMALL_STATE(3799)] = 133821, - [SMALL_STATE(3800)] = 133825, - [SMALL_STATE(3801)] = 133829, - [SMALL_STATE(3802)] = 133833, - [SMALL_STATE(3803)] = 133837, - [SMALL_STATE(3804)] = 133841, - [SMALL_STATE(3805)] = 133845, - [SMALL_STATE(3806)] = 133849, - [SMALL_STATE(3807)] = 133853, - [SMALL_STATE(3808)] = 133857, - [SMALL_STATE(3809)] = 133861, - [SMALL_STATE(3810)] = 133865, - [SMALL_STATE(3811)] = 133869, - [SMALL_STATE(3812)] = 133873, - [SMALL_STATE(3813)] = 133877, - [SMALL_STATE(3814)] = 133881, - [SMALL_STATE(3815)] = 133885, - [SMALL_STATE(3816)] = 133889, - [SMALL_STATE(3817)] = 133893, - [SMALL_STATE(3818)] = 133897, - [SMALL_STATE(3819)] = 133901, - [SMALL_STATE(3820)] = 133905, - [SMALL_STATE(3821)] = 133909, - [SMALL_STATE(3822)] = 133913, - [SMALL_STATE(3823)] = 133917, - [SMALL_STATE(3824)] = 133921, - [SMALL_STATE(3825)] = 133925, - [SMALL_STATE(3826)] = 133929, - [SMALL_STATE(3827)] = 133933, - [SMALL_STATE(3828)] = 133937, - [SMALL_STATE(3829)] = 133941, - [SMALL_STATE(3830)] = 133945, - [SMALL_STATE(3831)] = 133949, - [SMALL_STATE(3832)] = 133953, - [SMALL_STATE(3833)] = 133957, - [SMALL_STATE(3834)] = 133961, - [SMALL_STATE(3835)] = 133965, - [SMALL_STATE(3836)] = 133969, - [SMALL_STATE(3837)] = 133973, - [SMALL_STATE(3838)] = 133977, - [SMALL_STATE(3839)] = 133981, - [SMALL_STATE(3840)] = 133985, - [SMALL_STATE(3841)] = 133989, - [SMALL_STATE(3842)] = 133993, - [SMALL_STATE(3843)] = 133997, - [SMALL_STATE(3844)] = 134001, - [SMALL_STATE(3845)] = 134005, - [SMALL_STATE(3846)] = 134009, - [SMALL_STATE(3847)] = 134013, - [SMALL_STATE(3848)] = 134017, - [SMALL_STATE(3849)] = 134021, - [SMALL_STATE(3850)] = 134025, - [SMALL_STATE(3851)] = 134029, - [SMALL_STATE(3852)] = 134033, - [SMALL_STATE(3853)] = 134037, - [SMALL_STATE(3854)] = 134041, - [SMALL_STATE(3855)] = 134045, - [SMALL_STATE(3856)] = 134049, - [SMALL_STATE(3857)] = 134053, - [SMALL_STATE(3858)] = 134057, - [SMALL_STATE(3859)] = 134061, - [SMALL_STATE(3860)] = 134065, - [SMALL_STATE(3861)] = 134069, - [SMALL_STATE(3862)] = 134073, - [SMALL_STATE(3863)] = 134077, - [SMALL_STATE(3864)] = 134081, - [SMALL_STATE(3865)] = 134085, - [SMALL_STATE(3866)] = 134089, - [SMALL_STATE(3867)] = 134093, - [SMALL_STATE(3868)] = 134097, - [SMALL_STATE(3869)] = 134101, - [SMALL_STATE(3870)] = 134105, - [SMALL_STATE(3871)] = 134109, - [SMALL_STATE(3872)] = 134113, - [SMALL_STATE(3873)] = 134117, - [SMALL_STATE(3874)] = 134121, - [SMALL_STATE(3875)] = 134125, - [SMALL_STATE(3876)] = 134129, - [SMALL_STATE(3877)] = 134133, - [SMALL_STATE(3878)] = 134137, - [SMALL_STATE(3879)] = 134141, - [SMALL_STATE(3880)] = 134145, - [SMALL_STATE(3881)] = 134149, - [SMALL_STATE(3882)] = 134153, - [SMALL_STATE(3883)] = 134157, - [SMALL_STATE(3884)] = 134161, - [SMALL_STATE(3885)] = 134165, - [SMALL_STATE(3886)] = 134169, - [SMALL_STATE(3887)] = 134173, - [SMALL_STATE(3888)] = 134177, - [SMALL_STATE(3889)] = 134181, - [SMALL_STATE(3890)] = 134185, - [SMALL_STATE(3891)] = 134189, - [SMALL_STATE(3892)] = 134193, - [SMALL_STATE(3893)] = 134197, - [SMALL_STATE(3894)] = 134201, - [SMALL_STATE(3895)] = 134205, - [SMALL_STATE(3896)] = 134209, - [SMALL_STATE(3897)] = 134213, - [SMALL_STATE(3898)] = 134217, - [SMALL_STATE(3899)] = 134221, - [SMALL_STATE(3900)] = 134225, - [SMALL_STATE(3901)] = 134229, - [SMALL_STATE(3902)] = 134233, - [SMALL_STATE(3903)] = 134237, - [SMALL_STATE(3904)] = 134241, - [SMALL_STATE(3905)] = 134245, - [SMALL_STATE(3906)] = 134249, - [SMALL_STATE(3907)] = 134253, - [SMALL_STATE(3908)] = 134257, - [SMALL_STATE(3909)] = 134261, - [SMALL_STATE(3910)] = 134265, - [SMALL_STATE(3911)] = 134269, - [SMALL_STATE(3912)] = 134273, - [SMALL_STATE(3913)] = 134277, - [SMALL_STATE(3914)] = 134281, - [SMALL_STATE(3915)] = 134285, - [SMALL_STATE(3916)] = 134289, - [SMALL_STATE(3917)] = 134293, - [SMALL_STATE(3918)] = 134297, - [SMALL_STATE(3919)] = 134301, - [SMALL_STATE(3920)] = 134305, - [SMALL_STATE(3921)] = 134309, - [SMALL_STATE(3922)] = 134313, - [SMALL_STATE(3923)] = 134317, - [SMALL_STATE(3924)] = 134321, - [SMALL_STATE(3925)] = 134325, - [SMALL_STATE(3926)] = 134329, - [SMALL_STATE(3927)] = 134333, - [SMALL_STATE(3928)] = 134337, - [SMALL_STATE(3929)] = 134341, - [SMALL_STATE(3930)] = 134345, - [SMALL_STATE(3931)] = 134349, - [SMALL_STATE(3932)] = 134353, - [SMALL_STATE(3933)] = 134357, - [SMALL_STATE(3934)] = 134361, - [SMALL_STATE(3935)] = 134365, - [SMALL_STATE(3936)] = 134369, - [SMALL_STATE(3937)] = 134373, - [SMALL_STATE(3938)] = 134377, - [SMALL_STATE(3939)] = 134381, - [SMALL_STATE(3940)] = 134385, - [SMALL_STATE(3941)] = 134389, - [SMALL_STATE(3942)] = 134393, - [SMALL_STATE(3943)] = 134397, - [SMALL_STATE(3944)] = 134401, - [SMALL_STATE(3945)] = 134405, - [SMALL_STATE(3946)] = 134409, - [SMALL_STATE(3947)] = 134413, - [SMALL_STATE(3948)] = 134417, - [SMALL_STATE(3949)] = 134421, - [SMALL_STATE(3950)] = 134425, - [SMALL_STATE(3951)] = 134429, - [SMALL_STATE(3952)] = 134433, - [SMALL_STATE(3953)] = 134437, - [SMALL_STATE(3954)] = 134441, - [SMALL_STATE(3955)] = 134445, - [SMALL_STATE(3956)] = 134449, - [SMALL_STATE(3957)] = 134453, - [SMALL_STATE(3958)] = 134457, - [SMALL_STATE(3959)] = 134461, - [SMALL_STATE(3960)] = 134465, - [SMALL_STATE(3961)] = 134469, - [SMALL_STATE(3962)] = 134473, - [SMALL_STATE(3963)] = 134477, - [SMALL_STATE(3964)] = 134481, - [SMALL_STATE(3965)] = 134485, - [SMALL_STATE(3966)] = 134489, - [SMALL_STATE(3967)] = 134493, - [SMALL_STATE(3968)] = 134497, - [SMALL_STATE(3969)] = 134501, - [SMALL_STATE(3970)] = 134505, - [SMALL_STATE(3971)] = 134509, - [SMALL_STATE(3972)] = 134513, - [SMALL_STATE(3973)] = 134517, - [SMALL_STATE(3974)] = 134521, - [SMALL_STATE(3975)] = 134525, - [SMALL_STATE(3976)] = 134529, - [SMALL_STATE(3977)] = 134533, - [SMALL_STATE(3978)] = 134537, - [SMALL_STATE(3979)] = 134541, - [SMALL_STATE(3980)] = 134545, - [SMALL_STATE(3981)] = 134549, - [SMALL_STATE(3982)] = 134553, - [SMALL_STATE(3983)] = 134557, - [SMALL_STATE(3984)] = 134561, - [SMALL_STATE(3985)] = 134565, - [SMALL_STATE(3986)] = 134569, - [SMALL_STATE(3987)] = 134573, - [SMALL_STATE(3988)] = 134577, - [SMALL_STATE(3989)] = 134581, - [SMALL_STATE(3990)] = 134585, - [SMALL_STATE(3991)] = 134589, - [SMALL_STATE(3992)] = 134593, - [SMALL_STATE(3993)] = 134597, - [SMALL_STATE(3994)] = 134601, - [SMALL_STATE(3995)] = 134605, - [SMALL_STATE(3996)] = 134609, - [SMALL_STATE(3997)] = 134613, - [SMALL_STATE(3998)] = 134617, - [SMALL_STATE(3999)] = 134621, - [SMALL_STATE(4000)] = 134625, - [SMALL_STATE(4001)] = 134629, - [SMALL_STATE(4002)] = 134633, - [SMALL_STATE(4003)] = 134637, - [SMALL_STATE(4004)] = 134641, - [SMALL_STATE(4005)] = 134645, - [SMALL_STATE(4006)] = 134649, - [SMALL_STATE(4007)] = 134653, - [SMALL_STATE(4008)] = 134657, - [SMALL_STATE(4009)] = 134661, - [SMALL_STATE(4010)] = 134665, - [SMALL_STATE(4011)] = 134669, - [SMALL_STATE(4012)] = 134673, - [SMALL_STATE(4013)] = 134677, - [SMALL_STATE(4014)] = 134681, - [SMALL_STATE(4015)] = 134685, - [SMALL_STATE(4016)] = 134689, - [SMALL_STATE(4017)] = 134693, - [SMALL_STATE(4018)] = 134697, - [SMALL_STATE(4019)] = 134701, - [SMALL_STATE(4020)] = 134705, - [SMALL_STATE(4021)] = 134709, - [SMALL_STATE(4022)] = 134713, - [SMALL_STATE(4023)] = 134717, - [SMALL_STATE(4024)] = 134721, - [SMALL_STATE(4025)] = 134725, - [SMALL_STATE(4026)] = 134729, - [SMALL_STATE(4027)] = 134733, - [SMALL_STATE(4028)] = 134737, - [SMALL_STATE(4029)] = 134741, - [SMALL_STATE(4030)] = 134745, - [SMALL_STATE(4031)] = 134749, - [SMALL_STATE(4032)] = 134753, - [SMALL_STATE(4033)] = 134757, - [SMALL_STATE(4034)] = 134761, - [SMALL_STATE(4035)] = 134765, - [SMALL_STATE(4036)] = 134769, - [SMALL_STATE(4037)] = 134773, - [SMALL_STATE(4038)] = 134777, - [SMALL_STATE(4039)] = 134781, - [SMALL_STATE(4040)] = 134785, - [SMALL_STATE(4041)] = 134789, - [SMALL_STATE(4042)] = 134793, - [SMALL_STATE(4043)] = 134797, - [SMALL_STATE(4044)] = 134801, - [SMALL_STATE(4045)] = 134805, - [SMALL_STATE(4046)] = 134809, - [SMALL_STATE(4047)] = 134813, - [SMALL_STATE(4048)] = 134817, - [SMALL_STATE(4049)] = 134821, - [SMALL_STATE(4050)] = 134825, - [SMALL_STATE(4051)] = 134829, - [SMALL_STATE(4052)] = 134833, - [SMALL_STATE(4053)] = 134837, - [SMALL_STATE(4054)] = 134841, - [SMALL_STATE(4055)] = 134845, - [SMALL_STATE(4056)] = 134849, - [SMALL_STATE(4057)] = 134853, - [SMALL_STATE(4058)] = 134857, - [SMALL_STATE(4059)] = 134861, - [SMALL_STATE(4060)] = 134865, - [SMALL_STATE(4061)] = 134869, - [SMALL_STATE(4062)] = 134873, - [SMALL_STATE(4063)] = 134877, - [SMALL_STATE(4064)] = 134881, - [SMALL_STATE(4065)] = 134885, - [SMALL_STATE(4066)] = 134889, - [SMALL_STATE(4067)] = 134893, - [SMALL_STATE(4068)] = 134897, - [SMALL_STATE(4069)] = 134901, - [SMALL_STATE(4070)] = 134905, - [SMALL_STATE(4071)] = 134909, - [SMALL_STATE(4072)] = 134913, - [SMALL_STATE(4073)] = 134917, - [SMALL_STATE(4074)] = 134921, - [SMALL_STATE(4075)] = 134925, - [SMALL_STATE(4076)] = 134929, - [SMALL_STATE(4077)] = 134933, - [SMALL_STATE(4078)] = 134937, - [SMALL_STATE(4079)] = 134941, - [SMALL_STATE(4080)] = 134945, - [SMALL_STATE(4081)] = 134949, - [SMALL_STATE(4082)] = 134953, - [SMALL_STATE(4083)] = 134957, - [SMALL_STATE(4084)] = 134961, - [SMALL_STATE(4085)] = 134965, - [SMALL_STATE(4086)] = 134969, - [SMALL_STATE(4087)] = 134973, - [SMALL_STATE(4088)] = 134977, - [SMALL_STATE(4089)] = 134981, - [SMALL_STATE(4090)] = 134985, - [SMALL_STATE(4091)] = 134989, - [SMALL_STATE(4092)] = 134993, - [SMALL_STATE(4093)] = 134997, - [SMALL_STATE(4094)] = 135001, - [SMALL_STATE(4095)] = 135005, - [SMALL_STATE(4096)] = 135009, - [SMALL_STATE(4097)] = 135013, - [SMALL_STATE(4098)] = 135017, - [SMALL_STATE(4099)] = 135021, - [SMALL_STATE(4100)] = 135025, - [SMALL_STATE(4101)] = 135029, - [SMALL_STATE(4102)] = 135033, - [SMALL_STATE(4103)] = 135037, - [SMALL_STATE(4104)] = 135041, - [SMALL_STATE(4105)] = 135045, - [SMALL_STATE(4106)] = 135049, - [SMALL_STATE(4107)] = 135053, - [SMALL_STATE(4108)] = 135057, - [SMALL_STATE(4109)] = 135061, - [SMALL_STATE(4110)] = 135065, - [SMALL_STATE(4111)] = 135069, - [SMALL_STATE(4112)] = 135073, - [SMALL_STATE(4113)] = 135077, - [SMALL_STATE(4114)] = 135081, - [SMALL_STATE(4115)] = 135085, - [SMALL_STATE(4116)] = 135089, - [SMALL_STATE(4117)] = 135093, - [SMALL_STATE(4118)] = 135097, - [SMALL_STATE(4119)] = 135101, - [SMALL_STATE(4120)] = 135105, - [SMALL_STATE(4121)] = 135109, - [SMALL_STATE(4122)] = 135113, - [SMALL_STATE(4123)] = 135117, - [SMALL_STATE(4124)] = 135121, - [SMALL_STATE(4125)] = 135125, - [SMALL_STATE(4126)] = 135129, - [SMALL_STATE(4127)] = 135133, - [SMALL_STATE(4128)] = 135137, - [SMALL_STATE(4129)] = 135141, - [SMALL_STATE(4130)] = 135145, - [SMALL_STATE(4131)] = 135149, - [SMALL_STATE(4132)] = 135153, - [SMALL_STATE(4133)] = 135157, - [SMALL_STATE(4134)] = 135161, - [SMALL_STATE(4135)] = 135165, - [SMALL_STATE(4136)] = 135169, - [SMALL_STATE(4137)] = 135173, - [SMALL_STATE(4138)] = 135177, - [SMALL_STATE(4139)] = 135181, - [SMALL_STATE(4140)] = 135185, - [SMALL_STATE(4141)] = 135189, - [SMALL_STATE(4142)] = 135193, - [SMALL_STATE(4143)] = 135197, - [SMALL_STATE(4144)] = 135201, - [SMALL_STATE(4145)] = 135205, - [SMALL_STATE(4146)] = 135209, - [SMALL_STATE(4147)] = 135213, - [SMALL_STATE(4148)] = 135217, - [SMALL_STATE(4149)] = 135221, - [SMALL_STATE(4150)] = 135225, - [SMALL_STATE(4151)] = 135229, - [SMALL_STATE(4152)] = 135233, - [SMALL_STATE(4153)] = 135237, - [SMALL_STATE(4154)] = 135241, - [SMALL_STATE(4155)] = 135245, - [SMALL_STATE(4156)] = 135249, - [SMALL_STATE(4157)] = 135253, - [SMALL_STATE(4158)] = 135257, - [SMALL_STATE(4159)] = 135261, - [SMALL_STATE(4160)] = 135265, - [SMALL_STATE(4161)] = 135269, - [SMALL_STATE(4162)] = 135273, - [SMALL_STATE(4163)] = 135277, - [SMALL_STATE(4164)] = 135281, - [SMALL_STATE(4165)] = 135285, - [SMALL_STATE(4166)] = 135289, - [SMALL_STATE(4167)] = 135293, - [SMALL_STATE(4168)] = 135297, - [SMALL_STATE(4169)] = 135301, - [SMALL_STATE(4170)] = 135305, - [SMALL_STATE(4171)] = 135309, - [SMALL_STATE(4172)] = 135313, - [SMALL_STATE(4173)] = 135317, - [SMALL_STATE(4174)] = 135321, - [SMALL_STATE(4175)] = 135325, - [SMALL_STATE(4176)] = 135329, - [SMALL_STATE(4177)] = 135333, - [SMALL_STATE(4178)] = 135337, - [SMALL_STATE(4179)] = 135341, - [SMALL_STATE(4180)] = 135345, - [SMALL_STATE(4181)] = 135349, - [SMALL_STATE(4182)] = 135353, - [SMALL_STATE(4183)] = 135357, - [SMALL_STATE(4184)] = 135361, - [SMALL_STATE(4185)] = 135365, - [SMALL_STATE(4186)] = 135369, - [SMALL_STATE(4187)] = 135373, - [SMALL_STATE(4188)] = 135377, - [SMALL_STATE(4189)] = 135381, - [SMALL_STATE(4190)] = 135385, - [SMALL_STATE(4191)] = 135389, - [SMALL_STATE(4192)] = 135393, - [SMALL_STATE(4193)] = 135397, - [SMALL_STATE(4194)] = 135401, - [SMALL_STATE(4195)] = 135405, - [SMALL_STATE(4196)] = 135409, - [SMALL_STATE(4197)] = 135413, - [SMALL_STATE(4198)] = 135417, - [SMALL_STATE(4199)] = 135421, - [SMALL_STATE(4200)] = 135425, - [SMALL_STATE(4201)] = 135429, - [SMALL_STATE(4202)] = 135433, - [SMALL_STATE(4203)] = 135437, - [SMALL_STATE(4204)] = 135441, - [SMALL_STATE(4205)] = 135445, - [SMALL_STATE(4206)] = 135449, - [SMALL_STATE(4207)] = 135453, - [SMALL_STATE(4208)] = 135457, - [SMALL_STATE(4209)] = 135461, - [SMALL_STATE(4210)] = 135465, - [SMALL_STATE(4211)] = 135469, - [SMALL_STATE(4212)] = 135473, - [SMALL_STATE(4213)] = 135477, - [SMALL_STATE(4214)] = 135481, - [SMALL_STATE(4215)] = 135485, - [SMALL_STATE(4216)] = 135489, - [SMALL_STATE(4217)] = 135493, - [SMALL_STATE(4218)] = 135497, - [SMALL_STATE(4219)] = 135501, - [SMALL_STATE(4220)] = 135505, - [SMALL_STATE(4221)] = 135509, - [SMALL_STATE(4222)] = 135513, - [SMALL_STATE(4223)] = 135517, - [SMALL_STATE(4224)] = 135521, - [SMALL_STATE(4225)] = 135525, - [SMALL_STATE(4226)] = 135529, - [SMALL_STATE(4227)] = 135533, - [SMALL_STATE(4228)] = 135537, - [SMALL_STATE(4229)] = 135541, - [SMALL_STATE(4230)] = 135545, - [SMALL_STATE(4231)] = 135549, - [SMALL_STATE(4232)] = 135553, - [SMALL_STATE(4233)] = 135557, - [SMALL_STATE(4234)] = 135561, - [SMALL_STATE(4235)] = 135565, - [SMALL_STATE(4236)] = 135569, - [SMALL_STATE(4237)] = 135573, - [SMALL_STATE(4238)] = 135577, - [SMALL_STATE(4239)] = 135581, - [SMALL_STATE(4240)] = 135585, - [SMALL_STATE(4241)] = 135589, - [SMALL_STATE(4242)] = 135593, - [SMALL_STATE(4243)] = 135597, - [SMALL_STATE(4244)] = 135601, - [SMALL_STATE(4245)] = 135605, - [SMALL_STATE(4246)] = 135609, - [SMALL_STATE(4247)] = 135613, - [SMALL_STATE(4248)] = 135617, - [SMALL_STATE(4249)] = 135621, - [SMALL_STATE(4250)] = 135625, - [SMALL_STATE(4251)] = 135629, - [SMALL_STATE(4252)] = 135633, - [SMALL_STATE(4253)] = 135637, - [SMALL_STATE(4254)] = 135641, - [SMALL_STATE(4255)] = 135645, - [SMALL_STATE(4256)] = 135649, - [SMALL_STATE(4257)] = 135653, - [SMALL_STATE(4258)] = 135657, - [SMALL_STATE(4259)] = 135661, - [SMALL_STATE(4260)] = 135665, - [SMALL_STATE(4261)] = 135669, - [SMALL_STATE(4262)] = 135673, - [SMALL_STATE(4263)] = 135677, - [SMALL_STATE(4264)] = 135681, - [SMALL_STATE(4265)] = 135685, - [SMALL_STATE(4266)] = 135689, - [SMALL_STATE(4267)] = 135693, - [SMALL_STATE(4268)] = 135697, - [SMALL_STATE(4269)] = 135701, - [SMALL_STATE(4270)] = 135705, - [SMALL_STATE(4271)] = 135709, - [SMALL_STATE(4272)] = 135713, - [SMALL_STATE(4273)] = 135717, - [SMALL_STATE(4274)] = 135721, - [SMALL_STATE(4275)] = 135725, - [SMALL_STATE(4276)] = 135729, - [SMALL_STATE(4277)] = 135733, - [SMALL_STATE(4278)] = 135737, - [SMALL_STATE(4279)] = 135741, - [SMALL_STATE(4280)] = 135745, - [SMALL_STATE(4281)] = 135749, - [SMALL_STATE(4282)] = 135753, - [SMALL_STATE(4283)] = 135757, - [SMALL_STATE(4284)] = 135761, - [SMALL_STATE(4285)] = 135765, - [SMALL_STATE(4286)] = 135769, - [SMALL_STATE(4287)] = 135773, - [SMALL_STATE(4288)] = 135777, - [SMALL_STATE(4289)] = 135781, - [SMALL_STATE(4290)] = 135785, - [SMALL_STATE(4291)] = 135789, - [SMALL_STATE(4292)] = 135793, - [SMALL_STATE(4293)] = 135797, - [SMALL_STATE(4294)] = 135801, - [SMALL_STATE(4295)] = 135805, - [SMALL_STATE(4296)] = 135809, - [SMALL_STATE(4297)] = 135813, - [SMALL_STATE(4298)] = 135817, - [SMALL_STATE(4299)] = 135821, - [SMALL_STATE(4300)] = 135825, - [SMALL_STATE(4301)] = 135829, - [SMALL_STATE(4302)] = 135833, - [SMALL_STATE(4303)] = 135837, - [SMALL_STATE(4304)] = 135841, - [SMALL_STATE(4305)] = 135845, - [SMALL_STATE(4306)] = 135849, - [SMALL_STATE(4307)] = 135853, - [SMALL_STATE(4308)] = 135857, - [SMALL_STATE(4309)] = 135861, - [SMALL_STATE(4310)] = 135865, - [SMALL_STATE(4311)] = 135869, - [SMALL_STATE(4312)] = 135873, - [SMALL_STATE(4313)] = 135877, - [SMALL_STATE(4314)] = 135881, - [SMALL_STATE(4315)] = 135885, - [SMALL_STATE(4316)] = 135889, - [SMALL_STATE(4317)] = 135893, - [SMALL_STATE(4318)] = 135897, - [SMALL_STATE(4319)] = 135901, - [SMALL_STATE(4320)] = 135905, - [SMALL_STATE(4321)] = 135909, - [SMALL_STATE(4322)] = 135913, - [SMALL_STATE(4323)] = 135917, - [SMALL_STATE(4324)] = 135921, - [SMALL_STATE(4325)] = 135925, - [SMALL_STATE(4326)] = 135929, - [SMALL_STATE(4327)] = 135933, - [SMALL_STATE(4328)] = 135937, - [SMALL_STATE(4329)] = 135941, - [SMALL_STATE(4330)] = 135945, - [SMALL_STATE(4331)] = 135949, - [SMALL_STATE(4332)] = 135953, - [SMALL_STATE(4333)] = 135957, - [SMALL_STATE(4334)] = 135961, - [SMALL_STATE(4335)] = 135965, - [SMALL_STATE(4336)] = 135969, - [SMALL_STATE(4337)] = 135973, - [SMALL_STATE(4338)] = 135977, - [SMALL_STATE(4339)] = 135981, - [SMALL_STATE(4340)] = 135985, - [SMALL_STATE(4341)] = 135989, - [SMALL_STATE(4342)] = 135993, - [SMALL_STATE(4343)] = 135997, - [SMALL_STATE(4344)] = 136001, - [SMALL_STATE(4345)] = 136005, - [SMALL_STATE(4346)] = 136009, - [SMALL_STATE(4347)] = 136013, - [SMALL_STATE(4348)] = 136017, - [SMALL_STATE(4349)] = 136021, - [SMALL_STATE(4350)] = 136025, - [SMALL_STATE(4351)] = 136029, - [SMALL_STATE(4352)] = 136033, - [SMALL_STATE(4353)] = 136037, - [SMALL_STATE(4354)] = 136041, - [SMALL_STATE(4355)] = 136045, - [SMALL_STATE(4356)] = 136049, - [SMALL_STATE(4357)] = 136053, - [SMALL_STATE(4358)] = 136057, - [SMALL_STATE(4359)] = 136061, - [SMALL_STATE(4360)] = 136065, - [SMALL_STATE(4361)] = 136069, - [SMALL_STATE(4362)] = 136073, - [SMALL_STATE(4363)] = 136077, - [SMALL_STATE(4364)] = 136081, - [SMALL_STATE(4365)] = 136085, - [SMALL_STATE(4366)] = 136089, - [SMALL_STATE(4367)] = 136093, - [SMALL_STATE(4368)] = 136097, - [SMALL_STATE(4369)] = 136101, - [SMALL_STATE(4370)] = 136105, - [SMALL_STATE(4371)] = 136109, - [SMALL_STATE(4372)] = 136113, - [SMALL_STATE(4373)] = 136117, - [SMALL_STATE(4374)] = 136121, - [SMALL_STATE(4375)] = 136125, - [SMALL_STATE(4376)] = 136129, - [SMALL_STATE(4377)] = 136133, - [SMALL_STATE(4378)] = 136137, - [SMALL_STATE(4379)] = 136141, - [SMALL_STATE(4380)] = 136145, - [SMALL_STATE(4381)] = 136149, - [SMALL_STATE(4382)] = 136153, - [SMALL_STATE(4383)] = 136157, - [SMALL_STATE(4384)] = 136161, - [SMALL_STATE(4385)] = 136165, - [SMALL_STATE(4386)] = 136169, - [SMALL_STATE(4387)] = 136173, - [SMALL_STATE(4388)] = 136177, - [SMALL_STATE(4389)] = 136181, - [SMALL_STATE(4390)] = 136185, - [SMALL_STATE(4391)] = 136189, - [SMALL_STATE(4392)] = 136193, - [SMALL_STATE(4393)] = 136197, - [SMALL_STATE(4394)] = 136201, - [SMALL_STATE(4395)] = 136205, - [SMALL_STATE(4396)] = 136209, - [SMALL_STATE(4397)] = 136213, - [SMALL_STATE(4398)] = 136217, - [SMALL_STATE(4399)] = 136221, - [SMALL_STATE(4400)] = 136225, - [SMALL_STATE(4401)] = 136229, - [SMALL_STATE(4402)] = 136233, - [SMALL_STATE(4403)] = 136237, - [SMALL_STATE(4404)] = 136241, - [SMALL_STATE(4405)] = 136245, - [SMALL_STATE(4406)] = 136249, - [SMALL_STATE(4407)] = 136253, - [SMALL_STATE(4408)] = 136257, - [SMALL_STATE(4409)] = 136261, - [SMALL_STATE(4410)] = 136265, - [SMALL_STATE(4411)] = 136269, - [SMALL_STATE(4412)] = 136273, - [SMALL_STATE(4413)] = 136277, - [SMALL_STATE(4414)] = 136281, - [SMALL_STATE(4415)] = 136285, - [SMALL_STATE(4416)] = 136289, - [SMALL_STATE(4417)] = 136293, - [SMALL_STATE(4418)] = 136297, - [SMALL_STATE(4419)] = 136301, - [SMALL_STATE(4420)] = 136305, - [SMALL_STATE(4421)] = 136309, - [SMALL_STATE(4422)] = 136313, - [SMALL_STATE(4423)] = 136317, - [SMALL_STATE(4424)] = 136321, - [SMALL_STATE(4425)] = 136325, - [SMALL_STATE(4426)] = 136329, - [SMALL_STATE(4427)] = 136333, - [SMALL_STATE(4428)] = 136337, - [SMALL_STATE(4429)] = 136341, - [SMALL_STATE(4430)] = 136345, - [SMALL_STATE(4431)] = 136349, - [SMALL_STATE(4432)] = 136353, - [SMALL_STATE(4433)] = 136357, - [SMALL_STATE(4434)] = 136361, - [SMALL_STATE(4435)] = 136365, - [SMALL_STATE(4436)] = 136369, - [SMALL_STATE(4437)] = 136373, - [SMALL_STATE(4438)] = 136377, - [SMALL_STATE(4439)] = 136381, - [SMALL_STATE(4440)] = 136385, - [SMALL_STATE(4441)] = 136389, - [SMALL_STATE(4442)] = 136393, - [SMALL_STATE(4443)] = 136397, - [SMALL_STATE(4444)] = 136401, - [SMALL_STATE(4445)] = 136405, - [SMALL_STATE(4446)] = 136409, - [SMALL_STATE(4447)] = 136413, - [SMALL_STATE(4448)] = 136417, - [SMALL_STATE(4449)] = 136421, - [SMALL_STATE(4450)] = 136425, - [SMALL_STATE(4451)] = 136429, - [SMALL_STATE(4452)] = 136433, - [SMALL_STATE(4453)] = 136437, - [SMALL_STATE(4454)] = 136441, - [SMALL_STATE(4455)] = 136445, - [SMALL_STATE(4456)] = 136449, - [SMALL_STATE(4457)] = 136453, - [SMALL_STATE(4458)] = 136457, - [SMALL_STATE(4459)] = 136461, - [SMALL_STATE(4460)] = 136465, - [SMALL_STATE(4461)] = 136469, - [SMALL_STATE(4462)] = 136473, - [SMALL_STATE(4463)] = 136477, - [SMALL_STATE(4464)] = 136481, - [SMALL_STATE(4465)] = 136485, - [SMALL_STATE(4466)] = 136489, - [SMALL_STATE(4467)] = 136493, - [SMALL_STATE(4468)] = 136497, - [SMALL_STATE(4469)] = 136501, - [SMALL_STATE(4470)] = 136505, - [SMALL_STATE(4471)] = 136509, - [SMALL_STATE(4472)] = 136513, - [SMALL_STATE(4473)] = 136517, - [SMALL_STATE(4474)] = 136521, - [SMALL_STATE(4475)] = 136525, - [SMALL_STATE(4476)] = 136529, - [SMALL_STATE(4477)] = 136533, - [SMALL_STATE(4478)] = 136537, - [SMALL_STATE(4479)] = 136541, - [SMALL_STATE(4480)] = 136545, - [SMALL_STATE(4481)] = 136549, - [SMALL_STATE(4482)] = 136553, - [SMALL_STATE(4483)] = 136557, - [SMALL_STATE(4484)] = 136561, - [SMALL_STATE(4485)] = 136565, - [SMALL_STATE(4486)] = 136569, - [SMALL_STATE(4487)] = 136573, - [SMALL_STATE(4488)] = 136577, - [SMALL_STATE(4489)] = 136581, - [SMALL_STATE(4490)] = 136585, - [SMALL_STATE(4491)] = 136589, - [SMALL_STATE(4492)] = 136593, - [SMALL_STATE(4493)] = 136597, - [SMALL_STATE(4494)] = 136601, - [SMALL_STATE(4495)] = 136605, + [SMALL_STATE(3646)] = 133138, + [SMALL_STATE(3647)] = 133143, + [SMALL_STATE(3648)] = 133150, + [SMALL_STATE(3649)] = 133157, + [SMALL_STATE(3650)] = 133162, + [SMALL_STATE(3651)] = 133169, + [SMALL_STATE(3652)] = 133176, + [SMALL_STATE(3653)] = 133181, + [SMALL_STATE(3654)] = 133188, + [SMALL_STATE(3655)] = 133195, + [SMALL_STATE(3656)] = 133202, + [SMALL_STATE(3657)] = 133207, + [SMALL_STATE(3658)] = 133214, + [SMALL_STATE(3659)] = 133221, + [SMALL_STATE(3660)] = 133228, + [SMALL_STATE(3661)] = 133235, + [SMALL_STATE(3662)] = 133242, + [SMALL_STATE(3663)] = 133249, + [SMALL_STATE(3664)] = 133256, + [SMALL_STATE(3665)] = 133263, + [SMALL_STATE(3666)] = 133270, + [SMALL_STATE(3667)] = 133277, + [SMALL_STATE(3668)] = 133284, + [SMALL_STATE(3669)] = 133291, + [SMALL_STATE(3670)] = 133298, + [SMALL_STATE(3671)] = 133305, + [SMALL_STATE(3672)] = 133310, + [SMALL_STATE(3673)] = 133315, + [SMALL_STATE(3674)] = 133322, + [SMALL_STATE(3675)] = 133327, + [SMALL_STATE(3676)] = 133332, + [SMALL_STATE(3677)] = 133339, + [SMALL_STATE(3678)] = 133343, + [SMALL_STATE(3679)] = 133347, + [SMALL_STATE(3680)] = 133351, + [SMALL_STATE(3681)] = 133355, + [SMALL_STATE(3682)] = 133359, + [SMALL_STATE(3683)] = 133363, + [SMALL_STATE(3684)] = 133367, + [SMALL_STATE(3685)] = 133371, + [SMALL_STATE(3686)] = 133375, + [SMALL_STATE(3687)] = 133379, + [SMALL_STATE(3688)] = 133383, + [SMALL_STATE(3689)] = 133387, + [SMALL_STATE(3690)] = 133391, + [SMALL_STATE(3691)] = 133395, + [SMALL_STATE(3692)] = 133399, + [SMALL_STATE(3693)] = 133403, + [SMALL_STATE(3694)] = 133407, + [SMALL_STATE(3695)] = 133411, + [SMALL_STATE(3696)] = 133415, + [SMALL_STATE(3697)] = 133419, + [SMALL_STATE(3698)] = 133423, + [SMALL_STATE(3699)] = 133427, + [SMALL_STATE(3700)] = 133431, + [SMALL_STATE(3701)] = 133435, + [SMALL_STATE(3702)] = 133439, + [SMALL_STATE(3703)] = 133443, + [SMALL_STATE(3704)] = 133447, + [SMALL_STATE(3705)] = 133451, + [SMALL_STATE(3706)] = 133455, + [SMALL_STATE(3707)] = 133459, + [SMALL_STATE(3708)] = 133463, + [SMALL_STATE(3709)] = 133467, + [SMALL_STATE(3710)] = 133471, + [SMALL_STATE(3711)] = 133475, + [SMALL_STATE(3712)] = 133479, + [SMALL_STATE(3713)] = 133483, + [SMALL_STATE(3714)] = 133487, + [SMALL_STATE(3715)] = 133491, + [SMALL_STATE(3716)] = 133495, + [SMALL_STATE(3717)] = 133499, + [SMALL_STATE(3718)] = 133503, + [SMALL_STATE(3719)] = 133507, + [SMALL_STATE(3720)] = 133511, + [SMALL_STATE(3721)] = 133515, + [SMALL_STATE(3722)] = 133519, + [SMALL_STATE(3723)] = 133523, + [SMALL_STATE(3724)] = 133527, + [SMALL_STATE(3725)] = 133531, + [SMALL_STATE(3726)] = 133535, + [SMALL_STATE(3727)] = 133539, + [SMALL_STATE(3728)] = 133543, + [SMALL_STATE(3729)] = 133547, + [SMALL_STATE(3730)] = 133551, + [SMALL_STATE(3731)] = 133555, + [SMALL_STATE(3732)] = 133559, + [SMALL_STATE(3733)] = 133563, + [SMALL_STATE(3734)] = 133567, + [SMALL_STATE(3735)] = 133571, + [SMALL_STATE(3736)] = 133575, + [SMALL_STATE(3737)] = 133579, + [SMALL_STATE(3738)] = 133583, + [SMALL_STATE(3739)] = 133587, + [SMALL_STATE(3740)] = 133591, + [SMALL_STATE(3741)] = 133595, + [SMALL_STATE(3742)] = 133599, + [SMALL_STATE(3743)] = 133603, + [SMALL_STATE(3744)] = 133607, + [SMALL_STATE(3745)] = 133611, + [SMALL_STATE(3746)] = 133615, + [SMALL_STATE(3747)] = 133619, + [SMALL_STATE(3748)] = 133623, + [SMALL_STATE(3749)] = 133627, + [SMALL_STATE(3750)] = 133631, + [SMALL_STATE(3751)] = 133635, + [SMALL_STATE(3752)] = 133639, + [SMALL_STATE(3753)] = 133643, + [SMALL_STATE(3754)] = 133647, + [SMALL_STATE(3755)] = 133651, + [SMALL_STATE(3756)] = 133655, + [SMALL_STATE(3757)] = 133659, + [SMALL_STATE(3758)] = 133663, + [SMALL_STATE(3759)] = 133667, + [SMALL_STATE(3760)] = 133671, + [SMALL_STATE(3761)] = 133675, + [SMALL_STATE(3762)] = 133679, + [SMALL_STATE(3763)] = 133683, + [SMALL_STATE(3764)] = 133687, + [SMALL_STATE(3765)] = 133691, + [SMALL_STATE(3766)] = 133695, + [SMALL_STATE(3767)] = 133699, + [SMALL_STATE(3768)] = 133703, + [SMALL_STATE(3769)] = 133707, + [SMALL_STATE(3770)] = 133711, + [SMALL_STATE(3771)] = 133715, + [SMALL_STATE(3772)] = 133719, + [SMALL_STATE(3773)] = 133723, + [SMALL_STATE(3774)] = 133727, + [SMALL_STATE(3775)] = 133731, + [SMALL_STATE(3776)] = 133735, + [SMALL_STATE(3777)] = 133739, + [SMALL_STATE(3778)] = 133743, + [SMALL_STATE(3779)] = 133747, + [SMALL_STATE(3780)] = 133751, + [SMALL_STATE(3781)] = 133755, + [SMALL_STATE(3782)] = 133759, + [SMALL_STATE(3783)] = 133763, + [SMALL_STATE(3784)] = 133767, + [SMALL_STATE(3785)] = 133771, + [SMALL_STATE(3786)] = 133775, + [SMALL_STATE(3787)] = 133779, + [SMALL_STATE(3788)] = 133783, + [SMALL_STATE(3789)] = 133787, + [SMALL_STATE(3790)] = 133791, + [SMALL_STATE(3791)] = 133795, + [SMALL_STATE(3792)] = 133799, + [SMALL_STATE(3793)] = 133803, + [SMALL_STATE(3794)] = 133807, + [SMALL_STATE(3795)] = 133811, + [SMALL_STATE(3796)] = 133815, + [SMALL_STATE(3797)] = 133819, + [SMALL_STATE(3798)] = 133823, + [SMALL_STATE(3799)] = 133827, + [SMALL_STATE(3800)] = 133831, + [SMALL_STATE(3801)] = 133835, + [SMALL_STATE(3802)] = 133839, + [SMALL_STATE(3803)] = 133843, + [SMALL_STATE(3804)] = 133847, + [SMALL_STATE(3805)] = 133851, + [SMALL_STATE(3806)] = 133855, + [SMALL_STATE(3807)] = 133859, + [SMALL_STATE(3808)] = 133863, + [SMALL_STATE(3809)] = 133867, + [SMALL_STATE(3810)] = 133871, + [SMALL_STATE(3811)] = 133875, + [SMALL_STATE(3812)] = 133879, + [SMALL_STATE(3813)] = 133883, + [SMALL_STATE(3814)] = 133887, + [SMALL_STATE(3815)] = 133891, + [SMALL_STATE(3816)] = 133895, + [SMALL_STATE(3817)] = 133899, + [SMALL_STATE(3818)] = 133903, + [SMALL_STATE(3819)] = 133907, + [SMALL_STATE(3820)] = 133911, + [SMALL_STATE(3821)] = 133915, + [SMALL_STATE(3822)] = 133919, + [SMALL_STATE(3823)] = 133923, + [SMALL_STATE(3824)] = 133927, + [SMALL_STATE(3825)] = 133931, + [SMALL_STATE(3826)] = 133935, + [SMALL_STATE(3827)] = 133939, + [SMALL_STATE(3828)] = 133943, + [SMALL_STATE(3829)] = 133947, + [SMALL_STATE(3830)] = 133951, + [SMALL_STATE(3831)] = 133955, + [SMALL_STATE(3832)] = 133959, + [SMALL_STATE(3833)] = 133963, + [SMALL_STATE(3834)] = 133967, + [SMALL_STATE(3835)] = 133971, + [SMALL_STATE(3836)] = 133975, + [SMALL_STATE(3837)] = 133979, + [SMALL_STATE(3838)] = 133983, + [SMALL_STATE(3839)] = 133987, + [SMALL_STATE(3840)] = 133991, + [SMALL_STATE(3841)] = 133995, + [SMALL_STATE(3842)] = 133999, + [SMALL_STATE(3843)] = 134003, + [SMALL_STATE(3844)] = 134007, + [SMALL_STATE(3845)] = 134011, + [SMALL_STATE(3846)] = 134015, + [SMALL_STATE(3847)] = 134019, + [SMALL_STATE(3848)] = 134023, + [SMALL_STATE(3849)] = 134027, + [SMALL_STATE(3850)] = 134031, + [SMALL_STATE(3851)] = 134035, + [SMALL_STATE(3852)] = 134039, + [SMALL_STATE(3853)] = 134043, + [SMALL_STATE(3854)] = 134047, + [SMALL_STATE(3855)] = 134051, + [SMALL_STATE(3856)] = 134055, + [SMALL_STATE(3857)] = 134059, + [SMALL_STATE(3858)] = 134063, + [SMALL_STATE(3859)] = 134067, + [SMALL_STATE(3860)] = 134071, + [SMALL_STATE(3861)] = 134075, + [SMALL_STATE(3862)] = 134079, + [SMALL_STATE(3863)] = 134083, + [SMALL_STATE(3864)] = 134087, + [SMALL_STATE(3865)] = 134091, + [SMALL_STATE(3866)] = 134095, + [SMALL_STATE(3867)] = 134099, + [SMALL_STATE(3868)] = 134103, + [SMALL_STATE(3869)] = 134107, + [SMALL_STATE(3870)] = 134111, + [SMALL_STATE(3871)] = 134115, + [SMALL_STATE(3872)] = 134119, + [SMALL_STATE(3873)] = 134123, + [SMALL_STATE(3874)] = 134127, + [SMALL_STATE(3875)] = 134131, + [SMALL_STATE(3876)] = 134135, + [SMALL_STATE(3877)] = 134139, + [SMALL_STATE(3878)] = 134143, + [SMALL_STATE(3879)] = 134147, + [SMALL_STATE(3880)] = 134151, + [SMALL_STATE(3881)] = 134155, + [SMALL_STATE(3882)] = 134159, + [SMALL_STATE(3883)] = 134163, + [SMALL_STATE(3884)] = 134167, + [SMALL_STATE(3885)] = 134171, + [SMALL_STATE(3886)] = 134175, + [SMALL_STATE(3887)] = 134179, + [SMALL_STATE(3888)] = 134183, + [SMALL_STATE(3889)] = 134187, + [SMALL_STATE(3890)] = 134191, + [SMALL_STATE(3891)] = 134195, + [SMALL_STATE(3892)] = 134199, + [SMALL_STATE(3893)] = 134203, + [SMALL_STATE(3894)] = 134207, + [SMALL_STATE(3895)] = 134211, + [SMALL_STATE(3896)] = 134215, + [SMALL_STATE(3897)] = 134219, + [SMALL_STATE(3898)] = 134223, + [SMALL_STATE(3899)] = 134227, + [SMALL_STATE(3900)] = 134231, + [SMALL_STATE(3901)] = 134235, + [SMALL_STATE(3902)] = 134239, + [SMALL_STATE(3903)] = 134243, + [SMALL_STATE(3904)] = 134247, + [SMALL_STATE(3905)] = 134251, + [SMALL_STATE(3906)] = 134255, + [SMALL_STATE(3907)] = 134259, + [SMALL_STATE(3908)] = 134263, + [SMALL_STATE(3909)] = 134267, + [SMALL_STATE(3910)] = 134271, + [SMALL_STATE(3911)] = 134275, + [SMALL_STATE(3912)] = 134279, + [SMALL_STATE(3913)] = 134283, + [SMALL_STATE(3914)] = 134287, + [SMALL_STATE(3915)] = 134291, + [SMALL_STATE(3916)] = 134295, + [SMALL_STATE(3917)] = 134299, + [SMALL_STATE(3918)] = 134303, + [SMALL_STATE(3919)] = 134307, + [SMALL_STATE(3920)] = 134311, + [SMALL_STATE(3921)] = 134315, + [SMALL_STATE(3922)] = 134319, + [SMALL_STATE(3923)] = 134323, + [SMALL_STATE(3924)] = 134327, + [SMALL_STATE(3925)] = 134331, + [SMALL_STATE(3926)] = 134335, + [SMALL_STATE(3927)] = 134339, + [SMALL_STATE(3928)] = 134343, + [SMALL_STATE(3929)] = 134347, + [SMALL_STATE(3930)] = 134351, + [SMALL_STATE(3931)] = 134355, + [SMALL_STATE(3932)] = 134359, + [SMALL_STATE(3933)] = 134363, + [SMALL_STATE(3934)] = 134367, + [SMALL_STATE(3935)] = 134371, + [SMALL_STATE(3936)] = 134375, + [SMALL_STATE(3937)] = 134379, + [SMALL_STATE(3938)] = 134383, + [SMALL_STATE(3939)] = 134387, + [SMALL_STATE(3940)] = 134391, + [SMALL_STATE(3941)] = 134395, + [SMALL_STATE(3942)] = 134399, + [SMALL_STATE(3943)] = 134403, + [SMALL_STATE(3944)] = 134407, + [SMALL_STATE(3945)] = 134411, + [SMALL_STATE(3946)] = 134415, + [SMALL_STATE(3947)] = 134419, + [SMALL_STATE(3948)] = 134423, + [SMALL_STATE(3949)] = 134427, + [SMALL_STATE(3950)] = 134431, + [SMALL_STATE(3951)] = 134435, + [SMALL_STATE(3952)] = 134439, + [SMALL_STATE(3953)] = 134443, + [SMALL_STATE(3954)] = 134447, + [SMALL_STATE(3955)] = 134451, + [SMALL_STATE(3956)] = 134455, + [SMALL_STATE(3957)] = 134459, + [SMALL_STATE(3958)] = 134463, + [SMALL_STATE(3959)] = 134467, + [SMALL_STATE(3960)] = 134471, + [SMALL_STATE(3961)] = 134475, + [SMALL_STATE(3962)] = 134479, + [SMALL_STATE(3963)] = 134483, + [SMALL_STATE(3964)] = 134487, + [SMALL_STATE(3965)] = 134491, + [SMALL_STATE(3966)] = 134495, + [SMALL_STATE(3967)] = 134499, + [SMALL_STATE(3968)] = 134503, + [SMALL_STATE(3969)] = 134507, + [SMALL_STATE(3970)] = 134511, + [SMALL_STATE(3971)] = 134515, + [SMALL_STATE(3972)] = 134519, + [SMALL_STATE(3973)] = 134523, + [SMALL_STATE(3974)] = 134527, + [SMALL_STATE(3975)] = 134531, + [SMALL_STATE(3976)] = 134535, + [SMALL_STATE(3977)] = 134539, + [SMALL_STATE(3978)] = 134543, + [SMALL_STATE(3979)] = 134547, + [SMALL_STATE(3980)] = 134551, + [SMALL_STATE(3981)] = 134555, + [SMALL_STATE(3982)] = 134559, + [SMALL_STATE(3983)] = 134563, + [SMALL_STATE(3984)] = 134567, + [SMALL_STATE(3985)] = 134571, + [SMALL_STATE(3986)] = 134575, + [SMALL_STATE(3987)] = 134579, + [SMALL_STATE(3988)] = 134583, + [SMALL_STATE(3989)] = 134587, + [SMALL_STATE(3990)] = 134591, + [SMALL_STATE(3991)] = 134595, + [SMALL_STATE(3992)] = 134599, + [SMALL_STATE(3993)] = 134603, + [SMALL_STATE(3994)] = 134607, + [SMALL_STATE(3995)] = 134611, + [SMALL_STATE(3996)] = 134615, + [SMALL_STATE(3997)] = 134619, + [SMALL_STATE(3998)] = 134623, + [SMALL_STATE(3999)] = 134627, + [SMALL_STATE(4000)] = 134631, + [SMALL_STATE(4001)] = 134635, + [SMALL_STATE(4002)] = 134639, + [SMALL_STATE(4003)] = 134643, + [SMALL_STATE(4004)] = 134647, + [SMALL_STATE(4005)] = 134651, + [SMALL_STATE(4006)] = 134655, + [SMALL_STATE(4007)] = 134659, + [SMALL_STATE(4008)] = 134663, + [SMALL_STATE(4009)] = 134667, + [SMALL_STATE(4010)] = 134671, + [SMALL_STATE(4011)] = 134675, + [SMALL_STATE(4012)] = 134679, + [SMALL_STATE(4013)] = 134683, + [SMALL_STATE(4014)] = 134687, + [SMALL_STATE(4015)] = 134691, + [SMALL_STATE(4016)] = 134695, + [SMALL_STATE(4017)] = 134699, + [SMALL_STATE(4018)] = 134703, + [SMALL_STATE(4019)] = 134707, + [SMALL_STATE(4020)] = 134711, + [SMALL_STATE(4021)] = 134715, + [SMALL_STATE(4022)] = 134719, + [SMALL_STATE(4023)] = 134723, + [SMALL_STATE(4024)] = 134727, + [SMALL_STATE(4025)] = 134731, + [SMALL_STATE(4026)] = 134735, + [SMALL_STATE(4027)] = 134739, + [SMALL_STATE(4028)] = 134743, + [SMALL_STATE(4029)] = 134747, + [SMALL_STATE(4030)] = 134751, + [SMALL_STATE(4031)] = 134755, + [SMALL_STATE(4032)] = 134759, + [SMALL_STATE(4033)] = 134763, + [SMALL_STATE(4034)] = 134767, + [SMALL_STATE(4035)] = 134771, + [SMALL_STATE(4036)] = 134775, + [SMALL_STATE(4037)] = 134779, + [SMALL_STATE(4038)] = 134783, + [SMALL_STATE(4039)] = 134787, + [SMALL_STATE(4040)] = 134791, + [SMALL_STATE(4041)] = 134795, + [SMALL_STATE(4042)] = 134799, + [SMALL_STATE(4043)] = 134803, + [SMALL_STATE(4044)] = 134807, + [SMALL_STATE(4045)] = 134811, + [SMALL_STATE(4046)] = 134815, + [SMALL_STATE(4047)] = 134819, + [SMALL_STATE(4048)] = 134823, + [SMALL_STATE(4049)] = 134827, + [SMALL_STATE(4050)] = 134831, + [SMALL_STATE(4051)] = 134835, + [SMALL_STATE(4052)] = 134839, + [SMALL_STATE(4053)] = 134843, + [SMALL_STATE(4054)] = 134847, + [SMALL_STATE(4055)] = 134851, + [SMALL_STATE(4056)] = 134855, + [SMALL_STATE(4057)] = 134859, + [SMALL_STATE(4058)] = 134863, + [SMALL_STATE(4059)] = 134867, + [SMALL_STATE(4060)] = 134871, + [SMALL_STATE(4061)] = 134875, + [SMALL_STATE(4062)] = 134879, + [SMALL_STATE(4063)] = 134883, + [SMALL_STATE(4064)] = 134887, + [SMALL_STATE(4065)] = 134891, + [SMALL_STATE(4066)] = 134895, + [SMALL_STATE(4067)] = 134899, + [SMALL_STATE(4068)] = 134903, + [SMALL_STATE(4069)] = 134907, + [SMALL_STATE(4070)] = 134911, + [SMALL_STATE(4071)] = 134915, + [SMALL_STATE(4072)] = 134919, + [SMALL_STATE(4073)] = 134923, + [SMALL_STATE(4074)] = 134927, + [SMALL_STATE(4075)] = 134931, + [SMALL_STATE(4076)] = 134935, + [SMALL_STATE(4077)] = 134939, + [SMALL_STATE(4078)] = 134943, + [SMALL_STATE(4079)] = 134947, + [SMALL_STATE(4080)] = 134951, + [SMALL_STATE(4081)] = 134955, + [SMALL_STATE(4082)] = 134959, + [SMALL_STATE(4083)] = 134963, + [SMALL_STATE(4084)] = 134967, + [SMALL_STATE(4085)] = 134971, + [SMALL_STATE(4086)] = 134975, + [SMALL_STATE(4087)] = 134979, + [SMALL_STATE(4088)] = 134983, + [SMALL_STATE(4089)] = 134987, + [SMALL_STATE(4090)] = 134991, + [SMALL_STATE(4091)] = 134995, + [SMALL_STATE(4092)] = 134999, + [SMALL_STATE(4093)] = 135003, + [SMALL_STATE(4094)] = 135007, + [SMALL_STATE(4095)] = 135011, + [SMALL_STATE(4096)] = 135015, + [SMALL_STATE(4097)] = 135019, + [SMALL_STATE(4098)] = 135023, + [SMALL_STATE(4099)] = 135027, + [SMALL_STATE(4100)] = 135031, + [SMALL_STATE(4101)] = 135035, + [SMALL_STATE(4102)] = 135039, + [SMALL_STATE(4103)] = 135043, + [SMALL_STATE(4104)] = 135047, + [SMALL_STATE(4105)] = 135051, + [SMALL_STATE(4106)] = 135055, + [SMALL_STATE(4107)] = 135059, + [SMALL_STATE(4108)] = 135063, + [SMALL_STATE(4109)] = 135067, + [SMALL_STATE(4110)] = 135071, + [SMALL_STATE(4111)] = 135075, + [SMALL_STATE(4112)] = 135079, + [SMALL_STATE(4113)] = 135083, + [SMALL_STATE(4114)] = 135087, + [SMALL_STATE(4115)] = 135091, + [SMALL_STATE(4116)] = 135095, + [SMALL_STATE(4117)] = 135099, + [SMALL_STATE(4118)] = 135103, + [SMALL_STATE(4119)] = 135107, + [SMALL_STATE(4120)] = 135111, + [SMALL_STATE(4121)] = 135115, + [SMALL_STATE(4122)] = 135119, + [SMALL_STATE(4123)] = 135123, + [SMALL_STATE(4124)] = 135127, + [SMALL_STATE(4125)] = 135131, + [SMALL_STATE(4126)] = 135135, + [SMALL_STATE(4127)] = 135139, + [SMALL_STATE(4128)] = 135143, + [SMALL_STATE(4129)] = 135147, + [SMALL_STATE(4130)] = 135151, + [SMALL_STATE(4131)] = 135155, + [SMALL_STATE(4132)] = 135159, + [SMALL_STATE(4133)] = 135163, + [SMALL_STATE(4134)] = 135167, + [SMALL_STATE(4135)] = 135171, + [SMALL_STATE(4136)] = 135175, + [SMALL_STATE(4137)] = 135179, + [SMALL_STATE(4138)] = 135183, + [SMALL_STATE(4139)] = 135187, + [SMALL_STATE(4140)] = 135191, + [SMALL_STATE(4141)] = 135195, + [SMALL_STATE(4142)] = 135199, + [SMALL_STATE(4143)] = 135203, + [SMALL_STATE(4144)] = 135207, + [SMALL_STATE(4145)] = 135211, + [SMALL_STATE(4146)] = 135215, + [SMALL_STATE(4147)] = 135219, + [SMALL_STATE(4148)] = 135223, + [SMALL_STATE(4149)] = 135227, + [SMALL_STATE(4150)] = 135231, + [SMALL_STATE(4151)] = 135235, + [SMALL_STATE(4152)] = 135239, + [SMALL_STATE(4153)] = 135243, + [SMALL_STATE(4154)] = 135247, + [SMALL_STATE(4155)] = 135251, + [SMALL_STATE(4156)] = 135255, + [SMALL_STATE(4157)] = 135259, + [SMALL_STATE(4158)] = 135263, + [SMALL_STATE(4159)] = 135267, + [SMALL_STATE(4160)] = 135271, + [SMALL_STATE(4161)] = 135275, + [SMALL_STATE(4162)] = 135279, + [SMALL_STATE(4163)] = 135283, + [SMALL_STATE(4164)] = 135287, + [SMALL_STATE(4165)] = 135291, + [SMALL_STATE(4166)] = 135295, + [SMALL_STATE(4167)] = 135299, + [SMALL_STATE(4168)] = 135303, + [SMALL_STATE(4169)] = 135307, + [SMALL_STATE(4170)] = 135311, + [SMALL_STATE(4171)] = 135315, + [SMALL_STATE(4172)] = 135319, + [SMALL_STATE(4173)] = 135323, + [SMALL_STATE(4174)] = 135327, + [SMALL_STATE(4175)] = 135331, + [SMALL_STATE(4176)] = 135335, + [SMALL_STATE(4177)] = 135339, + [SMALL_STATE(4178)] = 135343, + [SMALL_STATE(4179)] = 135347, + [SMALL_STATE(4180)] = 135351, + [SMALL_STATE(4181)] = 135355, + [SMALL_STATE(4182)] = 135359, + [SMALL_STATE(4183)] = 135363, + [SMALL_STATE(4184)] = 135367, + [SMALL_STATE(4185)] = 135371, + [SMALL_STATE(4186)] = 135375, + [SMALL_STATE(4187)] = 135379, + [SMALL_STATE(4188)] = 135383, + [SMALL_STATE(4189)] = 135387, + [SMALL_STATE(4190)] = 135391, + [SMALL_STATE(4191)] = 135395, + [SMALL_STATE(4192)] = 135399, + [SMALL_STATE(4193)] = 135403, + [SMALL_STATE(4194)] = 135407, + [SMALL_STATE(4195)] = 135411, + [SMALL_STATE(4196)] = 135415, + [SMALL_STATE(4197)] = 135419, + [SMALL_STATE(4198)] = 135423, + [SMALL_STATE(4199)] = 135427, + [SMALL_STATE(4200)] = 135431, + [SMALL_STATE(4201)] = 135435, + [SMALL_STATE(4202)] = 135439, + [SMALL_STATE(4203)] = 135443, + [SMALL_STATE(4204)] = 135447, + [SMALL_STATE(4205)] = 135451, + [SMALL_STATE(4206)] = 135455, + [SMALL_STATE(4207)] = 135459, + [SMALL_STATE(4208)] = 135463, + [SMALL_STATE(4209)] = 135467, + [SMALL_STATE(4210)] = 135471, + [SMALL_STATE(4211)] = 135475, + [SMALL_STATE(4212)] = 135479, + [SMALL_STATE(4213)] = 135483, + [SMALL_STATE(4214)] = 135487, + [SMALL_STATE(4215)] = 135491, + [SMALL_STATE(4216)] = 135495, + [SMALL_STATE(4217)] = 135499, + [SMALL_STATE(4218)] = 135503, + [SMALL_STATE(4219)] = 135507, + [SMALL_STATE(4220)] = 135511, + [SMALL_STATE(4221)] = 135515, + [SMALL_STATE(4222)] = 135519, + [SMALL_STATE(4223)] = 135523, + [SMALL_STATE(4224)] = 135527, + [SMALL_STATE(4225)] = 135531, + [SMALL_STATE(4226)] = 135535, + [SMALL_STATE(4227)] = 135539, + [SMALL_STATE(4228)] = 135543, + [SMALL_STATE(4229)] = 135547, + [SMALL_STATE(4230)] = 135551, + [SMALL_STATE(4231)] = 135555, + [SMALL_STATE(4232)] = 135559, + [SMALL_STATE(4233)] = 135563, + [SMALL_STATE(4234)] = 135567, + [SMALL_STATE(4235)] = 135571, + [SMALL_STATE(4236)] = 135575, + [SMALL_STATE(4237)] = 135579, + [SMALL_STATE(4238)] = 135583, + [SMALL_STATE(4239)] = 135587, + [SMALL_STATE(4240)] = 135591, + [SMALL_STATE(4241)] = 135595, + [SMALL_STATE(4242)] = 135599, + [SMALL_STATE(4243)] = 135603, + [SMALL_STATE(4244)] = 135607, + [SMALL_STATE(4245)] = 135611, + [SMALL_STATE(4246)] = 135615, + [SMALL_STATE(4247)] = 135619, + [SMALL_STATE(4248)] = 135623, + [SMALL_STATE(4249)] = 135627, + [SMALL_STATE(4250)] = 135631, + [SMALL_STATE(4251)] = 135635, + [SMALL_STATE(4252)] = 135639, + [SMALL_STATE(4253)] = 135643, + [SMALL_STATE(4254)] = 135647, + [SMALL_STATE(4255)] = 135651, + [SMALL_STATE(4256)] = 135655, + [SMALL_STATE(4257)] = 135659, + [SMALL_STATE(4258)] = 135663, + [SMALL_STATE(4259)] = 135667, + [SMALL_STATE(4260)] = 135671, + [SMALL_STATE(4261)] = 135675, + [SMALL_STATE(4262)] = 135679, + [SMALL_STATE(4263)] = 135683, + [SMALL_STATE(4264)] = 135687, + [SMALL_STATE(4265)] = 135691, + [SMALL_STATE(4266)] = 135695, + [SMALL_STATE(4267)] = 135699, + [SMALL_STATE(4268)] = 135703, + [SMALL_STATE(4269)] = 135707, + [SMALL_STATE(4270)] = 135711, + [SMALL_STATE(4271)] = 135715, + [SMALL_STATE(4272)] = 135719, + [SMALL_STATE(4273)] = 135723, + [SMALL_STATE(4274)] = 135727, + [SMALL_STATE(4275)] = 135731, + [SMALL_STATE(4276)] = 135735, + [SMALL_STATE(4277)] = 135739, + [SMALL_STATE(4278)] = 135743, + [SMALL_STATE(4279)] = 135747, + [SMALL_STATE(4280)] = 135751, + [SMALL_STATE(4281)] = 135755, + [SMALL_STATE(4282)] = 135759, + [SMALL_STATE(4283)] = 135763, + [SMALL_STATE(4284)] = 135767, + [SMALL_STATE(4285)] = 135771, + [SMALL_STATE(4286)] = 135775, + [SMALL_STATE(4287)] = 135779, + [SMALL_STATE(4288)] = 135783, + [SMALL_STATE(4289)] = 135787, + [SMALL_STATE(4290)] = 135791, + [SMALL_STATE(4291)] = 135795, + [SMALL_STATE(4292)] = 135799, + [SMALL_STATE(4293)] = 135803, + [SMALL_STATE(4294)] = 135807, + [SMALL_STATE(4295)] = 135811, + [SMALL_STATE(4296)] = 135815, + [SMALL_STATE(4297)] = 135819, + [SMALL_STATE(4298)] = 135823, + [SMALL_STATE(4299)] = 135827, + [SMALL_STATE(4300)] = 135831, + [SMALL_STATE(4301)] = 135835, + [SMALL_STATE(4302)] = 135839, + [SMALL_STATE(4303)] = 135843, + [SMALL_STATE(4304)] = 135847, + [SMALL_STATE(4305)] = 135851, + [SMALL_STATE(4306)] = 135855, + [SMALL_STATE(4307)] = 135859, + [SMALL_STATE(4308)] = 135863, + [SMALL_STATE(4309)] = 135867, + [SMALL_STATE(4310)] = 135871, + [SMALL_STATE(4311)] = 135875, + [SMALL_STATE(4312)] = 135879, + [SMALL_STATE(4313)] = 135883, + [SMALL_STATE(4314)] = 135887, + [SMALL_STATE(4315)] = 135891, + [SMALL_STATE(4316)] = 135895, + [SMALL_STATE(4317)] = 135899, + [SMALL_STATE(4318)] = 135903, + [SMALL_STATE(4319)] = 135907, + [SMALL_STATE(4320)] = 135911, + [SMALL_STATE(4321)] = 135915, + [SMALL_STATE(4322)] = 135919, + [SMALL_STATE(4323)] = 135923, + [SMALL_STATE(4324)] = 135927, + [SMALL_STATE(4325)] = 135931, + [SMALL_STATE(4326)] = 135935, + [SMALL_STATE(4327)] = 135939, + [SMALL_STATE(4328)] = 135943, + [SMALL_STATE(4329)] = 135947, + [SMALL_STATE(4330)] = 135951, + [SMALL_STATE(4331)] = 135955, + [SMALL_STATE(4332)] = 135959, + [SMALL_STATE(4333)] = 135963, + [SMALL_STATE(4334)] = 135967, + [SMALL_STATE(4335)] = 135971, + [SMALL_STATE(4336)] = 135975, + [SMALL_STATE(4337)] = 135979, + [SMALL_STATE(4338)] = 135983, + [SMALL_STATE(4339)] = 135987, + [SMALL_STATE(4340)] = 135991, + [SMALL_STATE(4341)] = 135995, + [SMALL_STATE(4342)] = 135999, + [SMALL_STATE(4343)] = 136003, + [SMALL_STATE(4344)] = 136007, + [SMALL_STATE(4345)] = 136011, + [SMALL_STATE(4346)] = 136015, + [SMALL_STATE(4347)] = 136019, + [SMALL_STATE(4348)] = 136023, + [SMALL_STATE(4349)] = 136027, + [SMALL_STATE(4350)] = 136031, + [SMALL_STATE(4351)] = 136035, + [SMALL_STATE(4352)] = 136039, + [SMALL_STATE(4353)] = 136043, + [SMALL_STATE(4354)] = 136047, + [SMALL_STATE(4355)] = 136051, + [SMALL_STATE(4356)] = 136055, + [SMALL_STATE(4357)] = 136059, + [SMALL_STATE(4358)] = 136063, + [SMALL_STATE(4359)] = 136067, + [SMALL_STATE(4360)] = 136071, + [SMALL_STATE(4361)] = 136075, + [SMALL_STATE(4362)] = 136079, + [SMALL_STATE(4363)] = 136083, + [SMALL_STATE(4364)] = 136087, + [SMALL_STATE(4365)] = 136091, + [SMALL_STATE(4366)] = 136095, + [SMALL_STATE(4367)] = 136099, + [SMALL_STATE(4368)] = 136103, + [SMALL_STATE(4369)] = 136107, + [SMALL_STATE(4370)] = 136111, + [SMALL_STATE(4371)] = 136115, + [SMALL_STATE(4372)] = 136119, + [SMALL_STATE(4373)] = 136123, + [SMALL_STATE(4374)] = 136127, + [SMALL_STATE(4375)] = 136131, + [SMALL_STATE(4376)] = 136135, + [SMALL_STATE(4377)] = 136139, + [SMALL_STATE(4378)] = 136143, + [SMALL_STATE(4379)] = 136147, + [SMALL_STATE(4380)] = 136151, + [SMALL_STATE(4381)] = 136155, + [SMALL_STATE(4382)] = 136159, + [SMALL_STATE(4383)] = 136163, + [SMALL_STATE(4384)] = 136167, + [SMALL_STATE(4385)] = 136171, + [SMALL_STATE(4386)] = 136175, + [SMALL_STATE(4387)] = 136179, + [SMALL_STATE(4388)] = 136183, + [SMALL_STATE(4389)] = 136187, + [SMALL_STATE(4390)] = 136191, + [SMALL_STATE(4391)] = 136195, + [SMALL_STATE(4392)] = 136199, + [SMALL_STATE(4393)] = 136203, + [SMALL_STATE(4394)] = 136207, + [SMALL_STATE(4395)] = 136211, + [SMALL_STATE(4396)] = 136215, + [SMALL_STATE(4397)] = 136219, + [SMALL_STATE(4398)] = 136223, + [SMALL_STATE(4399)] = 136227, + [SMALL_STATE(4400)] = 136231, + [SMALL_STATE(4401)] = 136235, + [SMALL_STATE(4402)] = 136239, + [SMALL_STATE(4403)] = 136243, + [SMALL_STATE(4404)] = 136247, + [SMALL_STATE(4405)] = 136251, + [SMALL_STATE(4406)] = 136255, + [SMALL_STATE(4407)] = 136259, + [SMALL_STATE(4408)] = 136263, + [SMALL_STATE(4409)] = 136267, + [SMALL_STATE(4410)] = 136271, + [SMALL_STATE(4411)] = 136275, + [SMALL_STATE(4412)] = 136279, + [SMALL_STATE(4413)] = 136283, + [SMALL_STATE(4414)] = 136287, + [SMALL_STATE(4415)] = 136291, + [SMALL_STATE(4416)] = 136295, + [SMALL_STATE(4417)] = 136299, + [SMALL_STATE(4418)] = 136303, + [SMALL_STATE(4419)] = 136307, + [SMALL_STATE(4420)] = 136311, + [SMALL_STATE(4421)] = 136315, + [SMALL_STATE(4422)] = 136319, + [SMALL_STATE(4423)] = 136323, + [SMALL_STATE(4424)] = 136327, + [SMALL_STATE(4425)] = 136331, + [SMALL_STATE(4426)] = 136335, + [SMALL_STATE(4427)] = 136339, + [SMALL_STATE(4428)] = 136343, + [SMALL_STATE(4429)] = 136347, + [SMALL_STATE(4430)] = 136351, + [SMALL_STATE(4431)] = 136355, + [SMALL_STATE(4432)] = 136359, + [SMALL_STATE(4433)] = 136363, + [SMALL_STATE(4434)] = 136367, + [SMALL_STATE(4435)] = 136371, + [SMALL_STATE(4436)] = 136375, + [SMALL_STATE(4437)] = 136379, + [SMALL_STATE(4438)] = 136383, + [SMALL_STATE(4439)] = 136387, + [SMALL_STATE(4440)] = 136391, + [SMALL_STATE(4441)] = 136395, + [SMALL_STATE(4442)] = 136399, + [SMALL_STATE(4443)] = 136403, + [SMALL_STATE(4444)] = 136407, + [SMALL_STATE(4445)] = 136411, + [SMALL_STATE(4446)] = 136415, + [SMALL_STATE(4447)] = 136419, + [SMALL_STATE(4448)] = 136423, + [SMALL_STATE(4449)] = 136427, + [SMALL_STATE(4450)] = 136431, + [SMALL_STATE(4451)] = 136435, + [SMALL_STATE(4452)] = 136439, + [SMALL_STATE(4453)] = 136443, + [SMALL_STATE(4454)] = 136447, + [SMALL_STATE(4455)] = 136451, + [SMALL_STATE(4456)] = 136455, + [SMALL_STATE(4457)] = 136459, + [SMALL_STATE(4458)] = 136463, + [SMALL_STATE(4459)] = 136467, + [SMALL_STATE(4460)] = 136471, + [SMALL_STATE(4461)] = 136475, + [SMALL_STATE(4462)] = 136479, + [SMALL_STATE(4463)] = 136483, + [SMALL_STATE(4464)] = 136487, + [SMALL_STATE(4465)] = 136491, + [SMALL_STATE(4466)] = 136495, + [SMALL_STATE(4467)] = 136499, + [SMALL_STATE(4468)] = 136503, + [SMALL_STATE(4469)] = 136507, + [SMALL_STATE(4470)] = 136511, + [SMALL_STATE(4471)] = 136515, + [SMALL_STATE(4472)] = 136519, + [SMALL_STATE(4473)] = 136523, + [SMALL_STATE(4474)] = 136527, + [SMALL_STATE(4475)] = 136531, + [SMALL_STATE(4476)] = 136535, + [SMALL_STATE(4477)] = 136539, + [SMALL_STATE(4478)] = 136543, + [SMALL_STATE(4479)] = 136547, + [SMALL_STATE(4480)] = 136551, + [SMALL_STATE(4481)] = 136555, + [SMALL_STATE(4482)] = 136559, + [SMALL_STATE(4483)] = 136563, + [SMALL_STATE(4484)] = 136567, + [SMALL_STATE(4485)] = 136571, + [SMALL_STATE(4486)] = 136575, + [SMALL_STATE(4487)] = 136579, + [SMALL_STATE(4488)] = 136583, + [SMALL_STATE(4489)] = 136587, + [SMALL_STATE(4490)] = 136591, + [SMALL_STATE(4491)] = 136595, + [SMALL_STATE(4492)] = 136599, + [SMALL_STATE(4493)] = 136603, + [SMALL_STATE(4494)] = 136607, + [SMALL_STATE(4495)] = 136611, + [SMALL_STATE(4496)] = 136615, + [SMALL_STATE(4497)] = 136619, + [SMALL_STATE(4498)] = 136623, + [SMALL_STATE(4499)] = 136627, + [SMALL_STATE(4500)] = 136631, + [SMALL_STATE(4501)] = 136635, + [SMALL_STATE(4502)] = 136639, + [SMALL_STATE(4503)] = 136643, + [SMALL_STATE(4504)] = 136647, + [SMALL_STATE(4505)] = 136651, + [SMALL_STATE(4506)] = 136655, + [SMALL_STATE(4507)] = 136659, + [SMALL_STATE(4508)] = 136663, + [SMALL_STATE(4509)] = 136667, + [SMALL_STATE(4510)] = 136671, }; 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(653), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(653), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(4400), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), - [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(589), - [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(567), - [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(572), - [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(503), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(131), - [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), - [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(551), - [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3232), - [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(4011), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2973), - [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(586), - [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3212), - [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(4171), - [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), - [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), - [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(798), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(533), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(538), - [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(539), - [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(544), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(545), - [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(590), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), - [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), - [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3156), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 2, 0, 0), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 1), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1, 0, 0), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3, 0, 0), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 1, 0, 0), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 2, 0, 0), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(653), - [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4400), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(567), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(572), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(503), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(131), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(551), - [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3232), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4011), - [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2973), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(586), - [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3212), - [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4171), - [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), - [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), - [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(303), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(510), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(583), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(585), - [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3313), - [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), - [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(556), - [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), - [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4336), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3200), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(798), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(538), - [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(539), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(544), - [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(545), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(590), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), - [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), - [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3156), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 1, 0, 0), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 2, 0, 0), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(653), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), - [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4400), - [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), - [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(572), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(503), - [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(131), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), - [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(87), - [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(551), - [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3232), - [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4011), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2973), - [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(586), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3212), - [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4171), - [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), - [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), - [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), - [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(798), - [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(539), - [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(544), - [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(545), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(590), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3156), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(303), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(583), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(585), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3313), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), - [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(556), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4336), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3200), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 1, 0, 0), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 2, 0, 0), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(653), - [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4400), - [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), - [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(503), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(131), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(551), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3232), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4011), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2973), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(586), - [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3212), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4171), - [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), - [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(798), - [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(544), - [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(545), - [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), - [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(590), - [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), - [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), - [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3156), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(303), - [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(585), - [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3313), - [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), - [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(556), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4336), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3200), - [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(653), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4400), - [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), - [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [1413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(131), - [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(551), - [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3232), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4011), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2973), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(586), - [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3212), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4171), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), - [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 1, 0, 0), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 2, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(798), - [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(545), - [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(590), - [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), - [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3156), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(303), - [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(585), - [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3313), - [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), - [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(556), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4336), - [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3200), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 1, 0, 0), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(653), - [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4400), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), - [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(131), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), - [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(551), - [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3232), - [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4011), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2973), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(586), - [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3212), - [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4171), - [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), - [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), - [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), - [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, 0, 0), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(798), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), - [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(119), - [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(590), - [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), - [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), - [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3156), - [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(303), - [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(585), - [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3313), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(120), - [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(556), - [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), - [1837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4336), - [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3200), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 1, 0, 0), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 2, 0, 0), - [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(653), - [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), - [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4400), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), - [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [1884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(131), - [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), - [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(291), - [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(551), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3232), - [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4011), - [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2973), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(586), - [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3212), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4171), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(303), - [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3313), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(362), - [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(556), - [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), - [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4336), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3200), - [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(798), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(393), - [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(590), - [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), - [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), - [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3156), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1, 0, 0), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1, 0, 0), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_example, 1, 0, 0), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_example, 1, 0, 0), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1, 0, 0), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1, 0, 0), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1, 0, 0), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1, 0, 0), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1, 0, 0), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1, 0, 0), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1, 0, 0), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_example, 1, 0, 0), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_example, 1, 0, 0), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), - [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), - [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(131), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), - [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1, 0, 0), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1, 0, 0), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1, 0, 0), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1, 0, 0), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 3, 0, 0), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 3, 0, 0), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 2, 0, 0), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 2, 0, 0), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3, 0, 0), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3, 0, 0), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3, 0, 0), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3, 0, 0), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 3, 0, 0), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 3, 0, 0), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 4, 0, 0), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 4, 0, 0), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4, 0, 0), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4, 0, 0), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4, 0, 0), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4, 0, 0), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4, 0, 0), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4, 0, 0), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 2, 0, 0), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 2, 0, 0), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 4, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 4, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 0), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 2, 0, 0), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 0), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 2, 0, 0), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 1, 0, 0), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 2, 0, 0), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 2, 0, 0), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 2, 0, 0), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 2, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 2, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 2, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3, 0, 0), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 6, 0, 0), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 6, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_ref_def, 3, 0, 0), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2, 0, 0), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 2, 0, 0), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2, 0, 0), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 2, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_paragraph, 3, 0, 0), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_paragraph, 3, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2, 0, 0), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 2, 0, 0), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 4, 0, 0), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 4, 0, 0), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 4, 0, 0), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 4, 0, 0), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 4, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 4, 0, 0), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2, 0, 0), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 2, 0, 0), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2, 0, 0), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 2, 0, 0), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 2, 0, 0), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_horizontal_rule, 2, 0, 0), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_horizontal_rule, 2, 0, 0), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 1), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 1), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 5, 0, 0), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 5, 0, 0), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 5, 0, 0), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 5, 0, 0), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 27), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 5, 0, 27), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 5, 0, 0), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 5, 0, 0), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5, 0, 0), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5, 0, 0), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5, 0, 0), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5, 0, 0), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5, 0, 0), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5, 0, 0), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 5, 0, 0), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 5, 0, 0), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 1), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 1), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 27), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 6, 0, 27), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 6, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 6, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 7, 0, 0), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 7, 0, 0), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 7, 0, 27), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 7, 0, 27), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 7, 0, 0), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 7, 0, 0), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 8, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 8, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 8, 0, 27), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 8, 0, 27), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 8, 0, 0), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 8, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 9, 0, 0), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 9, 0, 0), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 9, 0, 0), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 9, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 2, 0, 0), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 3, 0, 0), - [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 3, 0, 0), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 1), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 1), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 1), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 1), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 1), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 1), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 3, 0, 0), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 3, 0, 0), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_paragraph, 2, 0, 0), - [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_paragraph, 2, 0, 0), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, 0, 0), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_list, 1, 0, 0), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_list, 1, 0, 0), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 0), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 3, 0, 0), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 0), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 3, 0, 0), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 0), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 3, 0, 0), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 0), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 3, 0, 0), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 0), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 3, 0, 0), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 0), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 3, 0, 0), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 1, 0, 3), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), - [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(787), - [2922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(333), - [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(334), - [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4348), - [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4349), - [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2607), - [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2470), - [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2470), - [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(648), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3076), - [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(568), - [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(570), - [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(571), - [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(741), - [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(742), - [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3260), - [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3263), - [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4338), - [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4339), - [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3784), - [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3785), - [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(918), - [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(920), - [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(921), - [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(922), - [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(923), - [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(924), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_with_maybe_spaces, 1, 0, 0), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(654), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(619), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(335), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(336), - [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4373), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4374), - [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), - [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(991), - [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(991), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(1069), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), - [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3087), - [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(574), - [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(575), - [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(576), - [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [3594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3262), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3251), - [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4363), - [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4364), - [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3859), - [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3860), - [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(926), - [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(927), - [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(928), - [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(617), - [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(929), - [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(930), - [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [3658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(631), - [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [3664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [3667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), - [3670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4400), - [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), - [3676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [3679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(945), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), - [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2973), - [3690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [3696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(586), - [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [3702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3212), - [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4171), - [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), - [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), - [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), - [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [3732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [3741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [3747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line, 1, 0, 0), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line, 2, 0, 0), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(649), - [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), - [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(332), - [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4323), - [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4324), - [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2604), - [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1488), - [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1488), - [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(957), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3065), - [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(562), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(564), - [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(565), - [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(727), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(728), - [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3258), - [3905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3259), - [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4313), - [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4314), - [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), - [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3710), - [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(910), - [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(615), - [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(913), - [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(914), - [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(915), - [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(663), - [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(321), - [3976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [3979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4198), - [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4199), - [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), - [3988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), - [3991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), - [3994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(955), - [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3012), - [4000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [4003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(535), - [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(536), - [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(791), - [4015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(792), - [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), - [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3249), - [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4188), - [4027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4189), - [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4093), - [4033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4095), - [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(871), - [4042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(872), - [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(610), - [4048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(873), - [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [4054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [4057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(876), - [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(664), - [4063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(316), - [4069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4123), - [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4124), - [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2597), - [4078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2351), - [4081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2351), - [4084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(947), - [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2981), - [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(517), - [4093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(518), - [4096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [4099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(520), - [4102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [4105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [4108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3242), - [4111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3243), - [4114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4113), - [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4114), - [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3839), - [4123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3862), - [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(846), - [4129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(847), - [4132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [4135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(607), - [4138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(851), - [4147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(666), - [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(317), - [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(318), - [4219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4148), - [4222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4149), - [4225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), - [4228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [4231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [4234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(949), - [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2992), - [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(522), - [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(523), - [4246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(524), - [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(525), - [4252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [4255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(724), - [4258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3244), - [4261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3245), - [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4138), - [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4139), - [4270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3772), - [4273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3775), - [4276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [4279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [4282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [4285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(608), - [4288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [4291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(859), - [4297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(668), - [4363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(327), - [4366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(328), - [4369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4273), - [4372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4274), - [4375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2626), - [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [4381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [4384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(956), - [4387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3042), - [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(552), - [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(553), - [4396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(554), - [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [4402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [4405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(700), - [4408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3254), - [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3255), - [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4263), - [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4264), - [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3770), - [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3771), - [4426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(894), - [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(895), - [4432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(896), - [4435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(613), - [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [4441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(898), - [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(899), - [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(900), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(329), - [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(330), - [4521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4298), - [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4299), - [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2596), - [4530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2020), - [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2020), - [4536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(954), - [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3055), - [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(557), - [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(558), - [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(559), - [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(560), - [4554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(698), - [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(714), - [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3256), - [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3257), - [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4288), - [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4289), - [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4233), - [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4236), - [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(902), - [4581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(903), - [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(904), - [4587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(614), - [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(905), - [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(906), - [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(907), - [4599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(908), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(674), - [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(292), - [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [4673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4024), - [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), - [4679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), - [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2108), - [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2108), - [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(946), - [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2950), - [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(573), - [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(578), - [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(580), - [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3236), - [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3237), - [4718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4013), - [4721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4014), - [4724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3953), - [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4377), - [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(822), - [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(598), - [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [4748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [4754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(675), - [4757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(319), - [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(320), - [4763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4173), - [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4174), - [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), - [4772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), - [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), - [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(951), - [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), - [4784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(528), - [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(529), - [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(530), - [4793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(531), - [4796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(725), - [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(726), - [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3246), - [4805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3247), - [4808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4163), - [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4164), - [4814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3954), - [4817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), - [4820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(862), - [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(863), - [4826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(864), - [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(592), - [4832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(865), - [4835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(866), - [4838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [4841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(868), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [5039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [5042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(324), - [5045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4223), - [5048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4224), - [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2612), - [5054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), - [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), - [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(953), - [5063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3022), - [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(542), - [5075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(543), - [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(730), - [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3250), - [5087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3114), - [5090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4213), - [5093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4214), - [5096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4254), - [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4255), - [5102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [5105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(879), - [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(611), - [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(881), - [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(882), - [5120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(883), - [5123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(884), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [5188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(687), - [5191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(311), - [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(312), - [5197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4073), - [5200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4074), - [5203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2627), - [5206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2207), - [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2207), - [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(948), - [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2962), - [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(506), - [5221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(507), - [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(508), - [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [5236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3238), - [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3239), - [5242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4062), - [5245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4063), - [5248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3713), - [5251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3715), - [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [5257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [5260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(832), - [5263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(605), - [5266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(836), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(690), - [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(325), - [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(326), - [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4248), - [5296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4249), - [5299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), - [5302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1861), - [5305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1861), - [5308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(952), - [5311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3031), - [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(546), - [5317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(547), - [5320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(548), - [5323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [5326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [5329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [5332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3252), - [5335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3253), - [5338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4238), - [5341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4239), - [5344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4394), - [5347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4395), - [5350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(886), - [5353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(887), - [5356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(888), - [5359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [5362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(889), - [5365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(890), - [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(891), - [5371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(892), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(692), - [5379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [5382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [5385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4098), - [5388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4099), - [5391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), - [5394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2278), - [5397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2278), - [5400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(950), - [5403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2972), - [5406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(511), - [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(512), - [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(513), - [5415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(514), - [5418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(775), - [5421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [5424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3240), - [5427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3241), - [5430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4088), - [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4089), - [5436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4181), - [5439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4184), - [5442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [5445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [5448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [5451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [5454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [5457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(842), - [5460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(844), - [5466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [5469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [5475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), - [5478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3971), - [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2613), - [5484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2214), - [5487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2214), - [5490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), - [5493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2936), - [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(521), - [5499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(526), - [5502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [5505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [5508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(774), - [5511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(777), - [5514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3234), - [5517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3235), - [5520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3959), - [5523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3960), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3895), - [5529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3898), - [5532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [5538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [5541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [5544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [5547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(819), - [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(735), - [5703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(333), - [5706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(334), - [5709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4348), - [5712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4349), - [5715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2607), - [5718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2470), - [5721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2470), - [5724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2462), - [5727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3076), - [5730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(568), - [5733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [5736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(570), - [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(571), - [5742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(741), - [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(742), - [5748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3260), - [5751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3263), - [5754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4338), - [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4339), - [5760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3784), - [5763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3785), - [5766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(918), - [5769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [5772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(920), - [5775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [5778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(921), - [5781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(922), - [5784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(923), - [5787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(924), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [5950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), - [5952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 3, 0, 10), - [5958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 3, 0, 10), - [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 2, 0, 5), - [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 2, 0, 5), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_span, 3, 0, 10), - [5968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_span, 3, 0, 10), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 11), - [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 11), - [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 12), - [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 12), - [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 2, 0, 0), - [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 2, 0, 0), - [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 2, 0, 0), - [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 2, 0, 0), - [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 10), - [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 10), - [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 0), - [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 0), - [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), - [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), - [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 2, 0, 0), - [6002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 2, 0, 0), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 13), - [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 13), - [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 14), - [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 14), - [6012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 15), - [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 15), - [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 16), - [6018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 16), - [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 3, 0, 0), - [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 3, 0, 0), - [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 3, 0, 10), - [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 3, 0, 10), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 3, 0, 0), - [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 3, 0, 0), - [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 20), - [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 20), - [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 21), - [6038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 21), - [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 22), - [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 22), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 23), - [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 23), - [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 4, 0, 21), - [6050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 4, 0, 21), - [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 4, 0, 21), - [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 21), - [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 2, 0, 6), - [6058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 2, 0, 6), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 2, 0, 7), - [6062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 2, 0, 7), - [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_str, 1, 0, 0), - [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_str, 1, 0, 0), - [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_single_quote, 2, 0, 0), - [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_single_quote, 2, 0, 0), - [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_double_quote, 2, 0, 0), - [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_double_quote, 2, 0, 0), - [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 0), - [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 0), - [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 8), - [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 8), - [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 5), - [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 5), - [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 6), - [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 6), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 7), - [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 7), - [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_single_quote, 3, 0, 10), - [6098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_single_quote, 3, 0, 10), - [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_double_quote, 3, 0, 10), - [6102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_double_quote, 3, 0, 10), - [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 17), - [6106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 17), - [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 18), - [6110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 18), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_strikeout, 3, 0, 0), - [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_strikeout, 3, 0, 0), - [6116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_subscript, 3, 0, 0), - [6118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_subscript, 3, 0, 0), - [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_superscript, 3, 0, 0), - [6122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_superscript, 3, 0, 0), - [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 0), - [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 0), - [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_strong, 3, 0, 0), - [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_strong, 3, 0, 0), - [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_emph, 3, 0, 0), - [6134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_emph, 3, 0, 0), - [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 2, 0, 0), - [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 2, 0, 0), - [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_math, 3, 0, 0), - [6142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_math, 3, 0, 0), - [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_display_math, 3, 0, 0), - [6146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_display_math, 3, 0, 0), - [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_span, 4, 0, 10), - [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_span, 4, 0, 10), - [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 11), - [6154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 11), - [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 12), - [6158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 12), - [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 10), - [6162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 10), - [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 0), - [6166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 0), - [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 13), - [6170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 13), - [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 14), - [6174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 14), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 15), - [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 15), - [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 16), - [6182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 16), - [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 0), - [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 0), - [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 3, 0, 0), - [6190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 3, 0, 0), - [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 3, 0, 24), - [6194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 3, 0, 24), - [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 4, 0, 10), - [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 4, 0, 10), - [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 4, 0, 0), - [6202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 4, 0, 0), - [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 4, 0, 10), - [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 10), - [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 4, 0, 0), - [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 0), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_math, 4, 0, 0), - [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_math, 4, 0, 0), - [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 5, 0, 20), - [6218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 5, 0, 20), - [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 5, 0, 21), - [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 5, 0, 21), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 5, 0, 22), - [6226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 5, 0, 22), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 5, 0, 23), - [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 5, 0, 23), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), - [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 5, 0, 0), - [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 5, 0, 0), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 4, 0, 30), - [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 4, 0, 30), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 4, 0, 31), - [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 4, 0, 31), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 5, 0, 21), - [6250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 5, 0, 21), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 5, 0, 21), - [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 5, 0, 21), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), - [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), - [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 5, 0, 34), - [6262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 5, 0, 34), - [6264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 5, 0, 35), - [6266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 5, 0, 35), - [6268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), - [6270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), - [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 6, 0, 37), - [6274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 6, 0, 37), - [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 2, 0, 0), - [6278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 2, 0, 0), - [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 0), - [6282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 0), - [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 19), - [6286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 19), - [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 0), - [6290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 0), - [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 19), - [6294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 19), - [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 4, 0, 0), - [6298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 4, 0, 0), - [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 4, 0, 26), - [6302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 4, 0, 26), - [6304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [6306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 26), - [6310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 26), - [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 5, 0, 0), - [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 5, 0, 0), - [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 6, 0, 0), - [6318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 6, 0, 0), - [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 7, 0, 0), - [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 7, 0, 0), - [6324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 1, 0, 3), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 2, 0, 0), - [6332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 2, 0, 0), - [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 3), - [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 3), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), - [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), - [6350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), - [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), - [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 2), - [6396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 1), - [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), - [6400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(591), - [6403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(510), - [6406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(583), - [6409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(581), - [6412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(584), - [6415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(585), - [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [6816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_sep, 1, 0, 0), - [6818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__shortcode_sep, 1, 0, 0), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 1, 0, 0), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [6864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), - [6866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2660), - [6869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2689), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attr_ws, 1, 0, 0), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_sep, 2, 0, 0), - [6956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__shortcode_sep, 2, 0, 0), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 1, 0, 0), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 2, 0, 0), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [7104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3, 0, 0), - [7106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), - [7109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2982), - [7112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3146), - [7115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1, 0, 0), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2, 0, 0), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2754), - [7202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), - [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), - [7207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), - [7210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), - [7213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(3106), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 0), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [7236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1, 0, 0), - [7238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), - [7240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 2, 0, 0), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), - [7261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), SHIFT_REPEAT(2811), - [7264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), SHIFT_REPEAT(3091), - [7267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 3, 0, 0), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [7271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2770), - [7274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2815), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 1, 0, 0), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [7327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), SHIFT_REPEAT(3047), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), - [7332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), SHIFT_REPEAT(3261), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), - [7343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2798), - [7346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2798), - [7349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3265), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), - [7366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2801), - [7369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2801), - [7372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3266), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 3, 0, 0), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [7399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(2809), - [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3033), - [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [7417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 2, 0, 0), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2821), - [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(3091), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 4, 0, 0), - [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 4, 0, 0), - [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 1, 0, 0), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [7469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [7511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(3136), - [7514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2898), - [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 2, 0, 0), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4, 0, 0), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inlines, 2, 0, 0), - [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inlines, 2, 0, 0), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [7573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 3, 0, 0), - [7575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), - [7577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), - [7579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), SHIFT_REPEAT(2478), - [7582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_repeat1, 2, 0, 0), SHIFT_REPEAT(3493), - [7585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [7616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(2685), - [7619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inlines, 1, 0, 0), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 28), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [7666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5, 0, 0), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [7676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(3493), - [7679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(3099), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [7686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), - [7688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), SHIFT_REPEAT(961), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5, 0, 0), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [7715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inlines, 1, 0, 0), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 1, 0, 0), - [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, 0, 33), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [7739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(3056), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1, 0, 0), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [7808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6, 0, 0), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_single_quote_string, 3, 0, 0), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 5, 0, 36), - [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 4, 0, 32), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 1, 0, 0), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_double_quote_string, 3, 0, 0), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_math_repeat1, 2, 0, 0), - [7878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_math_repeat1, 2, 0, 0), SHIFT_REPEAT(3307), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 3, 0, 25), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6, 0, 0), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [7909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 1, 0, 4), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_single_quote_string, 4, 0, 0), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [7961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_double_quote_string, 4, 0, 0), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [7995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 4), - [8135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 4), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [8223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [8225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 5, 0, 0), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [8369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [8403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), - [8405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2, 0, 0), - [8421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 3, 0, 25), - [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 4, 0, 32), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_repeat1, 2, 0, 0), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 2, 0, 0), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [8441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_string, 1, 0, 0), - [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 29), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [8449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 0), - [8451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 5, 0, 36), - [8457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_math_repeat1, 2, 0, 4), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(4031), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), + [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(591), + [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2831), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(4431), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3236), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(4023), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3064), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3205), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3147), + [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(4083), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3997), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(4134), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3178), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 1), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 2, 0, 0), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3, 0, 0), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 8), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1, 0, 0), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(594), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(4416), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(592), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3233), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3968), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 2, 0, 0), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 1, 0, 0), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4031), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), + [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(591), + [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), + [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2831), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4431), + [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3236), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4023), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3064), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3205), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3147), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4083), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3997), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4134), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3178), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(594), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), + [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4416), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(592), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3233), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3968), + [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(579), + [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(582), + [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(587), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2810), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4403), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4157), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3191), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4031), + [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(591), + [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2831), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4431), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3236), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4023), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3064), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3205), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3147), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4083), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3997), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4134), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3178), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 1, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 2, 0, 0), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(594), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4416), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(592), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3233), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3968), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(91), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(582), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(587), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2810), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4403), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4157), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3191), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4031), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2831), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4431), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3236), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4023), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3064), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3205), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3147), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4083), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3997), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4134), + [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3178), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 2, 0, 0), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 1, 0, 0), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), + [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4416), + [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(592), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3233), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3968), + [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(587), + [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2810), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4403), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4157), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3191), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 1, 0, 0), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4031), + [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), + [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), + [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), + [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2831), + [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4431), + [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3236), + [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4023), + [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3064), + [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3205), + [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3147), + [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4083), + [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3997), + [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4134), + [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3178), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 2, 0, 0), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), + [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4416), + [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(592), + [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3233), + [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3968), + [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(106), + [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(587), + [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2810), + [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4403), + [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4157), + [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3191), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 1, 0, 0), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4031), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), + [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2831), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4431), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3236), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4023), + [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3064), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3205), + [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3147), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4083), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3997), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4134), + [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3178), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, 0, 0), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), + [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [1837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4416), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(592), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3233), + [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3968), + [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(587), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2810), + [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4403), + [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4157), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3191), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 1, 0, 0), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 2, 0, 0), + [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4031), + [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), + [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2831), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4431), + [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3236), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4023), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3064), + [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3205), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3147), + [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4083), + [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3997), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4134), + [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3178), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4416), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(592), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3233), + [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3968), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(474), + [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), + [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2810), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4403), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4157), + [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3191), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), + [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1, 0, 0), + [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1, 0, 0), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1, 0, 0), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1, 0, 0), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_example, 1, 0, 0), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_example, 1, 0, 0), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1, 0, 0), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1, 0, 0), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1, 0, 0), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1, 0, 0), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1, 0, 0), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1, 0, 0), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1, 0, 0), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1, 0, 0), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_example, 1, 0, 0), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_example, 1, 0, 0), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1, 0, 0), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), + [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), + [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 2, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 2, 0, 0), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 2, 0, 0), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 2, 0, 0), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 2, 0, 0), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 2, 0, 0), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 2, 0, 0), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 2, 0, 0), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 2, 0, 0), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 2, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 3, 0, 0), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 3, 0, 0), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 4, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 4, 0, 0), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4, 0, 0), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 2, 0, 0), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 2, 0, 0), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4, 0, 0), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4, 0, 0), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3, 0, 0), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3, 0, 0), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 2, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 2, 0, 0), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4, 0, 0), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4, 0, 0), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 3, 0, 0), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 3, 0, 0), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 4, 0, 0), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 4, 0, 0), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 1, 0, 0), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3, 0, 0), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3, 0, 0), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_list, 1, 0, 0), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_list, 1, 0, 0), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2, 0, 0), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 2, 0, 0), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2, 0, 0), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 2, 0, 0), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2, 0, 0), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 2, 0, 0), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2, 0, 0), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 2, 0, 0), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2, 0, 0), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 2, 0, 0), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2, 0, 0), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 2, 0, 0), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_horizontal_rule, 2, 0, 0), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_horizontal_rule, 2, 0, 0), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 1), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 1), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 1), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 1), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 1), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 1), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 1), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 1), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 1), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 1), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_paragraph, 2, 0, 0), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_paragraph, 2, 0, 0), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 0), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 3, 0, 0), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 0), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 3, 0, 0), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 0), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 3, 0, 0), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 0), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 3, 0, 0), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 0), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 3, 0, 0), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 0), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 3, 0, 0), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 3, 0, 0), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 3, 0, 0), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_ref_def, 3, 0, 0), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_paragraph, 3, 0, 0), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_paragraph, 3, 0, 0), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 4, 0, 0), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 4, 0, 0), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 4, 0, 0), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 4, 0, 0), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 4, 0, 0), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 4, 0, 0), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 5, 0, 0), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 5, 0, 0), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 5, 0, 0), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 5, 0, 0), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minus_metadata, 5, 0, 27), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minus_metadata, 5, 0, 27), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 28), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 5, 0, 28), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 5, 0, 0), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 5, 0, 0), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5, 0, 0), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5, 0, 0), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5, 0, 0), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5, 0, 0), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5, 0, 0), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5, 0, 0), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 5, 0, 0), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 5, 0, 0), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 6, 0, 0), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 6, 0, 0), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 28), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 6, 0, 28), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 6, 0, 0), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 6, 0, 0), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 7, 0, 0), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 7, 0, 0), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 7, 0, 28), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 7, 0, 28), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 7, 0, 0), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 7, 0, 0), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 8, 0, 0), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 8, 0, 0), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 8, 0, 28), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 8, 0, 28), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 8, 0, 0), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 8, 0, 0), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 9, 0, 0), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 9, 0, 0), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 9, 0, 0), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 9, 0, 0), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 2, 0, 0), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 3, 0, 0), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 3, 0, 0), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 1, 0, 2), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), + [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(343), + [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4361), + [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4362), + [2992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2604), + [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2495), + [2998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2495), + [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(642), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3096), + [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(567), + [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [3018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(781), + [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(701), + [3027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3264), + [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3267), + [3033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4351), + [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4352), + [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3795), + [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3796), + [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [3048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [3060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(923), + [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(924), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(647), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_with_maybe_spaces, 1, 0, 0), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(608), + [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4386), + [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4387), + [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2607), + [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(994), + [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(994), + [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), + [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3101), + [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(575), + [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(786), + [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(787), + [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3266), + [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3163), + [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4376), + [3645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4377), + [3648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3870), + [3651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3871), + [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(926), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [3660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(928), + [3663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(622), + [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(929), + [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(930), + [3672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line, 2, 0, 0), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [3716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(626), + [3719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), + [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(342), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), + [3729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4336), + [3732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4337), + [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2627), + [3738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), + [3741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), + [3744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(950), + [3747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3090), + [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(775), + [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3262), + [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3263), + [3774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4326), + [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4327), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3720), + [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), + [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(910), + [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(911), + [3792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(912), + [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(621), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(913), + [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(914), + [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(915), + [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4031), + [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), + [3842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [3848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(960), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3064), + [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3205), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3147), + [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4083), + [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3997), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4134), + [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [3905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line, 1, 0, 0), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(668), + [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [4164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [4167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4311), + [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4312), + [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2622), + [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2029), + [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2029), + [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(951), + [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3085), + [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [4203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3260), + [4209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3261), + [4212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4301), + [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4302), + [4218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4274), + [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4288), + [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [4230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(904), + [4233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(620), + [4236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(905), + [4239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [4242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(907), + [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(908), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(335), + [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(336), + [4377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4261), + [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4262), + [4383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), + [4386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1869), + [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1869), + [4392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [4395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3075), + [4398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(543), + [4401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [4407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(546), + [4410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [4413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3256), + [4419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3257), + [4422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4251), + [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4252), + [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4413), + [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4414), + [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(887), + [4440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(888), + [4443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(618), + [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(889), + [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(890), + [4452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(891), + [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(676), + [4587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(316), + [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(317), + [4593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), + [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4037), + [4599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), + [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), + [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), + [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(958), + [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3021), + [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(578), + [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(581), + [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(517), + [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(792), + [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3240), + [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3241), + [4638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), + [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), + [4644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4139), + [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4140), + [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [4659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(610), + [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(820), + [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(821), + [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(822), + [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(678), + [4679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(313), + [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(314), + [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3981), + [4688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3982), + [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), + [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2224), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2224), + [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(1981), + [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3014), + [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(535), + [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(573), + [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(577), + [4718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(750), + [4721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(751), + [4724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3238), + [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3239), + [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), + [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3971), + [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), + [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [4748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(609), + [4754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [4757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [4763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(815), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(323), + [4772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [4775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4111), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4112), + [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2608), + [4784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(959), + [4793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3035), + [4796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [4805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [4808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [4814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3244), + [4817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3245), + [4820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4101), + [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4102), + [4826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4205), + [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4246), + [4832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [4835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [4838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [4841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [4847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [4850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(687), + [4931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(321), + [4934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [4937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4086), + [4940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4087), + [4943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2600), + [4946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), + [4949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), + [4952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(955), + [4955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3030), + [4958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [4961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [4964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(589), + [4967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(590), + [4970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [4973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(703), + [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3242), + [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3243), + [4982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4075), + [4985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4076), + [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4046), + [4991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4057), + [4994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [5000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [5003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(611), + [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [5018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(688), + [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [5024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(326), + [5027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4136), + [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4137), + [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2615), + [5036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), + [5039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), + [5042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(956), + [5045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3041), + [5048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(514), + [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(515), + [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(719), + [5063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(720), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3246), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3247), + [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4126), + [5075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4127), + [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4250), + [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4275), + [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [5087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [5090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(847), + [5093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [5096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [5102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [5105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [5173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(327), + [5176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [5179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4161), + [5182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4162), + [5185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), + [5188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1566), + [5191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1566), + [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(957), + [5197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3048), + [5200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [5203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(520), + [5206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(521), + [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(522), + [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(726), + [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(727), + [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), + [5221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3249), + [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4151), + [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4152), + [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4220), + [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4224), + [5236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [5242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(934), + [5245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(614), + [5248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [5251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(859), + [5257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(860), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [5265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(333), + [5268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(334), + [5271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4236), + [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4237), + [5277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), + [5280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1799), + [5283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1799), + [5286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(953), + [5289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3069), + [5292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(537), + [5295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [5298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(539), + [5301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [5304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(744), + [5307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(745), + [5310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3254), + [5313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3255), + [5316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4226), + [5319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4227), + [5322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4223), + [5325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4225), + [5328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(878), + [5331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(879), + [5334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(880), + [5337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(617), + [5340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(881), + [5343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [5346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(883), + [5349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [5352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [5355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [5358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [5361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4186), + [5364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4187), + [5367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), + [5370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1637), + [5373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1637), + [5376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(952), + [5379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3054), + [5382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(525), + [5385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(526), + [5388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [5391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(528), + [5394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(732), + [5397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [5400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3250), + [5403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3251), + [5406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4176), + [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4177), + [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3854), + [5415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3856), + [5418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(862), + [5421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(863), + [5424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(864), + [5427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(615), + [5430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(866), + [5436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [5439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(868), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [5451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(331), + [5454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(332), + [5457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4211), + [5460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4212), + [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2625), + [5466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), + [5469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), + [5472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(948), + [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3063), + [5478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(533), + [5487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [5490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(738), + [5493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(739), + [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3252), + [5499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3253), + [5502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4201), + [5505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4202), + [5508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4055), + [5511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), + [5514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [5517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(871), + [5520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [5523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(616), + [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [5529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [5532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [5603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(338), + [5609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4286), + [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4287), + [5615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2612), + [5618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1956), + [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1956), + [5624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(949), + [5627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3080), + [5630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(549), + [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(550), + [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [5639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [5642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(760), + [5645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [5648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3258), + [5651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3259), + [5654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4276), + [5657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4277), + [5660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3901), + [5663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3916), + [5666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(894), + [5669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(895), + [5672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(896), + [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [5678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(897), + [5681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(898), + [5684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [5687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(900), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [5811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(343), + [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [5817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4361), + [5820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4362), + [5823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2604), + [5826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2495), + [5829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2495), + [5832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2440), + [5835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3096), + [5838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(567), + [5841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [5844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [5847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [5850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(781), + [5853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(701), + [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3264), + [5859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3267), + [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4351), + [5865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4352), + [5868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3795), + [5871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3796), + [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [5877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [5880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [5883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [5886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [5889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [5892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(923), + [5895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(924), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), + [6020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 2, 0, 0), + [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 2, 0, 0), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 2, 0, 4), + [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 2, 0, 4), + [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 15), + [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 15), + [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 16), + [6038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 16), + [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 3, 0, 10), + [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 3, 0, 10), + [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 3, 0, 0), + [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 3, 0, 0), + [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 10), + [6050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 10), + [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 20), + [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 20), + [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 2, 0, 5), + [6058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 2, 0, 5), + [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_span, 3, 0, 10), + [6062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_span, 3, 0, 10), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 0), + [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 0), + [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 14), + [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 14), + [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 13), + [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 13), + [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 4, 0, 21), + [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 4, 0, 21), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 4, 0, 21), + [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 21), + [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 3, 0, 0), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 3, 0, 0), + [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 2, 0, 0), + [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 2, 0, 0), + [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 22), + [6098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 22), + [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 23), + [6102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 23), + [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 2, 0, 0), + [6106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 2, 0, 0), + [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 21), + [6110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 21), + [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 3, 0, 10), + [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 3, 0, 10), + [6116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 11), + [6118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 11), + [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 12), + [6122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 12), + [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), + [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), + [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 2, 0, 6), + [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 2, 0, 6), + [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 6, 0, 0), + [6134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 6, 0, 0), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_str, 1, 0, 0), + [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_str, 1, 0, 0), + [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_single_quote, 2, 0, 0), + [6142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_single_quote, 2, 0, 0), + [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_double_quote, 2, 0, 0), + [6146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_double_quote, 2, 0, 0), + [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 0), + [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 0), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 7), + [6154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 7), + [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 4), + [6158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 4), + [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 5), + [6162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 5), + [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 6), + [6166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 6), + [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_single_quote, 3, 0, 10), + [6170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_single_quote, 3, 0, 10), + [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_double_quote, 3, 0, 10), + [6174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_double_quote, 3, 0, 10), + [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 17), + [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 17), + [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 18), + [6182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 18), + [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_strikeout, 3, 0, 0), + [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_strikeout, 3, 0, 0), + [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_subscript, 3, 0, 0), + [6190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_subscript, 3, 0, 0), + [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_superscript, 3, 0, 0), + [6194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_superscript, 3, 0, 0), + [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 0), + [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 0), + [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_strong, 3, 0, 0), + [6202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_strong, 3, 0, 0), + [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_emph, 3, 0, 0), + [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_emph, 3, 0, 0), + [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 2, 0, 0), + [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 2, 0, 0), + [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_math, 3, 0, 0), + [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_math, 3, 0, 0), + [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_display_math, 3, 0, 0), + [6218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_display_math, 3, 0, 0), + [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_span, 4, 0, 10), + [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_span, 4, 0, 10), + [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 11), + [6226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 11), + [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 12), + [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 12), + [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 10), + [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 10), + [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 0), + [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 0), + [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 13), + [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 13), + [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 14), + [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 14), + [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 15), + [6250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 15), + [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 16), + [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 16), + [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 0), + [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 0), + [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 3, 0, 0), + [6262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 3, 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, 10), + [6270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 4, 0, 10), + [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, 10), + [6278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 10), + [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 4, 0, 0), + [6282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 0), + [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_math, 4, 0, 0), + [6286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_math, 4, 0, 0), + [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 5, 0, 20), + [6290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 5, 0, 20), + [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 5, 0, 21), + [6294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 5, 0, 21), + [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 5, 0, 22), + [6298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 5, 0, 22), + [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 5, 0, 23), + [6302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 5, 0, 23), + [6304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), + [6306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), + [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 5, 0, 0), + [6310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 5, 0, 0), + [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 4, 0, 31), + [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 4, 0, 31), + [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 4, 0, 32), + [6318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 4, 0, 32), + [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 5, 0, 21), + [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 5, 0, 21), + [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 5, 0, 21), + [6326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 5, 0, 21), + [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), + [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), + [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 5, 0, 35), + [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 5, 0, 35), + [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 5, 0, 36), + [6338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 5, 0, 36), + [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), + [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 6, 0, 38), + [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 6, 0, 38), + [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 2, 0, 0), + [6350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 2, 0, 0), + [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 2, 0, 0), + [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 2, 0, 0), + [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 19), + [6358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 19), + [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 0), + [6362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 0), + [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 19), + [6366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 19), + [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 4, 0, 0), + [6370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 4, 0, 0), + [6372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 4, 0, 26), + [6374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 4, 0, 26), + [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 26), + [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 26), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 5, 0, 0), + [6386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 5, 0, 0), + [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 7, 0, 0), + [6390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 7, 0, 0), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [6394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 1, 0, 2), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 0), + [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 0), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), + [6404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [6410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 2), + [6412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 2), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [6416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [6440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), + [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), + [6444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), + [6464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(529), + [6467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(579), + [6470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(582), + [6473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(584), + [6476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(586), + [6479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(587), + [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 8), + [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 1), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [6888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_sep, 1, 0, 0), + [6890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__shortcode_sep, 1, 0, 0), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [6898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 1, 0, 0), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [6926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), + [6928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2660), + [6931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2690), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [6938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attr_ws, 1, 0, 0), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [7022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_sep, 2, 0, 0), + [7024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__shortcode_sep, 2, 0, 0), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [7088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 2, 0, 0), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2, 0, 0), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [7160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), + [7163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2945), + [7166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3140), + [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [7177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), + [7179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(2726), + [7182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), + [7185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(2966), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1, 0, 0), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [7206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), + [7209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 1, 0, 0), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3, 0, 0), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [7288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1, 0, 0), + [7290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), + [7292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(2760), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 0), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [7321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), + [7323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), SHIFT_REPEAT(2915), + [7326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), SHIFT_REPEAT(2992), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [7337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), SHIFT_REPEAT(3103), + [7340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), + [7342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), SHIFT_REPEAT(3265), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [7357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 1, 0, 0), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [7371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 2, 0, 0), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), + [7387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 3, 0, 0), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [7393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2797), + [7396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2901), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [7417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2803), + [7420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attr_ws_repeat1, 2, 0, 0), SHIFT_REPEAT(2992), + [7423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [7426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), + [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 2, 0, 0), + [7431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(2809), + [7434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), + [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 4, 0, 0), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 4, 0, 0), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 1, 0, 0), + [7465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 2, 0, 0), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 3, 0, 0), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), + [7531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2874), + [7534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2874), + [7537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3269), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4, 0, 0), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), + [7590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2916), + [7593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2916), + [7596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3201), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [7607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [7621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5, 0, 0), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [7625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inlines, 1, 0, 0), + [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inlines, 1, 0, 0), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [7631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 29), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [7643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inlines, 2, 0, 0), + [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inlines, 2, 0, 0), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [7665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 3, 0, 0), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [7675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_repeat1, 2, 0, 0), SHIFT_REPEAT(3304), + [7678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_repeat1, 2, 0, 0), SHIFT_REPEAT(2980), + [7681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), + [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), + [7685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), SHIFT_REPEAT(2492), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [7720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5, 0, 0), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [7734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), + [7736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), SHIFT_REPEAT(972), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, 0, 34), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [7813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [7858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(2688), + [7861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(2691), + [7864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1, 0, 0), + [7866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(3304), + [7869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(2980), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [7884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 1, 0, 0), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_double_quote_string, 3, 0, 0), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6, 0, 0), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 1, 0, 0), + [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_double_quote_string, 4, 0, 0), + [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_single_quote_string, 3, 0, 0), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 5, 0, 37), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 1, 0, 3), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6, 0, 0), + [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 4, 0, 33), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [7996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_math_repeat1, 2, 0, 0), + [7998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_math_repeat1, 2, 0, 0), SHIFT_REPEAT(3397), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 3, 0, 25), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_single_quote_string, 4, 0, 0), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [8095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 3), + [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 3), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [8179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 5, 0, 0), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [8439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [8443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [8617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 3, 0, 0), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [8661] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 5, 0, 0), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unnumbered_specifier, 1, 0, 0), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [9341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 2, 0, 0), - [9343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 2, 0, 19), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [9375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 3, 0, 26), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [9471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4, 0, 0), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [8477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 4, 0, 33), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [8481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_math_repeat1, 2, 0, 3), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [8491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2, 0, 0), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [8501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 5, 0, 37), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 30), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 2, 0, 0), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 0), + [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), + [8525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [8529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_string, 1, 0, 0), + [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), + [8533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 3, 0, 25), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_repeat1, 2, 0, 0), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [8599] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [8625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 5, 0, 0), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unnumbered_specifier, 1, 0, 0), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [8993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4, 0, 0), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [9381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 3, 0, 0), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [9489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 3, 0, 26), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [9553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 2, 0, 0), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [9587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 2, 0, 19), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), }; enum ts_external_scanner_symbol_identifiers { @@ -200160,63 +200672,66 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__error = 28, ts_external_token__trigger_error = 29, ts_external_token__eof = 30, - ts_external_token_minus_metadata = 31, - ts_external_token__pipe_table_start = 32, - ts_external_token__pipe_table_line_ending = 33, - ts_external_token__fenced_div_start = 34, - ts_external_token__fenced_div_end = 35, - ts_external_token_ref_id_specifier = 36, - ts_external_token_fenced_div_note_id = 37, - ts_external_token__code_span_start = 38, - ts_external_token__code_span_close = 39, - ts_external_token__latex_span_start = 40, - ts_external_token__latex_span_close = 41, - ts_external_token__html_comment = 42, - ts_external_token_raw_specifier = 43, - ts_external_token__autolink = 44, - ts_external_token__language_specifier_token = 45, - ts_external_token__key_specifier_token = 46, - ts_external_token__value_specifier_token = 47, - ts_external_token__highlight_span_start = 48, - ts_external_token__insert_span_start = 49, - ts_external_token__delete_span_start = 50, - ts_external_token__edit_comment_span_start = 51, - ts_external_token__single_quote_span_open = 52, - ts_external_token__single_quote_span_close = 53, - ts_external_token__double_quote_span_open = 54, - ts_external_token__double_quote_span_close = 55, - ts_external_token__shortcode_open_escaped = 56, - ts_external_token__shortcode_close_escaped = 57, - ts_external_token__shortcode_open = 58, - ts_external_token__shortcode_close = 59, - ts_external_token__cite_author_in_text_with_open_bracket = 60, - ts_external_token__cite_suppress_author_with_open_bracket = 61, - ts_external_token__cite_author_in_text = 62, - ts_external_token__cite_suppress_author = 63, - ts_external_token__strikeout_open = 64, - ts_external_token__strikeout_close = 65, - ts_external_token__subscript_open = 66, - ts_external_token__subscript_close = 67, - ts_external_token__superscript_open = 68, - ts_external_token__superscript_close = 69, - ts_external_token__inline_note_start_token = 70, - ts_external_token__strong_emphasis_open_star = 71, - ts_external_token__strong_emphasis_close_star = 72, - ts_external_token__strong_emphasis_open_underscore = 73, - ts_external_token__strong_emphasis_close_underscore = 74, - ts_external_token__emphasis_open_star = 75, - ts_external_token__emphasis_close_star = 76, - ts_external_token__emphasis_open_underscore = 77, - ts_external_token__emphasis_close_underscore = 78, - ts_external_token_inline_note_reference = 79, - ts_external_token_html_element = 80, - ts_external_token__pandoc_lt_str = 81, - ts_external_token__pipe_table_delimiter = 82, - ts_external_token__pandoc_line_break = 83, - ts_external_token__triple_star_error = 84, - ts_external_token_grid_table = 85, - ts_external_token__indented_code_block_error = 86, - ts_external_token__caption_start = 87, + ts_external_token__minus_metadata_start = 31, + ts_external_token__minus_metadata_open_newline = 32, + ts_external_token__minus_metadata_body = 33, + ts_external_token__minus_metadata_end = 34, + ts_external_token__pipe_table_start = 35, + ts_external_token__pipe_table_line_ending = 36, + ts_external_token__fenced_div_start = 37, + ts_external_token__fenced_div_end = 38, + ts_external_token_ref_id_specifier = 39, + ts_external_token_fenced_div_note_id = 40, + ts_external_token__code_span_start = 41, + ts_external_token__code_span_close = 42, + ts_external_token__latex_span_start = 43, + ts_external_token__latex_span_close = 44, + ts_external_token__html_comment = 45, + ts_external_token_raw_specifier = 46, + ts_external_token__autolink = 47, + ts_external_token__language_specifier_token = 48, + ts_external_token__key_specifier_token = 49, + ts_external_token__value_specifier_token = 50, + ts_external_token__highlight_span_start = 51, + ts_external_token__insert_span_start = 52, + ts_external_token__delete_span_start = 53, + ts_external_token__edit_comment_span_start = 54, + ts_external_token__single_quote_span_open = 55, + ts_external_token__single_quote_span_close = 56, + ts_external_token__double_quote_span_open = 57, + ts_external_token__double_quote_span_close = 58, + ts_external_token__shortcode_open_escaped = 59, + ts_external_token__shortcode_close_escaped = 60, + ts_external_token__shortcode_open = 61, + ts_external_token__shortcode_close = 62, + ts_external_token__cite_author_in_text_with_open_bracket = 63, + ts_external_token__cite_suppress_author_with_open_bracket = 64, + ts_external_token__cite_author_in_text = 65, + ts_external_token__cite_suppress_author = 66, + ts_external_token__strikeout_open = 67, + ts_external_token__strikeout_close = 68, + ts_external_token__subscript_open = 69, + ts_external_token__subscript_close = 70, + ts_external_token__superscript_open = 71, + ts_external_token__superscript_close = 72, + ts_external_token__inline_note_start_token = 73, + ts_external_token__strong_emphasis_open_star = 74, + ts_external_token__strong_emphasis_close_star = 75, + ts_external_token__strong_emphasis_open_underscore = 76, + ts_external_token__strong_emphasis_close_underscore = 77, + ts_external_token__emphasis_open_star = 78, + ts_external_token__emphasis_close_star = 79, + ts_external_token__emphasis_open_underscore = 80, + ts_external_token__emphasis_close_underscore = 81, + ts_external_token_inline_note_reference = 82, + ts_external_token_html_element = 83, + ts_external_token__pandoc_lt_str = 84, + ts_external_token__pipe_table_delimiter = 85, + ts_external_token__pandoc_line_break = 86, + ts_external_token__triple_star_error = 87, + ts_external_token_grid_table = 88, + ts_external_token__indented_code_block_error = 89, + ts_external_token__caption_start = 90, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -200251,7 +200766,10 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__error] = sym__error, [ts_external_token__trigger_error] = sym__trigger_error, [ts_external_token__eof] = sym__eof, - [ts_external_token_minus_metadata] = sym_minus_metadata, + [ts_external_token__minus_metadata_start] = sym__minus_metadata_start, + [ts_external_token__minus_metadata_open_newline] = sym__minus_metadata_open_newline, + [ts_external_token__minus_metadata_body] = sym__minus_metadata_body, + [ts_external_token__minus_metadata_end] = sym__minus_metadata_end, [ts_external_token__pipe_table_start] = sym__pipe_table_start, [ts_external_token__pipe_table_line_ending] = sym__pipe_table_line_ending, [ts_external_token__fenced_div_start] = sym__fenced_div_start, @@ -200310,7 +200828,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__caption_start] = sym__caption_start, }; -static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[110][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, @@ -200343,7 +200861,10 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__error] = true, [ts_external_token__trigger_error] = true, [ts_external_token__eof] = true, - [ts_external_token_minus_metadata] = true, + [ts_external_token__minus_metadata_start] = true, + [ts_external_token__minus_metadata_open_newline] = true, + [ts_external_token__minus_metadata_body] = true, + [ts_external_token__minus_metadata_end] = true, [ts_external_token__pipe_table_start] = true, [ts_external_token__pipe_table_line_ending] = true, [ts_external_token__fenced_div_start] = true, @@ -200425,7 +200946,7 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [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__minus_metadata_start] = true, [ts_external_token__pipe_table_start] = true, [ts_external_token__fenced_div_start] = true, [ts_external_token_ref_id_specifier] = true, @@ -200486,7 +201007,7 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__blank_line_start] = true, - [ts_external_token_minus_metadata] = true, + [ts_external_token__minus_metadata_start] = true, [ts_external_token__pipe_table_start] = true, [ts_external_token__fenced_div_start] = true, [ts_external_token_ref_id_specifier] = true, @@ -200545,7 +201066,7 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__blank_line_start] = true, - [ts_external_token_minus_metadata] = true, + [ts_external_token__minus_metadata_start] = true, [ts_external_token__pipe_table_start] = true, [ts_external_token__fenced_div_start] = true, [ts_external_token_ref_id_specifier] = true, @@ -200605,7 +201126,7 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [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__minus_metadata_start] = true, [ts_external_token__pipe_table_start] = true, [ts_external_token__fenced_div_start] = true, [ts_external_token_ref_id_specifier] = true, @@ -200664,7 +201185,7 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [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__minus_metadata_start] = true, [ts_external_token__pipe_table_start] = true, [ts_external_token__fenced_div_start] = true, [ts_external_token__fenced_div_end] = true, @@ -200724,7 +201245,7 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [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__minus_metadata_start] = true, [ts_external_token__pipe_table_start] = true, [ts_external_token__fenced_div_start] = true, [ts_external_token_ref_id_specifier] = true, @@ -200788,41 +201309,75 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_lt_str] = true, - [ts_external_token__pipe_table_delimiter] = true, + [ts_external_token__pipe_table_delimiter] = true, + [ts_external_token__pandoc_line_break] = true, + [ts_external_token__caption_start] = true, + }, + [9] = { + [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_start] = true, + [ts_external_token__pipe_table_start] = true, + [ts_external_token__fenced_div_start] = true, + [ts_external_token__fenced_div_end] = true, + [ts_external_token_ref_id_specifier] = true, + [ts_external_token__code_span_start] = true, + [ts_external_token__html_comment] = true, + [ts_external_token__autolink] = true, + [ts_external_token__highlight_span_start] = true, + [ts_external_token__insert_span_start] = true, + [ts_external_token__delete_span_start] = true, + [ts_external_token__edit_comment_span_start] = true, + [ts_external_token__single_quote_span_open] = true, + [ts_external_token__double_quote_span_open] = true, + [ts_external_token__shortcode_open_escaped] = true, + [ts_external_token__shortcode_open] = true, + [ts_external_token__cite_author_in_text_with_open_bracket] = true, + [ts_external_token__cite_suppress_author_with_open_bracket] = true, + [ts_external_token__cite_author_in_text] = true, + [ts_external_token__cite_suppress_author] = true, + [ts_external_token__strikeout_open] = true, + [ts_external_token__subscript_open] = true, + [ts_external_token__superscript_open] = true, + [ts_external_token__inline_note_start_token] = true, + [ts_external_token__strong_emphasis_open_star] = true, + [ts_external_token__strong_emphasis_open_underscore] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token_inline_note_reference] = true, + [ts_external_token_html_element] = true, + [ts_external_token__pandoc_lt_str] = true, [ts_external_token__pandoc_line_break] = true, + [ts_external_token_grid_table] = true, [ts_external_token__caption_start] = true, }, - [9] = { + [10] = { [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__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, @@ -200849,14 +201404,11 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_lt_str] = true, + [ts_external_token__pipe_table_delimiter] = true, [ts_external_token__pandoc_line_break] = true, - [ts_external_token_grid_table] = true, - [ts_external_token__caption_start] = true, }, - [10] = { - [ts_external_token__line_ending] = true, - [ts_external_token__eof] = true, - [ts_external_token__pipe_table_line_ending] = true, + [11] = { + [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, @@ -200883,10 +201435,9 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_lt_str] = true, - [ts_external_token__pipe_table_delimiter] = true, [ts_external_token__pandoc_line_break] = true, }, - [11] = { + [12] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, [ts_external_token_block_continuation] = true, @@ -200911,7 +201462,7 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [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__minus_metadata_start] = true, [ts_external_token__pipe_table_start] = true, [ts_external_token__fenced_div_start] = true, [ts_external_token_ref_id_specifier] = true, @@ -200945,36 +201496,6 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_grid_table] = true, [ts_external_token__caption_start] = true, }, - [12] = { - [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, - [ts_external_token__pandoc_lt_str] = true, - [ts_external_token__pandoc_line_break] = true, - }, [13] = { [ts_external_token__line_ending] = true, [ts_external_token__eof] = true, @@ -201096,6 +201617,7 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_lt_str] = true, + [ts_external_token__pipe_table_delimiter] = true, [ts_external_token__pandoc_line_break] = true, }, [17] = { @@ -201126,7 +201648,6 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_lt_str] = true, - [ts_external_token__pipe_table_delimiter] = true, [ts_external_token__pandoc_line_break] = true, }, [18] = { @@ -201208,9 +201729,9 @@ static const bool ts_external_scanner_states[107][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, @@ -201240,13 +201761,13 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__cite_suppress_author] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__subscript_open] = true, - [ts_external_token__subscript_close] = true, [ts_external_token__superscript_open] = true, [ts_external_token__inline_note_start_token] = true, [ts_external_token__strong_emphasis_open_star] = true, [ts_external_token__strong_emphasis_open_underscore] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_underscore] = true, [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_lt_str] = true, @@ -201262,6 +201783,7 @@ static const bool ts_external_scanner_states[107][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, @@ -201272,7 +201794,6 @@ static const bool ts_external_scanner_states[107][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, @@ -201306,8 +201827,8 @@ static const bool ts_external_scanner_states[107][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_close_star] = true, [ts_external_token__emphasis_open_underscore] = true, [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, @@ -201325,6 +201846,7 @@ static const bool ts_external_scanner_states[107][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, @@ -201339,7 +201861,6 @@ static const bool ts_external_scanner_states[107][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_lt_str] = true, @@ -201367,9 +201888,9 @@ static const bool ts_external_scanner_states[107][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_close_star] = true, [ts_external_token__emphasis_open_underscore] = true, [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, @@ -201386,7 +201907,6 @@ static const bool ts_external_scanner_states[107][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, @@ -201395,6 +201915,7 @@ static const bool ts_external_scanner_states[107][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, @@ -201426,11 +201947,11 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__cite_suppress_author] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__subscript_open] = true, + [ts_external_token__subscript_close] = true, [ts_external_token__superscript_open] = true, [ts_external_token__inline_note_start_token] = true, [ts_external_token__strong_emphasis_open_star] = true, [ts_external_token__strong_emphasis_open_underscore] = true, - [ts_external_token__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, @@ -201449,7 +201970,6 @@ static const bool ts_external_scanner_states[107][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, @@ -201461,6 +201981,7 @@ static const bool ts_external_scanner_states[107][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, @@ -201478,8 +201999,8 @@ static const bool ts_external_scanner_states[107][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, @@ -201508,8 +202029,8 @@ static const bool ts_external_scanner_states[107][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, @@ -201650,14 +202171,14 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [37] = { [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, + [ts_external_token__shortcode_close] = true, }, [38] = { [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, - [ts_external_token__shortcode_close] = true, }, [39] = { [ts_external_token__soft_line_ending] = true, @@ -201668,14 +202189,14 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__shortcode_open] = true, }, [41] = { - [ts_external_token__soft_line_ending] = true, + [ts_external_token_block_continuation] = true, [ts_external_token__language_specifier_token] = true, [ts_external_token__key_specifier_token] = true, - [ts_external_token__shortcode_close_escaped] = true, [ts_external_token__shortcode_open] = true, + [ts_external_token__shortcode_close] = true, }, [42] = { - [ts_external_token_block_continuation] = true, + [ts_external_token__soft_line_ending] = true, [ts_external_token__language_specifier_token] = true, [ts_external_token__key_specifier_token] = true, [ts_external_token__shortcode_close_escaped] = true, @@ -201685,8 +202206,8 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_block_continuation] = true, [ts_external_token__language_specifier_token] = true, [ts_external_token__key_specifier_token] = true, + [ts_external_token__shortcode_close_escaped] = true, [ts_external_token__shortcode_open] = true, - [ts_external_token__shortcode_close] = true, }, [44] = { [ts_external_token__soft_line_ending] = true, @@ -201697,23 +202218,23 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { }, [45] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__shortcode_open] = true, + [ts_external_token__value_specifier_token] = true, }, [46] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__value_specifier_token] = true, + [ts_external_token__shortcode_open] = true, }, [47] = { + [ts_external_token__soft_line_ending] = true, [ts_external_token_block_continuation] = true, + [ts_external_token_raw_specifier] = true, [ts_external_token__language_specifier_token] = true, - [ts_external_token__shortcode_open] = true, + [ts_external_token__key_specifier_token] = true, }, [48] = { - [ts_external_token__soft_line_ending] = true, [ts_external_token_block_continuation] = true, - [ts_external_token_raw_specifier] = true, [ts_external_token__language_specifier_token] = true, - [ts_external_token__key_specifier_token] = true, + [ts_external_token__shortcode_open] = true, }, [49] = { [ts_external_token__line_ending] = true, @@ -201721,39 +202242,39 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__pipe_table_line_ending] = true, }, [50] = { + [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, }, [51] = { + [ts_external_token__pipe_table_delimiter] = true, + }, + [52] = { [ts_external_token__soft_line_ending] = true, [ts_external_token_block_continuation] = true, [ts_external_token__key_specifier_token] = true, }, - [52] = { - [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, - }, [53] = { - [ts_external_token__line_ending] = true, - [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__value_specifier_token] = true, }, [54] = { - [ts_external_token__soft_line_ending] = true, - }, - [55] = { [ts_external_token_block_continuation] = true, [ts_external_token__value_specifier_token] = true, }, + [55] = { + [ts_external_token__soft_line_ending] = true, + }, [56] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, + }, + [57] = { [ts_external_token__soft_line_ending] = true, [ts_external_token_block_continuation] = true, [ts_external_token__shortcode_open] = true, }, - [57] = { - [ts_external_token__value_specifier_token] = true, - }, [58] = { [ts_external_token__shortcode_open] = true, }, @@ -201768,12 +202289,12 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__key_specifier_token] = true, }, [62] = { + [ts_external_token__soft_line_ending] = true, [ts_external_token_block_continuation] = true, + [ts_external_token__code_span_close] = true, }, [63] = { - [ts_external_token__soft_line_ending] = true, [ts_external_token_block_continuation] = true, - [ts_external_token__code_span_close] = true, }, [64] = { [ts_external_token_block_continuation] = true, @@ -201785,97 +202306,97 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__eof] = true, }, [66] = { - [ts_external_token__line_ending] = true, - [ts_external_token__block_close] = true, [ts_external_token_block_continuation] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__key_specifier_token] = true, }, [67] = { [ts_external_token__soft_line_ending] = true, [ts_external_token_block_continuation] = true, }, [68] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, [ts_external_token_block_continuation] = true, - [ts_external_token__key_specifier_token] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, }, [69] = { - [ts_external_token_block_continuation] = true, - [ts_external_token__key_specifier_token] = true, - [ts_external_token__shortcode_close_escaped] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__emphasis_close_underscore] = true, }, [70] = { - [ts_external_token_block_continuation] = true, - [ts_external_token__key_specifier_token] = true, - [ts_external_token__shortcode_close] = true, - }, - [71] = { [ts_external_token__soft_line_ending] = true, [ts_external_token__single_quote_span_close] = true, }, + [71] = { + [ts_external_token_block_continuation] = true, + [ts_external_token__key_specifier_token] = true, + [ts_external_token__shortcode_close_escaped] = true, + }, [72] = { - [ts_external_token__soft_line_ending] = true, - [ts_external_token__emphasis_close_star] = true, + [ts_external_token_fenced_div_note_id] = true, }, [73] = { - [ts_external_token__soft_line_ending] = true, - [ts_external_token__strikeout_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__key_specifier_token] = true, + [ts_external_token__shortcode_close] = true, }, [74] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__double_quote_span_close] = true, + [ts_external_token__strikeout_close] = true, }, [75] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__strong_emphasis_close_star] = true, + [ts_external_token__strong_emphasis_close_underscore] = true, }, [76] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__strong_emphasis_close_underscore] = true, + [ts_external_token__key_specifier_token] = true, + [ts_external_token__shortcode_close] = true, }, [77] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__superscript_close] = true, + [ts_external_token__key_specifier_token] = true, + [ts_external_token__shortcode_close_escaped] = true, }, [78] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__emphasis_close_underscore] = true, + [ts_external_token__strong_emphasis_close_star] = true, }, [79] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__subscript_close] = true, + [ts_external_token__superscript_close] = true, }, [80] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__key_specifier_token] = true, - [ts_external_token__shortcode_close_escaped] = true, + [ts_external_token__double_quote_span_close] = true, }, [81] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__key_specifier_token] = true, - [ts_external_token__shortcode_close] = true, + [ts_external_token__emphasis_close_star] = true, }, [82] = { - [ts_external_token_fenced_div_note_id] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__subscript_close] = true, }, [83] = { [ts_external_token__key_specifier_token] = true, - [ts_external_token__shortcode_close] = true, + [ts_external_token__shortcode_close_escaped] = true, }, [84] = { - [ts_external_token__line_ending] = true, - [ts_external_token__eof] = true, + [ts_external_token__block_close] = true, + [ts_external_token__blank_line_start] = true, }, [85] = { [ts_external_token__key_specifier_token] = true, - [ts_external_token__shortcode_close_escaped] = true, + [ts_external_token__shortcode_close] = true, }, [86] = { [ts_external_token__line_ending] = true, - [ts_external_token__pipe_table_delimiter] = true, + [ts_external_token__eof] = true, }, [87] = { - [ts_external_token__block_close] = true, - [ts_external_token__blank_line_start] = true, + [ts_external_token__line_ending] = true, + [ts_external_token__pipe_table_delimiter] = true, }, [88] = { [ts_external_token__block_close] = true, @@ -201883,64 +202404,73 @@ static const bool ts_external_scanner_states[107][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__blank_line_start] = true, }, [89] = { + [ts_external_token__language_specifier_token] = true, + }, + [90] = { [ts_external_token__line_ending] = true, [ts_external_token_block_continuation] = true, [ts_external_token__eof] = true, }, - [90] = { - [ts_external_token__language_specifier_token] = true, - }, [91] = { [ts_external_token__block_close] = true, [ts_external_token__fenced_code_block_end_backtick] = true, }, [92] = { - [ts_external_token__block_close] = true, - [ts_external_token_block_continuation] = true, + [ts_external_token__blank_line_start] = true, }, [93] = { + [ts_external_token__block_close] = true, [ts_external_token_block_continuation] = true, - [ts_external_token__close_block] = true, }, [94] = { - [ts_external_token__blank_line_start] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__close_block] = true, }, [95] = { [ts_external_token_block_continuation] = true, [ts_external_token__blank_line_start] = true, }, [96] = { - [ts_external_token__block_close] = true, + [ts_external_token__strikeout_close] = true, }, [97] = { - [ts_external_token__close_block] = true, + [ts_external_token__strong_emphasis_close_star] = true, }, [98] = { - [ts_external_token__single_quote_span_close] = true, + [ts_external_token__strong_emphasis_close_underscore] = true, }, [99] = { - [ts_external_token__double_quote_span_close] = true, + [ts_external_token__emphasis_close_star] = true, }, [100] = { - [ts_external_token__strikeout_close] = true, + [ts_external_token__emphasis_close_underscore] = true, }, [101] = { - [ts_external_token__subscript_close] = true, + [ts_external_token__superscript_close] = true, }, [102] = { - [ts_external_token__superscript_close] = true, + [ts_external_token__block_close] = true, }, [103] = { - [ts_external_token__strong_emphasis_close_star] = true, + [ts_external_token__single_quote_span_close] = true, }, [104] = { - [ts_external_token__strong_emphasis_close_underscore] = true, + [ts_external_token__double_quote_span_close] = true, }, [105] = { - [ts_external_token__emphasis_close_star] = true, + [ts_external_token__subscript_close] = true, }, [106] = { - [ts_external_token__emphasis_close_underscore] = true, + [ts_external_token__close_block] = true, + }, + [107] = { + [ts_external_token__minus_metadata_end] = true, + }, + [108] = { + [ts_external_token__minus_metadata_body] = true, + }, + [109] = { + [ts_external_token__minus_metadata_open_newline] = true, }, }; @@ -201979,6 +202509,9 @@ TS_PUBLIC const TSLanguage *tree_sitter_markdown(void) { .small_parse_table_map = ts_small_parse_table_map, .parse_actions = ts_parse_actions, .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, 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 3624153a7..8a08e0c4e 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c @@ -55,7 +55,10 @@ typedef enum { ERROR, TRIGGER_ERROR, TOKEN_EOF, - MINUS_METADATA, + MINUS_METADATA_START, + MINUS_METADATA_OPEN_NEWLINE, + MINUS_METADATA_BODY, + MINUS_METADATA_END, PIPE_TABLE_START, PIPE_TABLE_LINE_ENDING, FENCED_DIV_START, @@ -193,7 +196,10 @@ static char* token_names[] = { "ERROR", "TRIGGER_ERROR", "TOKEN_EOF", - "MINUS_METADATA", + "MINUS_METADATA_START", + "MINUS_METADATA_OPEN_NEWLINE", + "MINUS_METADATA_BODY", + "MINUS_METADATA_END", "PIPE_TABLE_START", "PIPE_TABLE_LINE_ENDING", "FENCED_DIV_START", @@ -336,6 +342,11 @@ static const uint8_t STATE_MATCHING = 0x1 << 0; static const uint8_t STATE_WAS_SOFT_LINE_BREAK = 0x1 << 1; // We're inside an ATX heading where soft line endings are disallowed; track that static const uint8_t STATE_INSIDE_ATX = 0x1 << 2; +// Between a YAML metadata block's opening `---` and its closing `---`. Gates +// the block's interior tokens so they can only fire inside a block the +// scanner itself opened (tree-sitter marks every external token valid during +// error recovery). +static const uint8_t STATE_IN_MINUS_METADATA = 0x1 << 3; // Block should be closed after next line break static const uint8_t STATE_CLOSE_BLOCK = 0x1 << 4; @@ -1557,13 +1568,125 @@ static bool parse_cite_suppress_author(Scanner *_, TSLexer *lexer, return false; } +// ---- YAML metadata blocks (`---` ... `---`) -------------------------------- +// +// A metadata block is four external tokens (grammar.js `minus_metadata`): +// MINUS_METADATA_START (the opening `---` plus trailing blanks), +// MINUS_METADATA_OPEN_NEWLINE (its line break), MINUS_METADATA_BODY (every +// line up to, not including, the closing delimiter line — exposed in the tree +// as the `yaml` node so consumers take the YAML's range from the parse; +// bd-mjo6ao32 / GH #671) and MINUS_METADATA_END (the closing `---` plus +// trailing blanks; the grammar consumes its line break like any other +// block's). START is only emitted once a look-ahead has confirmed a closing +// line exists — otherwise `---` is a thematic break — so that look-ahead runs +// speculatively on the raw lexer after `mark_end` has been placed where the +// thematic-break token would end. A closing delimiter is recognised only at +// the start of a line, which is why a `---` inside a value never ends the +// block. + +static void metadata_advance(Scanner *s, TSLexer *lexer, bool speculative) { + if (speculative) { + lexer->advance(lexer, false); + } else { + advance(s, lexer); + } +} + +// Consume one line break (`\n`, `\r` or `\r\n`) if the lexer sits on one. +static void metadata_consume_line_break(Scanner *s, TSLexer *lexer, + bool speculative) { + if (lexer->lookahead == '\r') { + metadata_advance(s, lexer, speculative); + if (lexer->lookahead == '\n') { + metadata_advance(s, lexer, speculative); + } + } else if (lexer->lookahead == '\n') { + metadata_advance(s, lexer, speculative); + } +} + +// At the start of a line: is it a closing delimiter — exactly `---`, then +// optional blanks, then a line break or EOF? Consumes the dashes and blanks +// whether or not the line qualifies; on success the lexer sits on the line +// break (or at EOF). +static bool metadata_at_closing_line(Scanner *s, TSLexer *lexer, + bool speculative) { + size_t minus_count = 0; + while (lexer->lookahead == '-') { + minus_count++; + metadata_advance(s, lexer, speculative); + } + if (minus_count != 3) { + return false; + } + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + metadata_advance(s, lexer, speculative); + } + return lexer->eof(lexer) || lexer->lookahead == '\n' || + lexer->lookahead == '\r'; +} + +// From the start of a line, advance line by line until a closing delimiter +// line is found; false at EOF. When not speculative, `mark_end` is placed at +// the start of every line visited, so a token emitted on success ends exactly +// where the closing line begins. +static bool metadata_find_closing_line(Scanner *s, TSLexer *lexer, + bool speculative) { + for (;;) { + if (!speculative) { + mark_end(s, lexer); + } + if (metadata_at_closing_line(s, lexer, speculative)) { + return true; + } + while (!lexer->eof(lexer) && lexer->lookahead != '\n' && + lexer->lookahead != '\r') { + metadata_advance(s, lexer, speculative); + } + if (lexer->eof(lexer)) { + return false; + } + metadata_consume_line_break(s, lexer, speculative); + } +} + +// The tokens that can only occur inside an open metadata block. `scan` calls +// this before any block-structure logic so the machinery that matches open +// blocks at line starts never sees the body. +static bool parse_minus_metadata_interior(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + if (valid_symbols[MINUS_METADATA_OPEN_NEWLINE] && + (lexer->lookahead == '\n' || lexer->lookahead == '\r')) { + metadata_consume_line_break(s, lexer, false); + s->column = 0; + mark_end(s, lexer); + EMIT_TOKEN(MINUS_METADATA_OPEN_NEWLINE); + } + if (valid_symbols[MINUS_METADATA_BODY]) { + if (metadata_find_closing_line(s, lexer, false)) { + // Zero-width when the closing line follows the opening one. + EMIT_TOKEN(MINUS_METADATA_BODY); + } + // Unterminated. Unreachable after a confirmed START, so only error + // recovery lands here; let the parser recover. + return false; + } + if (valid_symbols[MINUS_METADATA_END] && + metadata_at_closing_line(s, lexer, false)) { + mark_end(s, lexer); + s->state &= (uint8_t)~STATE_IN_MINUS_METADATA; + EMIT_TOKEN(MINUS_METADATA_END); + } + return false; +} + static bool parse_minus(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { if (s->indentation <= 3 && (valid_symbols[LIST_MARKER_MINUS] || valid_symbols[LIST_MARKER_MINUS_DONT_INTERRUPT] || valid_symbols[THEMATIC_BREAK] || valid_symbols[CITE_SUPPRESS_AUTHOR_WITH_OPEN_BRACKET] || - valid_symbols[MINUS_METADATA])) { + valid_symbols[MINUS_METADATA_START])) { mark_end(s, lexer); bool whitespace_after_minus = false; bool minus_after_whitespace = false; @@ -1630,87 +1753,20 @@ static bool parse_minus(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { } } if (minus_count == 3 && (!minus_after_whitespace) && line_end && - valid_symbols[MINUS_METADATA]) { - // Before we start scanning for metadata, peek ahead to check if there's - // a blank line after the opening ---. If so, this is a horizontal rule. - // We need to do this without consuming input. - - // Current position: right after the three minuses, at the newline - // We need to check: is the character after this newline another newline? - // We can do this by advancing, checking, then either continuing or bailing - - // Advance over the newline to peek at next line - if (lexer->lookahead == '\r') { - advance(s, lexer); - if (lexer->lookahead == '\n') { - advance(s, lexer); - } - } else if (lexer->lookahead == '\n') { - advance(s, lexer); - } - - // Check if we're at another newline (blank line) - bool is_blank_line = (lexer->lookahead == '\r' || lexer->lookahead == '\n'); - - // If is_blank_line, then this is a horizontal rule, not metadata - // Don't try to parse as metadata. - // The THEMATIC_BREAK handler should have already been tried. - // Don't return false here - instead, skip the metadata parsing - // and let the normal flow continue (which will check 'maybe_thematic_break' variable) - if (!is_blank_line) { - // Not a blank line, continue with metadata scanning - // Note: we've already advanced past the first newline above - bool first_iteration = true; - for (;;) { - // On subsequent iterations, advance over the newline - if (!first_iteration) { - if (lexer->lookahead == '\r') { - advance(s, lexer); - if (lexer->lookahead == '\n') { - advance(s, lexer); - } - } else { - advance(s, lexer); - } - } - first_iteration = false; - // check for minuses - minus_count = 0; - while (lexer->lookahead == '-') { - minus_count++; - advance(s, lexer); - } - if (minus_count == 3) { - // if exactly 3 check if next symbol (after eventual - // whitespace) is newline - while (lexer->lookahead == ' ' || - lexer->lookahead == '\t') { - advance(s, lexer); - } - if (lexer->lookahead == '\r' || lexer->lookahead == '\n') { - // if so also consume newline - if (lexer->lookahead == '\r') { - advance(s, lexer); - if (lexer->lookahead == '\n') { - advance(s, lexer); - } - } else { - advance(s, lexer); - } - mark_end(s, lexer); - EMIT_TOKEN(MINUS_METADATA); - } - } - // otherwise consume rest of line - while (lexer->lookahead != '\n' && lexer->lookahead != '\r' && - !lexer->eof(lexer)) { - advance(s, lexer); - } - // if end of file is reached, then this is not metadata - if (lexer->eof(lexer)) { - break; - } - } + valid_symbols[MINUS_METADATA_START]) { + // The token, if emitted, is the opening `---` plus trailing + // blanks: the same span a thematic break would take, so one + // mark serves both outcomes. Everything past it is speculative. + mark_end(s, lexer); + metadata_consume_line_break(s, lexer, true); + // `---` followed by a blank line is a thematic break, not the + // start of metadata. + bool blank_after_opening = lexer->eof(lexer) || + lexer->lookahead == '\n' || lexer->lookahead == '\r'; + if (!blank_after_opening && + metadata_find_closing_line(s, lexer, true)) { + s->state |= STATE_IN_MINUS_METADATA; + EMIT_TOKEN(MINUS_METADATA_START); } } else if (minus_count == 1 && valid_symbols[CITE_SUPPRESS_AUTHOR_WITH_OPEN_BRACKET]) { return parse_cite_suppress_author(s, lexer, valid_symbols); @@ -2528,6 +2584,15 @@ static bool scan(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { print_valid_symbols(valid_symbols); #endif + // Inside a YAML metadata block only the block's own tokens can occur; + // handle them before any block-structure logic runs. + if ((s->state & STATE_IN_MINUS_METADATA) && + (valid_symbols[MINUS_METADATA_OPEN_NEWLINE] || + valid_symbols[MINUS_METADATA_BODY] || + valid_symbols[MINUS_METADATA_END])) { + return parse_minus_metadata_interior(s, lexer, valid_symbols); + } + // A normal tree-sitter rule decided that the current branch is invalid and // now "requests" an error to stop the branch // if (valid_symbols[TRIGGER_ERROR]) { diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/div.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/div.txt index d6c3396a1..1924161d1 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/div.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/div.txt @@ -37,7 +37,9 @@ More stuff. (attribute_id))) (block_continuation) (block_continuation) - (metadata) + (metadata + body: (yaml) + (block_continuation)) (pandoc_paragraph (pandoc_str) (pandoc_space) diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/horizontal_rule.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/horizontal_rule.txt index edc34bbea..e834c38a5 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/horizontal_rule.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/horizontal_rule.txt @@ -12,7 +12,8 @@ A para. Another para. -------------------------------------------------------------------------------- (document - (metadata) + (metadata + body: (yaml)) (section (pandoc_paragraph (pandoc_str) diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/metadata.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/metadata.txt index c4dc3dd18..a29d19b7e 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/metadata.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/metadata.txt @@ -8,7 +8,8 @@ hello: world This has metadata. -------------------------------------------------------------------------------- (document - (metadata) + (metadata + body: (yaml)) (section (pandoc_paragraph (pandoc_str) @@ -32,7 +33,8 @@ title: inner More. -------------------------------------------------------------------------------- (document - (metadata) + (metadata + body: (yaml)) (section (pandoc_paragraph (pandoc_str) @@ -40,7 +42,8 @@ More. (pandoc_str) (pandoc_space) (pandoc_str)) - (metadata) + (metadata + body: (yaml)) (pandoc_paragraph (pandoc_str)))) ================================================================================ @@ -60,5 +63,89 @@ abstract: | -------------------------------------------------------------------------------- (document - (metadata)) - \ No newline at end of file + (metadata + body: (yaml))) + +================================================================================ +GH #671 - `---` inside a quoted value does not close the block +================================================================================ +--- +description: "a --- b" +author: Z +--- + +x +-------------------------------------------------------------------------------- + (document + (metadata + body: (yaml)) + (section + (pandoc_paragraph + (pandoc_str)))) +================================================================================ +GH #671 - `---` inside a plain value does not close the block +================================================================================ +--- +description: Hello --- world +author: Z +--- + +x +-------------------------------------------------------------------------------- + (document + (metadata + body: (yaml)) + (section + (pandoc_paragraph + (pandoc_str)))) +================================================================================ +GH #671 - an indented `---` line inside a block scalar does not close the block +================================================================================ +--- +description: | + a + + --- + + b +author: Z +--- + +x +-------------------------------------------------------------------------------- + (document + (metadata + body: (yaml)) + (section + (pandoc_paragraph + (pandoc_str)))) +================================================================================ +GH #671 - closing delimiter may carry trailing whitespace +================================================================================ +--- +title: T +author: Z +--- + +x +-------------------------------------------------------------------------------- + (document + (metadata + body: (yaml)) + (section + (pandoc_paragraph + (pandoc_str)))) +================================================================================ +GH #671 - empty body is a zero-width yaml node +================================================================================ +--- +--- + +x +-------------------------------------------------------------------------------- + (document + (metadata + body: (yaml)) + (section + (pandoc_paragraph + (pandoc_str)))) diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/new-spec.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/new-spec.txt index 60baca5a2..a6be7e406 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/new-spec.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/new-spec.txt @@ -446,7 +446,8 @@ Baz (pandoc_str) (pandoc_space) (pandoc_str)) - (metadata) + (metadata + body: (yaml)) (pandoc_paragraph (pandoc_str)) (pandoc_horizontal_rule) @@ -482,7 +483,8 @@ Extra text so this is not parsed as metadata. (pandoc_str) (pandoc_space) (pandoc_str)) - (metadata))) + (metadata + body: (yaml)))) ================================================================================ Example 69 - https://github.github.com/gfm/#example-69 ================================================================================ diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt index d7b09a61c..dae4bf9c4 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt @@ -473,7 +473,8 @@ author: Someone Content paragraph. -------------------------------------------------------------------------------- (document - (metadata) + (metadata + body: (yaml)) (section (pandoc_paragraph (pandoc_str) diff --git a/ts-packages/annotated-qmd/examples/academic-paper.json b/ts-packages/annotated-qmd/examples/academic-paper.json index ad90f52aa..c82839f3f 100644 --- a/ts-packages/annotated-qmd/examples/academic-paper.json +++ b/ts-packages/annotated-qmd/examples/academic-paper.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["introduction",[],[]],[{"c":"Introduction","s":1,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"Climate","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"prediction","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"is","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"a","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"critical","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"challenge","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"in","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"modern","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"science","s":19,"t":"Str"},{"c":[{"c":[{"c":"See","s":22,"t":"Str"},{"s":23,"t":"Space"},{"c":[[{"citationHash":0,"citationId":"ipcc2021","citationIdS":25,"citationMode":{"t":"AuthorInText"},"citationNoteNum":1,"citationPrefix":[],"citationSuffix":[]}],[{"c":"@ipcc2021","s":26,"t":"Str"}]],"s":24,"t":"Cite"},{"s":27,"t":"Space"},{"c":"for","s":28,"t":"Str"},{"s":29,"t":"Space"},{"c":"comprehensive","s":30,"t":"Str"},{"s":31,"t":"Space"},{"c":"discussion","s":32,"t":"Str"}],"s":21,"t":"Para"}],"s":20,"t":"Note"},{"c":".","s":33,"t":"Str"},{"s":34,"t":"Space"},{"c":"Traditional","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"statistical","s":37,"t":"Str"},{"s":38,"t":"Space"},{"c":"methods","s":39,"t":"Str"},{"s":40,"t":"Space"},{"c":"have","s":41,"t":"Str"},{"s":42,"t":"Space"},{"c":"limitations","s":43,"t":"Str"},{"s":44,"t":"Space"},{"c":"when","s":45,"t":"Str"},{"s":46,"t":"Space"},{"c":"dealing","s":47,"t":"Str"},{"s":48,"t":"Space"},{"c":"with","s":49,"t":"Str"},{"s":50,"t":"Space"},{"c":"complex,","s":51,"t":"Str"},{"s":52,"t":"Space"},{"c":"non-linear","s":53,"t":"Str"},{"s":54,"t":"Space"},{"c":"relationships","s":55,"t":"Str"},{"s":56,"t":"Space"},{"c":"in","s":57,"t":"Str"},{"s":58,"t":"Space"},{"c":"climate","s":59,"t":"Str"},{"s":60,"t":"Space"},{"c":"data.","s":61,"t":"Str"}],"s":2,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["background",[],[]],[{"c":"Background","s":63,"t":"Str"}]],"s":62,"t":"Header"},{"c":[{"c":"The","s":65,"t":"Str"},{"s":66,"t":"Space"},{"c":"field","s":67,"t":"Str"},{"s":68,"t":"Space"},{"c":"of","s":69,"t":"Str"},{"s":70,"t":"Space"},{"c":"climate","s":71,"t":"Str"},{"s":72,"t":"Space"},{"c":"science","s":73,"t":"Str"},{"s":74,"t":"Space"},{"c":"has","s":75,"t":"Str"},{"s":76,"t":"Space"},{"c":"evolved","s":77,"t":"Str"},{"s":78,"t":"Space"},{"c":"significantly","s":79,"t":"Str"},{"s":80,"t":"Space"},{"c":"over","s":81,"t":"Str"},{"s":82,"t":"Space"},{"c":"the","s":83,"t":"Str"},{"s":84,"t":"Space"},{"c":"past","s":85,"t":"Str"},{"s":86,"t":"Space"},{"c":"decades","s":87,"t":"Str"},{"s":88,"t":"Space"},{"c":[[{"citationHash":0,"citationId":"doe2020","citationIdS":90,"citationMode":{"t":"NormalCitation"},"citationNoteNum":2,"citationPrefix":[],"citationSuffix":[]},{"citationHash":0,"citationId":"smith2019","citationIdS":91,"citationMode":{"t":"NormalCitation"},"citationNoteNum":2,"citationPrefix":[{"s":92,"t":"Space"}],"citationSuffix":[]}],[]],"s":89,"t":"Cite"},{"c":".","s":93,"t":"Str"},{"s":94,"t":"Space"},{"c":"Recent","s":95,"t":"Str"},{"s":96,"t":"Space"},{"c":"advances","s":97,"t":"Str"},{"s":98,"t":"Space"},{"c":"in","s":99,"t":"Str"},{"s":100,"t":"Space"},{"c":"computational","s":101,"t":"Str"},{"s":102,"t":"Space"},{"c":"power","s":103,"t":"Str"},{"s":104,"t":"Space"},{"c":"enable","s":105,"t":"Str"},{"s":106,"t":"Space"},{"c":"new","s":107,"t":"Str"},{"s":108,"t":"Space"},{"c":"approaches.","s":109,"t":"Str"}],"s":64,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["methods",[],[]],[{"c":"Methods","s":111,"t":"Str"}]],"s":110,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["data-collection",[],[]],[{"c":"Data","s":113,"t":"Str"},{"s":114,"t":"Space"},{"c":"Collection","s":115,"t":"Str"}]],"s":112,"t":"Header"},{"c":[{"c":"We","s":117,"t":"Str"},{"s":118,"t":"Space"},{"c":"collected","s":119,"t":"Str"},{"s":120,"t":"Space"},{"c":"data","s":121,"t":"Str"},{"s":122,"t":"Space"},{"c":"from","s":123,"t":"Str"},{"s":124,"t":"Space"},{"c":"three","s":125,"t":"Str"},{"s":126,"t":"Space"},{"c":"sources:","s":129,"t":"Str"}],"s":116,"t":"Para"},{"a":{"classes":[],"id":131,"kvs":[]},"bodiesS":[{"a":{"classes":[],"id":null,"kvs":[]},"bodyS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":132},{"a":{"classes":[],"id":null,"kvs":[]},"s":133},{"a":{"classes":[],"id":null,"kvs":[]},"s":134}],"s":135},{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":136},{"a":{"classes":[],"id":null,"kvs":[]},"s":137},{"a":{"classes":[],"id":null,"kvs":[]},"s":138}],"s":139},{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":140},{"a":{"classes":[],"id":null,"kvs":[]},"s":141},{"a":{"classes":[],"id":null,"kvs":[]},"s":142}],"s":143}],"headS":[],"s":144}],"c":[["tbl-data",[],[]],[null,[{"c":[{"c":"Climate","s":146,"t":"Str"},{"s":147,"t":"Space"},{"c":"data","s":148,"t":"Str"},{"s":149,"t":"Space"},{"c":"sources","s":150,"t":"Str"}],"s":145,"t":"Plain"}]],[[{"t":"AlignDefault"},{"t":"ColWidthDefault"}],[{"t":"AlignDefault"},{"t":"ColWidthDefault"}],[{"t":"AlignDefault"},{"t":"ColWidthDefault"}]],[["",[],[]],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Source","s":152,"t":"Str"}],"s":151,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Years","s":154,"t":"Str"}],"s":153,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Variables","s":156,"t":"Str"}],"s":155,"t":"Plain"}]]]]]],[[["",[],[]],0,[],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Station","s":158,"t":"Str"},{"s":159,"t":"Space"},{"c":"A","s":160,"t":"Str"}],"s":157,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"1990-2020","s":162,"t":"Str"}],"s":161,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Temp,","s":164,"t":"Str"},{"s":165,"t":"Space"},{"c":"Precip","s":166,"t":"Str"}],"s":163,"t":"Plain"}]]]],[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Station","s":168,"t":"Str"},{"s":169,"t":"Space"},{"c":"B","s":170,"t":"Str"}],"s":167,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"1995-2020","s":172,"t":"Str"}],"s":171,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Temp,","s":174,"t":"Str"},{"s":175,"t":"Space"},{"c":"Wind","s":176,"t":"Str"}],"s":173,"t":"Plain"}]]]],[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Satellite","s":178,"t":"Str"}],"s":177,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"2000-2020","s":180,"t":"Str"}],"s":179,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"All","s":182,"t":"Str"}],"s":181,"t":"Plain"}]]]]]]],[["",[],[]],[]]],"captionS":183,"footS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[],"s":184},"headS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":185},{"a":{"classes":[],"id":null,"kvs":[]},"s":186},{"a":{"classes":[],"id":null,"kvs":[]},"s":187}],"s":188}],"s":189},"s":130,"t":"Table"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["model-architecture",[],[]],[{"c":"Model","s":191,"t":"Str"},{"s":192,"t":"Space"},{"c":"Architecture","s":193,"t":"Str"}]],"s":190,"t":"Header"},{"c":[{"c":"Our","s":195,"t":"Str"},{"s":196,"t":"Space"},{"c":"model","s":197,"t":"Str"},{"s":198,"t":"Space"},{"c":"uses","s":199,"t":"Str"},{"s":200,"t":"Space"},{"c":"a","s":201,"t":"Str"},{"s":202,"t":"Space"},{"c":"transformer","s":203,"t":"Str"},{"s":204,"t":"Space"},{"c":"architecture","s":205,"t":"Str"},{"s":206,"t":"Space"},{"c":"with","s":207,"t":"Str"},{"s":208,"t":"Space"},{"c":"attention","s":209,"t":"Str"},{"s":210,"t":"Space"},{"c":"mechanisms.","s":211,"t":"Str"},{"s":212,"t":"Space"},{"c":"The","s":213,"t":"Str"},{"s":214,"t":"Space"},{"c":"loss","s":215,"t":"Str"},{"s":216,"t":"Space"},{"c":"function","s":217,"t":"Str"},{"s":218,"t":"Space"},{"c":"is","s":219,"t":"Str"},{"s":220,"t":"Space"},{"c":"defined","s":221,"t":"Str"},{"s":222,"t":"Space"},{"c":"as:","s":225,"t":"Str"}],"s":194,"t":"Para"},{"c":[{"c":[{"t":"DisplayMath"},"\nL(\\theta) = \\frac{1}{N} \\sum_{i=1}^{N} (y_i - \\hat{y}_i)^2\n"],"s":227,"t":"Math"}],"s":226,"t":"Para"},{"c":[{"c":"where","s":229,"t":"Str"},{"s":230,"t":"Space"},{"c":[{"t":"InlineMath"},"\\theta"],"s":231,"t":"Math"},{"s":232,"t":"Space"},{"c":"represents","s":233,"t":"Str"},{"s":234,"t":"Space"},{"c":"model","s":235,"t":"Str"},{"s":236,"t":"Space"},{"c":"parameters","s":237,"t":"Str"},{"s":238,"t":"Space"},{"c":"and","s":239,"t":"Str"},{"s":240,"t":"Space"},{"c":[{"t":"InlineMath"},"N"],"s":241,"t":"Math"},{"s":242,"t":"Space"},{"c":"is","s":243,"t":"Str"},{"s":244,"t":"Space"},{"c":"the","s":245,"t":"Str"},{"s":246,"t":"Space"},{"c":"sample","s":247,"t":"Str"},{"s":248,"t":"Space"},{"c":"size.","s":249,"t":"Str"}],"s":228,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["results",[],[]],[{"c":"Results","s":251,"t":"Str"}]],"s":250,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["performance-metrics",[],[]],[{"c":"Performance","s":253,"t":"Str"},{"s":254,"t":"Space"},{"c":"Metrics","s":255,"t":"Str"}]],"s":252,"t":"Header"},{"c":[{"c":"The","s":257,"t":"Str"},{"s":258,"t":"Space"},{"c":"model","s":259,"t":"Str"},{"s":260,"t":"Space"},{"c":"achieved","s":261,"t":"Str"},{"s":262,"t":"Space"},{"c":"significant","s":263,"t":"Str"},{"s":264,"t":"Space"},{"c":"improvements:","s":267,"t":"Str"}],"s":256,"t":"Para"},{"c":[[{"c":[{"c":"RMSE:","s":272,"t":"Str"},{"s":273,"t":"Space"},{"c":"0.45","s":274,"t":"Str"},{"s":275,"t":"Space"},{"c":"(baseline:","s":280,"t":"Str"},{"s":281,"t":"Space"},{"c":"0.78)","s":284,"t":"Str"}],"s":269,"t":"Plain"}],[{"c":[{"c":[{"t":"InlineMath"},"R^2"],"s":286,"t":"Math"},{"c":":","s":287,"t":"Str"},{"s":288,"t":"Space"},{"c":"0.92","s":289,"t":"Str"},{"s":290,"t":"Space"},{"c":"(baseline:","s":295,"t":"Str"},{"s":296,"t":"Space"},{"c":"0.65)","s":299,"t":"Str"}],"s":285,"t":"Plain"}],[{"c":[{"c":"MAE:","s":303,"t":"Str"},{"s":304,"t":"Space"},{"c":"0.31","s":305,"t":"Str"},{"s":306,"t":"Space"},{"c":"(baseline:","s":311,"t":"Str"},{"s":312,"t":"Space"},{"c":"0.58)","s":315,"t":"Str"}],"s":300,"t":"Plain"}]],"s":268,"t":"BulletList"},{"c":[{"c":"See","s":317,"t":"Str"},{"s":318,"t":"Space"},{"c":[[{"citationHash":0,"citationId":"tbl-data","citationIdS":320,"citationMode":{"t":"AuthorInText"},"citationNoteNum":3,"citationPrefix":[],"citationSuffix":[]}],[{"c":"@tbl-data","s":321,"t":"Str"}]],"s":319,"t":"Cite"},{"s":322,"t":"Space"},{"c":"for","s":323,"t":"Str"},{"s":324,"t":"Space"},{"c":"data","s":325,"t":"Str"},{"s":326,"t":"Space"},{"c":"sources","s":327,"t":"Str"},{"s":328,"t":"Space"},{"c":"used","s":329,"t":"Str"},{"s":330,"t":"Space"},{"c":"in","s":331,"t":"Str"},{"s":332,"t":"Space"},{"c":"training.","s":333,"t":"Str"}],"s":316,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["discussion",[],[]],[{"c":"Discussion","s":335,"t":"Str"}]],"s":334,"t":"Header"},{"c":[{"c":"Our","s":337,"t":"Str"},{"s":338,"t":"Space"},{"c":"results","s":339,"t":"Str"},{"s":340,"t":"Space"},{"c":"demonstrate","s":341,"t":"Str"},{"s":342,"t":"Space"},{"c":"that","s":343,"t":"Str"},{"s":344,"t":"Space"},{"c":"machine","s":345,"t":"Str"},{"s":346,"t":"Space"},{"c":"learning","s":347,"t":"Str"},{"s":348,"t":"Space"},{"c":"methods","s":349,"t":"Str"},{"s":350,"t":"Space"},{"c":"can","s":351,"t":"Str"},{"s":352,"t":"Space"},{"c":"effectively","s":353,"t":"Str"},{"s":354,"t":"Space"},{"c":"capture","s":355,"t":"Str"},{"s":356,"t":"Space"},{"c":"complex","s":357,"t":"Str"},{"s":358,"t":"Space"},{"c":"patterns","s":359,"t":"Str"},{"s":360,"t":"Space"},{"c":"in","s":361,"t":"Str"},{"s":362,"t":"Space"},{"c":"climate","s":363,"t":"Str"},{"s":364,"t":"Space"},{"c":"data.","s":365,"t":"Str"},{"s":366,"t":"Space"},{"c":"However,","s":367,"t":"Str"},{"s":368,"t":"Space"},{"c":"several","s":369,"t":"Str"},{"s":370,"t":"Space"},{"c":"limitations","s":371,"t":"Str"},{"s":372,"t":"Space"},{"c":"remain","s":373,"t":"Str"},{"c":[{"c":[{"c":"Further","s":376,"t":"Str"},{"s":377,"t":"Space"},{"c":"work","s":378,"t":"Str"},{"s":379,"t":"Space"},{"c":"is","s":380,"t":"Str"},{"s":381,"t":"Space"},{"c":"needed","s":382,"t":"Str"},{"s":383,"t":"Space"},{"c":"to","s":384,"t":"Str"},{"s":385,"t":"Space"},{"c":"address","s":386,"t":"Str"},{"s":387,"t":"Space"},{"c":"regional","s":388,"t":"Str"},{"s":389,"t":"Space"},{"c":"variations","s":390,"t":"Str"}],"s":375,"t":"Para"}],"s":374,"t":"Note"},{"c":".","s":391,"t":"Str"}],"s":336,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["limitations",[],[]],[{"c":"Limitations","s":393,"t":"Str"}]],"s":392,"t":"Header"},{"c":[{"c":"The","s":395,"t":"Str"},{"s":396,"t":"Space"},{"c":"current","s":397,"t":"Str"},{"s":398,"t":"Space"},{"c":"study","s":399,"t":"Str"},{"s":400,"t":"Space"},{"c":"focuses","s":401,"t":"Str"},{"s":402,"t":"Space"},{"c":"on","s":403,"t":"Str"},{"s":404,"t":"Space"},{"c":"temperature","s":405,"t":"Str"},{"s":406,"t":"Space"},{"c":"prediction.","s":407,"t":"Str"},{"s":408,"t":"Space"},{"c":"Future","s":409,"t":"Str"},{"s":410,"t":"Space"},{"c":"work","s":411,"t":"Str"},{"s":412,"t":"Space"},{"c":"should","s":413,"t":"Str"},{"s":414,"t":"Space"},{"c":"extend","s":415,"t":"Str"},{"s":416,"t":"Space"},{"c":"to:","s":419,"t":"Str"}],"s":394,"t":"Para"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Precipitation","s":422,"t":"Str"},{"s":423,"t":"Space"},{"c":"patterns","s":424,"t":"Str"}],"s":421,"t":"Plain"}],[{"c":[{"c":"Extreme","s":426,"t":"Str"},{"s":427,"t":"Space"},{"c":"weather","s":428,"t":"Str"},{"s":429,"t":"Space"},{"c":"events","s":430,"t":"Str"}],"s":425,"t":"Plain"}],[{"c":[{"c":"Long-term","s":432,"t":"Str"},{"s":433,"t":"Space"},{"c":"trends","s":434,"t":"Str"}],"s":431,"t":"Plain"}]]],"s":420,"t":"OrderedList"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["conclusion",[],[]],[{"c":"Conclusion","s":436,"t":"Str"}]],"s":435,"t":"Header"},{"c":[{"c":"Machine","s":438,"t":"Str"},{"s":439,"t":"Space"},{"c":"learning","s":440,"t":"Str"},{"s":441,"t":"Space"},{"c":"offers","s":442,"t":"Str"},{"s":443,"t":"Space"},{"c":"promising","s":444,"t":"Str"},{"s":445,"t":"Space"},{"c":"approaches","s":446,"t":"Str"},{"s":447,"t":"Space"},{"c":"to","s":448,"t":"Str"},{"s":449,"t":"Space"},{"c":"climate","s":450,"t":"Str"},{"s":451,"t":"Space"},{"c":"prediction.","s":452,"t":"Str"},{"s":453,"t":"Space"},{"c":"The","s":454,"t":"Str"},{"s":455,"t":"Space"},{"c":"techniques","s":456,"t":"Str"},{"s":457,"t":"Space"},{"c":"presented","s":458,"t":"Str"},{"s":459,"t":"Space"},{"c":"here","s":460,"t":"Str"},{"s":461,"t":"Space"},{"c":"provide","s":462,"t":"Str"},{"s":463,"t":"Space"},{"c":"a","s":464,"t":"Str"},{"s":465,"t":"Space"},{"c":"foundation","s":466,"t":"Str"},{"s":467,"t":"Space"},{"c":"for","s":468,"t":"Str"},{"s":469,"t":"Space"},{"c":"future","s":470,"t":"Str"},{"s":471,"t":"Space"},{"c":"research","s":472,"t":"Str"},{"s":473,"t":"Space"},{"c":"in","s":474,"t":"Str"},{"s":475,"t":"Space"},{"c":"this","s":476,"t":"Str"},{"s":477,"t":"Space"},{"c":"critical","s":478,"t":"Str"},{"s":479,"t":"Space"},{"c":"domain","s":480,"t":"Str"},{"s":481,"t":"Space"},{"c":[[{"citationHash":0,"citationId":"johnson2021","citationIdS":483,"citationMode":{"t":"NormalCitation"},"citationNoteNum":4,"citationPrefix":[],"citationSuffix":[]}],[]],"s":482,"t":"Cite"},{"c":".","s":484,"t":"Str"}],"s":437,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["references",[],[]],[{"c":"References","s":486,"t":"Str"}]],"s":485,"t":"Header"},{"a":{"classes":[],"id":488,"kvs":[]},"c":[["refs",[],[]],[]],"s":487,"t":"Div"}],"meta":{"abstract":{"c":[{"c":"This","s":494,"t":"Str"},{"s":496,"t":"Space"},{"c":"paper","s":498,"t":"Str"},{"s":500,"t":"Space"},{"c":"presents","s":502,"t":"Str"},{"s":504,"t":"Space"},{"c":"a","s":506,"t":"Str"},{"s":508,"t":"Space"},{"c":"novel","s":510,"t":"Str"},{"s":512,"t":"Space"},{"c":"approach","s":514,"t":"Str"},{"s":516,"t":"Space"},{"c":"to","s":518,"t":"Str"},{"s":520,"t":"Space"},{"c":"climate","s":522,"t":"Str"},{"s":524,"t":"Space"},{"c":"prediction","s":526,"t":"Str"},{"s":528,"t":"Space"},{"c":"using","s":530,"t":"Str"},{"s":532,"t":"Space"},{"c":"machine","s":534,"t":"Str"},{"s":536,"t":"Space"},{"c":"learning","s":538,"t":"Str"},{"s":540,"t":"Space"},{"c":"techniques.","s":542,"t":"Str"},{"s":544,"t":"Space"},{"c":"We","s":546,"t":"Str"},{"s":548,"t":"Space"},{"c":"demonstrate","s":550,"t":"Str"},{"s":552,"t":"Space"},{"c":"that","s":554,"t":"Str"},{"s":556,"t":"Space"},{"c":"deep","s":558,"t":"Str"},{"s":560,"t":"Space"},{"c":"learning","s":562,"t":"Str"},{"s":564,"t":"Space"},{"c":"models","s":566,"t":"Str"},{"s":568,"t":"Space"},{"c":"can","s":570,"t":"Str"},{"s":572,"t":"Space"},{"c":"achieve","s":574,"t":"Str"},{"s":576,"t":"Space"},{"c":"significant","s":578,"t":"Str"},{"s":580,"t":"Space"},{"c":"improvements","s":582,"t":"Str"},{"s":584,"t":"Space"},{"c":"over","s":586,"t":"Str"},{"s":588,"t":"Space"},{"c":"traditional","s":590,"t":"Str"},{"s":592,"t":"Space"},{"c":"methods.","s":594,"t":"Str"}],"s":491,"t":"MetaInlines"},"affiliation":{"c":[{"c":"Department","s":599,"t":"Str"},{"s":601,"t":"Space"},{"c":"of","s":603,"t":"Str"},{"s":605,"t":"Space"},{"c":"Computer","s":607,"t":"Str"},{"s":609,"t":"Space"},{"c":"Science,","s":611,"t":"Str"},{"s":613,"t":"Space"},{"c":"University","s":615,"t":"Str"},{"s":617,"t":"Space"},{"c":"of","s":619,"t":"Str"},{"s":621,"t":"Space"},{"c":"Example","s":623,"t":"Str"}],"s":596,"t":"MetaInlines"},"author":{"c":[{"c":"Dr. Alice","s":626,"t":"Str"},{"s":629,"t":"Space"},{"c":"Smith","s":631,"t":"Str"}],"s":625,"t":"MetaInlines"},"bibliography":{"c":[{"c":"references.bib","s":636,"t":"Str"}],"s":633,"t":"MetaInlines"},"keywords":{"c":[{"c":[{"c":"machine","s":643,"t":"Str"},{"s":645,"t":"Space"},{"c":"learning","s":647,"t":"Str"}],"s":640,"t":"MetaInlines"},{"c":[{"c":"climate","s":652,"t":"Str"}],"s":649,"t":"MetaInlines"},{"c":[{"c":"prediction","s":657,"t":"Str"}],"s":654,"t":"MetaInlines"},{"c":[{"c":"deep","s":662,"t":"Str"},{"s":664,"t":"Space"},{"c":"learning","s":666,"t":"Str"}],"s":659,"t":"MetaInlines"}],"s":638,"t":"MetaList"},"title":{"c":[{"c":"Machine","s":671,"t":"Str"},{"s":673,"t":"Space"},{"c":"Learning","s":675,"t":"Str"},{"s":677,"t":"Space"},{"c":"Approaches","s":679,"t":"Str"},{"s":681,"t":"Space"},{"c":"to","s":683,"t":"Str"},{"s":685,"t":"Space"},{"c":"Climate","s":687,"t":"Str"},{"s":689,"t":"Space"},{"c":"Prediction","s":691,"t":"Str"}],"s":668,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,62,88,157,367,432,461,465,466,481,482,707,708,722,723,886,887,897,898,917,918,956,957,988,1019,1060,1099,1131,1132,1167,1168,1190,1191,1293,1294,1297,1356,1359,1360,1431,1432,1442,1443,1466,1467,1512,1513,1543,1574,1603,1604,1653,1654,1667,1668,1873,1874,1889,1890,1973,1974,2000,2026,2046,2047,2060,2061,2240,2241,2254,2255,2267,2271],"name":"ts-packages/annotated-qmd/examples/academic-paper.qmd","total_length":2272}],"metaTopLevelKeySources":{"abstract":693,"affiliation":695,"author":697,"bibliography":699,"keywords":701,"title":703},"p":[{"d":0,"r":[467,482],"t":0},{"d":0,"r":[469,481],"t":0},{"d":0,"r":[483,708],"t":0},{"d":0,"r":[483,490],"t":0},{"d":0,"r":[490,491],"t":0},{"d":0,"r":[491,501],"t":0},{"d":0,"r":[501,502],"t":0},{"d":0,"r":[502,504],"t":0},{"d":0,"r":[504,505],"t":0},{"d":0,"r":[505,506],"t":0},{"d":0,"r":[506,507],"t":0},{"d":0,"r":[507,515],"t":0},{"d":0,"r":[515,516],"t":0},{"d":0,"r":[516,525],"t":0},{"d":0,"r":[525,526],"t":0},{"d":0,"r":[526,528],"t":0},{"d":0,"r":[528,529],"t":0},{"d":0,"r":[529,535],"t":0},{"d":0,"r":[535,536],"t":0},{"d":0,"r":[536,543],"t":0},{"d":0,"r":[543,588],"t":0},{"d":0,"r":[543,588],"t":0},{"d":0,"r":[545,548],"t":0},{"d":0,"r":[548,549],"t":0},{"d":0,"r":[549,558],"t":0},{"d":0,"r":[550,558],"t":0},{"d":0,"r":[549,558],"t":0},{"d":0,"r":[558,559],"t":0},{"d":0,"r":[559,562],"t":0},{"d":0,"r":[562,563],"t":0},{"d":0,"r":[563,576],"t":0},{"d":0,"r":[576,577],"t":0},{"d":0,"r":[577,587],"t":0},{"d":0,"r":[588,589],"t":0},{"d":0,"r":[589,590],"t":0},{"d":0,"r":[590,601],"t":0},{"d":0,"r":[601,602],"t":0},{"d":0,"r":[602,613],"t":0},{"d":0,"r":[613,614],"t":0},{"d":0,"r":[614,621],"t":0},{"d":0,"r":[621,622],"t":0},{"d":0,"r":[622,626],"t":0},{"d":0,"r":[626,627],"t":0},{"d":0,"r":[627,638],"t":0},{"d":0,"r":[638,639],"t":0},{"d":0,"r":[639,643],"t":0},{"d":0,"r":[643,644],"t":0},{"d":0,"r":[644,651],"t":0},{"d":0,"r":[651,652],"t":0},{"d":0,"r":[652,656],"t":0},{"d":0,"r":[656,657],"t":0},{"d":0,"r":[657,665],"t":0},{"d":0,"r":[665,666],"t":0},{"d":0,"r":[666,676],"t":0},{"d":0,"r":[676,677],"t":0},{"d":0,"r":[677,690],"t":0},{"d":0,"r":[690,691],"t":0},{"d":0,"r":[691,693],"t":0},{"d":0,"r":[693,694],"t":0},{"d":0,"r":[694,701],"t":0},{"d":0,"r":[701,702],"t":0},{"d":0,"r":[702,707],"t":0},{"d":0,"r":[709,723],"t":0},{"d":0,"r":[712,722],"t":0},{"d":0,"r":[724,887],"t":0},{"d":0,"r":[724,727],"t":0},{"d":0,"r":[727,728],"t":0},{"d":0,"r":[728,733],"t":0},{"d":0,"r":[733,734],"t":0},{"d":0,"r":[734,736],"t":0},{"d":0,"r":[736,737],"t":0},{"d":0,"r":[737,744],"t":0},{"d":0,"r":[744,745],"t":0},{"d":0,"r":[745,752],"t":0},{"d":0,"r":[752,753],"t":0},{"d":0,"r":[753,756],"t":0},{"d":0,"r":[756,757],"t":0},{"d":0,"r":[757,764],"t":0},{"d":0,"r":[764,765],"t":0},{"d":0,"r":[765,778],"t":0},{"d":0,"r":[778,779],"t":0},{"d":0,"r":[779,783],"t":0},{"d":0,"r":[783,784],"t":0},{"d":0,"r":[784,787],"t":0},{"d":0,"r":[787,788],"t":0},{"d":0,"r":[788,792],"t":0},{"d":0,"r":[792,793],"t":0},{"d":0,"r":[793,800],"t":0},{"d":0,"r":[800,801],"t":0},{"d":0,"r":[801,823],"t":0},{"d":0,"r":[803,810],"t":0},{"d":0,"r":[813,822],"t":0},{"d":0,"r":[811,812],"t":0},{"d":0,"r":[823,824],"t":0},{"d":0,"r":[824,825],"t":0},{"d":0,"r":[825,831],"t":0},{"d":0,"r":[831,832],"t":0},{"d":0,"r":[832,840],"t":0},{"d":0,"r":[840,841],"t":0},{"d":0,"r":[841,843],"t":0},{"d":0,"r":[843,844],"t":0},{"d":0,"r":[844,857],"t":0},{"d":0,"r":[857,858],"t":0},{"d":0,"r":[858,863],"t":0},{"d":0,"r":[863,864],"t":0},{"d":0,"r":[864,870],"t":0},{"d":0,"r":[870,871],"t":0},{"d":0,"r":[871,874],"t":0},{"d":0,"r":[874,875],"t":0},{"d":0,"r":[875,886],"t":0},{"d":0,"r":[888,898],"t":0},{"d":0,"r":[890,897],"t":0},{"d":0,"r":[899,918],"t":0},{"d":0,"r":[902,906],"t":0},{"d":0,"r":[906,907],"t":0},{"d":0,"r":[907,917],"t":0},{"d":0,"r":[919,957],"t":0},{"d":0,"r":[919,921],"t":0},{"d":0,"r":[921,922],"t":0},{"d":0,"r":[922,931],"t":0},{"d":0,"r":[931,932],"t":0},{"d":0,"r":[932,936],"t":0},{"d":0,"r":[936,937],"t":0},{"d":0,"r":[937,941],"t":0},{"d":0,"r":[941,942],"t":0},{"d":0,"r":[942,947],"t":0},{"d":0,"r":[947,948],"t":0},{"d":0,"r":[948,955],"t":0},{"d":0,"r":[955,956],"t":0},{"d":[[127,0,7],[128,7,1]],"r":[0,8],"t":2},{"d":0,"r":[958,1168],"t":0},{"d":0,"r":[1157,1166],"t":0},{"d":0,"r":[1022,1031],"t":0},{"d":0,"r":[1034,1043],"t":0},{"d":0,"r":[1046,1058],"t":0},{"d":0,"r":[1020,1060],"t":0},{"d":0,"r":[1063,1072],"t":0},{"d":0,"r":[1075,1084],"t":0},{"d":0,"r":[1087,1097],"t":0},{"d":0,"r":[1061,1099],"t":0},{"d":0,"r":[1102,1111],"t":0},{"d":0,"r":[1114,1123],"t":0},{"d":0,"r":[1126,1129],"t":0},{"d":0,"r":[1100,1131],"t":0},{"d":0,"r":[958,1132],"t":0},{"d":0,"r":[1133,1168],"t":0},{"d":0,"r":[1135,1142],"t":0},{"d":0,"r":[1142,1143],"t":0},{"d":0,"r":[1143,1147],"t":0},{"d":0,"r":[1147,1148],"t":0},{"d":0,"r":[1148,1155],"t":0},{"d":0,"r":[960,966],"t":0},{"d":0,"r":[960,966],"t":0},{"d":0,"r":[969,974],"t":0},{"d":0,"r":[969,974],"t":0},{"d":0,"r":[977,986],"t":0},{"d":0,"r":[977,986],"t":0},{"d":0,"r":[1022,1031],"t":0},{"d":0,"r":[1022,1029],"t":0},{"d":0,"r":[1029,1030],"t":0},{"d":0,"r":[1030,1031],"t":0},{"d":0,"r":[1034,1043],"t":0},{"d":0,"r":[1034,1043],"t":0},{"d":0,"r":[1046,1058],"t":0},{"d":0,"r":[1046,1051],"t":0},{"d":0,"r":[1051,1052],"t":0},{"d":0,"r":[1052,1058],"t":0},{"d":0,"r":[1063,1072],"t":0},{"d":0,"r":[1063,1070],"t":0},{"d":0,"r":[1070,1071],"t":0},{"d":0,"r":[1071,1072],"t":0},{"d":0,"r":[1075,1084],"t":0},{"d":0,"r":[1075,1084],"t":0},{"d":0,"r":[1087,1097],"t":0},{"d":0,"r":[1087,1092],"t":0},{"d":0,"r":[1092,1093],"t":0},{"d":0,"r":[1093,1097],"t":0},{"d":0,"r":[1102,1111],"t":0},{"d":0,"r":[1102,1111],"t":0},{"d":0,"r":[1114,1123],"t":0},{"d":0,"r":[1114,1123],"t":0},{"d":0,"r":[1126,1129],"t":0},{"d":0,"r":[1126,1129],"t":0},{"d":0,"r":[1133,1168],"t":0},{"d":0,"r":[958,1132],"t":0},{"d":0,"r":[960,966],"t":0},{"d":0,"r":[969,974],"t":0},{"d":0,"r":[977,986],"t":0},{"d":0,"r":[958,988],"t":0},{"d":0,"r":[958,1132],"t":0},{"d":0,"r":[1169,1191],"t":0},{"d":0,"r":[1172,1177],"t":0},{"d":0,"r":[1177,1178],"t":0},{"d":0,"r":[1178,1190],"t":0},{"d":0,"r":[1192,1294],"t":0},{"d":0,"r":[1192,1195],"t":0},{"d":0,"r":[1195,1196],"t":0},{"d":0,"r":[1196,1201],"t":0},{"d":0,"r":[1201,1202],"t":0},{"d":0,"r":[1202,1206],"t":0},{"d":0,"r":[1206,1207],"t":0},{"d":0,"r":[1207,1208],"t":0},{"d":0,"r":[1208,1209],"t":0},{"d":0,"r":[1209,1220],"t":0},{"d":0,"r":[1220,1221],"t":0},{"d":0,"r":[1221,1233],"t":0},{"d":0,"r":[1233,1234],"t":0},{"d":0,"r":[1234,1238],"t":0},{"d":0,"r":[1238,1239],"t":0},{"d":0,"r":[1239,1248],"t":0},{"d":0,"r":[1248,1249],"t":0},{"d":0,"r":[1249,1260],"t":0},{"d":0,"r":[1260,1261],"t":0},{"d":0,"r":[1261,1264],"t":0},{"d":0,"r":[1264,1265],"t":0},{"d":0,"r":[1265,1269],"t":0},{"d":0,"r":[1269,1270],"t":0},{"d":0,"r":[1270,1278],"t":0},{"d":0,"r":[1278,1279],"t":0},{"d":0,"r":[1279,1281],"t":0},{"d":0,"r":[1281,1282],"t":0},{"d":0,"r":[1282,1289],"t":0},{"d":0,"r":[1289,1290],"t":0},{"d":0,"r":[1290,1292],"t":0},{"d":0,"r":[1292,1293],"t":0},{"d":[[223,0,2],[224,2,1]],"r":[0,3],"t":2},{"d":0,"r":[1295,1360],"t":0},{"d":0,"r":[1295,1359],"t":0},{"d":0,"r":[1361,1432],"t":0},{"d":0,"r":[1361,1366],"t":0},{"d":0,"r":[1366,1367],"t":0},{"d":0,"r":[1367,1375],"t":0},{"d":0,"r":[1375,1376],"t":0},{"d":0,"r":[1376,1386],"t":0},{"d":0,"r":[1386,1387],"t":0},{"d":0,"r":[1387,1392],"t":0},{"d":0,"r":[1392,1393],"t":0},{"d":0,"r":[1393,1403],"t":0},{"d":0,"r":[1403,1404],"t":0},{"d":0,"r":[1404,1407],"t":0},{"d":0,"r":[1407,1408],"t":0},{"d":0,"r":[1408,1411],"t":0},{"d":0,"r":[1411,1412],"t":0},{"d":0,"r":[1412,1414],"t":0},{"d":0,"r":[1414,1415],"t":0},{"d":0,"r":[1415,1418],"t":0},{"d":0,"r":[1418,1419],"t":0},{"d":0,"r":[1419,1425],"t":0},{"d":0,"r":[1425,1426],"t":0},{"d":0,"r":[1426,1431],"t":0},{"d":0,"r":[1433,1443],"t":0},{"d":0,"r":[1435,1442],"t":0},{"d":0,"r":[1444,1467],"t":0},{"d":0,"r":[1447,1458],"t":0},{"d":0,"r":[1458,1459],"t":0},{"d":0,"r":[1459,1466],"t":0},{"d":0,"r":[1468,1513],"t":0},{"d":0,"r":[1468,1471],"t":0},{"d":0,"r":[1471,1472],"t":0},{"d":0,"r":[1472,1477],"t":0},{"d":0,"r":[1477,1478],"t":0},{"d":0,"r":[1478,1486],"t":0},{"d":0,"r":[1486,1487],"t":0},{"d":0,"r":[1487,1498],"t":0},{"d":0,"r":[1498,1499],"t":0},{"d":0,"r":[1499,1511],"t":0},{"d":0,"r":[1511,1512],"t":0},{"d":[[265,0,12],[266,12,1]],"r":[0,13],"t":2},{"d":0,"r":[1514,1605],"t":0},{"d":0,"r":[1516,1544],"t":0},{"d":0,"r":[1516,1520],"t":0},{"d":0,"r":[1520,1521],"t":0},{"d":[[270,0,4],[271,4,1]],"r":[0,5],"t":2},{"d":0,"r":[1521,1522],"t":0},{"d":0,"r":[1522,1526],"t":0},{"d":0,"r":[1526,1527],"t":0},{"d":0,"r":[1527,1528],"t":0},{"d":0,"r":[1528,1536],"t":0},{"d":[[276,0,1],[277,1,8]],"r":[0,9],"t":2},{"d":0,"r":[1536,1537],"t":0},{"d":[[278,0,9],[279,9,1]],"r":[0,10],"t":2},{"d":0,"r":[1537,1538],"t":0},{"d":0,"r":[1538,1542],"t":0},{"d":0,"r":[1542,1543],"t":0},{"d":[[282,0,4],[283,4,1]],"r":[0,5],"t":2},{"d":0,"r":[1546,1575],"t":0},{"d":0,"r":[1546,1551],"t":0},{"d":0,"r":[1551,1552],"t":0},{"d":0,"r":[1552,1553],"t":0},{"d":0,"r":[1553,1557],"t":0},{"d":0,"r":[1557,1558],"t":0},{"d":0,"r":[1558,1559],"t":0},{"d":0,"r":[1559,1567],"t":0},{"d":[[291,0,1],[292,1,8]],"r":[0,9],"t":2},{"d":0,"r":[1567,1568],"t":0},{"d":[[293,0,9],[294,9,1]],"r":[0,10],"t":2},{"d":0,"r":[1568,1569],"t":0},{"d":0,"r":[1569,1573],"t":0},{"d":0,"r":[1573,1574],"t":0},{"d":[[297,0,4],[298,4,1]],"r":[0,5],"t":2},{"d":0,"r":[1577,1604],"t":0},{"d":0,"r":[1577,1580],"t":0},{"d":0,"r":[1580,1581],"t":0},{"d":[[301,0,3],[302,3,1]],"r":[0,4],"t":2},{"d":0,"r":[1581,1582],"t":0},{"d":0,"r":[1582,1586],"t":0},{"d":0,"r":[1586,1587],"t":0},{"d":0,"r":[1587,1588],"t":0},{"d":0,"r":[1588,1596],"t":0},{"d":[[307,0,1],[308,1,8]],"r":[0,9],"t":2},{"d":0,"r":[1596,1597],"t":0},{"d":[[309,0,9],[310,9,1]],"r":[0,10],"t":2},{"d":0,"r":[1597,1598],"t":0},{"d":0,"r":[1598,1602],"t":0},{"d":0,"r":[1602,1603],"t":0},{"d":[[313,0,4],[314,4,1]],"r":[0,5],"t":2},{"d":0,"r":[1605,1654],"t":0},{"d":0,"r":[1605,1608],"t":0},{"d":0,"r":[1608,1609],"t":0},{"d":0,"r":[1609,1618],"t":0},{"d":0,"r":[1610,1618],"t":0},{"d":0,"r":[1609,1618],"t":0},{"d":0,"r":[1618,1619],"t":0},{"d":0,"r":[1619,1622],"t":0},{"d":0,"r":[1622,1623],"t":0},{"d":0,"r":[1623,1627],"t":0},{"d":0,"r":[1627,1628],"t":0},{"d":0,"r":[1628,1635],"t":0},{"d":0,"r":[1635,1636],"t":0},{"d":0,"r":[1636,1640],"t":0},{"d":0,"r":[1640,1641],"t":0},{"d":0,"r":[1641,1643],"t":0},{"d":0,"r":[1643,1644],"t":0},{"d":0,"r":[1644,1653],"t":0},{"d":0,"r":[1655,1668],"t":0},{"d":0,"r":[1657,1667],"t":0},{"d":0,"r":[1669,1874],"t":0},{"d":0,"r":[1669,1672],"t":0},{"d":0,"r":[1672,1673],"t":0},{"d":0,"r":[1673,1680],"t":0},{"d":0,"r":[1680,1681],"t":0},{"d":0,"r":[1681,1692],"t":0},{"d":0,"r":[1692,1693],"t":0},{"d":0,"r":[1693,1697],"t":0},{"d":0,"r":[1697,1698],"t":0},{"d":0,"r":[1698,1705],"t":0},{"d":0,"r":[1705,1706],"t":0},{"d":0,"r":[1706,1714],"t":0},{"d":0,"r":[1714,1715],"t":0},{"d":0,"r":[1715,1722],"t":0},{"d":0,"r":[1722,1723],"t":0},{"d":0,"r":[1723,1726],"t":0},{"d":0,"r":[1726,1727],"t":0},{"d":0,"r":[1727,1738],"t":0},{"d":0,"r":[1738,1739],"t":0},{"d":0,"r":[1739,1746],"t":0},{"d":0,"r":[1746,1747],"t":0},{"d":0,"r":[1747,1754],"t":0},{"d":0,"r":[1754,1755],"t":0},{"d":0,"r":[1755,1763],"t":0},{"d":0,"r":[1763,1764],"t":0},{"d":0,"r":[1764,1766],"t":0},{"d":0,"r":[1766,1767],"t":0},{"d":0,"r":[1767,1774],"t":0},{"d":0,"r":[1774,1775],"t":0},{"d":0,"r":[1775,1780],"t":0},{"d":0,"r":[1780,1781],"t":0},{"d":0,"r":[1781,1789],"t":0},{"d":0,"r":[1789,1790],"t":0},{"d":0,"r":[1790,1797],"t":0},{"d":0,"r":[1797,1798],"t":0},{"d":0,"r":[1798,1809],"t":0},{"d":0,"r":[1809,1810],"t":0},{"d":0,"r":[1810,1816],"t":0},{"d":0,"r":[1816,1872],"t":0},{"d":0,"r":[1816,1872],"t":0},{"d":0,"r":[1818,1825],"t":0},{"d":0,"r":[1825,1826],"t":0},{"d":0,"r":[1826,1830],"t":0},{"d":0,"r":[1830,1831],"t":0},{"d":0,"r":[1831,1833],"t":0},{"d":0,"r":[1833,1834],"t":0},{"d":0,"r":[1834,1840],"t":0},{"d":0,"r":[1840,1841],"t":0},{"d":0,"r":[1841,1843],"t":0},{"d":0,"r":[1843,1844],"t":0},{"d":0,"r":[1844,1851],"t":0},{"d":0,"r":[1851,1852],"t":0},{"d":0,"r":[1852,1860],"t":0},{"d":0,"r":[1860,1861],"t":0},{"d":0,"r":[1861,1871],"t":0},{"d":0,"r":[1872,1873],"t":0},{"d":0,"r":[1875,1890],"t":0},{"d":0,"r":[1878,1889],"t":0},{"d":0,"r":[1891,1974],"t":0},{"d":0,"r":[1891,1894],"t":0},{"d":0,"r":[1894,1895],"t":0},{"d":0,"r":[1895,1902],"t":0},{"d":0,"r":[1902,1903],"t":0},{"d":0,"r":[1903,1908],"t":0},{"d":0,"r":[1908,1909],"t":0},{"d":0,"r":[1909,1916],"t":0},{"d":0,"r":[1916,1917],"t":0},{"d":0,"r":[1917,1919],"t":0},{"d":0,"r":[1919,1920],"t":0},{"d":0,"r":[1920,1931],"t":0},{"d":0,"r":[1931,1932],"t":0},{"d":0,"r":[1932,1943],"t":0},{"d":0,"r":[1943,1944],"t":0},{"d":0,"r":[1944,1950],"t":0},{"d":0,"r":[1950,1951],"t":0},{"d":0,"r":[1951,1955],"t":0},{"d":0,"r":[1955,1956],"t":0},{"d":0,"r":[1956,1962],"t":0},{"d":0,"r":[1962,1963],"t":0},{"d":0,"r":[1963,1969],"t":0},{"d":0,"r":[1969,1970],"t":0},{"d":0,"r":[1970,1972],"t":0},{"d":0,"r":[1972,1973],"t":0},{"d":[[417,0,2],[418,2,1]],"r":[0,3],"t":2},{"d":0,"r":[1975,2048],"t":0},{"d":0,"r":[1978,2001],"t":0},{"d":0,"r":[1978,1991],"t":0},{"d":0,"r":[1991,1992],"t":0},{"d":0,"r":[1992,2000],"t":0},{"d":0,"r":[2004,2027],"t":0},{"d":0,"r":[2004,2011],"t":0},{"d":0,"r":[2011,2012],"t":0},{"d":0,"r":[2012,2019],"t":0},{"d":0,"r":[2019,2020],"t":0},{"d":0,"r":[2020,2026],"t":0},{"d":0,"r":[2030,2047],"t":0},{"d":0,"r":[2030,2039],"t":0},{"d":0,"r":[2039,2040],"t":0},{"d":0,"r":[2040,2046],"t":0},{"d":0,"r":[2048,2061],"t":0},{"d":0,"r":[2050,2060],"t":0},{"d":0,"r":[2062,2241],"t":0},{"d":0,"r":[2062,2069],"t":0},{"d":0,"r":[2069,2070],"t":0},{"d":0,"r":[2070,2078],"t":0},{"d":0,"r":[2078,2079],"t":0},{"d":0,"r":[2079,2085],"t":0},{"d":0,"r":[2085,2086],"t":0},{"d":0,"r":[2086,2095],"t":0},{"d":0,"r":[2095,2096],"t":0},{"d":0,"r":[2096,2106],"t":0},{"d":0,"r":[2106,2107],"t":0},{"d":0,"r":[2107,2109],"t":0},{"d":0,"r":[2109,2110],"t":0},{"d":0,"r":[2110,2117],"t":0},{"d":0,"r":[2117,2118],"t":0},{"d":0,"r":[2118,2129],"t":0},{"d":0,"r":[2129,2130],"t":0},{"d":0,"r":[2130,2133],"t":0},{"d":0,"r":[2133,2134],"t":0},{"d":0,"r":[2134,2144],"t":0},{"d":0,"r":[2144,2145],"t":0},{"d":0,"r":[2145,2154],"t":0},{"d":0,"r":[2154,2155],"t":0},{"d":0,"r":[2155,2159],"t":0},{"d":0,"r":[2159,2160],"t":0},{"d":0,"r":[2160,2167],"t":0},{"d":0,"r":[2167,2168],"t":0},{"d":0,"r":[2168,2169],"t":0},{"d":0,"r":[2169,2170],"t":0},{"d":0,"r":[2170,2180],"t":0},{"d":0,"r":[2180,2181],"t":0},{"d":0,"r":[2181,2184],"t":0},{"d":0,"r":[2184,2185],"t":0},{"d":0,"r":[2185,2191],"t":0},{"d":0,"r":[2191,2192],"t":0},{"d":0,"r":[2192,2200],"t":0},{"d":0,"r":[2200,2201],"t":0},{"d":0,"r":[2201,2203],"t":0},{"d":0,"r":[2203,2204],"t":0},{"d":0,"r":[2204,2208],"t":0},{"d":0,"r":[2208,2209],"t":0},{"d":0,"r":[2209,2217],"t":0},{"d":0,"r":[2217,2218],"t":0},{"d":0,"r":[2218,2224],"t":0},{"d":0,"r":[2224,2225],"t":0},{"d":0,"r":[2225,2239],"t":0},{"d":0,"r":[2227,2238],"t":0},{"d":0,"r":[2239,2240],"t":0},{"d":0,"r":[2242,2255],"t":0},{"d":0,"r":[2244,2254],"t":0},{"d":0,"r":[2256,2272],"t":0},{"d":0,"r":[2261,2266],"t":0},{"d":0,"r":[0,466],"t":0},{"d":489,"r":[4,461],"t":1},{"d":490,"r":[164,363],"t":1},{"d":489,"r":[4,461],"t":1},{"d":492,"r":[165,362],"t":1},{"d":493,"r":[0,4],"t":1},{"d":492,"r":[165,362],"t":1},{"d":495,"r":[4,5],"t":1},{"d":492,"r":[165,362],"t":1},{"d":497,"r":[5,10],"t":1},{"d":492,"r":[165,362],"t":1},{"d":499,"r":[10,11],"t":1},{"d":492,"r":[165,362],"t":1},{"d":501,"r":[11,19],"t":1},{"d":492,"r":[165,362],"t":1},{"d":503,"r":[19,20],"t":1},{"d":492,"r":[165,362],"t":1},{"d":505,"r":[20,21],"t":1},{"d":492,"r":[165,362],"t":1},{"d":507,"r":[21,22],"t":1},{"d":492,"r":[165,362],"t":1},{"d":509,"r":[22,27],"t":1},{"d":492,"r":[165,362],"t":1},{"d":511,"r":[27,28],"t":1},{"d":492,"r":[165,362],"t":1},{"d":513,"r":[28,36],"t":1},{"d":492,"r":[165,362],"t":1},{"d":515,"r":[36,37],"t":1},{"d":492,"r":[165,362],"t":1},{"d":517,"r":[37,39],"t":1},{"d":492,"r":[165,362],"t":1},{"d":519,"r":[39,40],"t":1},{"d":492,"r":[165,362],"t":1},{"d":521,"r":[40,47],"t":1},{"d":492,"r":[165,362],"t":1},{"d":523,"r":[47,48],"t":1},{"d":492,"r":[165,362],"t":1},{"d":525,"r":[48,58],"t":1},{"d":492,"r":[165,362],"t":1},{"d":527,"r":[58,59],"t":1},{"d":492,"r":[165,362],"t":1},{"d":529,"r":[59,64],"t":1},{"d":492,"r":[165,362],"t":1},{"d":531,"r":[64,65],"t":1},{"d":492,"r":[165,362],"t":1},{"d":533,"r":[65,72],"t":1},{"d":492,"r":[165,362],"t":1},{"d":535,"r":[72,73],"t":1},{"d":492,"r":[165,362],"t":1},{"d":537,"r":[73,81],"t":1},{"d":492,"r":[165,362],"t":1},{"d":539,"r":[81,82],"t":1},{"d":492,"r":[165,362],"t":1},{"d":541,"r":[82,93],"t":1},{"d":492,"r":[165,362],"t":1},{"d":543,"r":[93,94],"t":1},{"d":492,"r":[165,362],"t":1},{"d":545,"r":[94,96],"t":1},{"d":492,"r":[165,362],"t":1},{"d":547,"r":[96,97],"t":1},{"d":492,"r":[165,362],"t":1},{"d":549,"r":[97,108],"t":1},{"d":492,"r":[165,362],"t":1},{"d":551,"r":[108,109],"t":1},{"d":492,"r":[165,362],"t":1},{"d":553,"r":[109,113],"t":1},{"d":492,"r":[165,362],"t":1},{"d":555,"r":[113,114],"t":1},{"d":492,"r":[165,362],"t":1},{"d":557,"r":[114,118],"t":1},{"d":492,"r":[165,362],"t":1},{"d":559,"r":[118,119],"t":1},{"d":492,"r":[165,362],"t":1},{"d":561,"r":[119,127],"t":1},{"d":492,"r":[165,362],"t":1},{"d":563,"r":[127,128],"t":1},{"d":492,"r":[165,362],"t":1},{"d":565,"r":[128,134],"t":1},{"d":492,"r":[165,362],"t":1},{"d":567,"r":[134,135],"t":1},{"d":492,"r":[165,362],"t":1},{"d":569,"r":[135,138],"t":1},{"d":492,"r":[165,362],"t":1},{"d":571,"r":[138,139],"t":1},{"d":492,"r":[165,362],"t":1},{"d":573,"r":[139,146],"t":1},{"d":492,"r":[165,362],"t":1},{"d":575,"r":[146,147],"t":1},{"d":492,"r":[165,362],"t":1},{"d":577,"r":[147,158],"t":1},{"d":492,"r":[165,362],"t":1},{"d":579,"r":[158,159],"t":1},{"d":492,"r":[165,362],"t":1},{"d":581,"r":[159,171],"t":1},{"d":492,"r":[165,362],"t":1},{"d":583,"r":[171,172],"t":1},{"d":492,"r":[165,362],"t":1},{"d":585,"r":[172,176],"t":1},{"d":492,"r":[165,362],"t":1},{"d":587,"r":[176,177],"t":1},{"d":492,"r":[165,362],"t":1},{"d":589,"r":[177,188],"t":1},{"d":492,"r":[165,362],"t":1},{"d":591,"r":[188,189],"t":1},{"d":492,"r":[165,362],"t":1},{"d":593,"r":[189,197],"t":1},{"d":489,"r":[4,461],"t":1},{"d":595,"r":[98,153],"t":1},{"d":489,"r":[4,461],"t":1},{"d":597,"r":[99,152],"t":1},{"d":598,"r":[0,10],"t":1},{"d":597,"r":[99,152],"t":1},{"d":600,"r":[10,11],"t":1},{"d":597,"r":[99,152],"t":1},{"d":602,"r":[11,13],"t":1},{"d":597,"r":[99,152],"t":1},{"d":604,"r":[13,14],"t":1},{"d":597,"r":[99,152],"t":1},{"d":606,"r":[14,22],"t":1},{"d":597,"r":[99,152],"t":1},{"d":608,"r":[22,23],"t":1},{"d":597,"r":[99,152],"t":1},{"d":610,"r":[23,31],"t":1},{"d":597,"r":[99,152],"t":1},{"d":612,"r":[31,32],"t":1},{"d":597,"r":[99,152],"t":1},{"d":614,"r":[32,42],"t":1},{"d":597,"r":[99,152],"t":1},{"d":616,"r":[42,43],"t":1},{"d":597,"r":[99,152],"t":1},{"d":618,"r":[43,45],"t":1},{"d":597,"r":[99,152],"t":1},{"d":620,"r":[45,46],"t":1},{"d":597,"r":[99,152],"t":1},{"d":622,"r":[46,53],"t":1},{"d":489,"r":[4,461],"t":1},{"d":624,"r":[67,84],"t":1},{"d":0,"r":[72,81],"t":0},{"d":489,"r":[4,461],"t":1},{"d":627,"r":[68,83],"t":1},{"d":628,"r":[9,10],"t":1},{"d":627,"r":[68,83],"t":1},{"d":630,"r":[10,15],"t":1},{"d":489,"r":[4,461],"t":1},{"d":632,"r":[443,457],"t":1},{"d":489,"r":[4,461],"t":1},{"d":634,"r":[443,457],"t":1},{"d":635,"r":[0,14],"t":1},{"d":489,"r":[4,461],"t":1},{"d":637,"r":[374,428],"t":1},{"d":489,"r":[4,461],"t":1},{"d":639,"r":[375,391],"t":1},{"d":489,"r":[4,461],"t":1},{"d":641,"r":[375,391],"t":1},{"d":642,"r":[0,7],"t":1},{"d":641,"r":[375,391],"t":1},{"d":644,"r":[7,8],"t":1},{"d":641,"r":[375,391],"t":1},{"d":646,"r":[8,16],"t":1},{"d":489,"r":[4,461],"t":1},{"d":648,"r":[393,400],"t":1},{"d":489,"r":[4,461],"t":1},{"d":650,"r":[393,400],"t":1},{"d":651,"r":[0,7],"t":1},{"d":489,"r":[4,461],"t":1},{"d":653,"r":[402,412],"t":1},{"d":489,"r":[4,461],"t":1},{"d":655,"r":[402,412],"t":1},{"d":656,"r":[0,10],"t":1},{"d":489,"r":[4,461],"t":1},{"d":658,"r":[414,427],"t":1},{"d":489,"r":[4,461],"t":1},{"d":660,"r":[414,427],"t":1},{"d":661,"r":[0,4],"t":1},{"d":660,"r":[414,427],"t":1},{"d":663,"r":[4,5],"t":1},{"d":660,"r":[414,427],"t":1},{"d":665,"r":[5,13],"t":1},{"d":489,"r":[4,461],"t":1},{"d":667,"r":[7,58],"t":1},{"d":489,"r":[4,461],"t":1},{"d":669,"r":[8,57],"t":1},{"d":670,"r":[0,7],"t":1},{"d":669,"r":[8,57],"t":1},{"d":672,"r":[7,8],"t":1},{"d":669,"r":[8,57],"t":1},{"d":674,"r":[8,16],"t":1},{"d":669,"r":[8,57],"t":1},{"d":676,"r":[16,17],"t":1},{"d":669,"r":[8,57],"t":1},{"d":678,"r":[17,27],"t":1},{"d":669,"r":[8,57],"t":1},{"d":680,"r":[27,28],"t":1},{"d":669,"r":[8,57],"t":1},{"d":682,"r":[28,30],"t":1},{"d":669,"r":[8,57],"t":1},{"d":684,"r":[30,31],"t":1},{"d":669,"r":[8,57],"t":1},{"d":686,"r":[31,38],"t":1},{"d":669,"r":[8,57],"t":1},{"d":688,"r":[38,39],"t":1},{"d":669,"r":[8,57],"t":1},{"d":690,"r":[39,49],"t":1},{"d":489,"r":[4,461],"t":1},{"d":692,"r":[154,162],"t":1},{"d":489,"r":[4,461],"t":1},{"d":694,"r":[85,96],"t":1},{"d":489,"r":[4,461],"t":1},{"d":696,"r":[59,65],"t":1},{"d":489,"r":[4,461],"t":1},{"d":698,"r":[429,441],"t":1},{"d":489,"r":[4,461],"t":1},{"d":700,"r":[364,372],"t":1},{"d":489,"r":[4,461],"t":1},{"d":702,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["introduction",[],[]],[{"c":"Introduction","s":1,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"Climate","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"prediction","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"is","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"a","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"critical","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"challenge","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"in","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"modern","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"science","s":19,"t":"Str"},{"c":[{"c":[{"c":"See","s":22,"t":"Str"},{"s":23,"t":"Space"},{"c":[[{"citationHash":0,"citationId":"ipcc2021","citationIdS":25,"citationMode":{"t":"AuthorInText"},"citationNoteNum":1,"citationPrefix":[],"citationSuffix":[]}],[{"c":"@ipcc2021","s":26,"t":"Str"}]],"s":24,"t":"Cite"},{"s":27,"t":"Space"},{"c":"for","s":28,"t":"Str"},{"s":29,"t":"Space"},{"c":"comprehensive","s":30,"t":"Str"},{"s":31,"t":"Space"},{"c":"discussion","s":32,"t":"Str"}],"s":21,"t":"Para"}],"s":20,"t":"Note"},{"c":".","s":33,"t":"Str"},{"s":34,"t":"Space"},{"c":"Traditional","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"statistical","s":37,"t":"Str"},{"s":38,"t":"Space"},{"c":"methods","s":39,"t":"Str"},{"s":40,"t":"Space"},{"c":"have","s":41,"t":"Str"},{"s":42,"t":"Space"},{"c":"limitations","s":43,"t":"Str"},{"s":44,"t":"Space"},{"c":"when","s":45,"t":"Str"},{"s":46,"t":"Space"},{"c":"dealing","s":47,"t":"Str"},{"s":48,"t":"Space"},{"c":"with","s":49,"t":"Str"},{"s":50,"t":"Space"},{"c":"complex,","s":51,"t":"Str"},{"s":52,"t":"Space"},{"c":"non-linear","s":53,"t":"Str"},{"s":54,"t":"Space"},{"c":"relationships","s":55,"t":"Str"},{"s":56,"t":"Space"},{"c":"in","s":57,"t":"Str"},{"s":58,"t":"Space"},{"c":"climate","s":59,"t":"Str"},{"s":60,"t":"Space"},{"c":"data.","s":61,"t":"Str"}],"s":2,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["background",[],[]],[{"c":"Background","s":63,"t":"Str"}]],"s":62,"t":"Header"},{"c":[{"c":"The","s":65,"t":"Str"},{"s":66,"t":"Space"},{"c":"field","s":67,"t":"Str"},{"s":68,"t":"Space"},{"c":"of","s":69,"t":"Str"},{"s":70,"t":"Space"},{"c":"climate","s":71,"t":"Str"},{"s":72,"t":"Space"},{"c":"science","s":73,"t":"Str"},{"s":74,"t":"Space"},{"c":"has","s":75,"t":"Str"},{"s":76,"t":"Space"},{"c":"evolved","s":77,"t":"Str"},{"s":78,"t":"Space"},{"c":"significantly","s":79,"t":"Str"},{"s":80,"t":"Space"},{"c":"over","s":81,"t":"Str"},{"s":82,"t":"Space"},{"c":"the","s":83,"t":"Str"},{"s":84,"t":"Space"},{"c":"past","s":85,"t":"Str"},{"s":86,"t":"Space"},{"c":"decades","s":87,"t":"Str"},{"s":88,"t":"Space"},{"c":[[{"citationHash":0,"citationId":"doe2020","citationIdS":90,"citationMode":{"t":"NormalCitation"},"citationNoteNum":2,"citationPrefix":[],"citationSuffix":[]},{"citationHash":0,"citationId":"smith2019","citationIdS":91,"citationMode":{"t":"NormalCitation"},"citationNoteNum":2,"citationPrefix":[{"s":92,"t":"Space"}],"citationSuffix":[]}],[]],"s":89,"t":"Cite"},{"c":".","s":93,"t":"Str"},{"s":94,"t":"Space"},{"c":"Recent","s":95,"t":"Str"},{"s":96,"t":"Space"},{"c":"advances","s":97,"t":"Str"},{"s":98,"t":"Space"},{"c":"in","s":99,"t":"Str"},{"s":100,"t":"Space"},{"c":"computational","s":101,"t":"Str"},{"s":102,"t":"Space"},{"c":"power","s":103,"t":"Str"},{"s":104,"t":"Space"},{"c":"enable","s":105,"t":"Str"},{"s":106,"t":"Space"},{"c":"new","s":107,"t":"Str"},{"s":108,"t":"Space"},{"c":"approaches.","s":109,"t":"Str"}],"s":64,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["methods",[],[]],[{"c":"Methods","s":111,"t":"Str"}]],"s":110,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["data-collection",[],[]],[{"c":"Data","s":113,"t":"Str"},{"s":114,"t":"Space"},{"c":"Collection","s":115,"t":"Str"}]],"s":112,"t":"Header"},{"c":[{"c":"We","s":117,"t":"Str"},{"s":118,"t":"Space"},{"c":"collected","s":119,"t":"Str"},{"s":120,"t":"Space"},{"c":"data","s":121,"t":"Str"},{"s":122,"t":"Space"},{"c":"from","s":123,"t":"Str"},{"s":124,"t":"Space"},{"c":"three","s":125,"t":"Str"},{"s":126,"t":"Space"},{"c":"sources:","s":129,"t":"Str"}],"s":116,"t":"Para"},{"a":{"classes":[],"id":131,"kvs":[]},"bodiesS":[{"a":{"classes":[],"id":null,"kvs":[]},"bodyS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":132},{"a":{"classes":[],"id":null,"kvs":[]},"s":133},{"a":{"classes":[],"id":null,"kvs":[]},"s":134}],"s":135},{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":136},{"a":{"classes":[],"id":null,"kvs":[]},"s":137},{"a":{"classes":[],"id":null,"kvs":[]},"s":138}],"s":139},{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":140},{"a":{"classes":[],"id":null,"kvs":[]},"s":141},{"a":{"classes":[],"id":null,"kvs":[]},"s":142}],"s":143}],"headS":[],"s":144}],"c":[["tbl-data",[],[]],[null,[{"c":[{"c":"Climate","s":146,"t":"Str"},{"s":147,"t":"Space"},{"c":"data","s":148,"t":"Str"},{"s":149,"t":"Space"},{"c":"sources","s":150,"t":"Str"}],"s":145,"t":"Plain"}]],[[{"t":"AlignDefault"},{"t":"ColWidthDefault"}],[{"t":"AlignDefault"},{"t":"ColWidthDefault"}],[{"t":"AlignDefault"},{"t":"ColWidthDefault"}]],[["",[],[]],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Source","s":152,"t":"Str"}],"s":151,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Years","s":154,"t":"Str"}],"s":153,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Variables","s":156,"t":"Str"}],"s":155,"t":"Plain"}]]]]]],[[["",[],[]],0,[],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Station","s":158,"t":"Str"},{"s":159,"t":"Space"},{"c":"A","s":160,"t":"Str"}],"s":157,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"1990-2020","s":162,"t":"Str"}],"s":161,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Temp,","s":164,"t":"Str"},{"s":165,"t":"Space"},{"c":"Precip","s":166,"t":"Str"}],"s":163,"t":"Plain"}]]]],[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Station","s":168,"t":"Str"},{"s":169,"t":"Space"},{"c":"B","s":170,"t":"Str"}],"s":167,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"1995-2020","s":172,"t":"Str"}],"s":171,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Temp,","s":174,"t":"Str"},{"s":175,"t":"Space"},{"c":"Wind","s":176,"t":"Str"}],"s":173,"t":"Plain"}]]]],[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Satellite","s":178,"t":"Str"}],"s":177,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"2000-2020","s":180,"t":"Str"}],"s":179,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"All","s":182,"t":"Str"}],"s":181,"t":"Plain"}]]]]]]],[["",[],[]],[]]],"captionS":183,"footS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[],"s":184},"headS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":185},{"a":{"classes":[],"id":null,"kvs":[]},"s":186},{"a":{"classes":[],"id":null,"kvs":[]},"s":187}],"s":188}],"s":189},"s":130,"t":"Table"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["model-architecture",[],[]],[{"c":"Model","s":191,"t":"Str"},{"s":192,"t":"Space"},{"c":"Architecture","s":193,"t":"Str"}]],"s":190,"t":"Header"},{"c":[{"c":"Our","s":195,"t":"Str"},{"s":196,"t":"Space"},{"c":"model","s":197,"t":"Str"},{"s":198,"t":"Space"},{"c":"uses","s":199,"t":"Str"},{"s":200,"t":"Space"},{"c":"a","s":201,"t":"Str"},{"s":202,"t":"Space"},{"c":"transformer","s":203,"t":"Str"},{"s":204,"t":"Space"},{"c":"architecture","s":205,"t":"Str"},{"s":206,"t":"Space"},{"c":"with","s":207,"t":"Str"},{"s":208,"t":"Space"},{"c":"attention","s":209,"t":"Str"},{"s":210,"t":"Space"},{"c":"mechanisms.","s":211,"t":"Str"},{"s":212,"t":"Space"},{"c":"The","s":213,"t":"Str"},{"s":214,"t":"Space"},{"c":"loss","s":215,"t":"Str"},{"s":216,"t":"Space"},{"c":"function","s":217,"t":"Str"},{"s":218,"t":"Space"},{"c":"is","s":219,"t":"Str"},{"s":220,"t":"Space"},{"c":"defined","s":221,"t":"Str"},{"s":222,"t":"Space"},{"c":"as:","s":225,"t":"Str"}],"s":194,"t":"Para"},{"c":[{"c":[{"t":"DisplayMath"},"\nL(\\theta) = \\frac{1}{N} \\sum_{i=1}^{N} (y_i - \\hat{y}_i)^2\n"],"s":227,"t":"Math"}],"s":226,"t":"Para"},{"c":[{"c":"where","s":229,"t":"Str"},{"s":230,"t":"Space"},{"c":[{"t":"InlineMath"},"\\theta"],"s":231,"t":"Math"},{"s":232,"t":"Space"},{"c":"represents","s":233,"t":"Str"},{"s":234,"t":"Space"},{"c":"model","s":235,"t":"Str"},{"s":236,"t":"Space"},{"c":"parameters","s":237,"t":"Str"},{"s":238,"t":"Space"},{"c":"and","s":239,"t":"Str"},{"s":240,"t":"Space"},{"c":[{"t":"InlineMath"},"N"],"s":241,"t":"Math"},{"s":242,"t":"Space"},{"c":"is","s":243,"t":"Str"},{"s":244,"t":"Space"},{"c":"the","s":245,"t":"Str"},{"s":246,"t":"Space"},{"c":"sample","s":247,"t":"Str"},{"s":248,"t":"Space"},{"c":"size.","s":249,"t":"Str"}],"s":228,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["results",[],[]],[{"c":"Results","s":251,"t":"Str"}]],"s":250,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["performance-metrics",[],[]],[{"c":"Performance","s":253,"t":"Str"},{"s":254,"t":"Space"},{"c":"Metrics","s":255,"t":"Str"}]],"s":252,"t":"Header"},{"c":[{"c":"The","s":257,"t":"Str"},{"s":258,"t":"Space"},{"c":"model","s":259,"t":"Str"},{"s":260,"t":"Space"},{"c":"achieved","s":261,"t":"Str"},{"s":262,"t":"Space"},{"c":"significant","s":263,"t":"Str"},{"s":264,"t":"Space"},{"c":"improvements:","s":267,"t":"Str"}],"s":256,"t":"Para"},{"c":[[{"c":[{"c":"RMSE:","s":272,"t":"Str"},{"s":273,"t":"Space"},{"c":"0.45","s":274,"t":"Str"},{"s":275,"t":"Space"},{"c":"(baseline:","s":280,"t":"Str"},{"s":281,"t":"Space"},{"c":"0.78)","s":284,"t":"Str"}],"s":269,"t":"Plain"}],[{"c":[{"c":[{"t":"InlineMath"},"R^2"],"s":286,"t":"Math"},{"c":":","s":287,"t":"Str"},{"s":288,"t":"Space"},{"c":"0.92","s":289,"t":"Str"},{"s":290,"t":"Space"},{"c":"(baseline:","s":295,"t":"Str"},{"s":296,"t":"Space"},{"c":"0.65)","s":299,"t":"Str"}],"s":285,"t":"Plain"}],[{"c":[{"c":"MAE:","s":303,"t":"Str"},{"s":304,"t":"Space"},{"c":"0.31","s":305,"t":"Str"},{"s":306,"t":"Space"},{"c":"(baseline:","s":311,"t":"Str"},{"s":312,"t":"Space"},{"c":"0.58)","s":315,"t":"Str"}],"s":300,"t":"Plain"}]],"s":268,"t":"BulletList"},{"c":[{"c":"See","s":317,"t":"Str"},{"s":318,"t":"Space"},{"c":[[{"citationHash":0,"citationId":"tbl-data","citationIdS":320,"citationMode":{"t":"AuthorInText"},"citationNoteNum":3,"citationPrefix":[],"citationSuffix":[]}],[{"c":"@tbl-data","s":321,"t":"Str"}]],"s":319,"t":"Cite"},{"s":322,"t":"Space"},{"c":"for","s":323,"t":"Str"},{"s":324,"t":"Space"},{"c":"data","s":325,"t":"Str"},{"s":326,"t":"Space"},{"c":"sources","s":327,"t":"Str"},{"s":328,"t":"Space"},{"c":"used","s":329,"t":"Str"},{"s":330,"t":"Space"},{"c":"in","s":331,"t":"Str"},{"s":332,"t":"Space"},{"c":"training.","s":333,"t":"Str"}],"s":316,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["discussion",[],[]],[{"c":"Discussion","s":335,"t":"Str"}]],"s":334,"t":"Header"},{"c":[{"c":"Our","s":337,"t":"Str"},{"s":338,"t":"Space"},{"c":"results","s":339,"t":"Str"},{"s":340,"t":"Space"},{"c":"demonstrate","s":341,"t":"Str"},{"s":342,"t":"Space"},{"c":"that","s":343,"t":"Str"},{"s":344,"t":"Space"},{"c":"machine","s":345,"t":"Str"},{"s":346,"t":"Space"},{"c":"learning","s":347,"t":"Str"},{"s":348,"t":"Space"},{"c":"methods","s":349,"t":"Str"},{"s":350,"t":"Space"},{"c":"can","s":351,"t":"Str"},{"s":352,"t":"Space"},{"c":"effectively","s":353,"t":"Str"},{"s":354,"t":"Space"},{"c":"capture","s":355,"t":"Str"},{"s":356,"t":"Space"},{"c":"complex","s":357,"t":"Str"},{"s":358,"t":"Space"},{"c":"patterns","s":359,"t":"Str"},{"s":360,"t":"Space"},{"c":"in","s":361,"t":"Str"},{"s":362,"t":"Space"},{"c":"climate","s":363,"t":"Str"},{"s":364,"t":"Space"},{"c":"data.","s":365,"t":"Str"},{"s":366,"t":"Space"},{"c":"However,","s":367,"t":"Str"},{"s":368,"t":"Space"},{"c":"several","s":369,"t":"Str"},{"s":370,"t":"Space"},{"c":"limitations","s":371,"t":"Str"},{"s":372,"t":"Space"},{"c":"remain","s":373,"t":"Str"},{"c":[{"c":[{"c":"Further","s":376,"t":"Str"},{"s":377,"t":"Space"},{"c":"work","s":378,"t":"Str"},{"s":379,"t":"Space"},{"c":"is","s":380,"t":"Str"},{"s":381,"t":"Space"},{"c":"needed","s":382,"t":"Str"},{"s":383,"t":"Space"},{"c":"to","s":384,"t":"Str"},{"s":385,"t":"Space"},{"c":"address","s":386,"t":"Str"},{"s":387,"t":"Space"},{"c":"regional","s":388,"t":"Str"},{"s":389,"t":"Space"},{"c":"variations","s":390,"t":"Str"}],"s":375,"t":"Para"}],"s":374,"t":"Note"},{"c":".","s":391,"t":"Str"}],"s":336,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["limitations",[],[]],[{"c":"Limitations","s":393,"t":"Str"}]],"s":392,"t":"Header"},{"c":[{"c":"The","s":395,"t":"Str"},{"s":396,"t":"Space"},{"c":"current","s":397,"t":"Str"},{"s":398,"t":"Space"},{"c":"study","s":399,"t":"Str"},{"s":400,"t":"Space"},{"c":"focuses","s":401,"t":"Str"},{"s":402,"t":"Space"},{"c":"on","s":403,"t":"Str"},{"s":404,"t":"Space"},{"c":"temperature","s":405,"t":"Str"},{"s":406,"t":"Space"},{"c":"prediction.","s":407,"t":"Str"},{"s":408,"t":"Space"},{"c":"Future","s":409,"t":"Str"},{"s":410,"t":"Space"},{"c":"work","s":411,"t":"Str"},{"s":412,"t":"Space"},{"c":"should","s":413,"t":"Str"},{"s":414,"t":"Space"},{"c":"extend","s":415,"t":"Str"},{"s":416,"t":"Space"},{"c":"to:","s":419,"t":"Str"}],"s":394,"t":"Para"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Precipitation","s":422,"t":"Str"},{"s":423,"t":"Space"},{"c":"patterns","s":424,"t":"Str"}],"s":421,"t":"Plain"}],[{"c":[{"c":"Extreme","s":426,"t":"Str"},{"s":427,"t":"Space"},{"c":"weather","s":428,"t":"Str"},{"s":429,"t":"Space"},{"c":"events","s":430,"t":"Str"}],"s":425,"t":"Plain"}],[{"c":[{"c":"Long-term","s":432,"t":"Str"},{"s":433,"t":"Space"},{"c":"trends","s":434,"t":"Str"}],"s":431,"t":"Plain"}]]],"s":420,"t":"OrderedList"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["conclusion",[],[]],[{"c":"Conclusion","s":436,"t":"Str"}]],"s":435,"t":"Header"},{"c":[{"c":"Machine","s":438,"t":"Str"},{"s":439,"t":"Space"},{"c":"learning","s":440,"t":"Str"},{"s":441,"t":"Space"},{"c":"offers","s":442,"t":"Str"},{"s":443,"t":"Space"},{"c":"promising","s":444,"t":"Str"},{"s":445,"t":"Space"},{"c":"approaches","s":446,"t":"Str"},{"s":447,"t":"Space"},{"c":"to","s":448,"t":"Str"},{"s":449,"t":"Space"},{"c":"climate","s":450,"t":"Str"},{"s":451,"t":"Space"},{"c":"prediction.","s":452,"t":"Str"},{"s":453,"t":"Space"},{"c":"The","s":454,"t":"Str"},{"s":455,"t":"Space"},{"c":"techniques","s":456,"t":"Str"},{"s":457,"t":"Space"},{"c":"presented","s":458,"t":"Str"},{"s":459,"t":"Space"},{"c":"here","s":460,"t":"Str"},{"s":461,"t":"Space"},{"c":"provide","s":462,"t":"Str"},{"s":463,"t":"Space"},{"c":"a","s":464,"t":"Str"},{"s":465,"t":"Space"},{"c":"foundation","s":466,"t":"Str"},{"s":467,"t":"Space"},{"c":"for","s":468,"t":"Str"},{"s":469,"t":"Space"},{"c":"future","s":470,"t":"Str"},{"s":471,"t":"Space"},{"c":"research","s":472,"t":"Str"},{"s":473,"t":"Space"},{"c":"in","s":474,"t":"Str"},{"s":475,"t":"Space"},{"c":"this","s":476,"t":"Str"},{"s":477,"t":"Space"},{"c":"critical","s":478,"t":"Str"},{"s":479,"t":"Space"},{"c":"domain","s":480,"t":"Str"},{"s":481,"t":"Space"},{"c":[[{"citationHash":0,"citationId":"johnson2021","citationIdS":483,"citationMode":{"t":"NormalCitation"},"citationNoteNum":4,"citationPrefix":[],"citationSuffix":[]}],[]],"s":482,"t":"Cite"},{"c":".","s":484,"t":"Str"}],"s":437,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["references",[],[]],[{"c":"References","s":486,"t":"Str"}]],"s":485,"t":"Header"},{"a":{"classes":[],"id":488,"kvs":[]},"c":[["refs",[],[]],[]],"s":487,"t":"Div"}],"meta":{"abstract":{"c":[{"c":"This","s":493,"t":"Str"},{"s":495,"t":"Space"},{"c":"paper","s":497,"t":"Str"},{"s":499,"t":"Space"},{"c":"presents","s":501,"t":"Str"},{"s":503,"t":"Space"},{"c":"a","s":505,"t":"Str"},{"s":507,"t":"Space"},{"c":"novel","s":509,"t":"Str"},{"s":511,"t":"Space"},{"c":"approach","s":513,"t":"Str"},{"s":515,"t":"Space"},{"c":"to","s":517,"t":"Str"},{"s":519,"t":"Space"},{"c":"climate","s":521,"t":"Str"},{"s":523,"t":"Space"},{"c":"prediction","s":525,"t":"Str"},{"s":527,"t":"Space"},{"c":"using","s":529,"t":"Str"},{"s":531,"t":"Space"},{"c":"machine","s":533,"t":"Str"},{"s":535,"t":"Space"},{"c":"learning","s":537,"t":"Str"},{"s":539,"t":"Space"},{"c":"techniques.","s":541,"t":"Str"},{"s":543,"t":"Space"},{"c":"We","s":545,"t":"Str"},{"s":547,"t":"Space"},{"c":"demonstrate","s":549,"t":"Str"},{"s":551,"t":"Space"},{"c":"that","s":553,"t":"Str"},{"s":555,"t":"Space"},{"c":"deep","s":557,"t":"Str"},{"s":559,"t":"Space"},{"c":"learning","s":561,"t":"Str"},{"s":563,"t":"Space"},{"c":"models","s":565,"t":"Str"},{"s":567,"t":"Space"},{"c":"can","s":569,"t":"Str"},{"s":571,"t":"Space"},{"c":"achieve","s":573,"t":"Str"},{"s":575,"t":"Space"},{"c":"significant","s":577,"t":"Str"},{"s":579,"t":"Space"},{"c":"improvements","s":581,"t":"Str"},{"s":583,"t":"Space"},{"c":"over","s":585,"t":"Str"},{"s":587,"t":"Space"},{"c":"traditional","s":589,"t":"Str"},{"s":591,"t":"Space"},{"c":"methods.","s":593,"t":"Str"}],"s":490,"t":"MetaInlines"},"affiliation":{"c":[{"c":"Department","s":598,"t":"Str"},{"s":600,"t":"Space"},{"c":"of","s":602,"t":"Str"},{"s":604,"t":"Space"},{"c":"Computer","s":606,"t":"Str"},{"s":608,"t":"Space"},{"c":"Science,","s":610,"t":"Str"},{"s":612,"t":"Space"},{"c":"University","s":614,"t":"Str"},{"s":616,"t":"Space"},{"c":"of","s":618,"t":"Str"},{"s":620,"t":"Space"},{"c":"Example","s":622,"t":"Str"}],"s":595,"t":"MetaInlines"},"author":{"c":[{"c":"Dr. Alice","s":625,"t":"Str"},{"s":628,"t":"Space"},{"c":"Smith","s":630,"t":"Str"}],"s":624,"t":"MetaInlines"},"bibliography":{"c":[{"c":"references.bib","s":635,"t":"Str"}],"s":632,"t":"MetaInlines"},"keywords":{"c":[{"c":[{"c":"machine","s":642,"t":"Str"},{"s":644,"t":"Space"},{"c":"learning","s":646,"t":"Str"}],"s":639,"t":"MetaInlines"},{"c":[{"c":"climate","s":651,"t":"Str"}],"s":648,"t":"MetaInlines"},{"c":[{"c":"prediction","s":656,"t":"Str"}],"s":653,"t":"MetaInlines"},{"c":[{"c":"deep","s":661,"t":"Str"},{"s":663,"t":"Space"},{"c":"learning","s":665,"t":"Str"}],"s":658,"t":"MetaInlines"}],"s":637,"t":"MetaList"},"title":{"c":[{"c":"Machine","s":670,"t":"Str"},{"s":672,"t":"Space"},{"c":"Learning","s":674,"t":"Str"},{"s":676,"t":"Space"},{"c":"Approaches","s":678,"t":"Str"},{"s":680,"t":"Space"},{"c":"to","s":682,"t":"Str"},{"s":684,"t":"Space"},{"c":"Climate","s":686,"t":"Str"},{"s":688,"t":"Space"},{"c":"Prediction","s":690,"t":"Str"}],"s":667,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,62,88,157,367,432,461,465,466,481,482,707,708,722,723,886,887,897,898,917,918,956,957,988,1019,1060,1099,1131,1132,1167,1168,1190,1191,1293,1294,1297,1356,1359,1360,1431,1432,1442,1443,1466,1467,1512,1513,1543,1574,1603,1604,1653,1654,1667,1668,1873,1874,1889,1890,1973,1974,2000,2026,2046,2047,2060,2061,2240,2241,2254,2255,2267,2271],"name":"ts-packages/annotated-qmd/examples/academic-paper.qmd","total_length":2272}],"metaTopLevelKeySources":{"abstract":692,"affiliation":694,"author":696,"bibliography":698,"keywords":700,"title":702},"p":[{"d":0,"r":[467,482],"t":0},{"d":0,"r":[469,481],"t":0},{"d":0,"r":[483,708],"t":0},{"d":0,"r":[483,490],"t":0},{"d":0,"r":[490,491],"t":0},{"d":0,"r":[491,501],"t":0},{"d":0,"r":[501,502],"t":0},{"d":0,"r":[502,504],"t":0},{"d":0,"r":[504,505],"t":0},{"d":0,"r":[505,506],"t":0},{"d":0,"r":[506,507],"t":0},{"d":0,"r":[507,515],"t":0},{"d":0,"r":[515,516],"t":0},{"d":0,"r":[516,525],"t":0},{"d":0,"r":[525,526],"t":0},{"d":0,"r":[526,528],"t":0},{"d":0,"r":[528,529],"t":0},{"d":0,"r":[529,535],"t":0},{"d":0,"r":[535,536],"t":0},{"d":0,"r":[536,543],"t":0},{"d":0,"r":[543,588],"t":0},{"d":0,"r":[543,588],"t":0},{"d":0,"r":[545,548],"t":0},{"d":0,"r":[548,549],"t":0},{"d":0,"r":[549,558],"t":0},{"d":0,"r":[550,558],"t":0},{"d":0,"r":[549,558],"t":0},{"d":0,"r":[558,559],"t":0},{"d":0,"r":[559,562],"t":0},{"d":0,"r":[562,563],"t":0},{"d":0,"r":[563,576],"t":0},{"d":0,"r":[576,577],"t":0},{"d":0,"r":[577,587],"t":0},{"d":0,"r":[588,589],"t":0},{"d":0,"r":[589,590],"t":0},{"d":0,"r":[590,601],"t":0},{"d":0,"r":[601,602],"t":0},{"d":0,"r":[602,613],"t":0},{"d":0,"r":[613,614],"t":0},{"d":0,"r":[614,621],"t":0},{"d":0,"r":[621,622],"t":0},{"d":0,"r":[622,626],"t":0},{"d":0,"r":[626,627],"t":0},{"d":0,"r":[627,638],"t":0},{"d":0,"r":[638,639],"t":0},{"d":0,"r":[639,643],"t":0},{"d":0,"r":[643,644],"t":0},{"d":0,"r":[644,651],"t":0},{"d":0,"r":[651,652],"t":0},{"d":0,"r":[652,656],"t":0},{"d":0,"r":[656,657],"t":0},{"d":0,"r":[657,665],"t":0},{"d":0,"r":[665,666],"t":0},{"d":0,"r":[666,676],"t":0},{"d":0,"r":[676,677],"t":0},{"d":0,"r":[677,690],"t":0},{"d":0,"r":[690,691],"t":0},{"d":0,"r":[691,693],"t":0},{"d":0,"r":[693,694],"t":0},{"d":0,"r":[694,701],"t":0},{"d":0,"r":[701,702],"t":0},{"d":0,"r":[702,707],"t":0},{"d":0,"r":[709,723],"t":0},{"d":0,"r":[712,722],"t":0},{"d":0,"r":[724,887],"t":0},{"d":0,"r":[724,727],"t":0},{"d":0,"r":[727,728],"t":0},{"d":0,"r":[728,733],"t":0},{"d":0,"r":[733,734],"t":0},{"d":0,"r":[734,736],"t":0},{"d":0,"r":[736,737],"t":0},{"d":0,"r":[737,744],"t":0},{"d":0,"r":[744,745],"t":0},{"d":0,"r":[745,752],"t":0},{"d":0,"r":[752,753],"t":0},{"d":0,"r":[753,756],"t":0},{"d":0,"r":[756,757],"t":0},{"d":0,"r":[757,764],"t":0},{"d":0,"r":[764,765],"t":0},{"d":0,"r":[765,778],"t":0},{"d":0,"r":[778,779],"t":0},{"d":0,"r":[779,783],"t":0},{"d":0,"r":[783,784],"t":0},{"d":0,"r":[784,787],"t":0},{"d":0,"r":[787,788],"t":0},{"d":0,"r":[788,792],"t":0},{"d":0,"r":[792,793],"t":0},{"d":0,"r":[793,800],"t":0},{"d":0,"r":[800,801],"t":0},{"d":0,"r":[801,823],"t":0},{"d":0,"r":[803,810],"t":0},{"d":0,"r":[813,822],"t":0},{"d":0,"r":[811,812],"t":0},{"d":0,"r":[823,824],"t":0},{"d":0,"r":[824,825],"t":0},{"d":0,"r":[825,831],"t":0},{"d":0,"r":[831,832],"t":0},{"d":0,"r":[832,840],"t":0},{"d":0,"r":[840,841],"t":0},{"d":0,"r":[841,843],"t":0},{"d":0,"r":[843,844],"t":0},{"d":0,"r":[844,857],"t":0},{"d":0,"r":[857,858],"t":0},{"d":0,"r":[858,863],"t":0},{"d":0,"r":[863,864],"t":0},{"d":0,"r":[864,870],"t":0},{"d":0,"r":[870,871],"t":0},{"d":0,"r":[871,874],"t":0},{"d":0,"r":[874,875],"t":0},{"d":0,"r":[875,886],"t":0},{"d":0,"r":[888,898],"t":0},{"d":0,"r":[890,897],"t":0},{"d":0,"r":[899,918],"t":0},{"d":0,"r":[902,906],"t":0},{"d":0,"r":[906,907],"t":0},{"d":0,"r":[907,917],"t":0},{"d":0,"r":[919,957],"t":0},{"d":0,"r":[919,921],"t":0},{"d":0,"r":[921,922],"t":0},{"d":0,"r":[922,931],"t":0},{"d":0,"r":[931,932],"t":0},{"d":0,"r":[932,936],"t":0},{"d":0,"r":[936,937],"t":0},{"d":0,"r":[937,941],"t":0},{"d":0,"r":[941,942],"t":0},{"d":0,"r":[942,947],"t":0},{"d":0,"r":[947,948],"t":0},{"d":0,"r":[948,955],"t":0},{"d":0,"r":[955,956],"t":0},{"d":[[127,0,7],[128,7,1]],"r":[0,8],"t":2},{"d":0,"r":[958,1168],"t":0},{"d":0,"r":[1157,1166],"t":0},{"d":0,"r":[1022,1031],"t":0},{"d":0,"r":[1034,1043],"t":0},{"d":0,"r":[1046,1058],"t":0},{"d":0,"r":[1020,1060],"t":0},{"d":0,"r":[1063,1072],"t":0},{"d":0,"r":[1075,1084],"t":0},{"d":0,"r":[1087,1097],"t":0},{"d":0,"r":[1061,1099],"t":0},{"d":0,"r":[1102,1111],"t":0},{"d":0,"r":[1114,1123],"t":0},{"d":0,"r":[1126,1129],"t":0},{"d":0,"r":[1100,1131],"t":0},{"d":0,"r":[958,1132],"t":0},{"d":0,"r":[1133,1168],"t":0},{"d":0,"r":[1135,1142],"t":0},{"d":0,"r":[1142,1143],"t":0},{"d":0,"r":[1143,1147],"t":0},{"d":0,"r":[1147,1148],"t":0},{"d":0,"r":[1148,1155],"t":0},{"d":0,"r":[960,966],"t":0},{"d":0,"r":[960,966],"t":0},{"d":0,"r":[969,974],"t":0},{"d":0,"r":[969,974],"t":0},{"d":0,"r":[977,986],"t":0},{"d":0,"r":[977,986],"t":0},{"d":0,"r":[1022,1031],"t":0},{"d":0,"r":[1022,1029],"t":0},{"d":0,"r":[1029,1030],"t":0},{"d":0,"r":[1030,1031],"t":0},{"d":0,"r":[1034,1043],"t":0},{"d":0,"r":[1034,1043],"t":0},{"d":0,"r":[1046,1058],"t":0},{"d":0,"r":[1046,1051],"t":0},{"d":0,"r":[1051,1052],"t":0},{"d":0,"r":[1052,1058],"t":0},{"d":0,"r":[1063,1072],"t":0},{"d":0,"r":[1063,1070],"t":0},{"d":0,"r":[1070,1071],"t":0},{"d":0,"r":[1071,1072],"t":0},{"d":0,"r":[1075,1084],"t":0},{"d":0,"r":[1075,1084],"t":0},{"d":0,"r":[1087,1097],"t":0},{"d":0,"r":[1087,1092],"t":0},{"d":0,"r":[1092,1093],"t":0},{"d":0,"r":[1093,1097],"t":0},{"d":0,"r":[1102,1111],"t":0},{"d":0,"r":[1102,1111],"t":0},{"d":0,"r":[1114,1123],"t":0},{"d":0,"r":[1114,1123],"t":0},{"d":0,"r":[1126,1129],"t":0},{"d":0,"r":[1126,1129],"t":0},{"d":0,"r":[1133,1168],"t":0},{"d":0,"r":[958,1132],"t":0},{"d":0,"r":[960,966],"t":0},{"d":0,"r":[969,974],"t":0},{"d":0,"r":[977,986],"t":0},{"d":0,"r":[958,988],"t":0},{"d":0,"r":[958,1132],"t":0},{"d":0,"r":[1169,1191],"t":0},{"d":0,"r":[1172,1177],"t":0},{"d":0,"r":[1177,1178],"t":0},{"d":0,"r":[1178,1190],"t":0},{"d":0,"r":[1192,1294],"t":0},{"d":0,"r":[1192,1195],"t":0},{"d":0,"r":[1195,1196],"t":0},{"d":0,"r":[1196,1201],"t":0},{"d":0,"r":[1201,1202],"t":0},{"d":0,"r":[1202,1206],"t":0},{"d":0,"r":[1206,1207],"t":0},{"d":0,"r":[1207,1208],"t":0},{"d":0,"r":[1208,1209],"t":0},{"d":0,"r":[1209,1220],"t":0},{"d":0,"r":[1220,1221],"t":0},{"d":0,"r":[1221,1233],"t":0},{"d":0,"r":[1233,1234],"t":0},{"d":0,"r":[1234,1238],"t":0},{"d":0,"r":[1238,1239],"t":0},{"d":0,"r":[1239,1248],"t":0},{"d":0,"r":[1248,1249],"t":0},{"d":0,"r":[1249,1260],"t":0},{"d":0,"r":[1260,1261],"t":0},{"d":0,"r":[1261,1264],"t":0},{"d":0,"r":[1264,1265],"t":0},{"d":0,"r":[1265,1269],"t":0},{"d":0,"r":[1269,1270],"t":0},{"d":0,"r":[1270,1278],"t":0},{"d":0,"r":[1278,1279],"t":0},{"d":0,"r":[1279,1281],"t":0},{"d":0,"r":[1281,1282],"t":0},{"d":0,"r":[1282,1289],"t":0},{"d":0,"r":[1289,1290],"t":0},{"d":0,"r":[1290,1292],"t":0},{"d":0,"r":[1292,1293],"t":0},{"d":[[223,0,2],[224,2,1]],"r":[0,3],"t":2},{"d":0,"r":[1295,1360],"t":0},{"d":0,"r":[1295,1359],"t":0},{"d":0,"r":[1361,1432],"t":0},{"d":0,"r":[1361,1366],"t":0},{"d":0,"r":[1366,1367],"t":0},{"d":0,"r":[1367,1375],"t":0},{"d":0,"r":[1375,1376],"t":0},{"d":0,"r":[1376,1386],"t":0},{"d":0,"r":[1386,1387],"t":0},{"d":0,"r":[1387,1392],"t":0},{"d":0,"r":[1392,1393],"t":0},{"d":0,"r":[1393,1403],"t":0},{"d":0,"r":[1403,1404],"t":0},{"d":0,"r":[1404,1407],"t":0},{"d":0,"r":[1407,1408],"t":0},{"d":0,"r":[1408,1411],"t":0},{"d":0,"r":[1411,1412],"t":0},{"d":0,"r":[1412,1414],"t":0},{"d":0,"r":[1414,1415],"t":0},{"d":0,"r":[1415,1418],"t":0},{"d":0,"r":[1418,1419],"t":0},{"d":0,"r":[1419,1425],"t":0},{"d":0,"r":[1425,1426],"t":0},{"d":0,"r":[1426,1431],"t":0},{"d":0,"r":[1433,1443],"t":0},{"d":0,"r":[1435,1442],"t":0},{"d":0,"r":[1444,1467],"t":0},{"d":0,"r":[1447,1458],"t":0},{"d":0,"r":[1458,1459],"t":0},{"d":0,"r":[1459,1466],"t":0},{"d":0,"r":[1468,1513],"t":0},{"d":0,"r":[1468,1471],"t":0},{"d":0,"r":[1471,1472],"t":0},{"d":0,"r":[1472,1477],"t":0},{"d":0,"r":[1477,1478],"t":0},{"d":0,"r":[1478,1486],"t":0},{"d":0,"r":[1486,1487],"t":0},{"d":0,"r":[1487,1498],"t":0},{"d":0,"r":[1498,1499],"t":0},{"d":0,"r":[1499,1511],"t":0},{"d":0,"r":[1511,1512],"t":0},{"d":[[265,0,12],[266,12,1]],"r":[0,13],"t":2},{"d":0,"r":[1514,1605],"t":0},{"d":0,"r":[1516,1544],"t":0},{"d":0,"r":[1516,1520],"t":0},{"d":0,"r":[1520,1521],"t":0},{"d":[[270,0,4],[271,4,1]],"r":[0,5],"t":2},{"d":0,"r":[1521,1522],"t":0},{"d":0,"r":[1522,1526],"t":0},{"d":0,"r":[1526,1527],"t":0},{"d":0,"r":[1527,1528],"t":0},{"d":0,"r":[1528,1536],"t":0},{"d":[[276,0,1],[277,1,8]],"r":[0,9],"t":2},{"d":0,"r":[1536,1537],"t":0},{"d":[[278,0,9],[279,9,1]],"r":[0,10],"t":2},{"d":0,"r":[1537,1538],"t":0},{"d":0,"r":[1538,1542],"t":0},{"d":0,"r":[1542,1543],"t":0},{"d":[[282,0,4],[283,4,1]],"r":[0,5],"t":2},{"d":0,"r":[1546,1575],"t":0},{"d":0,"r":[1546,1551],"t":0},{"d":0,"r":[1551,1552],"t":0},{"d":0,"r":[1552,1553],"t":0},{"d":0,"r":[1553,1557],"t":0},{"d":0,"r":[1557,1558],"t":0},{"d":0,"r":[1558,1559],"t":0},{"d":0,"r":[1559,1567],"t":0},{"d":[[291,0,1],[292,1,8]],"r":[0,9],"t":2},{"d":0,"r":[1567,1568],"t":0},{"d":[[293,0,9],[294,9,1]],"r":[0,10],"t":2},{"d":0,"r":[1568,1569],"t":0},{"d":0,"r":[1569,1573],"t":0},{"d":0,"r":[1573,1574],"t":0},{"d":[[297,0,4],[298,4,1]],"r":[0,5],"t":2},{"d":0,"r":[1577,1604],"t":0},{"d":0,"r":[1577,1580],"t":0},{"d":0,"r":[1580,1581],"t":0},{"d":[[301,0,3],[302,3,1]],"r":[0,4],"t":2},{"d":0,"r":[1581,1582],"t":0},{"d":0,"r":[1582,1586],"t":0},{"d":0,"r":[1586,1587],"t":0},{"d":0,"r":[1587,1588],"t":0},{"d":0,"r":[1588,1596],"t":0},{"d":[[307,0,1],[308,1,8]],"r":[0,9],"t":2},{"d":0,"r":[1596,1597],"t":0},{"d":[[309,0,9],[310,9,1]],"r":[0,10],"t":2},{"d":0,"r":[1597,1598],"t":0},{"d":0,"r":[1598,1602],"t":0},{"d":0,"r":[1602,1603],"t":0},{"d":[[313,0,4],[314,4,1]],"r":[0,5],"t":2},{"d":0,"r":[1605,1654],"t":0},{"d":0,"r":[1605,1608],"t":0},{"d":0,"r":[1608,1609],"t":0},{"d":0,"r":[1609,1618],"t":0},{"d":0,"r":[1610,1618],"t":0},{"d":0,"r":[1609,1618],"t":0},{"d":0,"r":[1618,1619],"t":0},{"d":0,"r":[1619,1622],"t":0},{"d":0,"r":[1622,1623],"t":0},{"d":0,"r":[1623,1627],"t":0},{"d":0,"r":[1627,1628],"t":0},{"d":0,"r":[1628,1635],"t":0},{"d":0,"r":[1635,1636],"t":0},{"d":0,"r":[1636,1640],"t":0},{"d":0,"r":[1640,1641],"t":0},{"d":0,"r":[1641,1643],"t":0},{"d":0,"r":[1643,1644],"t":0},{"d":0,"r":[1644,1653],"t":0},{"d":0,"r":[1655,1668],"t":0},{"d":0,"r":[1657,1667],"t":0},{"d":0,"r":[1669,1874],"t":0},{"d":0,"r":[1669,1672],"t":0},{"d":0,"r":[1672,1673],"t":0},{"d":0,"r":[1673,1680],"t":0},{"d":0,"r":[1680,1681],"t":0},{"d":0,"r":[1681,1692],"t":0},{"d":0,"r":[1692,1693],"t":0},{"d":0,"r":[1693,1697],"t":0},{"d":0,"r":[1697,1698],"t":0},{"d":0,"r":[1698,1705],"t":0},{"d":0,"r":[1705,1706],"t":0},{"d":0,"r":[1706,1714],"t":0},{"d":0,"r":[1714,1715],"t":0},{"d":0,"r":[1715,1722],"t":0},{"d":0,"r":[1722,1723],"t":0},{"d":0,"r":[1723,1726],"t":0},{"d":0,"r":[1726,1727],"t":0},{"d":0,"r":[1727,1738],"t":0},{"d":0,"r":[1738,1739],"t":0},{"d":0,"r":[1739,1746],"t":0},{"d":0,"r":[1746,1747],"t":0},{"d":0,"r":[1747,1754],"t":0},{"d":0,"r":[1754,1755],"t":0},{"d":0,"r":[1755,1763],"t":0},{"d":0,"r":[1763,1764],"t":0},{"d":0,"r":[1764,1766],"t":0},{"d":0,"r":[1766,1767],"t":0},{"d":0,"r":[1767,1774],"t":0},{"d":0,"r":[1774,1775],"t":0},{"d":0,"r":[1775,1780],"t":0},{"d":0,"r":[1780,1781],"t":0},{"d":0,"r":[1781,1789],"t":0},{"d":0,"r":[1789,1790],"t":0},{"d":0,"r":[1790,1797],"t":0},{"d":0,"r":[1797,1798],"t":0},{"d":0,"r":[1798,1809],"t":0},{"d":0,"r":[1809,1810],"t":0},{"d":0,"r":[1810,1816],"t":0},{"d":0,"r":[1816,1872],"t":0},{"d":0,"r":[1816,1872],"t":0},{"d":0,"r":[1818,1825],"t":0},{"d":0,"r":[1825,1826],"t":0},{"d":0,"r":[1826,1830],"t":0},{"d":0,"r":[1830,1831],"t":0},{"d":0,"r":[1831,1833],"t":0},{"d":0,"r":[1833,1834],"t":0},{"d":0,"r":[1834,1840],"t":0},{"d":0,"r":[1840,1841],"t":0},{"d":0,"r":[1841,1843],"t":0},{"d":0,"r":[1843,1844],"t":0},{"d":0,"r":[1844,1851],"t":0},{"d":0,"r":[1851,1852],"t":0},{"d":0,"r":[1852,1860],"t":0},{"d":0,"r":[1860,1861],"t":0},{"d":0,"r":[1861,1871],"t":0},{"d":0,"r":[1872,1873],"t":0},{"d":0,"r":[1875,1890],"t":0},{"d":0,"r":[1878,1889],"t":0},{"d":0,"r":[1891,1974],"t":0},{"d":0,"r":[1891,1894],"t":0},{"d":0,"r":[1894,1895],"t":0},{"d":0,"r":[1895,1902],"t":0},{"d":0,"r":[1902,1903],"t":0},{"d":0,"r":[1903,1908],"t":0},{"d":0,"r":[1908,1909],"t":0},{"d":0,"r":[1909,1916],"t":0},{"d":0,"r":[1916,1917],"t":0},{"d":0,"r":[1917,1919],"t":0},{"d":0,"r":[1919,1920],"t":0},{"d":0,"r":[1920,1931],"t":0},{"d":0,"r":[1931,1932],"t":0},{"d":0,"r":[1932,1943],"t":0},{"d":0,"r":[1943,1944],"t":0},{"d":0,"r":[1944,1950],"t":0},{"d":0,"r":[1950,1951],"t":0},{"d":0,"r":[1951,1955],"t":0},{"d":0,"r":[1955,1956],"t":0},{"d":0,"r":[1956,1962],"t":0},{"d":0,"r":[1962,1963],"t":0},{"d":0,"r":[1963,1969],"t":0},{"d":0,"r":[1969,1970],"t":0},{"d":0,"r":[1970,1972],"t":0},{"d":0,"r":[1972,1973],"t":0},{"d":[[417,0,2],[418,2,1]],"r":[0,3],"t":2},{"d":0,"r":[1975,2048],"t":0},{"d":0,"r":[1978,2001],"t":0},{"d":0,"r":[1978,1991],"t":0},{"d":0,"r":[1991,1992],"t":0},{"d":0,"r":[1992,2000],"t":0},{"d":0,"r":[2004,2027],"t":0},{"d":0,"r":[2004,2011],"t":0},{"d":0,"r":[2011,2012],"t":0},{"d":0,"r":[2012,2019],"t":0},{"d":0,"r":[2019,2020],"t":0},{"d":0,"r":[2020,2026],"t":0},{"d":0,"r":[2030,2047],"t":0},{"d":0,"r":[2030,2039],"t":0},{"d":0,"r":[2039,2040],"t":0},{"d":0,"r":[2040,2046],"t":0},{"d":0,"r":[2048,2061],"t":0},{"d":0,"r":[2050,2060],"t":0},{"d":0,"r":[2062,2241],"t":0},{"d":0,"r":[2062,2069],"t":0},{"d":0,"r":[2069,2070],"t":0},{"d":0,"r":[2070,2078],"t":0},{"d":0,"r":[2078,2079],"t":0},{"d":0,"r":[2079,2085],"t":0},{"d":0,"r":[2085,2086],"t":0},{"d":0,"r":[2086,2095],"t":0},{"d":0,"r":[2095,2096],"t":0},{"d":0,"r":[2096,2106],"t":0},{"d":0,"r":[2106,2107],"t":0},{"d":0,"r":[2107,2109],"t":0},{"d":0,"r":[2109,2110],"t":0},{"d":0,"r":[2110,2117],"t":0},{"d":0,"r":[2117,2118],"t":0},{"d":0,"r":[2118,2129],"t":0},{"d":0,"r":[2129,2130],"t":0},{"d":0,"r":[2130,2133],"t":0},{"d":0,"r":[2133,2134],"t":0},{"d":0,"r":[2134,2144],"t":0},{"d":0,"r":[2144,2145],"t":0},{"d":0,"r":[2145,2154],"t":0},{"d":0,"r":[2154,2155],"t":0},{"d":0,"r":[2155,2159],"t":0},{"d":0,"r":[2159,2160],"t":0},{"d":0,"r":[2160,2167],"t":0},{"d":0,"r":[2167,2168],"t":0},{"d":0,"r":[2168,2169],"t":0},{"d":0,"r":[2169,2170],"t":0},{"d":0,"r":[2170,2180],"t":0},{"d":0,"r":[2180,2181],"t":0},{"d":0,"r":[2181,2184],"t":0},{"d":0,"r":[2184,2185],"t":0},{"d":0,"r":[2185,2191],"t":0},{"d":0,"r":[2191,2192],"t":0},{"d":0,"r":[2192,2200],"t":0},{"d":0,"r":[2200,2201],"t":0},{"d":0,"r":[2201,2203],"t":0},{"d":0,"r":[2203,2204],"t":0},{"d":0,"r":[2204,2208],"t":0},{"d":0,"r":[2208,2209],"t":0},{"d":0,"r":[2209,2217],"t":0},{"d":0,"r":[2217,2218],"t":0},{"d":0,"r":[2218,2224],"t":0},{"d":0,"r":[2224,2225],"t":0},{"d":0,"r":[2225,2239],"t":0},{"d":0,"r":[2227,2238],"t":0},{"d":0,"r":[2239,2240],"t":0},{"d":0,"r":[2242,2255],"t":0},{"d":0,"r":[2244,2254],"t":0},{"d":0,"r":[2256,2272],"t":0},{"d":0,"r":[2261,2266],"t":0},{"d":0,"r":[4,462],"t":0},{"d":489,"r":[164,363],"t":1},{"d":0,"r":[4,462],"t":0},{"d":491,"r":[165,362],"t":1},{"d":492,"r":[0,4],"t":1},{"d":491,"r":[165,362],"t":1},{"d":494,"r":[4,5],"t":1},{"d":491,"r":[165,362],"t":1},{"d":496,"r":[5,10],"t":1},{"d":491,"r":[165,362],"t":1},{"d":498,"r":[10,11],"t":1},{"d":491,"r":[165,362],"t":1},{"d":500,"r":[11,19],"t":1},{"d":491,"r":[165,362],"t":1},{"d":502,"r":[19,20],"t":1},{"d":491,"r":[165,362],"t":1},{"d":504,"r":[20,21],"t":1},{"d":491,"r":[165,362],"t":1},{"d":506,"r":[21,22],"t":1},{"d":491,"r":[165,362],"t":1},{"d":508,"r":[22,27],"t":1},{"d":491,"r":[165,362],"t":1},{"d":510,"r":[27,28],"t":1},{"d":491,"r":[165,362],"t":1},{"d":512,"r":[28,36],"t":1},{"d":491,"r":[165,362],"t":1},{"d":514,"r":[36,37],"t":1},{"d":491,"r":[165,362],"t":1},{"d":516,"r":[37,39],"t":1},{"d":491,"r":[165,362],"t":1},{"d":518,"r":[39,40],"t":1},{"d":491,"r":[165,362],"t":1},{"d":520,"r":[40,47],"t":1},{"d":491,"r":[165,362],"t":1},{"d":522,"r":[47,48],"t":1},{"d":491,"r":[165,362],"t":1},{"d":524,"r":[48,58],"t":1},{"d":491,"r":[165,362],"t":1},{"d":526,"r":[58,59],"t":1},{"d":491,"r":[165,362],"t":1},{"d":528,"r":[59,64],"t":1},{"d":491,"r":[165,362],"t":1},{"d":530,"r":[64,65],"t":1},{"d":491,"r":[165,362],"t":1},{"d":532,"r":[65,72],"t":1},{"d":491,"r":[165,362],"t":1},{"d":534,"r":[72,73],"t":1},{"d":491,"r":[165,362],"t":1},{"d":536,"r":[73,81],"t":1},{"d":491,"r":[165,362],"t":1},{"d":538,"r":[81,82],"t":1},{"d":491,"r":[165,362],"t":1},{"d":540,"r":[82,93],"t":1},{"d":491,"r":[165,362],"t":1},{"d":542,"r":[93,94],"t":1},{"d":491,"r":[165,362],"t":1},{"d":544,"r":[94,96],"t":1},{"d":491,"r":[165,362],"t":1},{"d":546,"r":[96,97],"t":1},{"d":491,"r":[165,362],"t":1},{"d":548,"r":[97,108],"t":1},{"d":491,"r":[165,362],"t":1},{"d":550,"r":[108,109],"t":1},{"d":491,"r":[165,362],"t":1},{"d":552,"r":[109,113],"t":1},{"d":491,"r":[165,362],"t":1},{"d":554,"r":[113,114],"t":1},{"d":491,"r":[165,362],"t":1},{"d":556,"r":[114,118],"t":1},{"d":491,"r":[165,362],"t":1},{"d":558,"r":[118,119],"t":1},{"d":491,"r":[165,362],"t":1},{"d":560,"r":[119,127],"t":1},{"d":491,"r":[165,362],"t":1},{"d":562,"r":[127,128],"t":1},{"d":491,"r":[165,362],"t":1},{"d":564,"r":[128,134],"t":1},{"d":491,"r":[165,362],"t":1},{"d":566,"r":[134,135],"t":1},{"d":491,"r":[165,362],"t":1},{"d":568,"r":[135,138],"t":1},{"d":491,"r":[165,362],"t":1},{"d":570,"r":[138,139],"t":1},{"d":491,"r":[165,362],"t":1},{"d":572,"r":[139,146],"t":1},{"d":491,"r":[165,362],"t":1},{"d":574,"r":[146,147],"t":1},{"d":491,"r":[165,362],"t":1},{"d":576,"r":[147,158],"t":1},{"d":491,"r":[165,362],"t":1},{"d":578,"r":[158,159],"t":1},{"d":491,"r":[165,362],"t":1},{"d":580,"r":[159,171],"t":1},{"d":491,"r":[165,362],"t":1},{"d":582,"r":[171,172],"t":1},{"d":491,"r":[165,362],"t":1},{"d":584,"r":[172,176],"t":1},{"d":491,"r":[165,362],"t":1},{"d":586,"r":[176,177],"t":1},{"d":491,"r":[165,362],"t":1},{"d":588,"r":[177,188],"t":1},{"d":491,"r":[165,362],"t":1},{"d":590,"r":[188,189],"t":1},{"d":491,"r":[165,362],"t":1},{"d":592,"r":[189,197],"t":1},{"d":0,"r":[4,462],"t":0},{"d":594,"r":[98,153],"t":1},{"d":0,"r":[4,462],"t":0},{"d":596,"r":[99,152],"t":1},{"d":597,"r":[0,10],"t":1},{"d":596,"r":[99,152],"t":1},{"d":599,"r":[10,11],"t":1},{"d":596,"r":[99,152],"t":1},{"d":601,"r":[11,13],"t":1},{"d":596,"r":[99,152],"t":1},{"d":603,"r":[13,14],"t":1},{"d":596,"r":[99,152],"t":1},{"d":605,"r":[14,22],"t":1},{"d":596,"r":[99,152],"t":1},{"d":607,"r":[22,23],"t":1},{"d":596,"r":[99,152],"t":1},{"d":609,"r":[23,31],"t":1},{"d":596,"r":[99,152],"t":1},{"d":611,"r":[31,32],"t":1},{"d":596,"r":[99,152],"t":1},{"d":613,"r":[32,42],"t":1},{"d":596,"r":[99,152],"t":1},{"d":615,"r":[42,43],"t":1},{"d":596,"r":[99,152],"t":1},{"d":617,"r":[43,45],"t":1},{"d":596,"r":[99,152],"t":1},{"d":619,"r":[45,46],"t":1},{"d":596,"r":[99,152],"t":1},{"d":621,"r":[46,53],"t":1},{"d":0,"r":[4,462],"t":0},{"d":623,"r":[67,84],"t":1},{"d":0,"r":[72,81],"t":0},{"d":0,"r":[4,462],"t":0},{"d":626,"r":[68,83],"t":1},{"d":627,"r":[9,10],"t":1},{"d":626,"r":[68,83],"t":1},{"d":629,"r":[10,15],"t":1},{"d":0,"r":[4,462],"t":0},{"d":631,"r":[443,457],"t":1},{"d":0,"r":[4,462],"t":0},{"d":633,"r":[443,457],"t":1},{"d":634,"r":[0,14],"t":1},{"d":0,"r":[4,462],"t":0},{"d":636,"r":[374,428],"t":1},{"d":0,"r":[4,462],"t":0},{"d":638,"r":[375,391],"t":1},{"d":0,"r":[4,462],"t":0},{"d":640,"r":[375,391],"t":1},{"d":641,"r":[0,7],"t":1},{"d":640,"r":[375,391],"t":1},{"d":643,"r":[7,8],"t":1},{"d":640,"r":[375,391],"t":1},{"d":645,"r":[8,16],"t":1},{"d":0,"r":[4,462],"t":0},{"d":647,"r":[393,400],"t":1},{"d":0,"r":[4,462],"t":0},{"d":649,"r":[393,400],"t":1},{"d":650,"r":[0,7],"t":1},{"d":0,"r":[4,462],"t":0},{"d":652,"r":[402,412],"t":1},{"d":0,"r":[4,462],"t":0},{"d":654,"r":[402,412],"t":1},{"d":655,"r":[0,10],"t":1},{"d":0,"r":[4,462],"t":0},{"d":657,"r":[414,427],"t":1},{"d":0,"r":[4,462],"t":0},{"d":659,"r":[414,427],"t":1},{"d":660,"r":[0,4],"t":1},{"d":659,"r":[414,427],"t":1},{"d":662,"r":[4,5],"t":1},{"d":659,"r":[414,427],"t":1},{"d":664,"r":[5,13],"t":1},{"d":0,"r":[4,462],"t":0},{"d":666,"r":[7,58],"t":1},{"d":0,"r":[4,462],"t":0},{"d":668,"r":[8,57],"t":1},{"d":669,"r":[0,7],"t":1},{"d":668,"r":[8,57],"t":1},{"d":671,"r":[7,8],"t":1},{"d":668,"r":[8,57],"t":1},{"d":673,"r":[8,16],"t":1},{"d":668,"r":[8,57],"t":1},{"d":675,"r":[16,17],"t":1},{"d":668,"r":[8,57],"t":1},{"d":677,"r":[17,27],"t":1},{"d":668,"r":[8,57],"t":1},{"d":679,"r":[27,28],"t":1},{"d":668,"r":[8,57],"t":1},{"d":681,"r":[28,30],"t":1},{"d":668,"r":[8,57],"t":1},{"d":683,"r":[30,31],"t":1},{"d":668,"r":[8,57],"t":1},{"d":685,"r":[31,38],"t":1},{"d":668,"r":[8,57],"t":1},{"d":687,"r":[38,39],"t":1},{"d":668,"r":[8,57],"t":1},{"d":689,"r":[39,49],"t":1},{"d":0,"r":[4,462],"t":0},{"d":691,"r":[154,162],"t":1},{"d":0,"r":[4,462],"t":0},{"d":693,"r":[85,96],"t":1},{"d":0,"r":[4,462],"t":0},{"d":695,"r":[59,65],"t":1},{"d":0,"r":[4,462],"t":0},{"d":697,"r":[429,441],"t":1},{"d":0,"r":[4,462],"t":0},{"d":699,"r":[364,372],"t":1},{"d":0,"r":[4,462],"t":0},{"d":701,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/blog-post.json b/ts-packages/annotated-qmd/examples/blog-post.json index 6dcf76e2a..561f7ab4c 100644 --- a/ts-packages/annotated-qmd/examples/blog-post.json +++ b/ts-packages/annotated-qmd/examples/blog-post.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["introduction",[],[]],[{"c":"Introduction","s":1,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":[{"c":"Quarto","s":4,"t":"Str"}],"s":3,"t":"Strong"},{"s":5,"t":"Space"},{"c":"is","s":6,"t":"Str"},{"s":7,"t":"Space"},{"c":"an","s":8,"t":"Str"},{"s":9,"t":"Space"},{"c":[{"c":"open-source","s":11,"t":"Str"}],"s":10,"t":"Emph"},{"s":12,"t":"Space"},{"c":"scientific","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"and","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"technical","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"publishing","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"system.","s":21,"t":"Str"},{"s":22,"t":"Space"},{"c":"It","s":23,"t":"Str"},{"s":24,"t":"Space"},{"c":"allows","s":25,"t":"Str"},{"s":26,"t":"Space"},{"c":"you","s":27,"t":"Str"},{"s":28,"t":"Space"},{"c":"to","s":29,"t":"Str"},{"s":30,"t":"Space"},{"c":"create","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"dynamic","s":33,"t":"Str"},{"s":34,"t":"Space"},{"c":"content","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"with","s":37,"t":"Str"},{"s":38,"t":"Space"},{"c":"Python,","s":39,"t":"Str"},{"s":40,"t":"Space"},{"c":"R,","s":41,"t":"Str"},{"s":42,"t":"Space"},{"c":"Julia,","s":43,"t":"Str"},{"s":44,"t":"Space"},{"c":"and","s":45,"t":"Str"},{"s":46,"t":"Space"},{"c":"Observable.","s":47,"t":"Str"}],"s":2,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["why-use-quarto",[],[]],[{"c":"Why","s":49,"t":"Str"},{"s":50,"t":"Space"},{"c":"Use","s":51,"t":"Str"},{"s":52,"t":"Space"},{"c":"Quarto?","s":53,"t":"Str"}]],"s":48,"t":"Header"},{"c":[{"c":"Here","s":55,"t":"Str"},{"s":56,"t":"Space"},{"c":"are","s":57,"t":"Str"},{"s":58,"t":"Space"},{"c":"some","s":59,"t":"Str"},{"s":60,"t":"Space"},{"c":"key","s":61,"t":"Str"},{"s":62,"t":"Space"},{"c":"benefits:","s":65,"t":"Str"}],"s":54,"t":"Para"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Write","s":68,"t":"Str"},{"s":69,"t":"Space"},{"c":"once,","s":70,"t":"Str"},{"s":71,"t":"Space"},{"c":"publish","s":72,"t":"Str"},{"s":73,"t":"Space"},{"c":"to","s":74,"t":"Str"},{"s":75,"t":"Space"},{"c":"multiple","s":76,"t":"Str"},{"s":77,"t":"Space"},{"c":"formats","s":78,"t":"Str"}],"s":67,"t":"Plain"}],[{"c":[{"c":"Combine","s":80,"t":"Str"},{"s":81,"t":"Space"},{"c":"code","s":82,"t":"Str"},{"s":83,"t":"Space"},{"c":"and","s":84,"t":"Str"},{"s":85,"t":"Space"},{"c":"narrative","s":86,"t":"Str"},{"s":87,"t":"Space"},{"c":"seamlessly","s":88,"t":"Str"}],"s":79,"t":"Plain"}],[{"c":[{"c":"Beautiful","s":90,"t":"Str"},{"s":91,"t":"Space"},{"c":"output","s":92,"t":"Str"},{"s":93,"t":"Space"},{"c":"with","s":94,"t":"Str"},{"s":95,"t":"Space"},{"c":"minimal","s":96,"t":"Str"},{"s":97,"t":"Space"},{"c":"effort","s":98,"t":"Str"}],"s":89,"t":"Plain"}],[{"c":[{"c":"Extensive","s":100,"t":"Str"},{"s":101,"t":"Space"},{"c":"customization","s":102,"t":"Str"},{"s":103,"t":"Space"},{"c":"options","s":104,"t":"Str"}],"s":99,"t":"Plain"}]]],"s":66,"t":"OrderedList"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["getting-started",[],[]],[{"c":"Getting","s":106,"t":"Str"},{"s":107,"t":"Space"},{"c":"Started","s":108,"t":"Str"}]],"s":105,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[3,["installation",[],[]],[{"c":"Installation","s":110,"t":"Str"}]],"s":109,"t":"Header"},{"c":[{"c":"Installing","s":112,"t":"Str"},{"s":113,"t":"Space"},{"c":"Quarto","s":114,"t":"Str"},{"s":115,"t":"Space"},{"c":"is","s":116,"t":"Str"},{"s":117,"t":"Space"},{"c":"straightforward.","s":118,"t":"Str"},{"s":119,"t":"Space"},{"c":"Visit","s":120,"t":"Str"},{"s":121,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"quarto.org","s":123,"t":"Str"}],["https://quarto.org",""]],"s":122,"t":"Link","targetS":[124,null]},{"s":125,"t":"Space"},{"c":"and","s":126,"t":"Str"},{"s":127,"t":"Space"},{"c":"download","s":128,"t":"Str"},{"s":129,"t":"Space"},{"c":"the","s":130,"t":"Str"},{"s":131,"t":"Space"},{"c":"installer","s":132,"t":"Str"},{"s":133,"t":"Space"},{"c":"for","s":134,"t":"Str"},{"s":135,"t":"Space"},{"c":"your","s":136,"t":"Str"},{"s":137,"t":"Space"},{"c":"platform.","s":138,"t":"Str"}],"s":111,"t":"Para"},{"a":{"classes":[140],"id":null,"kvs":[]},"c":[["",["bash"],[]],"# Verify installation\nquarto --version"],"s":139,"t":"CodeBlock"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[3,["your-first-document",[],[]],[{"c":"Your","s":142,"t":"Str"},{"s":143,"t":"Space"},{"c":"First","s":144,"t":"Str"},{"s":145,"t":"Space"},{"c":"Document","s":146,"t":"Str"}]],"s":141,"t":"Header"},{"c":[{"c":"Create","s":148,"t":"Str"},{"s":149,"t":"Space"},{"c":"a","s":150,"t":"Str"},{"s":151,"t":"Space"},{"c":"new","s":152,"t":"Str"},{"s":153,"t":"Space"},{"c":"file","s":154,"t":"Str"},{"s":155,"t":"Space"},{"c":"called","s":156,"t":"Str"},{"s":157,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"hello.qmd"],"s":158,"t":"Code"},{"c":":","s":159,"t":"Str"}],"s":147,"t":"Para"},{"a":{"classes":[161],"id":null,"kvs":[]},"c":[["",["python"],[]],"print(\"Hello, Quarto!\")"],"s":160,"t":"CodeBlock"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[null,[{"c":[{"c":"Quarto","s":164,"t":"Str"},{"s":165,"t":"Space"},{"c":"Logo","s":166,"t":"Str"}],"s":163,"t":"Plain"}]],[{"c":[{"a":{"classes":[],"id":null,"kvs":[[169,170]]},"c":[["",[],[["width","200"]]],[{"c":"Quarto","s":171,"t":"Str"},{"s":172,"t":"Space"},{"c":"Logo","s":173,"t":"Str"}],["https://quarto.org/quarto.png",""]],"s":168,"t":"Image","targetS":[174,null]}],"s":167,"t":"Plain"}]],"captionS":175,"s":162,"t":"Figure"},{"c":[{"c":[{"c":[{"c":"Note","s":179,"t":"Str"}],"s":178,"t":"Strong"},{"c":":","s":180,"t":"Str"},{"s":181,"t":"Space"},{"c":"Make","s":182,"t":"Str"},{"s":183,"t":"Space"},{"c":"sure","s":184,"t":"Str"},{"s":185,"t":"Space"},{"c":"to","s":186,"t":"Str"},{"s":187,"t":"Space"},{"c":"check","s":188,"t":"Str"},{"s":189,"t":"Space"},{"c":"the","s":190,"t":"Str"},{"s":191,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"official","s":193,"t":"Str"},{"s":194,"t":"Space"},{"c":"documentation","s":195,"t":"Str"}],["https://quarto.org/docs",""]],"s":192,"t":"Link","targetS":[196,null]},{"s":197,"t":"Space"},{"c":"for","s":198,"t":"Str"},{"s":199,"t":"Space"},{"c":"more","s":200,"t":"Str"},{"s":201,"t":"Space"},{"c":"details.","s":202,"t":"Str"}],"s":177,"t":"Para"}],"s":176,"t":"BlockQuote"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["advanced-features",[],[]],[{"c":"Advanced","s":204,"t":"Str"},{"s":205,"t":"Space"},{"c":"Features","s":206,"t":"Str"}]],"s":203,"t":"Header"},{"c":[[{"c":[{"c":[{"c":"Basic","s":210,"t":"Str"},{"s":211,"t":"Space"},{"c":"features","s":212,"t":"Str"}],"s":209,"t":"Strikeout"},{"s":213,"t":"Space"},{"c":"Advanced","s":214,"t":"Str"},{"s":215,"t":"Space"},{"c":"capabilities","s":216,"t":"Str"}],"s":208,"t":"Plain"}],[{"c":[{"c":"Cross-references","s":218,"t":"Str"}],"s":217,"t":"Plain"}],[{"c":[{"c":"Citations","s":220,"t":"Str"},{"s":221,"t":"Space"},{"c":"and","s":222,"t":"Str"},{"s":223,"t":"Space"},{"c":"bibliographies","s":224,"t":"Str"}],"s":219,"t":"Plain"}],[{"c":[{"c":"Interactive","s":226,"t":"Str"},{"s":227,"t":"Space"},{"c":"widgets","s":228,"t":"Str"}],"s":225,"t":"Plain"}]],"s":207,"t":"BulletList"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[3,["code-execution",[],[]],[{"c":"Code","s":230,"t":"Str"},{"s":231,"t":"Space"},{"c":"Execution","s":232,"t":"Str"}]],"s":229,"t":"Header"},{"c":[{"c":"Quarto","s":234,"t":"Str"},{"s":235,"t":"Space"},{"c":"can","s":236,"t":"Str"},{"s":237,"t":"Space"},{"c":"execute","s":238,"t":"Str"},{"s":239,"t":"Space"},{"c":"code","s":240,"t":"Str"},{"s":241,"t":"Space"},{"c":"blocks","s":242,"t":"Str"},{"s":243,"t":"Space"},{"c":"and","s":244,"t":"Str"},{"s":245,"t":"Space"},{"c":"display","s":246,"t":"Str"},{"s":247,"t":"Space"},{"c":"results:","s":250,"t":"Str"}],"s":233,"t":"Para"},{"a":{"classes":[252],"id":null,"kvs":[]},"c":[["",["{python}"],[]],"#| echo: true\n#| eval: false\n\nimport pandas as pd\ndata = pd.DataFrame({'x': [1, 2, 3], 'y': [4, 5, 6]})\nprint(data.head())"],"s":251,"t":"CodeBlock"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["conclusion",[],[]],[{"c":"Conclusion","s":254,"t":"Str"}]],"s":253,"t":"Header"},{"c":[{"c":"Whether","s":256,"t":"Str"},{"s":257,"t":"Space"},{"c":"you’re","s":258,"t":"Str"},{"s":259,"t":"Space"},{"c":"writing","s":260,"t":"Str"},{"s":261,"t":"Space"},{"c":"a","s":262,"t":"Str"},{"s":263,"t":"Space"},{"c":"blog","s":264,"t":"Str"},{"s":265,"t":"Space"},{"c":"post,","s":266,"t":"Str"},{"s":267,"t":"Space"},{"c":"scientific","s":268,"t":"Str"},{"s":269,"t":"Space"},{"c":"paper,","s":270,"t":"Str"},{"s":271,"t":"Space"},{"c":"or","s":272,"t":"Str"},{"s":273,"t":"Space"},{"c":"book,","s":274,"t":"Str"},{"s":275,"t":"Space"},{"c":"Quarto","s":276,"t":"Str"},{"s":277,"t":"Space"},{"c":"provides","s":278,"t":"Str"},{"s":279,"t":"Space"},{"c":"the","s":280,"t":"Str"},{"s":281,"t":"Space"},{"c":"tools","s":282,"t":"Str"},{"s":283,"t":"Space"},{"c":"you","s":284,"t":"Str"},{"s":285,"t":"Space"},{"c":"need.","s":286,"t":"Str"},{"s":287,"t":"Space"},{"c":"Start","s":288,"t":"Str"},{"s":289,"t":"Space"},{"c":"exploring","s":290,"t":"Str"},{"s":291,"t":"Space"},{"c":"today!","s":292,"t":"Str"}],"s":255,"t":"Para"}],"meta":{"author":{"c":[{"c":"Jane","s":298,"t":"Str"},{"s":300,"t":"Space"},{"c":"Doe","s":302,"t":"Str"}],"s":295,"t":"MetaInlines"},"categories":{"c":[{"c":[{"c":"tutorial","s":309,"t":"Str"}],"s":306,"t":"MetaInlines"},{"c":[{"c":"quarto","s":314,"t":"Str"}],"s":311,"t":"MetaInlines"},{"c":[{"c":"publishing","s":319,"t":"Str"}],"s":316,"t":"MetaInlines"}],"s":304,"t":"MetaList"},"date":{"c":[{"c":"2024-10-26","s":324,"t":"Str"}],"s":321,"t":"MetaInlines"},"title":{"c":[{"c":"Getting","s":329,"t":"Str"},{"s":331,"t":"Space"},{"c":"Started","s":333,"t":"Str"},{"s":335,"t":"Space"},{"c":"with","s":337,"t":"Str"},{"s":339,"t":"Space"},{"c":"Quarto","s":341,"t":"Str"}],"s":326,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,40,59,78,121,125,126,141,142,296,297,316,317,345,346,389,430,470,505,506,525,526,543,544,667,668,676,698,715,719,720,744,745,783,784,794,818,822,823,880,881,984,985,1006,1007,1050,1069,1100,1122,1123,1142,1143,1195,1196,1208,1222,1237,1238,1258,1312,1331,1335,1336,1350,1351,1473],"name":"ts-packages/annotated-qmd/examples/blog-post.qmd","total_length":1474}],"metaTopLevelKeySources":{"author":343,"categories":345,"date":347,"title":349},"p":[{"d":0,"r":[127,142],"t":0},{"d":0,"r":[129,141],"t":0},{"d":0,"r":[143,297],"t":0},{"d":0,"r":[143,153],"t":0},{"d":0,"r":[145,151],"t":0},{"d":0,"r":[153,154],"t":0},{"d":0,"r":[154,156],"t":0},{"d":0,"r":[156,157],"t":0},{"d":0,"r":[157,159],"t":0},{"d":0,"r":[159,160],"t":0},{"d":0,"r":[160,173],"t":0},{"d":0,"r":[161,172],"t":0},{"d":0,"r":[173,174],"t":0},{"d":0,"r":[174,184],"t":0},{"d":0,"r":[184,185],"t":0},{"d":0,"r":[185,188],"t":0},{"d":0,"r":[188,189],"t":0},{"d":0,"r":[189,198],"t":0},{"d":0,"r":[198,199],"t":0},{"d":0,"r":[199,209],"t":0},{"d":0,"r":[209,210],"t":0},{"d":0,"r":[210,217],"t":0},{"d":0,"r":[217,218],"t":0},{"d":0,"r":[218,220],"t":0},{"d":0,"r":[220,221],"t":0},{"d":0,"r":[221,227],"t":0},{"d":0,"r":[227,228],"t":0},{"d":0,"r":[228,231],"t":0},{"d":0,"r":[231,232],"t":0},{"d":0,"r":[232,234],"t":0},{"d":0,"r":[234,235],"t":0},{"d":0,"r":[235,241],"t":0},{"d":0,"r":[241,242],"t":0},{"d":0,"r":[242,249],"t":0},{"d":0,"r":[249,250],"t":0},{"d":0,"r":[250,257],"t":0},{"d":0,"r":[257,258],"t":0},{"d":0,"r":[258,262],"t":0},{"d":0,"r":[262,263],"t":0},{"d":0,"r":[263,270],"t":0},{"d":0,"r":[270,271],"t":0},{"d":0,"r":[271,273],"t":0},{"d":0,"r":[273,274],"t":0},{"d":0,"r":[274,280],"t":0},{"d":0,"r":[280,281],"t":0},{"d":0,"r":[281,284],"t":0},{"d":0,"r":[284,285],"t":0},{"d":0,"r":[285,296],"t":0},{"d":0,"r":[298,317],"t":0},{"d":0,"r":[301,304],"t":0},{"d":0,"r":[304,305],"t":0},{"d":0,"r":[305,308],"t":0},{"d":0,"r":[308,309],"t":0},{"d":0,"r":[309,316],"t":0},{"d":0,"r":[318,346],"t":0},{"d":0,"r":[318,322],"t":0},{"d":0,"r":[322,323],"t":0},{"d":0,"r":[323,326],"t":0},{"d":0,"r":[326,327],"t":0},{"d":0,"r":[327,331],"t":0},{"d":0,"r":[331,332],"t":0},{"d":0,"r":[332,335],"t":0},{"d":0,"r":[335,336],"t":0},{"d":0,"r":[336,344],"t":0},{"d":0,"r":[344,345],"t":0},{"d":[[63,0,8],[64,8,1]],"r":[0,9],"t":2},{"d":0,"r":[347,507],"t":0},{"d":0,"r":[350,390],"t":0},{"d":0,"r":[350,355],"t":0},{"d":0,"r":[355,356],"t":0},{"d":0,"r":[356,361],"t":0},{"d":0,"r":[361,362],"t":0},{"d":0,"r":[362,369],"t":0},{"d":0,"r":[369,370],"t":0},{"d":0,"r":[370,372],"t":0},{"d":0,"r":[372,373],"t":0},{"d":0,"r":[373,381],"t":0},{"d":0,"r":[381,382],"t":0},{"d":0,"r":[382,389],"t":0},{"d":0,"r":[393,431],"t":0},{"d":0,"r":[393,400],"t":0},{"d":0,"r":[400,401],"t":0},{"d":0,"r":[401,405],"t":0},{"d":0,"r":[405,406],"t":0},{"d":0,"r":[406,409],"t":0},{"d":0,"r":[409,410],"t":0},{"d":0,"r":[410,419],"t":0},{"d":0,"r":[419,420],"t":0},{"d":0,"r":[420,430],"t":0},{"d":0,"r":[434,471],"t":0},{"d":0,"r":[434,443],"t":0},{"d":0,"r":[443,444],"t":0},{"d":0,"r":[444,450],"t":0},{"d":0,"r":[450,451],"t":0},{"d":0,"r":[451,455],"t":0},{"d":0,"r":[455,456],"t":0},{"d":0,"r":[456,463],"t":0},{"d":0,"r":[463,464],"t":0},{"d":0,"r":[464,470],"t":0},{"d":0,"r":[474,506],"t":0},{"d":0,"r":[474,483],"t":0},{"d":0,"r":[483,484],"t":0},{"d":0,"r":[484,497],"t":0},{"d":0,"r":[497,498],"t":0},{"d":0,"r":[498,505],"t":0},{"d":0,"r":[507,526],"t":0},{"d":0,"r":[510,517],"t":0},{"d":0,"r":[517,518],"t":0},{"d":0,"r":[518,525],"t":0},{"d":0,"r":[527,544],"t":0},{"d":0,"r":[531,543],"t":0},{"d":0,"r":[545,668],"t":0},{"d":0,"r":[545,555],"t":0},{"d":0,"r":[555,556],"t":0},{"d":0,"r":[556,562],"t":0},{"d":0,"r":[562,563],"t":0},{"d":0,"r":[563,565],"t":0},{"d":0,"r":[565,566],"t":0},{"d":0,"r":[566,582],"t":0},{"d":0,"r":[582,583],"t":0},{"d":0,"r":[583,588],"t":0},{"d":0,"r":[588,589],"t":0},{"d":0,"r":[589,621],"t":0},{"d":0,"r":[590,600],"t":0},{"d":0,"r":[602,620],"t":0},{"d":0,"r":[621,622],"t":0},{"d":0,"r":[622,625],"t":0},{"d":0,"r":[625,626],"t":0},{"d":0,"r":[626,634],"t":0},{"d":0,"r":[634,635],"t":0},{"d":0,"r":[635,638],"t":0},{"d":0,"r":[638,639],"t":0},{"d":0,"r":[639,648],"t":0},{"d":0,"r":[648,649],"t":0},{"d":0,"r":[649,652],"t":0},{"d":0,"r":[652,653],"t":0},{"d":0,"r":[653,657],"t":0},{"d":0,"r":[657,658],"t":0},{"d":0,"r":[658,667],"t":0},{"d":0,"r":[669,720],"t":0},{"d":0,"r":[672,676],"t":0},{"d":0,"r":[721,745],"t":0},{"d":0,"r":[725,729],"t":0},{"d":0,"r":[729,730],"t":0},{"d":0,"r":[730,735],"t":0},{"d":0,"r":[735,736],"t":0},{"d":0,"r":[736,744],"t":0},{"d":0,"r":[746,784],"t":0},{"d":0,"r":[746,752],"t":0},{"d":0,"r":[752,753],"t":0},{"d":0,"r":[753,754],"t":0},{"d":0,"r":[754,755],"t":0},{"d":0,"r":[755,758],"t":0},{"d":0,"r":[758,759],"t":0},{"d":0,"r":[759,763],"t":0},{"d":0,"r":[763,764],"t":0},{"d":0,"r":[764,770],"t":0},{"d":0,"r":[770,771],"t":0},{"d":0,"r":[771,782],"t":0},{"d":0,"r":[782,783],"t":0},{"d":0,"r":[785,823],"t":0},{"d":0,"r":[788,794],"t":0},{"d":0,"r":[824,881],"t":0},{"d":0,"r":[824,880],"t":0},{"d":0,"r":[826,832],"t":0},{"d":0,"r":[832,833],"t":0},{"d":0,"r":[833,837],"t":0},{"d":0,"r":[824,880],"t":0},{"d":0,"r":[824,880],"t":0},{"d":0,"r":[870,875],"t":0},{"d":0,"r":[876,879],"t":0},{"d":0,"r":[826,832],"t":0},{"d":0,"r":[832,833],"t":0},{"d":0,"r":[833,837],"t":0},{"d":0,"r":[839,868],"t":0},{"d":0,"r":[824,880],"t":0},{"d":0,"r":[882,985],"t":0},{"d":0,"r":[884,985],"t":0},{"d":0,"r":[884,892],"t":0},{"d":0,"r":[886,890],"t":0},{"d":0,"r":[892,893],"t":0},{"d":0,"r":[893,894],"t":0},{"d":0,"r":[894,898],"t":0},{"d":0,"r":[898,899],"t":0},{"d":0,"r":[899,903],"t":0},{"d":0,"r":[903,904],"t":0},{"d":0,"r":[904,906],"t":0},{"d":0,"r":[906,907],"t":0},{"d":0,"r":[907,912],"t":0},{"d":0,"r":[912,913],"t":0},{"d":0,"r":[913,916],"t":0},{"d":0,"r":[916,917],"t":0},{"d":0,"r":[917,966],"t":0},{"d":0,"r":[918,926],"t":0},{"d":0,"r":[926,927],"t":0},{"d":0,"r":[927,940],"t":0},{"d":0,"r":[942,965],"t":0},{"d":0,"r":[966,967],"t":0},{"d":0,"r":[967,970],"t":0},{"d":0,"r":[970,971],"t":0},{"d":0,"r":[971,975],"t":0},{"d":0,"r":[975,976],"t":0},{"d":0,"r":[976,984],"t":0},{"d":0,"r":[986,1007],"t":0},{"d":0,"r":[989,997],"t":0},{"d":0,"r":[997,998],"t":0},{"d":0,"r":[998,1006],"t":0},{"d":0,"r":[1008,1124],"t":0},{"d":0,"r":[1010,1051],"t":0},{"d":0,"r":[1010,1028],"t":0},{"d":0,"r":[1012,1017],"t":0},{"d":0,"r":[1017,1018],"t":0},{"d":0,"r":[1018,1026],"t":0},{"d":0,"r":[1028,1029],"t":0},{"d":0,"r":[1029,1037],"t":0},{"d":0,"r":[1037,1038],"t":0},{"d":0,"r":[1038,1050],"t":0},{"d":0,"r":[1053,1070],"t":0},{"d":0,"r":[1053,1069],"t":0},{"d":0,"r":[1072,1101],"t":0},{"d":0,"r":[1072,1081],"t":0},{"d":0,"r":[1081,1082],"t":0},{"d":0,"r":[1082,1085],"t":0},{"d":0,"r":[1085,1086],"t":0},{"d":0,"r":[1086,1100],"t":0},{"d":0,"r":[1103,1123],"t":0},{"d":0,"r":[1103,1114],"t":0},{"d":0,"r":[1114,1115],"t":0},{"d":0,"r":[1115,1122],"t":0},{"d":0,"r":[1124,1143],"t":0},{"d":0,"r":[1128,1132],"t":0},{"d":0,"r":[1132,1133],"t":0},{"d":0,"r":[1133,1142],"t":0},{"d":0,"r":[1144,1196],"t":0},{"d":0,"r":[1144,1150],"t":0},{"d":0,"r":[1150,1151],"t":0},{"d":0,"r":[1151,1154],"t":0},{"d":0,"r":[1154,1155],"t":0},{"d":0,"r":[1155,1162],"t":0},{"d":0,"r":[1162,1163],"t":0},{"d":0,"r":[1163,1167],"t":0},{"d":0,"r":[1167,1168],"t":0},{"d":0,"r":[1168,1174],"t":0},{"d":0,"r":[1174,1175],"t":0},{"d":0,"r":[1175,1178],"t":0},{"d":0,"r":[1178,1179],"t":0},{"d":0,"r":[1179,1186],"t":0},{"d":0,"r":[1186,1187],"t":0},{"d":0,"r":[1187,1194],"t":0},{"d":0,"r":[1194,1195],"t":0},{"d":[[248,0,7],[249,7,1]],"r":[0,8],"t":2},{"d":0,"r":[1197,1336],"t":0},{"d":0,"r":[1201,1207],"t":0},{"d":0,"r":[1337,1351],"t":0},{"d":0,"r":[1340,1350],"t":0},{"d":0,"r":[1352,1474],"t":0},{"d":0,"r":[1352,1359],"t":0},{"d":0,"r":[1359,1360],"t":0},{"d":0,"r":[1360,1366],"t":0},{"d":0,"r":[1366,1367],"t":0},{"d":0,"r":[1367,1374],"t":0},{"d":0,"r":[1374,1375],"t":0},{"d":0,"r":[1375,1376],"t":0},{"d":0,"r":[1376,1377],"t":0},{"d":0,"r":[1377,1381],"t":0},{"d":0,"r":[1381,1382],"t":0},{"d":0,"r":[1382,1387],"t":0},{"d":0,"r":[1387,1388],"t":0},{"d":0,"r":[1388,1398],"t":0},{"d":0,"r":[1398,1399],"t":0},{"d":0,"r":[1399,1405],"t":0},{"d":0,"r":[1405,1406],"t":0},{"d":0,"r":[1406,1408],"t":0},{"d":0,"r":[1408,1409],"t":0},{"d":0,"r":[1409,1414],"t":0},{"d":0,"r":[1414,1415],"t":0},{"d":0,"r":[1415,1421],"t":0},{"d":0,"r":[1421,1422],"t":0},{"d":0,"r":[1422,1430],"t":0},{"d":0,"r":[1430,1431],"t":0},{"d":0,"r":[1431,1434],"t":0},{"d":0,"r":[1434,1435],"t":0},{"d":0,"r":[1435,1440],"t":0},{"d":0,"r":[1440,1441],"t":0},{"d":0,"r":[1441,1444],"t":0},{"d":0,"r":[1444,1445],"t":0},{"d":0,"r":[1445,1450],"t":0},{"d":0,"r":[1450,1451],"t":0},{"d":0,"r":[1451,1456],"t":0},{"d":0,"r":[1456,1457],"t":0},{"d":0,"r":[1457,1466],"t":0},{"d":0,"r":[1466,1467],"t":0},{"d":0,"r":[1467,1473],"t":0},{"d":0,"r":[0,126],"t":0},{"d":293,"r":[4,121],"t":1},{"d":294,"r":[45,55],"t":1},{"d":293,"r":[4,121],"t":1},{"d":296,"r":[46,54],"t":1},{"d":297,"r":[0,4],"t":1},{"d":296,"r":[46,54],"t":1},{"d":299,"r":[4,5],"t":1},{"d":296,"r":[46,54],"t":1},{"d":301,"r":[5,8],"t":1},{"d":293,"r":[4,121],"t":1},{"d":303,"r":[87,117],"t":1},{"d":293,"r":[4,121],"t":1},{"d":305,"r":[88,96],"t":1},{"d":293,"r":[4,121],"t":1},{"d":307,"r":[88,96],"t":1},{"d":308,"r":[0,8],"t":1},{"d":293,"r":[4,121],"t":1},{"d":310,"r":[98,104],"t":1},{"d":293,"r":[4,121],"t":1},{"d":312,"r":[98,104],"t":1},{"d":313,"r":[0,6],"t":1},{"d":293,"r":[4,121],"t":1},{"d":315,"r":[106,116],"t":1},{"d":293,"r":[4,121],"t":1},{"d":317,"r":[106,116],"t":1},{"d":318,"r":[0,10],"t":1},{"d":293,"r":[4,121],"t":1},{"d":320,"r":[62,74],"t":1},{"d":293,"r":[4,121],"t":1},{"d":322,"r":[63,73],"t":1},{"d":323,"r":[0,10],"t":1},{"d":293,"r":[4,121],"t":1},{"d":325,"r":[7,36],"t":1},{"d":293,"r":[4,121],"t":1},{"d":327,"r":[8,35],"t":1},{"d":328,"r":[0,7],"t":1},{"d":327,"r":[8,35],"t":1},{"d":330,"r":[7,8],"t":1},{"d":327,"r":[8,35],"t":1},{"d":332,"r":[8,15],"t":1},{"d":327,"r":[8,35],"t":1},{"d":334,"r":[15,16],"t":1},{"d":327,"r":[8,35],"t":1},{"d":336,"r":[16,20],"t":1},{"d":327,"r":[8,35],"t":1},{"d":338,"r":[20,21],"t":1},{"d":327,"r":[8,35],"t":1},{"d":340,"r":[21,27],"t":1},{"d":293,"r":[4,121],"t":1},{"d":342,"r":[37,43],"t":1},{"d":293,"r":[4,121],"t":1},{"d":344,"r":[75,85],"t":1},{"d":293,"r":[4,121],"t":1},{"d":346,"r":[56,60],"t":1},{"d":293,"r":[4,121],"t":1},{"d":348,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["introduction",[],[]],[{"c":"Introduction","s":1,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":[{"c":"Quarto","s":4,"t":"Str"}],"s":3,"t":"Strong"},{"s":5,"t":"Space"},{"c":"is","s":6,"t":"Str"},{"s":7,"t":"Space"},{"c":"an","s":8,"t":"Str"},{"s":9,"t":"Space"},{"c":[{"c":"open-source","s":11,"t":"Str"}],"s":10,"t":"Emph"},{"s":12,"t":"Space"},{"c":"scientific","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"and","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"technical","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"publishing","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"system.","s":21,"t":"Str"},{"s":22,"t":"Space"},{"c":"It","s":23,"t":"Str"},{"s":24,"t":"Space"},{"c":"allows","s":25,"t":"Str"},{"s":26,"t":"Space"},{"c":"you","s":27,"t":"Str"},{"s":28,"t":"Space"},{"c":"to","s":29,"t":"Str"},{"s":30,"t":"Space"},{"c":"create","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"dynamic","s":33,"t":"Str"},{"s":34,"t":"Space"},{"c":"content","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"with","s":37,"t":"Str"},{"s":38,"t":"Space"},{"c":"Python,","s":39,"t":"Str"},{"s":40,"t":"Space"},{"c":"R,","s":41,"t":"Str"},{"s":42,"t":"Space"},{"c":"Julia,","s":43,"t":"Str"},{"s":44,"t":"Space"},{"c":"and","s":45,"t":"Str"},{"s":46,"t":"Space"},{"c":"Observable.","s":47,"t":"Str"}],"s":2,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["why-use-quarto",[],[]],[{"c":"Why","s":49,"t":"Str"},{"s":50,"t":"Space"},{"c":"Use","s":51,"t":"Str"},{"s":52,"t":"Space"},{"c":"Quarto?","s":53,"t":"Str"}]],"s":48,"t":"Header"},{"c":[{"c":"Here","s":55,"t":"Str"},{"s":56,"t":"Space"},{"c":"are","s":57,"t":"Str"},{"s":58,"t":"Space"},{"c":"some","s":59,"t":"Str"},{"s":60,"t":"Space"},{"c":"key","s":61,"t":"Str"},{"s":62,"t":"Space"},{"c":"benefits:","s":65,"t":"Str"}],"s":54,"t":"Para"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Write","s":68,"t":"Str"},{"s":69,"t":"Space"},{"c":"once,","s":70,"t":"Str"},{"s":71,"t":"Space"},{"c":"publish","s":72,"t":"Str"},{"s":73,"t":"Space"},{"c":"to","s":74,"t":"Str"},{"s":75,"t":"Space"},{"c":"multiple","s":76,"t":"Str"},{"s":77,"t":"Space"},{"c":"formats","s":78,"t":"Str"}],"s":67,"t":"Plain"}],[{"c":[{"c":"Combine","s":80,"t":"Str"},{"s":81,"t":"Space"},{"c":"code","s":82,"t":"Str"},{"s":83,"t":"Space"},{"c":"and","s":84,"t":"Str"},{"s":85,"t":"Space"},{"c":"narrative","s":86,"t":"Str"},{"s":87,"t":"Space"},{"c":"seamlessly","s":88,"t":"Str"}],"s":79,"t":"Plain"}],[{"c":[{"c":"Beautiful","s":90,"t":"Str"},{"s":91,"t":"Space"},{"c":"output","s":92,"t":"Str"},{"s":93,"t":"Space"},{"c":"with","s":94,"t":"Str"},{"s":95,"t":"Space"},{"c":"minimal","s":96,"t":"Str"},{"s":97,"t":"Space"},{"c":"effort","s":98,"t":"Str"}],"s":89,"t":"Plain"}],[{"c":[{"c":"Extensive","s":100,"t":"Str"},{"s":101,"t":"Space"},{"c":"customization","s":102,"t":"Str"},{"s":103,"t":"Space"},{"c":"options","s":104,"t":"Str"}],"s":99,"t":"Plain"}]]],"s":66,"t":"OrderedList"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["getting-started",[],[]],[{"c":"Getting","s":106,"t":"Str"},{"s":107,"t":"Space"},{"c":"Started","s":108,"t":"Str"}]],"s":105,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[3,["installation",[],[]],[{"c":"Installation","s":110,"t":"Str"}]],"s":109,"t":"Header"},{"c":[{"c":"Installing","s":112,"t":"Str"},{"s":113,"t":"Space"},{"c":"Quarto","s":114,"t":"Str"},{"s":115,"t":"Space"},{"c":"is","s":116,"t":"Str"},{"s":117,"t":"Space"},{"c":"straightforward.","s":118,"t":"Str"},{"s":119,"t":"Space"},{"c":"Visit","s":120,"t":"Str"},{"s":121,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"quarto.org","s":123,"t":"Str"}],["https://quarto.org",""]],"s":122,"t":"Link","targetS":[124,null]},{"s":125,"t":"Space"},{"c":"and","s":126,"t":"Str"},{"s":127,"t":"Space"},{"c":"download","s":128,"t":"Str"},{"s":129,"t":"Space"},{"c":"the","s":130,"t":"Str"},{"s":131,"t":"Space"},{"c":"installer","s":132,"t":"Str"},{"s":133,"t":"Space"},{"c":"for","s":134,"t":"Str"},{"s":135,"t":"Space"},{"c":"your","s":136,"t":"Str"},{"s":137,"t":"Space"},{"c":"platform.","s":138,"t":"Str"}],"s":111,"t":"Para"},{"a":{"classes":[140],"id":null,"kvs":[]},"c":[["",["bash"],[]],"# Verify installation\nquarto --version"],"s":139,"t":"CodeBlock"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[3,["your-first-document",[],[]],[{"c":"Your","s":142,"t":"Str"},{"s":143,"t":"Space"},{"c":"First","s":144,"t":"Str"},{"s":145,"t":"Space"},{"c":"Document","s":146,"t":"Str"}]],"s":141,"t":"Header"},{"c":[{"c":"Create","s":148,"t":"Str"},{"s":149,"t":"Space"},{"c":"a","s":150,"t":"Str"},{"s":151,"t":"Space"},{"c":"new","s":152,"t":"Str"},{"s":153,"t":"Space"},{"c":"file","s":154,"t":"Str"},{"s":155,"t":"Space"},{"c":"called","s":156,"t":"Str"},{"s":157,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"hello.qmd"],"s":158,"t":"Code"},{"c":":","s":159,"t":"Str"}],"s":147,"t":"Para"},{"a":{"classes":[161],"id":null,"kvs":[]},"c":[["",["python"],[]],"print(\"Hello, Quarto!\")"],"s":160,"t":"CodeBlock"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[null,[{"c":[{"c":"Quarto","s":164,"t":"Str"},{"s":165,"t":"Space"},{"c":"Logo","s":166,"t":"Str"}],"s":163,"t":"Plain"}]],[{"c":[{"a":{"classes":[],"id":null,"kvs":[[169,170]]},"c":[["",[],[["width","200"]]],[{"c":"Quarto","s":171,"t":"Str"},{"s":172,"t":"Space"},{"c":"Logo","s":173,"t":"Str"}],["https://quarto.org/quarto.png",""]],"s":168,"t":"Image","targetS":[174,null]}],"s":167,"t":"Plain"}]],"captionS":175,"s":162,"t":"Figure"},{"c":[{"c":[{"c":[{"c":"Note","s":179,"t":"Str"}],"s":178,"t":"Strong"},{"c":":","s":180,"t":"Str"},{"s":181,"t":"Space"},{"c":"Make","s":182,"t":"Str"},{"s":183,"t":"Space"},{"c":"sure","s":184,"t":"Str"},{"s":185,"t":"Space"},{"c":"to","s":186,"t":"Str"},{"s":187,"t":"Space"},{"c":"check","s":188,"t":"Str"},{"s":189,"t":"Space"},{"c":"the","s":190,"t":"Str"},{"s":191,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"official","s":193,"t":"Str"},{"s":194,"t":"Space"},{"c":"documentation","s":195,"t":"Str"}],["https://quarto.org/docs",""]],"s":192,"t":"Link","targetS":[196,null]},{"s":197,"t":"Space"},{"c":"for","s":198,"t":"Str"},{"s":199,"t":"Space"},{"c":"more","s":200,"t":"Str"},{"s":201,"t":"Space"},{"c":"details.","s":202,"t":"Str"}],"s":177,"t":"Para"}],"s":176,"t":"BlockQuote"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["advanced-features",[],[]],[{"c":"Advanced","s":204,"t":"Str"},{"s":205,"t":"Space"},{"c":"Features","s":206,"t":"Str"}]],"s":203,"t":"Header"},{"c":[[{"c":[{"c":[{"c":"Basic","s":210,"t":"Str"},{"s":211,"t":"Space"},{"c":"features","s":212,"t":"Str"}],"s":209,"t":"Strikeout"},{"s":213,"t":"Space"},{"c":"Advanced","s":214,"t":"Str"},{"s":215,"t":"Space"},{"c":"capabilities","s":216,"t":"Str"}],"s":208,"t":"Plain"}],[{"c":[{"c":"Cross-references","s":218,"t":"Str"}],"s":217,"t":"Plain"}],[{"c":[{"c":"Citations","s":220,"t":"Str"},{"s":221,"t":"Space"},{"c":"and","s":222,"t":"Str"},{"s":223,"t":"Space"},{"c":"bibliographies","s":224,"t":"Str"}],"s":219,"t":"Plain"}],[{"c":[{"c":"Interactive","s":226,"t":"Str"},{"s":227,"t":"Space"},{"c":"widgets","s":228,"t":"Str"}],"s":225,"t":"Plain"}]],"s":207,"t":"BulletList"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[3,["code-execution",[],[]],[{"c":"Code","s":230,"t":"Str"},{"s":231,"t":"Space"},{"c":"Execution","s":232,"t":"Str"}]],"s":229,"t":"Header"},{"c":[{"c":"Quarto","s":234,"t":"Str"},{"s":235,"t":"Space"},{"c":"can","s":236,"t":"Str"},{"s":237,"t":"Space"},{"c":"execute","s":238,"t":"Str"},{"s":239,"t":"Space"},{"c":"code","s":240,"t":"Str"},{"s":241,"t":"Space"},{"c":"blocks","s":242,"t":"Str"},{"s":243,"t":"Space"},{"c":"and","s":244,"t":"Str"},{"s":245,"t":"Space"},{"c":"display","s":246,"t":"Str"},{"s":247,"t":"Space"},{"c":"results:","s":250,"t":"Str"}],"s":233,"t":"Para"},{"a":{"classes":[252],"id":null,"kvs":[]},"c":[["",["{python}"],[]],"#| echo: true\n#| eval: false\n\nimport pandas as pd\ndata = pd.DataFrame({'x': [1, 2, 3], 'y': [4, 5, 6]})\nprint(data.head())"],"s":251,"t":"CodeBlock"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["conclusion",[],[]],[{"c":"Conclusion","s":254,"t":"Str"}]],"s":253,"t":"Header"},{"c":[{"c":"Whether","s":256,"t":"Str"},{"s":257,"t":"Space"},{"c":"you’re","s":258,"t":"Str"},{"s":259,"t":"Space"},{"c":"writing","s":260,"t":"Str"},{"s":261,"t":"Space"},{"c":"a","s":262,"t":"Str"},{"s":263,"t":"Space"},{"c":"blog","s":264,"t":"Str"},{"s":265,"t":"Space"},{"c":"post,","s":266,"t":"Str"},{"s":267,"t":"Space"},{"c":"scientific","s":268,"t":"Str"},{"s":269,"t":"Space"},{"c":"paper,","s":270,"t":"Str"},{"s":271,"t":"Space"},{"c":"or","s":272,"t":"Str"},{"s":273,"t":"Space"},{"c":"book,","s":274,"t":"Str"},{"s":275,"t":"Space"},{"c":"Quarto","s":276,"t":"Str"},{"s":277,"t":"Space"},{"c":"provides","s":278,"t":"Str"},{"s":279,"t":"Space"},{"c":"the","s":280,"t":"Str"},{"s":281,"t":"Space"},{"c":"tools","s":282,"t":"Str"},{"s":283,"t":"Space"},{"c":"you","s":284,"t":"Str"},{"s":285,"t":"Space"},{"c":"need.","s":286,"t":"Str"},{"s":287,"t":"Space"},{"c":"Start","s":288,"t":"Str"},{"s":289,"t":"Space"},{"c":"exploring","s":290,"t":"Str"},{"s":291,"t":"Space"},{"c":"today!","s":292,"t":"Str"}],"s":255,"t":"Para"}],"meta":{"author":{"c":[{"c":"Jane","s":297,"t":"Str"},{"s":299,"t":"Space"},{"c":"Doe","s":301,"t":"Str"}],"s":294,"t":"MetaInlines"},"categories":{"c":[{"c":[{"c":"tutorial","s":308,"t":"Str"}],"s":305,"t":"MetaInlines"},{"c":[{"c":"quarto","s":313,"t":"Str"}],"s":310,"t":"MetaInlines"},{"c":[{"c":"publishing","s":318,"t":"Str"}],"s":315,"t":"MetaInlines"}],"s":303,"t":"MetaList"},"date":{"c":[{"c":"2024-10-26","s":323,"t":"Str"}],"s":320,"t":"MetaInlines"},"title":{"c":[{"c":"Getting","s":328,"t":"Str"},{"s":330,"t":"Space"},{"c":"Started","s":332,"t":"Str"},{"s":334,"t":"Space"},{"c":"with","s":336,"t":"Str"},{"s":338,"t":"Space"},{"c":"Quarto","s":340,"t":"Str"}],"s":325,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,40,59,78,121,125,126,141,142,296,297,316,317,345,346,389,430,470,505,506,525,526,543,544,667,668,676,698,715,719,720,744,745,783,784,794,818,822,823,880,881,984,985,1006,1007,1050,1069,1100,1122,1123,1142,1143,1195,1196,1208,1222,1237,1238,1258,1312,1331,1335,1336,1350,1351,1473],"name":"ts-packages/annotated-qmd/examples/blog-post.qmd","total_length":1474}],"metaTopLevelKeySources":{"author":342,"categories":344,"date":346,"title":348},"p":[{"d":0,"r":[127,142],"t":0},{"d":0,"r":[129,141],"t":0},{"d":0,"r":[143,297],"t":0},{"d":0,"r":[143,153],"t":0},{"d":0,"r":[145,151],"t":0},{"d":0,"r":[153,154],"t":0},{"d":0,"r":[154,156],"t":0},{"d":0,"r":[156,157],"t":0},{"d":0,"r":[157,159],"t":0},{"d":0,"r":[159,160],"t":0},{"d":0,"r":[160,173],"t":0},{"d":0,"r":[161,172],"t":0},{"d":0,"r":[173,174],"t":0},{"d":0,"r":[174,184],"t":0},{"d":0,"r":[184,185],"t":0},{"d":0,"r":[185,188],"t":0},{"d":0,"r":[188,189],"t":0},{"d":0,"r":[189,198],"t":0},{"d":0,"r":[198,199],"t":0},{"d":0,"r":[199,209],"t":0},{"d":0,"r":[209,210],"t":0},{"d":0,"r":[210,217],"t":0},{"d":0,"r":[217,218],"t":0},{"d":0,"r":[218,220],"t":0},{"d":0,"r":[220,221],"t":0},{"d":0,"r":[221,227],"t":0},{"d":0,"r":[227,228],"t":0},{"d":0,"r":[228,231],"t":0},{"d":0,"r":[231,232],"t":0},{"d":0,"r":[232,234],"t":0},{"d":0,"r":[234,235],"t":0},{"d":0,"r":[235,241],"t":0},{"d":0,"r":[241,242],"t":0},{"d":0,"r":[242,249],"t":0},{"d":0,"r":[249,250],"t":0},{"d":0,"r":[250,257],"t":0},{"d":0,"r":[257,258],"t":0},{"d":0,"r":[258,262],"t":0},{"d":0,"r":[262,263],"t":0},{"d":0,"r":[263,270],"t":0},{"d":0,"r":[270,271],"t":0},{"d":0,"r":[271,273],"t":0},{"d":0,"r":[273,274],"t":0},{"d":0,"r":[274,280],"t":0},{"d":0,"r":[280,281],"t":0},{"d":0,"r":[281,284],"t":0},{"d":0,"r":[284,285],"t":0},{"d":0,"r":[285,296],"t":0},{"d":0,"r":[298,317],"t":0},{"d":0,"r":[301,304],"t":0},{"d":0,"r":[304,305],"t":0},{"d":0,"r":[305,308],"t":0},{"d":0,"r":[308,309],"t":0},{"d":0,"r":[309,316],"t":0},{"d":0,"r":[318,346],"t":0},{"d":0,"r":[318,322],"t":0},{"d":0,"r":[322,323],"t":0},{"d":0,"r":[323,326],"t":0},{"d":0,"r":[326,327],"t":0},{"d":0,"r":[327,331],"t":0},{"d":0,"r":[331,332],"t":0},{"d":0,"r":[332,335],"t":0},{"d":0,"r":[335,336],"t":0},{"d":0,"r":[336,344],"t":0},{"d":0,"r":[344,345],"t":0},{"d":[[63,0,8],[64,8,1]],"r":[0,9],"t":2},{"d":0,"r":[347,507],"t":0},{"d":0,"r":[350,390],"t":0},{"d":0,"r":[350,355],"t":0},{"d":0,"r":[355,356],"t":0},{"d":0,"r":[356,361],"t":0},{"d":0,"r":[361,362],"t":0},{"d":0,"r":[362,369],"t":0},{"d":0,"r":[369,370],"t":0},{"d":0,"r":[370,372],"t":0},{"d":0,"r":[372,373],"t":0},{"d":0,"r":[373,381],"t":0},{"d":0,"r":[381,382],"t":0},{"d":0,"r":[382,389],"t":0},{"d":0,"r":[393,431],"t":0},{"d":0,"r":[393,400],"t":0},{"d":0,"r":[400,401],"t":0},{"d":0,"r":[401,405],"t":0},{"d":0,"r":[405,406],"t":0},{"d":0,"r":[406,409],"t":0},{"d":0,"r":[409,410],"t":0},{"d":0,"r":[410,419],"t":0},{"d":0,"r":[419,420],"t":0},{"d":0,"r":[420,430],"t":0},{"d":0,"r":[434,471],"t":0},{"d":0,"r":[434,443],"t":0},{"d":0,"r":[443,444],"t":0},{"d":0,"r":[444,450],"t":0},{"d":0,"r":[450,451],"t":0},{"d":0,"r":[451,455],"t":0},{"d":0,"r":[455,456],"t":0},{"d":0,"r":[456,463],"t":0},{"d":0,"r":[463,464],"t":0},{"d":0,"r":[464,470],"t":0},{"d":0,"r":[474,506],"t":0},{"d":0,"r":[474,483],"t":0},{"d":0,"r":[483,484],"t":0},{"d":0,"r":[484,497],"t":0},{"d":0,"r":[497,498],"t":0},{"d":0,"r":[498,505],"t":0},{"d":0,"r":[507,526],"t":0},{"d":0,"r":[510,517],"t":0},{"d":0,"r":[517,518],"t":0},{"d":0,"r":[518,525],"t":0},{"d":0,"r":[527,544],"t":0},{"d":0,"r":[531,543],"t":0},{"d":0,"r":[545,668],"t":0},{"d":0,"r":[545,555],"t":0},{"d":0,"r":[555,556],"t":0},{"d":0,"r":[556,562],"t":0},{"d":0,"r":[562,563],"t":0},{"d":0,"r":[563,565],"t":0},{"d":0,"r":[565,566],"t":0},{"d":0,"r":[566,582],"t":0},{"d":0,"r":[582,583],"t":0},{"d":0,"r":[583,588],"t":0},{"d":0,"r":[588,589],"t":0},{"d":0,"r":[589,621],"t":0},{"d":0,"r":[590,600],"t":0},{"d":0,"r":[602,620],"t":0},{"d":0,"r":[621,622],"t":0},{"d":0,"r":[622,625],"t":0},{"d":0,"r":[625,626],"t":0},{"d":0,"r":[626,634],"t":0},{"d":0,"r":[634,635],"t":0},{"d":0,"r":[635,638],"t":0},{"d":0,"r":[638,639],"t":0},{"d":0,"r":[639,648],"t":0},{"d":0,"r":[648,649],"t":0},{"d":0,"r":[649,652],"t":0},{"d":0,"r":[652,653],"t":0},{"d":0,"r":[653,657],"t":0},{"d":0,"r":[657,658],"t":0},{"d":0,"r":[658,667],"t":0},{"d":0,"r":[669,720],"t":0},{"d":0,"r":[672,676],"t":0},{"d":0,"r":[721,745],"t":0},{"d":0,"r":[725,729],"t":0},{"d":0,"r":[729,730],"t":0},{"d":0,"r":[730,735],"t":0},{"d":0,"r":[735,736],"t":0},{"d":0,"r":[736,744],"t":0},{"d":0,"r":[746,784],"t":0},{"d":0,"r":[746,752],"t":0},{"d":0,"r":[752,753],"t":0},{"d":0,"r":[753,754],"t":0},{"d":0,"r":[754,755],"t":0},{"d":0,"r":[755,758],"t":0},{"d":0,"r":[758,759],"t":0},{"d":0,"r":[759,763],"t":0},{"d":0,"r":[763,764],"t":0},{"d":0,"r":[764,770],"t":0},{"d":0,"r":[770,771],"t":0},{"d":0,"r":[771,782],"t":0},{"d":0,"r":[782,783],"t":0},{"d":0,"r":[785,823],"t":0},{"d":0,"r":[788,794],"t":0},{"d":0,"r":[824,881],"t":0},{"d":0,"r":[824,880],"t":0},{"d":0,"r":[826,832],"t":0},{"d":0,"r":[832,833],"t":0},{"d":0,"r":[833,837],"t":0},{"d":0,"r":[824,880],"t":0},{"d":0,"r":[824,880],"t":0},{"d":0,"r":[870,875],"t":0},{"d":0,"r":[876,879],"t":0},{"d":0,"r":[826,832],"t":0},{"d":0,"r":[832,833],"t":0},{"d":0,"r":[833,837],"t":0},{"d":0,"r":[839,868],"t":0},{"d":0,"r":[824,880],"t":0},{"d":0,"r":[882,985],"t":0},{"d":0,"r":[884,985],"t":0},{"d":0,"r":[884,892],"t":0},{"d":0,"r":[886,890],"t":0},{"d":0,"r":[892,893],"t":0},{"d":0,"r":[893,894],"t":0},{"d":0,"r":[894,898],"t":0},{"d":0,"r":[898,899],"t":0},{"d":0,"r":[899,903],"t":0},{"d":0,"r":[903,904],"t":0},{"d":0,"r":[904,906],"t":0},{"d":0,"r":[906,907],"t":0},{"d":0,"r":[907,912],"t":0},{"d":0,"r":[912,913],"t":0},{"d":0,"r":[913,916],"t":0},{"d":0,"r":[916,917],"t":0},{"d":0,"r":[917,966],"t":0},{"d":0,"r":[918,926],"t":0},{"d":0,"r":[926,927],"t":0},{"d":0,"r":[927,940],"t":0},{"d":0,"r":[942,965],"t":0},{"d":0,"r":[966,967],"t":0},{"d":0,"r":[967,970],"t":0},{"d":0,"r":[970,971],"t":0},{"d":0,"r":[971,975],"t":0},{"d":0,"r":[975,976],"t":0},{"d":0,"r":[976,984],"t":0},{"d":0,"r":[986,1007],"t":0},{"d":0,"r":[989,997],"t":0},{"d":0,"r":[997,998],"t":0},{"d":0,"r":[998,1006],"t":0},{"d":0,"r":[1008,1124],"t":0},{"d":0,"r":[1010,1051],"t":0},{"d":0,"r":[1010,1028],"t":0},{"d":0,"r":[1012,1017],"t":0},{"d":0,"r":[1017,1018],"t":0},{"d":0,"r":[1018,1026],"t":0},{"d":0,"r":[1028,1029],"t":0},{"d":0,"r":[1029,1037],"t":0},{"d":0,"r":[1037,1038],"t":0},{"d":0,"r":[1038,1050],"t":0},{"d":0,"r":[1053,1070],"t":0},{"d":0,"r":[1053,1069],"t":0},{"d":0,"r":[1072,1101],"t":0},{"d":0,"r":[1072,1081],"t":0},{"d":0,"r":[1081,1082],"t":0},{"d":0,"r":[1082,1085],"t":0},{"d":0,"r":[1085,1086],"t":0},{"d":0,"r":[1086,1100],"t":0},{"d":0,"r":[1103,1123],"t":0},{"d":0,"r":[1103,1114],"t":0},{"d":0,"r":[1114,1115],"t":0},{"d":0,"r":[1115,1122],"t":0},{"d":0,"r":[1124,1143],"t":0},{"d":0,"r":[1128,1132],"t":0},{"d":0,"r":[1132,1133],"t":0},{"d":0,"r":[1133,1142],"t":0},{"d":0,"r":[1144,1196],"t":0},{"d":0,"r":[1144,1150],"t":0},{"d":0,"r":[1150,1151],"t":0},{"d":0,"r":[1151,1154],"t":0},{"d":0,"r":[1154,1155],"t":0},{"d":0,"r":[1155,1162],"t":0},{"d":0,"r":[1162,1163],"t":0},{"d":0,"r":[1163,1167],"t":0},{"d":0,"r":[1167,1168],"t":0},{"d":0,"r":[1168,1174],"t":0},{"d":0,"r":[1174,1175],"t":0},{"d":0,"r":[1175,1178],"t":0},{"d":0,"r":[1178,1179],"t":0},{"d":0,"r":[1179,1186],"t":0},{"d":0,"r":[1186,1187],"t":0},{"d":0,"r":[1187,1194],"t":0},{"d":0,"r":[1194,1195],"t":0},{"d":[[248,0,7],[249,7,1]],"r":[0,8],"t":2},{"d":0,"r":[1197,1336],"t":0},{"d":0,"r":[1201,1207],"t":0},{"d":0,"r":[1337,1351],"t":0},{"d":0,"r":[1340,1350],"t":0},{"d":0,"r":[1352,1474],"t":0},{"d":0,"r":[1352,1359],"t":0},{"d":0,"r":[1359,1360],"t":0},{"d":0,"r":[1360,1366],"t":0},{"d":0,"r":[1366,1367],"t":0},{"d":0,"r":[1367,1374],"t":0},{"d":0,"r":[1374,1375],"t":0},{"d":0,"r":[1375,1376],"t":0},{"d":0,"r":[1376,1377],"t":0},{"d":0,"r":[1377,1381],"t":0},{"d":0,"r":[1381,1382],"t":0},{"d":0,"r":[1382,1387],"t":0},{"d":0,"r":[1387,1388],"t":0},{"d":0,"r":[1388,1398],"t":0},{"d":0,"r":[1398,1399],"t":0},{"d":0,"r":[1399,1405],"t":0},{"d":0,"r":[1405,1406],"t":0},{"d":0,"r":[1406,1408],"t":0},{"d":0,"r":[1408,1409],"t":0},{"d":0,"r":[1409,1414],"t":0},{"d":0,"r":[1414,1415],"t":0},{"d":0,"r":[1415,1421],"t":0},{"d":0,"r":[1421,1422],"t":0},{"d":0,"r":[1422,1430],"t":0},{"d":0,"r":[1430,1431],"t":0},{"d":0,"r":[1431,1434],"t":0},{"d":0,"r":[1434,1435],"t":0},{"d":0,"r":[1435,1440],"t":0},{"d":0,"r":[1440,1441],"t":0},{"d":0,"r":[1441,1444],"t":0},{"d":0,"r":[1444,1445],"t":0},{"d":0,"r":[1445,1450],"t":0},{"d":0,"r":[1450,1451],"t":0},{"d":0,"r":[1451,1456],"t":0},{"d":0,"r":[1456,1457],"t":0},{"d":0,"r":[1457,1466],"t":0},{"d":0,"r":[1466,1467],"t":0},{"d":0,"r":[1467,1473],"t":0},{"d":0,"r":[4,122],"t":0},{"d":293,"r":[45,55],"t":1},{"d":0,"r":[4,122],"t":0},{"d":295,"r":[46,54],"t":1},{"d":296,"r":[0,4],"t":1},{"d":295,"r":[46,54],"t":1},{"d":298,"r":[4,5],"t":1},{"d":295,"r":[46,54],"t":1},{"d":300,"r":[5,8],"t":1},{"d":0,"r":[4,122],"t":0},{"d":302,"r":[87,117],"t":1},{"d":0,"r":[4,122],"t":0},{"d":304,"r":[88,96],"t":1},{"d":0,"r":[4,122],"t":0},{"d":306,"r":[88,96],"t":1},{"d":307,"r":[0,8],"t":1},{"d":0,"r":[4,122],"t":0},{"d":309,"r":[98,104],"t":1},{"d":0,"r":[4,122],"t":0},{"d":311,"r":[98,104],"t":1},{"d":312,"r":[0,6],"t":1},{"d":0,"r":[4,122],"t":0},{"d":314,"r":[106,116],"t":1},{"d":0,"r":[4,122],"t":0},{"d":316,"r":[106,116],"t":1},{"d":317,"r":[0,10],"t":1},{"d":0,"r":[4,122],"t":0},{"d":319,"r":[62,74],"t":1},{"d":0,"r":[4,122],"t":0},{"d":321,"r":[63,73],"t":1},{"d":322,"r":[0,10],"t":1},{"d":0,"r":[4,122],"t":0},{"d":324,"r":[7,36],"t":1},{"d":0,"r":[4,122],"t":0},{"d":326,"r":[8,35],"t":1},{"d":327,"r":[0,7],"t":1},{"d":326,"r":[8,35],"t":1},{"d":329,"r":[7,8],"t":1},{"d":326,"r":[8,35],"t":1},{"d":331,"r":[8,15],"t":1},{"d":326,"r":[8,35],"t":1},{"d":333,"r":[15,16],"t":1},{"d":326,"r":[8,35],"t":1},{"d":335,"r":[16,20],"t":1},{"d":326,"r":[8,35],"t":1},{"d":337,"r":[20,21],"t":1},{"d":326,"r":[8,35],"t":1},{"d":339,"r":[21,27],"t":1},{"d":0,"r":[4,122],"t":0},{"d":341,"r":[37,43],"t":1},{"d":0,"r":[4,122],"t":0},{"d":343,"r":[75,85],"t":1},{"d":0,"r":[4,122],"t":0},{"d":345,"r":[56,60],"t":1},{"d":0,"r":[4,122],"t":0},{"d":347,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/boundary-values.json b/ts-packages/annotated-qmd/examples/boundary-values.json index b4b3c3d49..e21c878bd 100644 --- a/ts-packages/annotated-qmd/examples/boundary-values.json +++ b/ts-packages/annotated-qmd/examples/boundary-values.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[6,["level-6-header-maximum",[],[]],[{"c":"Level","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"6","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"Header","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"(Maximum)","s":11,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"This","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"is","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"the","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"deepest","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"header","s":21,"t":"Str"},{"s":22,"t":"Space"},{"c":"level.","s":23,"t":"Str"}],"s":12,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["ordered-list-with-custom-start",[],[]],[{"c":"Ordered","s":25,"t":"Str"},{"s":26,"t":"Space"},{"c":"List","s":27,"t":"Str"},{"s":28,"t":"Space"},{"c":"with","s":29,"t":"Str"},{"s":30,"t":"Space"},{"c":"Custom","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"Start","s":33,"t":"Str"}]],"s":24,"t":"Header"},{"c":[[5,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Fifth","s":36,"t":"Str"},{"s":37,"t":"Space"},{"c":"item","s":38,"t":"Str"}],"s":35,"t":"Plain"}],[{"c":[{"c":"Sixth","s":40,"t":"Str"},{"s":41,"t":"Space"},{"c":"item","s":42,"t":"Str"}],"s":39,"t":"Plain"}]]],"s":34,"t":"OrderedList"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["many-classes",[],[]],[{"c":"Many","s":44,"t":"Str"},{"s":45,"t":"Space"},{"c":"Classes","s":46,"t":"Str"}]],"s":43,"t":"Header"},{"c":[{"a":{"classes":[49,50,51,52,53,54,55,56,57,58],"id":null,"kvs":[]},"c":[["",["class1","class2","class3","class4","class5","class6","class7","class8","class9","class10"],[]],[{"c":"Div","s":59,"t":"Str"},{"s":60,"t":"Space"},{"c":"with","s":61,"t":"Str"},{"s":62,"t":"Space"},{"c":"many","s":63,"t":"Str"},{"s":64,"t":"Space"},{"c":"classes","s":65,"t":"Str"}]],"s":48,"t":"Span"}],"s":47,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["very-long-string",[],[]],[{"c":"Very","s":67,"t":"Str"},{"s":68,"t":"Space"},{"c":"Long","s":69,"t":"Str"},{"s":70,"t":"Space"},{"c":"String","s":71,"t":"Str"}]],"s":66,"t":"Header"},{"c":[{"c":"This","s":73,"t":"Str"},{"s":74,"t":"Space"},{"c":"is","s":75,"t":"Str"},{"s":76,"t":"Space"},{"c":"a","s":77,"t":"Str"},{"s":78,"t":"Space"},{"c":"very","s":79,"t":"Str"},{"s":80,"t":"Space"},{"c":"long","s":81,"t":"Str"},{"s":82,"t":"Space"},{"c":"string","s":83,"t":"Str"},{"s":84,"t":"Space"},{"c":"that","s":85,"t":"Str"},{"s":86,"t":"Space"},{"c":"goes","s":87,"t":"Str"},{"s":88,"t":"Space"},{"c":"on","s":89,"t":"Str"},{"s":90,"t":"Space"},{"c":"and","s":91,"t":"Str"},{"s":92,"t":"Space"},{"c":"on","s":93,"t":"Str"},{"s":94,"t":"Space"},{"c":"and","s":95,"t":"Str"},{"s":96,"t":"Space"},{"c":"on","s":97,"t":"Str"},{"s":98,"t":"Space"},{"c":"and","s":99,"t":"Str"},{"s":100,"t":"Space"},{"c":"on","s":101,"t":"Str"},{"s":102,"t":"Space"},{"c":"and","s":103,"t":"Str"},{"s":104,"t":"Space"},{"c":"on","s":105,"t":"Str"},{"s":106,"t":"Space"},{"c":"and","s":107,"t":"Str"},{"s":108,"t":"Space"},{"c":"on","s":109,"t":"Str"},{"s":110,"t":"Space"},{"c":"and","s":111,"t":"Str"},{"s":112,"t":"Space"},{"c":"on","s":113,"t":"Str"},{"s":114,"t":"Space"},{"c":"and","s":115,"t":"Str"},{"s":116,"t":"Space"},{"c":"on","s":117,"t":"Str"},{"s":118,"t":"Space"},{"c":"and","s":119,"t":"Str"},{"s":120,"t":"Space"},{"c":"on","s":121,"t":"Str"},{"s":122,"t":"Space"},{"c":"and","s":123,"t":"Str"},{"s":124,"t":"Space"},{"c":"on","s":125,"t":"Str"},{"s":126,"t":"Space"},{"c":"and","s":127,"t":"Str"},{"s":128,"t":"Space"},{"c":"on","s":129,"t":"Str"},{"s":130,"t":"Space"},{"c":"and","s":131,"t":"Str"},{"s":132,"t":"Space"},{"c":"on","s":133,"t":"Str"},{"s":134,"t":"Space"},{"c":"and","s":135,"t":"Str"},{"s":136,"t":"Space"},{"c":"on","s":137,"t":"Str"},{"s":138,"t":"Space"},{"c":"and","s":139,"t":"Str"},{"s":140,"t":"Space"},{"c":"on","s":141,"t":"Str"},{"s":142,"t":"Space"},{"c":"and","s":143,"t":"Str"},{"s":144,"t":"Space"},{"c":"on","s":145,"t":"Str"},{"s":146,"t":"Space"},{"c":"and","s":147,"t":"Str"},{"s":148,"t":"Space"},{"c":"on","s":149,"t":"Str"},{"s":150,"t":"Space"},{"c":"and","s":151,"t":"Str"},{"s":152,"t":"Space"},{"c":"on","s":153,"t":"Str"},{"s":154,"t":"Space"},{"c":"and","s":155,"t":"Str"},{"s":156,"t":"Space"},{"c":"on","s":157,"t":"Str"},{"s":158,"t":"Space"},{"c":"and","s":159,"t":"Str"},{"s":160,"t":"Space"},{"c":"on","s":161,"t":"Str"},{"s":162,"t":"Space"},{"c":"and","s":163,"t":"Str"},{"s":164,"t":"Space"},{"c":"on","s":165,"t":"Str"},{"s":166,"t":"Space"},{"c":"and","s":167,"t":"Str"},{"s":168,"t":"Space"},{"c":"on","s":169,"t":"Str"},{"s":170,"t":"Space"},{"c":"and","s":171,"t":"Str"},{"s":172,"t":"Space"},{"c":"on","s":173,"t":"Str"},{"s":174,"t":"Space"},{"c":"and","s":175,"t":"Str"},{"s":176,"t":"Space"},{"c":"on","s":177,"t":"Str"},{"s":178,"t":"Space"},{"c":"and","s":179,"t":"Str"},{"s":180,"t":"Space"},{"c":"on","s":181,"t":"Str"},{"s":182,"t":"Space"},{"c":"and","s":183,"t":"Str"},{"s":184,"t":"Space"},{"c":"on","s":185,"t":"Str"},{"s":186,"t":"Space"},{"c":"and","s":187,"t":"Str"},{"s":188,"t":"Space"},{"c":"on","s":189,"t":"Str"},{"s":190,"t":"Space"},{"c":"and","s":191,"t":"Str"},{"s":192,"t":"Space"},{"c":"on","s":193,"t":"Str"},{"s":194,"t":"Space"},{"c":"and","s":195,"t":"Str"},{"s":196,"t":"Space"},{"c":"on","s":197,"t":"Str"},{"s":198,"t":"Space"},{"c":"and","s":199,"t":"Str"},{"s":200,"t":"Space"},{"c":"on","s":201,"t":"Str"},{"s":202,"t":"Space"},{"c":"and","s":203,"t":"Str"},{"s":204,"t":"Space"},{"c":"on","s":205,"t":"Str"},{"s":206,"t":"Space"},{"c":"and","s":207,"t":"Str"},{"s":208,"t":"Space"},{"c":"on","s":209,"t":"Str"},{"s":210,"t":"Space"},{"c":"and","s":211,"t":"Str"},{"s":212,"t":"Space"},{"c":"on","s":213,"t":"Str"},{"s":214,"t":"Space"},{"c":"and","s":215,"t":"Str"},{"s":216,"t":"Space"},{"c":"on","s":217,"t":"Str"},{"s":218,"t":"Space"},{"c":"and","s":219,"t":"Str"},{"s":220,"t":"Space"},{"c":"on","s":221,"t":"Str"},{"s":222,"t":"Space"},{"c":"and","s":223,"t":"Str"},{"s":224,"t":"Space"},{"c":"on","s":225,"t":"Str"},{"s":226,"t":"Space"},{"c":"and","s":227,"t":"Str"},{"s":228,"t":"Space"},{"c":"on","s":229,"t":"Str"},{"s":230,"t":"Space"},{"c":"and","s":231,"t":"Str"},{"s":232,"t":"Space"},{"c":"on","s":233,"t":"Str"},{"s":234,"t":"Space"},{"c":"and","s":235,"t":"Str"},{"s":236,"t":"Space"},{"c":"on","s":237,"t":"Str"},{"s":238,"t":"Space"},{"c":"and","s":239,"t":"Str"},{"s":240,"t":"Space"},{"c":"on","s":241,"t":"Str"},{"s":242,"t":"Space"},{"c":"and","s":243,"t":"Str"},{"s":244,"t":"Space"},{"c":"on","s":245,"t":"Str"},{"s":246,"t":"Space"},{"c":"and","s":247,"t":"Str"},{"s":248,"t":"Space"},{"c":"on","s":249,"t":"Str"},{"s":250,"t":"Space"},{"c":"and","s":251,"t":"Str"},{"s":252,"t":"Space"},{"c":"on","s":253,"t":"Str"},{"s":254,"t":"Space"},{"c":"and","s":255,"t":"Str"},{"s":256,"t":"Space"},{"c":"on","s":257,"t":"Str"},{"s":258,"t":"Space"},{"c":"and","s":259,"t":"Str"},{"s":260,"t":"Space"},{"c":"on","s":261,"t":"Str"},{"s":262,"t":"Space"},{"c":"and","s":263,"t":"Str"},{"s":264,"t":"Space"},{"c":"on","s":265,"t":"Str"},{"s":266,"t":"Space"},{"c":"and","s":267,"t":"Str"},{"s":268,"t":"Space"},{"c":"on","s":269,"t":"Str"},{"s":270,"t":"Space"},{"c":"and","s":271,"t":"Str"},{"s":272,"t":"Space"},{"c":"on","s":273,"t":"Str"},{"s":274,"t":"Space"},{"c":"and","s":275,"t":"Str"},{"s":276,"t":"Space"},{"c":"on","s":277,"t":"Str"},{"s":278,"t":"Space"},{"c":"and","s":279,"t":"Str"},{"s":280,"t":"Space"},{"c":"on","s":281,"t":"Str"},{"s":282,"t":"Space"},{"c":"and","s":283,"t":"Str"},{"s":284,"t":"Space"},{"c":"on","s":285,"t":"Str"},{"s":286,"t":"Space"},{"c":"and","s":287,"t":"Str"},{"s":288,"t":"Space"},{"c":"on","s":289,"t":"Str"},{"s":290,"t":"Space"},{"c":"and","s":291,"t":"Str"},{"s":292,"t":"Space"},{"c":"on","s":293,"t":"Str"},{"s":294,"t":"Space"},{"c":"and","s":295,"t":"Str"},{"s":296,"t":"Space"},{"c":"on","s":297,"t":"Str"},{"s":298,"t":"Space"},{"c":"and","s":299,"t":"Str"},{"s":300,"t":"Space"},{"c":"on","s":301,"t":"Str"},{"s":302,"t":"Space"},{"c":"and","s":303,"t":"Str"},{"s":304,"t":"Space"},{"c":"on","s":305,"t":"Str"},{"s":306,"t":"Space"},{"c":"and","s":307,"t":"Str"},{"s":308,"t":"Space"},{"c":"on","s":309,"t":"Str"},{"s":310,"t":"Space"},{"c":"and","s":311,"t":"Str"},{"s":312,"t":"Space"},{"c":"on","s":313,"t":"Str"},{"s":314,"t":"Space"},{"c":"and","s":315,"t":"Str"},{"s":316,"t":"Space"},{"c":"on","s":317,"t":"Str"},{"s":318,"t":"Space"},{"c":"and","s":319,"t":"Str"},{"s":320,"t":"Space"},{"c":"on","s":321,"t":"Str"},{"s":322,"t":"Space"},{"c":"and","s":323,"t":"Str"},{"s":324,"t":"Space"},{"c":"on","s":325,"t":"Str"},{"s":326,"t":"Space"},{"c":"and","s":327,"t":"Str"},{"s":328,"t":"Space"},{"c":"on","s":329,"t":"Str"},{"s":330,"t":"Space"},{"c":"and","s":331,"t":"Str"},{"s":332,"t":"Space"},{"c":"on","s":333,"t":"Str"},{"s":334,"t":"Space"},{"c":"and","s":335,"t":"Str"},{"s":336,"t":"Space"},{"c":"on","s":337,"t":"Str"},{"s":338,"t":"Space"},{"c":"and","s":339,"t":"Str"},{"s":340,"t":"Space"},{"c":"on","s":341,"t":"Str"},{"s":342,"t":"Space"},{"c":"and","s":343,"t":"Str"},{"s":344,"t":"Space"},{"c":"on","s":345,"t":"Str"},{"s":346,"t":"Space"},{"c":"and","s":347,"t":"Str"},{"s":348,"t":"Space"},{"c":"on","s":349,"t":"Str"},{"s":350,"t":"Space"},{"c":"and","s":351,"t":"Str"},{"s":352,"t":"Space"},{"c":"on","s":353,"t":"Str"},{"s":354,"t":"Space"},{"c":"and","s":355,"t":"Str"},{"s":356,"t":"Space"},{"c":"on","s":357,"t":"Str"},{"s":358,"t":"Space"},{"c":"and","s":359,"t":"Str"},{"s":360,"t":"Space"},{"c":"on","s":361,"t":"Str"},{"s":362,"t":"Space"},{"c":"and","s":363,"t":"Str"},{"s":364,"t":"Space"},{"c":"on","s":365,"t":"Str"},{"s":366,"t":"Space"},{"c":"and","s":367,"t":"Str"},{"s":368,"t":"Space"},{"c":"on","s":369,"t":"Str"},{"s":370,"t":"Space"},{"c":"and","s":371,"t":"Str"},{"s":372,"t":"Space"},{"c":"on","s":373,"t":"Str"},{"s":374,"t":"Space"},{"c":"and","s":375,"t":"Str"},{"s":376,"t":"Space"},{"c":"on","s":377,"t":"Str"},{"s":378,"t":"Space"},{"c":"and","s":379,"t":"Str"},{"s":380,"t":"Space"},{"c":"on","s":381,"t":"Str"},{"s":382,"t":"Space"},{"c":"and","s":383,"t":"Str"},{"s":384,"t":"Space"},{"c":"on","s":385,"t":"Str"},{"s":386,"t":"Space"},{"c":"and","s":387,"t":"Str"},{"s":388,"t":"Space"},{"c":"on","s":389,"t":"Str"},{"s":390,"t":"Space"},{"c":"and","s":391,"t":"Str"},{"s":392,"t":"Space"},{"c":"on","s":393,"t":"Str"},{"s":394,"t":"Space"},{"c":"and","s":395,"t":"Str"},{"s":396,"t":"Space"},{"c":"on","s":397,"t":"Str"},{"s":398,"t":"Space"},{"c":"and","s":399,"t":"Str"},{"s":400,"t":"Space"},{"c":"on","s":401,"t":"Str"},{"s":402,"t":"Space"},{"c":"and","s":403,"t":"Str"},{"s":404,"t":"Space"},{"c":"on","s":405,"t":"Str"},{"s":406,"t":"Space"},{"c":"and","s":407,"t":"Str"},{"s":408,"t":"Space"},{"c":"on","s":409,"t":"Str"},{"s":410,"t":"Space"},{"c":"and","s":411,"t":"Str"},{"s":412,"t":"Space"},{"c":"on","s":413,"t":"Str"},{"s":414,"t":"Space"},{"c":"and","s":415,"t":"Str"},{"s":416,"t":"Space"},{"c":"on","s":417,"t":"Str"},{"s":418,"t":"Space"},{"c":"and","s":419,"t":"Str"},{"s":420,"t":"Space"},{"c":"on","s":421,"t":"Str"},{"s":422,"t":"Space"},{"c":"and","s":423,"t":"Str"},{"s":424,"t":"Space"},{"c":"on","s":425,"t":"Str"},{"s":426,"t":"Space"},{"c":"and","s":427,"t":"Str"},{"s":428,"t":"Space"},{"c":"on","s":429,"t":"Str"},{"s":430,"t":"Space"},{"c":"and","s":431,"t":"Str"},{"s":432,"t":"Space"},{"c":"on","s":433,"t":"Str"},{"s":434,"t":"Space"},{"c":"and","s":435,"t":"Str"},{"s":436,"t":"Space"},{"c":"on","s":437,"t":"Str"},{"s":438,"t":"Space"},{"c":"and","s":439,"t":"Str"},{"s":440,"t":"Space"},{"c":"on","s":441,"t":"Str"},{"s":442,"t":"Space"},{"c":"and","s":443,"t":"Str"},{"s":444,"t":"Space"},{"c":"on","s":445,"t":"Str"},{"s":446,"t":"Space"},{"c":"and","s":447,"t":"Str"},{"s":448,"t":"Space"},{"c":"on","s":449,"t":"Str"},{"s":450,"t":"Space"},{"c":"and","s":451,"t":"Str"},{"s":452,"t":"Space"},{"c":"on","s":453,"t":"Str"},{"s":454,"t":"Space"},{"c":"and","s":455,"t":"Str"},{"s":456,"t":"Space"},{"c":"on","s":457,"t":"Str"},{"s":458,"t":"Space"},{"c":"and","s":459,"t":"Str"},{"s":460,"t":"Space"},{"c":"on","s":461,"t":"Str"},{"s":462,"t":"Space"},{"c":"and","s":463,"t":"Str"},{"s":464,"t":"Space"},{"c":"on","s":465,"t":"Str"},{"s":466,"t":"Space"},{"c":"and","s":467,"t":"Str"},{"s":468,"t":"Space"},{"c":"on","s":469,"t":"Str"},{"s":470,"t":"Space"},{"c":"and","s":471,"t":"Str"},{"s":472,"t":"Space"},{"c":"on","s":473,"t":"Str"},{"s":474,"t":"Space"},{"c":"and","s":475,"t":"Str"},{"s":476,"t":"Space"},{"c":"on","s":477,"t":"Str"},{"s":478,"t":"Space"},{"c":"and","s":479,"t":"Str"},{"s":480,"t":"Space"},{"c":"on","s":481,"t":"Str"},{"s":482,"t":"Space"},{"c":"and","s":483,"t":"Str"},{"s":484,"t":"Space"},{"c":"on","s":485,"t":"Str"},{"s":486,"t":"Space"},{"c":"and","s":487,"t":"Str"},{"s":488,"t":"Space"},{"c":"on","s":489,"t":"Str"},{"s":490,"t":"Space"},{"c":"and","s":491,"t":"Str"},{"s":492,"t":"Space"},{"c":"on","s":493,"t":"Str"},{"s":494,"t":"Space"},{"c":"and","s":495,"t":"Str"},{"s":496,"t":"Space"},{"c":"on","s":497,"t":"Str"},{"s":498,"t":"Space"},{"c":"and","s":499,"t":"Str"},{"s":500,"t":"Space"},{"c":"on","s":501,"t":"Str"},{"s":502,"t":"Space"},{"c":"and","s":503,"t":"Str"},{"s":504,"t":"Space"},{"c":"on","s":505,"t":"Str"},{"s":506,"t":"Space"},{"c":"and","s":507,"t":"Str"},{"s":508,"t":"Space"},{"c":"on","s":509,"t":"Str"},{"s":510,"t":"Space"},{"c":"and","s":511,"t":"Str"},{"s":512,"t":"Space"},{"c":"on","s":513,"t":"Str"},{"s":514,"t":"Space"},{"c":"and","s":515,"t":"Str"},{"s":516,"t":"Space"},{"c":"on","s":517,"t":"Str"},{"s":518,"t":"Space"},{"c":"and","s":519,"t":"Str"},{"s":520,"t":"Space"},{"c":"on","s":521,"t":"Str"},{"s":522,"t":"Space"},{"c":"and","s":523,"t":"Str"},{"s":524,"t":"Space"},{"c":"on","s":525,"t":"Str"},{"s":526,"t":"Space"},{"c":"and","s":527,"t":"Str"},{"s":528,"t":"Space"},{"c":"on","s":529,"t":"Str"},{"s":530,"t":"Space"},{"c":"and","s":531,"t":"Str"},{"s":532,"t":"Space"},{"c":"on","s":533,"t":"Str"},{"s":534,"t":"Space"},{"c":"and","s":535,"t":"Str"},{"s":536,"t":"Space"},{"c":"on","s":537,"t":"Str"},{"s":538,"t":"Space"},{"c":"and","s":539,"t":"Str"},{"s":540,"t":"Space"},{"c":"on","s":541,"t":"Str"},{"s":542,"t":"Space"},{"c":"and","s":543,"t":"Str"},{"s":544,"t":"Space"},{"c":"on","s":545,"t":"Str"},{"s":546,"t":"Space"},{"c":"and","s":547,"t":"Str"},{"s":548,"t":"Space"},{"c":"on","s":549,"t":"Str"},{"s":550,"t":"Space"},{"c":"and","s":551,"t":"Str"},{"s":552,"t":"Space"},{"c":"on","s":553,"t":"Str"},{"s":554,"t":"Space"},{"c":"and","s":555,"t":"Str"},{"s":556,"t":"Space"},{"c":"on","s":557,"t":"Str"},{"s":558,"t":"Space"},{"c":"and","s":559,"t":"Str"},{"s":560,"t":"Space"},{"c":"on","s":561,"t":"Str"},{"s":562,"t":"Space"},{"c":"and","s":563,"t":"Str"},{"s":564,"t":"Space"},{"c":"on","s":565,"t":"Str"},{"s":566,"t":"Space"},{"c":"and","s":567,"t":"Str"},{"s":568,"t":"Space"},{"c":"on","s":569,"t":"Str"},{"s":570,"t":"Space"},{"c":"and","s":571,"t":"Str"},{"s":572,"t":"Space"},{"c":"on","s":573,"t":"Str"},{"s":574,"t":"Space"},{"c":"and","s":575,"t":"Str"},{"s":576,"t":"Space"},{"c":"on","s":577,"t":"Str"},{"s":578,"t":"Space"},{"c":"and","s":579,"t":"Str"},{"s":580,"t":"Space"},{"c":"on","s":581,"t":"Str"},{"s":582,"t":"Space"},{"c":"and","s":583,"t":"Str"},{"s":584,"t":"Space"},{"c":"on","s":585,"t":"Str"},{"s":586,"t":"Space"},{"c":"and","s":587,"t":"Str"},{"s":588,"t":"Space"},{"c":"on","s":589,"t":"Str"},{"s":590,"t":"Space"},{"c":"and","s":591,"t":"Str"},{"s":592,"t":"Space"},{"c":"on","s":593,"t":"Str"},{"s":594,"t":"Space"},{"c":"and","s":595,"t":"Str"},{"s":596,"t":"Space"},{"c":"on","s":597,"t":"Str"},{"s":598,"t":"Space"},{"c":"and","s":599,"t":"Str"},{"s":600,"t":"Space"},{"c":"on","s":601,"t":"Str"},{"s":602,"t":"Space"},{"c":"and","s":603,"t":"Str"},{"s":604,"t":"Space"},{"c":"on","s":605,"t":"Str"},{"s":606,"t":"Space"},{"c":"and","s":607,"t":"Str"},{"s":608,"t":"Space"},{"c":"on","s":609,"t":"Str"},{"s":610,"t":"Space"},{"c":"and","s":611,"t":"Str"},{"s":612,"t":"Space"},{"c":"on","s":613,"t":"Str"},{"s":614,"t":"Space"},{"c":"and","s":615,"t":"Str"},{"s":616,"t":"Space"},{"c":"on","s":617,"t":"Str"},{"s":618,"t":"Space"},{"c":"and","s":619,"t":"Str"},{"s":620,"t":"Space"},{"c":"on","s":621,"t":"Str"},{"s":622,"t":"Space"},{"c":"and","s":623,"t":"Str"},{"s":624,"t":"Space"},{"c":"on","s":625,"t":"Str"},{"s":626,"t":"Space"},{"c":"and","s":627,"t":"Str"},{"s":628,"t":"Space"},{"c":"on","s":629,"t":"Str"},{"s":630,"t":"Space"},{"c":"and","s":631,"t":"Str"},{"s":632,"t":"Space"},{"c":"on","s":633,"t":"Str"},{"s":634,"t":"Space"},{"c":"and","s":635,"t":"Str"},{"s":636,"t":"Space"},{"c":"on","s":637,"t":"Str"},{"s":638,"t":"Space"},{"c":"and","s":639,"t":"Str"},{"s":640,"t":"Space"},{"c":"on","s":641,"t":"Str"},{"s":642,"t":"Space"},{"c":"and","s":643,"t":"Str"},{"s":644,"t":"Space"},{"c":"on","s":645,"t":"Str"},{"s":646,"t":"Space"},{"c":"and","s":647,"t":"Str"},{"s":648,"t":"Space"},{"c":"on","s":649,"t":"Str"},{"s":650,"t":"Space"},{"c":"and","s":651,"t":"Str"},{"s":652,"t":"Space"},{"c":"on","s":653,"t":"Str"},{"s":654,"t":"Space"},{"c":"and","s":655,"t":"Str"},{"s":656,"t":"Space"},{"c":"on","s":657,"t":"Str"},{"s":658,"t":"Space"},{"c":"and","s":659,"t":"Str"},{"s":660,"t":"Space"},{"c":"on","s":661,"t":"Str"},{"s":662,"t":"Space"},{"c":"and","s":663,"t":"Str"},{"s":664,"t":"Space"},{"c":"on","s":665,"t":"Str"},{"s":666,"t":"Space"},{"c":"and","s":667,"t":"Str"},{"s":668,"t":"Space"},{"c":"on","s":669,"t":"Str"},{"s":670,"t":"Space"},{"c":"and","s":671,"t":"Str"},{"s":672,"t":"Space"},{"c":"on","s":673,"t":"Str"},{"s":674,"t":"Space"},{"c":"and","s":675,"t":"Str"},{"s":676,"t":"Space"},{"c":"on","s":677,"t":"Str"},{"s":678,"t":"Space"},{"c":"and","s":679,"t":"Str"},{"s":680,"t":"Space"},{"c":"on","s":681,"t":"Str"},{"s":682,"t":"Space"},{"c":"and","s":683,"t":"Str"},{"s":684,"t":"Space"},{"c":"on","s":685,"t":"Str"},{"s":686,"t":"Space"},{"c":"and","s":687,"t":"Str"},{"s":688,"t":"Space"},{"c":"on","s":689,"t":"Str"},{"s":690,"t":"Space"},{"c":"and","s":691,"t":"Str"},{"s":692,"t":"Space"},{"c":"on","s":693,"t":"Str"},{"s":694,"t":"Space"},{"c":"and","s":695,"t":"Str"},{"s":696,"t":"Space"},{"c":"on","s":697,"t":"Str"},{"s":698,"t":"Space"},{"c":"and","s":699,"t":"Str"},{"s":700,"t":"Space"},{"c":"on","s":701,"t":"Str"},{"s":702,"t":"Space"},{"c":"and","s":703,"t":"Str"},{"s":704,"t":"Space"},{"c":"on","s":705,"t":"Str"},{"s":706,"t":"Space"},{"c":"and","s":707,"t":"Str"},{"s":708,"t":"Space"},{"c":"on","s":709,"t":"Str"},{"s":710,"t":"Space"},{"c":"and","s":711,"t":"Str"},{"s":712,"t":"Space"},{"c":"on","s":713,"t":"Str"},{"s":714,"t":"Space"},{"c":"and","s":715,"t":"Str"},{"s":716,"t":"Space"},{"c":"on","s":717,"t":"Str"},{"s":718,"t":"Space"},{"c":"and","s":719,"t":"Str"},{"s":720,"t":"Space"},{"c":"on","s":721,"t":"Str"},{"s":722,"t":"Space"},{"c":"and","s":723,"t":"Str"},{"s":724,"t":"Space"},{"c":"on","s":725,"t":"Str"},{"s":726,"t":"Space"},{"c":"and","s":727,"t":"Str"},{"s":728,"t":"Space"},{"c":"on","s":729,"t":"Str"},{"s":730,"t":"Space"},{"c":"and","s":731,"t":"Str"},{"s":732,"t":"Space"},{"c":"on","s":733,"t":"Str"},{"s":734,"t":"Space"},{"c":"and","s":735,"t":"Str"},{"s":736,"t":"Space"},{"c":"on","s":737,"t":"Str"},{"s":738,"t":"Space"},{"c":"and","s":739,"t":"Str"},{"s":740,"t":"Space"},{"c":"on","s":741,"t":"Str"},{"s":742,"t":"Space"},{"c":"and","s":743,"t":"Str"},{"s":744,"t":"Space"},{"c":"on","s":745,"t":"Str"},{"s":746,"t":"Space"},{"c":"and","s":747,"t":"Str"},{"s":748,"t":"Space"},{"c":"on","s":749,"t":"Str"},{"s":750,"t":"Space"},{"c":"and","s":751,"t":"Str"},{"s":752,"t":"Space"},{"c":"on","s":753,"t":"Str"},{"s":754,"t":"Space"},{"c":"and","s":755,"t":"Str"},{"s":756,"t":"Space"},{"c":"on","s":757,"t":"Str"},{"s":758,"t":"Space"},{"c":"and","s":759,"t":"Str"},{"s":760,"t":"Space"},{"c":"on","s":761,"t":"Str"},{"s":762,"t":"Space"},{"c":"and","s":763,"t":"Str"},{"s":764,"t":"Space"},{"c":"on","s":765,"t":"Str"},{"s":766,"t":"Space"},{"c":"and","s":767,"t":"Str"},{"s":768,"t":"Space"},{"c":"on","s":769,"t":"Str"},{"s":770,"t":"Space"},{"c":"and","s":771,"t":"Str"},{"s":772,"t":"Space"},{"c":"on","s":773,"t":"Str"},{"s":774,"t":"Space"},{"c":"and","s":775,"t":"Str"},{"s":776,"t":"Space"},{"c":"on","s":777,"t":"Str"},{"s":778,"t":"Space"},{"c":"and","s":779,"t":"Str"},{"s":780,"t":"Space"},{"c":"on","s":781,"t":"Str"},{"s":782,"t":"Space"},{"c":"and","s":783,"t":"Str"},{"s":784,"t":"Space"},{"c":"on","s":785,"t":"Str"},{"s":786,"t":"Space"},{"c":"and","s":787,"t":"Str"},{"s":788,"t":"Space"},{"c":"on","s":789,"t":"Str"},{"s":790,"t":"Space"},{"c":"and","s":791,"t":"Str"},{"s":792,"t":"Space"},{"c":"on","s":793,"t":"Str"},{"s":794,"t":"Space"},{"c":"and","s":795,"t":"Str"},{"s":796,"t":"Space"},{"c":"on","s":797,"t":"Str"},{"s":798,"t":"Space"},{"c":"and","s":799,"t":"Str"},{"s":800,"t":"Space"},{"c":"on","s":801,"t":"Str"},{"s":802,"t":"Space"},{"c":"and","s":803,"t":"Str"},{"s":804,"t":"Space"},{"c":"on.","s":805,"t":"Str"}],"s":72,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["single-item-list",[],[]],[{"c":"Single","s":807,"t":"Str"},{"s":808,"t":"Space"},{"c":"Item","s":809,"t":"Str"},{"s":810,"t":"Space"},{"c":"List","s":811,"t":"Str"}]],"s":806,"t":"Header"},{"c":[[{"c":[{"c":"Only","s":814,"t":"Str"},{"s":815,"t":"Space"},{"c":"one","s":816,"t":"Str"},{"s":817,"t":"Space"},{"c":"item","s":818,"t":"Str"}],"s":813,"t":"Plain"}]],"s":812,"t":"BulletList"}],"meta":{"title":{"c":[{"c":"Boundary","s":824,"t":"Str"},{"s":826,"t":"Space"},{"c":"Values","s":828,"t":"Str"},{"s":830,"t":"Space"},{"c":"Test","s":832,"t":"Str"}],"s":821,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,33,37,38,70,71,105,106,139,140,154,168,169,184,185,291,292,311,312,1606,1607,1626,1627,1643],"name":"ts-packages/annotated-qmd/examples/boundary-values.qmd","total_length":1644}],"metaTopLevelKeySources":{"title":834},"p":[{"d":0,"r":[39,71],"t":0},{"d":0,"r":[46,51],"t":0},{"d":0,"r":[51,52],"t":0},{"d":0,"r":[52,53],"t":0},{"d":0,"r":[53,54],"t":0},{"d":0,"r":[54,60],"t":0},{"d":0,"r":[60,61],"t":0},{"d":0,"r":[61,62],"t":0},{"d":0,"r":[62,69],"t":0},{"d":[[7,0,1],[8,1,7]],"r":[0,8],"t":2},{"d":0,"r":[69,70],"t":0},{"d":[[9,0,8],[10,8,1]],"r":[0,9],"t":2},{"d":0,"r":[72,106],"t":0},{"d":0,"r":[72,76],"t":0},{"d":0,"r":[76,77],"t":0},{"d":0,"r":[77,79],"t":0},{"d":0,"r":[79,80],"t":0},{"d":0,"r":[80,83],"t":0},{"d":0,"r":[83,84],"t":0},{"d":0,"r":[84,91],"t":0},{"d":0,"r":[91,92],"t":0},{"d":0,"r":[92,98],"t":0},{"d":0,"r":[98,99],"t":0},{"d":0,"r":[99,105],"t":0},{"d":0,"r":[107,140],"t":0},{"d":0,"r":[109,116],"t":0},{"d":0,"r":[116,117],"t":0},{"d":0,"r":[117,121],"t":0},{"d":0,"r":[121,122],"t":0},{"d":0,"r":[122,126],"t":0},{"d":0,"r":[126,127],"t":0},{"d":0,"r":[127,133],"t":0},{"d":0,"r":[133,134],"t":0},{"d":0,"r":[134,139],"t":0},{"d":0,"r":[141,170],"t":0},{"d":0,"r":[144,155],"t":0},{"d":0,"r":[144,149],"t":0},{"d":0,"r":[149,150],"t":0},{"d":0,"r":[150,154],"t":0},{"d":0,"r":[158,169],"t":0},{"d":0,"r":[158,163],"t":0},{"d":0,"r":[163,164],"t":0},{"d":0,"r":[164,168],"t":0},{"d":0,"r":[170,185],"t":0},{"d":0,"r":[172,176],"t":0},{"d":0,"r":[176,177],"t":0},{"d":0,"r":[177,184],"t":0},{"d":0,"r":[186,292],"t":0},{"d":0,"r":[186,291],"t":0},{"d":0,"r":[210,217],"t":0},{"d":0,"r":[218,225],"t":0},{"d":0,"r":[226,233],"t":0},{"d":0,"r":[234,241],"t":0},{"d":0,"r":[242,249],"t":0},{"d":0,"r":[250,257],"t":0},{"d":0,"r":[258,265],"t":0},{"d":0,"r":[266,273],"t":0},{"d":0,"r":[274,281],"t":0},{"d":0,"r":[282,290],"t":0},{"d":0,"r":[187,190],"t":0},{"d":0,"r":[190,191],"t":0},{"d":0,"r":[191,195],"t":0},{"d":0,"r":[195,196],"t":0},{"d":0,"r":[196,200],"t":0},{"d":0,"r":[200,201],"t":0},{"d":0,"r":[201,208],"t":0},{"d":0,"r":[293,312],"t":0},{"d":0,"r":[295,299],"t":0},{"d":0,"r":[299,300],"t":0},{"d":0,"r":[300,304],"t":0},{"d":0,"r":[304,305],"t":0},{"d":0,"r":[305,311],"t":0},{"d":0,"r":[313,1607],"t":0},{"d":0,"r":[313,317],"t":0},{"d":0,"r":[317,318],"t":0},{"d":0,"r":[318,320],"t":0},{"d":0,"r":[320,321],"t":0},{"d":0,"r":[321,322],"t":0},{"d":0,"r":[322,323],"t":0},{"d":0,"r":[323,327],"t":0},{"d":0,"r":[327,328],"t":0},{"d":0,"r":[328,332],"t":0},{"d":0,"r":[332,333],"t":0},{"d":0,"r":[333,339],"t":0},{"d":0,"r":[339,340],"t":0},{"d":0,"r":[340,344],"t":0},{"d":0,"r":[344,345],"t":0},{"d":0,"r":[345,349],"t":0},{"d":0,"r":[349,350],"t":0},{"d":0,"r":[350,352],"t":0},{"d":0,"r":[352,353],"t":0},{"d":0,"r":[353,356],"t":0},{"d":0,"r":[356,357],"t":0},{"d":0,"r":[357,359],"t":0},{"d":0,"r":[359,360],"t":0},{"d":0,"r":[360,363],"t":0},{"d":0,"r":[363,364],"t":0},{"d":0,"r":[364,366],"t":0},{"d":0,"r":[366,367],"t":0},{"d":0,"r":[367,370],"t":0},{"d":0,"r":[370,371],"t":0},{"d":0,"r":[371,373],"t":0},{"d":0,"r":[373,374],"t":0},{"d":0,"r":[374,377],"t":0},{"d":0,"r":[377,378],"t":0},{"d":0,"r":[378,380],"t":0},{"d":0,"r":[380,381],"t":0},{"d":0,"r":[381,384],"t":0},{"d":0,"r":[384,385],"t":0},{"d":0,"r":[385,387],"t":0},{"d":0,"r":[387,388],"t":0},{"d":0,"r":[388,391],"t":0},{"d":0,"r":[391,392],"t":0},{"d":0,"r":[392,394],"t":0},{"d":0,"r":[394,395],"t":0},{"d":0,"r":[395,398],"t":0},{"d":0,"r":[398,399],"t":0},{"d":0,"r":[399,401],"t":0},{"d":0,"r":[401,402],"t":0},{"d":0,"r":[402,405],"t":0},{"d":0,"r":[405,406],"t":0},{"d":0,"r":[406,408],"t":0},{"d":0,"r":[408,409],"t":0},{"d":0,"r":[409,412],"t":0},{"d":0,"r":[412,413],"t":0},{"d":0,"r":[413,415],"t":0},{"d":0,"r":[415,416],"t":0},{"d":0,"r":[416,419],"t":0},{"d":0,"r":[419,420],"t":0},{"d":0,"r":[420,422],"t":0},{"d":0,"r":[422,423],"t":0},{"d":0,"r":[423,426],"t":0},{"d":0,"r":[426,427],"t":0},{"d":0,"r":[427,429],"t":0},{"d":0,"r":[429,430],"t":0},{"d":0,"r":[430,433],"t":0},{"d":0,"r":[433,434],"t":0},{"d":0,"r":[434,436],"t":0},{"d":0,"r":[436,437],"t":0},{"d":0,"r":[437,440],"t":0},{"d":0,"r":[440,441],"t":0},{"d":0,"r":[441,443],"t":0},{"d":0,"r":[443,444],"t":0},{"d":0,"r":[444,447],"t":0},{"d":0,"r":[447,448],"t":0},{"d":0,"r":[448,450],"t":0},{"d":0,"r":[450,451],"t":0},{"d":0,"r":[451,454],"t":0},{"d":0,"r":[454,455],"t":0},{"d":0,"r":[455,457],"t":0},{"d":0,"r":[457,458],"t":0},{"d":0,"r":[458,461],"t":0},{"d":0,"r":[461,462],"t":0},{"d":0,"r":[462,464],"t":0},{"d":0,"r":[464,465],"t":0},{"d":0,"r":[465,468],"t":0},{"d":0,"r":[468,469],"t":0},{"d":0,"r":[469,471],"t":0},{"d":0,"r":[471,472],"t":0},{"d":0,"r":[472,475],"t":0},{"d":0,"r":[475,476],"t":0},{"d":0,"r":[476,478],"t":0},{"d":0,"r":[478,479],"t":0},{"d":0,"r":[479,482],"t":0},{"d":0,"r":[482,483],"t":0},{"d":0,"r":[483,485],"t":0},{"d":0,"r":[485,486],"t":0},{"d":0,"r":[486,489],"t":0},{"d":0,"r":[489,490],"t":0},{"d":0,"r":[490,492],"t":0},{"d":0,"r":[492,493],"t":0},{"d":0,"r":[493,496],"t":0},{"d":0,"r":[496,497],"t":0},{"d":0,"r":[497,499],"t":0},{"d":0,"r":[499,500],"t":0},{"d":0,"r":[500,503],"t":0},{"d":0,"r":[503,504],"t":0},{"d":0,"r":[504,506],"t":0},{"d":0,"r":[506,507],"t":0},{"d":0,"r":[507,510],"t":0},{"d":0,"r":[510,511],"t":0},{"d":0,"r":[511,513],"t":0},{"d":0,"r":[513,514],"t":0},{"d":0,"r":[514,517],"t":0},{"d":0,"r":[517,518],"t":0},{"d":0,"r":[518,520],"t":0},{"d":0,"r":[520,521],"t":0},{"d":0,"r":[521,524],"t":0},{"d":0,"r":[524,525],"t":0},{"d":0,"r":[525,527],"t":0},{"d":0,"r":[527,528],"t":0},{"d":0,"r":[528,531],"t":0},{"d":0,"r":[531,532],"t":0},{"d":0,"r":[532,534],"t":0},{"d":0,"r":[534,535],"t":0},{"d":0,"r":[535,538],"t":0},{"d":0,"r":[538,539],"t":0},{"d":0,"r":[539,541],"t":0},{"d":0,"r":[541,542],"t":0},{"d":0,"r":[542,545],"t":0},{"d":0,"r":[545,546],"t":0},{"d":0,"r":[546,548],"t":0},{"d":0,"r":[548,549],"t":0},{"d":0,"r":[549,552],"t":0},{"d":0,"r":[552,553],"t":0},{"d":0,"r":[553,555],"t":0},{"d":0,"r":[555,556],"t":0},{"d":0,"r":[556,559],"t":0},{"d":0,"r":[559,560],"t":0},{"d":0,"r":[560,562],"t":0},{"d":0,"r":[562,563],"t":0},{"d":0,"r":[563,566],"t":0},{"d":0,"r":[566,567],"t":0},{"d":0,"r":[567,569],"t":0},{"d":0,"r":[569,570],"t":0},{"d":0,"r":[570,573],"t":0},{"d":0,"r":[573,574],"t":0},{"d":0,"r":[574,576],"t":0},{"d":0,"r":[576,577],"t":0},{"d":0,"r":[577,580],"t":0},{"d":0,"r":[580,581],"t":0},{"d":0,"r":[581,583],"t":0},{"d":0,"r":[583,584],"t":0},{"d":0,"r":[584,587],"t":0},{"d":0,"r":[587,588],"t":0},{"d":0,"r":[588,590],"t":0},{"d":0,"r":[590,591],"t":0},{"d":0,"r":[591,594],"t":0},{"d":0,"r":[594,595],"t":0},{"d":0,"r":[595,597],"t":0},{"d":0,"r":[597,598],"t":0},{"d":0,"r":[598,601],"t":0},{"d":0,"r":[601,602],"t":0},{"d":0,"r":[602,604],"t":0},{"d":0,"r":[604,605],"t":0},{"d":0,"r":[605,608],"t":0},{"d":0,"r":[608,609],"t":0},{"d":0,"r":[609,611],"t":0},{"d":0,"r":[611,612],"t":0},{"d":0,"r":[612,615],"t":0},{"d":0,"r":[615,616],"t":0},{"d":0,"r":[616,618],"t":0},{"d":0,"r":[618,619],"t":0},{"d":0,"r":[619,622],"t":0},{"d":0,"r":[622,623],"t":0},{"d":0,"r":[623,625],"t":0},{"d":0,"r":[625,626],"t":0},{"d":0,"r":[626,629],"t":0},{"d":0,"r":[629,630],"t":0},{"d":0,"r":[630,632],"t":0},{"d":0,"r":[632,633],"t":0},{"d":0,"r":[633,636],"t":0},{"d":0,"r":[636,637],"t":0},{"d":0,"r":[637,639],"t":0},{"d":0,"r":[639,640],"t":0},{"d":0,"r":[640,643],"t":0},{"d":0,"r":[643,644],"t":0},{"d":0,"r":[644,646],"t":0},{"d":0,"r":[646,647],"t":0},{"d":0,"r":[647,650],"t":0},{"d":0,"r":[650,651],"t":0},{"d":0,"r":[651,653],"t":0},{"d":0,"r":[653,654],"t":0},{"d":0,"r":[654,657],"t":0},{"d":0,"r":[657,658],"t":0},{"d":0,"r":[658,660],"t":0},{"d":0,"r":[660,661],"t":0},{"d":0,"r":[661,664],"t":0},{"d":0,"r":[664,665],"t":0},{"d":0,"r":[665,667],"t":0},{"d":0,"r":[667,668],"t":0},{"d":0,"r":[668,671],"t":0},{"d":0,"r":[671,672],"t":0},{"d":0,"r":[672,674],"t":0},{"d":0,"r":[674,675],"t":0},{"d":0,"r":[675,678],"t":0},{"d":0,"r":[678,679],"t":0},{"d":0,"r":[679,681],"t":0},{"d":0,"r":[681,682],"t":0},{"d":0,"r":[682,685],"t":0},{"d":0,"r":[685,686],"t":0},{"d":0,"r":[686,688],"t":0},{"d":0,"r":[688,689],"t":0},{"d":0,"r":[689,692],"t":0},{"d":0,"r":[692,693],"t":0},{"d":0,"r":[693,695],"t":0},{"d":0,"r":[695,696],"t":0},{"d":0,"r":[696,699],"t":0},{"d":0,"r":[699,700],"t":0},{"d":0,"r":[700,702],"t":0},{"d":0,"r":[702,703],"t":0},{"d":0,"r":[703,706],"t":0},{"d":0,"r":[706,707],"t":0},{"d":0,"r":[707,709],"t":0},{"d":0,"r":[709,710],"t":0},{"d":0,"r":[710,713],"t":0},{"d":0,"r":[713,714],"t":0},{"d":0,"r":[714,716],"t":0},{"d":0,"r":[716,717],"t":0},{"d":0,"r":[717,720],"t":0},{"d":0,"r":[720,721],"t":0},{"d":0,"r":[721,723],"t":0},{"d":0,"r":[723,724],"t":0},{"d":0,"r":[724,727],"t":0},{"d":0,"r":[727,728],"t":0},{"d":0,"r":[728,730],"t":0},{"d":0,"r":[730,731],"t":0},{"d":0,"r":[731,734],"t":0},{"d":0,"r":[734,735],"t":0},{"d":0,"r":[735,737],"t":0},{"d":0,"r":[737,738],"t":0},{"d":0,"r":[738,741],"t":0},{"d":0,"r":[741,742],"t":0},{"d":0,"r":[742,744],"t":0},{"d":0,"r":[744,745],"t":0},{"d":0,"r":[745,748],"t":0},{"d":0,"r":[748,749],"t":0},{"d":0,"r":[749,751],"t":0},{"d":0,"r":[751,752],"t":0},{"d":0,"r":[752,755],"t":0},{"d":0,"r":[755,756],"t":0},{"d":0,"r":[756,758],"t":0},{"d":0,"r":[758,759],"t":0},{"d":0,"r":[759,762],"t":0},{"d":0,"r":[762,763],"t":0},{"d":0,"r":[763,765],"t":0},{"d":0,"r":[765,766],"t":0},{"d":0,"r":[766,769],"t":0},{"d":0,"r":[769,770],"t":0},{"d":0,"r":[770,772],"t":0},{"d":0,"r":[772,773],"t":0},{"d":0,"r":[773,776],"t":0},{"d":0,"r":[776,777],"t":0},{"d":0,"r":[777,779],"t":0},{"d":0,"r":[779,780],"t":0},{"d":0,"r":[780,783],"t":0},{"d":0,"r":[783,784],"t":0},{"d":0,"r":[784,786],"t":0},{"d":0,"r":[786,787],"t":0},{"d":0,"r":[787,790],"t":0},{"d":0,"r":[790,791],"t":0},{"d":0,"r":[791,793],"t":0},{"d":0,"r":[793,794],"t":0},{"d":0,"r":[794,797],"t":0},{"d":0,"r":[797,798],"t":0},{"d":0,"r":[798,800],"t":0},{"d":0,"r":[800,801],"t":0},{"d":0,"r":[801,804],"t":0},{"d":0,"r":[804,805],"t":0},{"d":0,"r":[805,807],"t":0},{"d":0,"r":[807,808],"t":0},{"d":0,"r":[808,811],"t":0},{"d":0,"r":[811,812],"t":0},{"d":0,"r":[812,814],"t":0},{"d":0,"r":[814,815],"t":0},{"d":0,"r":[815,818],"t":0},{"d":0,"r":[818,819],"t":0},{"d":0,"r":[819,821],"t":0},{"d":0,"r":[821,822],"t":0},{"d":0,"r":[822,825],"t":0},{"d":0,"r":[825,826],"t":0},{"d":0,"r":[826,828],"t":0},{"d":0,"r":[828,829],"t":0},{"d":0,"r":[829,832],"t":0},{"d":0,"r":[832,833],"t":0},{"d":0,"r":[833,835],"t":0},{"d":0,"r":[835,836],"t":0},{"d":0,"r":[836,839],"t":0},{"d":0,"r":[839,840],"t":0},{"d":0,"r":[840,842],"t":0},{"d":0,"r":[842,843],"t":0},{"d":0,"r":[843,846],"t":0},{"d":0,"r":[846,847],"t":0},{"d":0,"r":[847,849],"t":0},{"d":0,"r":[849,850],"t":0},{"d":0,"r":[850,853],"t":0},{"d":0,"r":[853,854],"t":0},{"d":0,"r":[854,856],"t":0},{"d":0,"r":[856,857],"t":0},{"d":0,"r":[857,860],"t":0},{"d":0,"r":[860,861],"t":0},{"d":0,"r":[861,863],"t":0},{"d":0,"r":[863,864],"t":0},{"d":0,"r":[864,867],"t":0},{"d":0,"r":[867,868],"t":0},{"d":0,"r":[868,870],"t":0},{"d":0,"r":[870,871],"t":0},{"d":0,"r":[871,874],"t":0},{"d":0,"r":[874,875],"t":0},{"d":0,"r":[875,877],"t":0},{"d":0,"r":[877,878],"t":0},{"d":0,"r":[878,881],"t":0},{"d":0,"r":[881,882],"t":0},{"d":0,"r":[882,884],"t":0},{"d":0,"r":[884,885],"t":0},{"d":0,"r":[885,888],"t":0},{"d":0,"r":[888,889],"t":0},{"d":0,"r":[889,891],"t":0},{"d":0,"r":[891,892],"t":0},{"d":0,"r":[892,895],"t":0},{"d":0,"r":[895,896],"t":0},{"d":0,"r":[896,898],"t":0},{"d":0,"r":[898,899],"t":0},{"d":0,"r":[899,902],"t":0},{"d":0,"r":[902,903],"t":0},{"d":0,"r":[903,905],"t":0},{"d":0,"r":[905,906],"t":0},{"d":0,"r":[906,909],"t":0},{"d":0,"r":[909,910],"t":0},{"d":0,"r":[910,912],"t":0},{"d":0,"r":[912,913],"t":0},{"d":0,"r":[913,916],"t":0},{"d":0,"r":[916,917],"t":0},{"d":0,"r":[917,919],"t":0},{"d":0,"r":[919,920],"t":0},{"d":0,"r":[920,923],"t":0},{"d":0,"r":[923,924],"t":0},{"d":0,"r":[924,926],"t":0},{"d":0,"r":[926,927],"t":0},{"d":0,"r":[927,930],"t":0},{"d":0,"r":[930,931],"t":0},{"d":0,"r":[931,933],"t":0},{"d":0,"r":[933,934],"t":0},{"d":0,"r":[934,937],"t":0},{"d":0,"r":[937,938],"t":0},{"d":0,"r":[938,940],"t":0},{"d":0,"r":[940,941],"t":0},{"d":0,"r":[941,944],"t":0},{"d":0,"r":[944,945],"t":0},{"d":0,"r":[945,947],"t":0},{"d":0,"r":[947,948],"t":0},{"d":0,"r":[948,951],"t":0},{"d":0,"r":[951,952],"t":0},{"d":0,"r":[952,954],"t":0},{"d":0,"r":[954,955],"t":0},{"d":0,"r":[955,958],"t":0},{"d":0,"r":[958,959],"t":0},{"d":0,"r":[959,961],"t":0},{"d":0,"r":[961,962],"t":0},{"d":0,"r":[962,965],"t":0},{"d":0,"r":[965,966],"t":0},{"d":0,"r":[966,968],"t":0},{"d":0,"r":[968,969],"t":0},{"d":0,"r":[969,972],"t":0},{"d":0,"r":[972,973],"t":0},{"d":0,"r":[973,975],"t":0},{"d":0,"r":[975,976],"t":0},{"d":0,"r":[976,979],"t":0},{"d":0,"r":[979,980],"t":0},{"d":0,"r":[980,982],"t":0},{"d":0,"r":[982,983],"t":0},{"d":0,"r":[983,986],"t":0},{"d":0,"r":[986,987],"t":0},{"d":0,"r":[987,989],"t":0},{"d":0,"r":[989,990],"t":0},{"d":0,"r":[990,993],"t":0},{"d":0,"r":[993,994],"t":0},{"d":0,"r":[994,996],"t":0},{"d":0,"r":[996,997],"t":0},{"d":0,"r":[997,1000],"t":0},{"d":0,"r":[1000,1001],"t":0},{"d":0,"r":[1001,1003],"t":0},{"d":0,"r":[1003,1004],"t":0},{"d":0,"r":[1004,1007],"t":0},{"d":0,"r":[1007,1008],"t":0},{"d":0,"r":[1008,1010],"t":0},{"d":0,"r":[1010,1011],"t":0},{"d":0,"r":[1011,1014],"t":0},{"d":0,"r":[1014,1015],"t":0},{"d":0,"r":[1015,1017],"t":0},{"d":0,"r":[1017,1018],"t":0},{"d":0,"r":[1018,1021],"t":0},{"d":0,"r":[1021,1022],"t":0},{"d":0,"r":[1022,1024],"t":0},{"d":0,"r":[1024,1025],"t":0},{"d":0,"r":[1025,1028],"t":0},{"d":0,"r":[1028,1029],"t":0},{"d":0,"r":[1029,1031],"t":0},{"d":0,"r":[1031,1032],"t":0},{"d":0,"r":[1032,1035],"t":0},{"d":0,"r":[1035,1036],"t":0},{"d":0,"r":[1036,1038],"t":0},{"d":0,"r":[1038,1039],"t":0},{"d":0,"r":[1039,1042],"t":0},{"d":0,"r":[1042,1043],"t":0},{"d":0,"r":[1043,1045],"t":0},{"d":0,"r":[1045,1046],"t":0},{"d":0,"r":[1046,1049],"t":0},{"d":0,"r":[1049,1050],"t":0},{"d":0,"r":[1050,1052],"t":0},{"d":0,"r":[1052,1053],"t":0},{"d":0,"r":[1053,1056],"t":0},{"d":0,"r":[1056,1057],"t":0},{"d":0,"r":[1057,1059],"t":0},{"d":0,"r":[1059,1060],"t":0},{"d":0,"r":[1060,1063],"t":0},{"d":0,"r":[1063,1064],"t":0},{"d":0,"r":[1064,1066],"t":0},{"d":0,"r":[1066,1067],"t":0},{"d":0,"r":[1067,1070],"t":0},{"d":0,"r":[1070,1071],"t":0},{"d":0,"r":[1071,1073],"t":0},{"d":0,"r":[1073,1074],"t":0},{"d":0,"r":[1074,1077],"t":0},{"d":0,"r":[1077,1078],"t":0},{"d":0,"r":[1078,1080],"t":0},{"d":0,"r":[1080,1081],"t":0},{"d":0,"r":[1081,1084],"t":0},{"d":0,"r":[1084,1085],"t":0},{"d":0,"r":[1085,1087],"t":0},{"d":0,"r":[1087,1088],"t":0},{"d":0,"r":[1088,1091],"t":0},{"d":0,"r":[1091,1092],"t":0},{"d":0,"r":[1092,1094],"t":0},{"d":0,"r":[1094,1095],"t":0},{"d":0,"r":[1095,1098],"t":0},{"d":0,"r":[1098,1099],"t":0},{"d":0,"r":[1099,1101],"t":0},{"d":0,"r":[1101,1102],"t":0},{"d":0,"r":[1102,1105],"t":0},{"d":0,"r":[1105,1106],"t":0},{"d":0,"r":[1106,1108],"t":0},{"d":0,"r":[1108,1109],"t":0},{"d":0,"r":[1109,1112],"t":0},{"d":0,"r":[1112,1113],"t":0},{"d":0,"r":[1113,1115],"t":0},{"d":0,"r":[1115,1116],"t":0},{"d":0,"r":[1116,1119],"t":0},{"d":0,"r":[1119,1120],"t":0},{"d":0,"r":[1120,1122],"t":0},{"d":0,"r":[1122,1123],"t":0},{"d":0,"r":[1123,1126],"t":0},{"d":0,"r":[1126,1127],"t":0},{"d":0,"r":[1127,1129],"t":0},{"d":0,"r":[1129,1130],"t":0},{"d":0,"r":[1130,1133],"t":0},{"d":0,"r":[1133,1134],"t":0},{"d":0,"r":[1134,1136],"t":0},{"d":0,"r":[1136,1137],"t":0},{"d":0,"r":[1137,1140],"t":0},{"d":0,"r":[1140,1141],"t":0},{"d":0,"r":[1141,1143],"t":0},{"d":0,"r":[1143,1144],"t":0},{"d":0,"r":[1144,1147],"t":0},{"d":0,"r":[1147,1148],"t":0},{"d":0,"r":[1148,1150],"t":0},{"d":0,"r":[1150,1151],"t":0},{"d":0,"r":[1151,1154],"t":0},{"d":0,"r":[1154,1155],"t":0},{"d":0,"r":[1155,1157],"t":0},{"d":0,"r":[1157,1158],"t":0},{"d":0,"r":[1158,1161],"t":0},{"d":0,"r":[1161,1162],"t":0},{"d":0,"r":[1162,1164],"t":0},{"d":0,"r":[1164,1165],"t":0},{"d":0,"r":[1165,1168],"t":0},{"d":0,"r":[1168,1169],"t":0},{"d":0,"r":[1169,1171],"t":0},{"d":0,"r":[1171,1172],"t":0},{"d":0,"r":[1172,1175],"t":0},{"d":0,"r":[1175,1176],"t":0},{"d":0,"r":[1176,1178],"t":0},{"d":0,"r":[1178,1179],"t":0},{"d":0,"r":[1179,1182],"t":0},{"d":0,"r":[1182,1183],"t":0},{"d":0,"r":[1183,1185],"t":0},{"d":0,"r":[1185,1186],"t":0},{"d":0,"r":[1186,1189],"t":0},{"d":0,"r":[1189,1190],"t":0},{"d":0,"r":[1190,1192],"t":0},{"d":0,"r":[1192,1193],"t":0},{"d":0,"r":[1193,1196],"t":0},{"d":0,"r":[1196,1197],"t":0},{"d":0,"r":[1197,1199],"t":0},{"d":0,"r":[1199,1200],"t":0},{"d":0,"r":[1200,1203],"t":0},{"d":0,"r":[1203,1204],"t":0},{"d":0,"r":[1204,1206],"t":0},{"d":0,"r":[1206,1207],"t":0},{"d":0,"r":[1207,1210],"t":0},{"d":0,"r":[1210,1211],"t":0},{"d":0,"r":[1211,1213],"t":0},{"d":0,"r":[1213,1214],"t":0},{"d":0,"r":[1214,1217],"t":0},{"d":0,"r":[1217,1218],"t":0},{"d":0,"r":[1218,1220],"t":0},{"d":0,"r":[1220,1221],"t":0},{"d":0,"r":[1221,1224],"t":0},{"d":0,"r":[1224,1225],"t":0},{"d":0,"r":[1225,1227],"t":0},{"d":0,"r":[1227,1228],"t":0},{"d":0,"r":[1228,1231],"t":0},{"d":0,"r":[1231,1232],"t":0},{"d":0,"r":[1232,1234],"t":0},{"d":0,"r":[1234,1235],"t":0},{"d":0,"r":[1235,1238],"t":0},{"d":0,"r":[1238,1239],"t":0},{"d":0,"r":[1239,1241],"t":0},{"d":0,"r":[1241,1242],"t":0},{"d":0,"r":[1242,1245],"t":0},{"d":0,"r":[1245,1246],"t":0},{"d":0,"r":[1246,1248],"t":0},{"d":0,"r":[1248,1249],"t":0},{"d":0,"r":[1249,1252],"t":0},{"d":0,"r":[1252,1253],"t":0},{"d":0,"r":[1253,1255],"t":0},{"d":0,"r":[1255,1256],"t":0},{"d":0,"r":[1256,1259],"t":0},{"d":0,"r":[1259,1260],"t":0},{"d":0,"r":[1260,1262],"t":0},{"d":0,"r":[1262,1263],"t":0},{"d":0,"r":[1263,1266],"t":0},{"d":0,"r":[1266,1267],"t":0},{"d":0,"r":[1267,1269],"t":0},{"d":0,"r":[1269,1270],"t":0},{"d":0,"r":[1270,1273],"t":0},{"d":0,"r":[1273,1274],"t":0},{"d":0,"r":[1274,1276],"t":0},{"d":0,"r":[1276,1277],"t":0},{"d":0,"r":[1277,1280],"t":0},{"d":0,"r":[1280,1281],"t":0},{"d":0,"r":[1281,1283],"t":0},{"d":0,"r":[1283,1284],"t":0},{"d":0,"r":[1284,1287],"t":0},{"d":0,"r":[1287,1288],"t":0},{"d":0,"r":[1288,1290],"t":0},{"d":0,"r":[1290,1291],"t":0},{"d":0,"r":[1291,1294],"t":0},{"d":0,"r":[1294,1295],"t":0},{"d":0,"r":[1295,1297],"t":0},{"d":0,"r":[1297,1298],"t":0},{"d":0,"r":[1298,1301],"t":0},{"d":0,"r":[1301,1302],"t":0},{"d":0,"r":[1302,1304],"t":0},{"d":0,"r":[1304,1305],"t":0},{"d":0,"r":[1305,1308],"t":0},{"d":0,"r":[1308,1309],"t":0},{"d":0,"r":[1309,1311],"t":0},{"d":0,"r":[1311,1312],"t":0},{"d":0,"r":[1312,1315],"t":0},{"d":0,"r":[1315,1316],"t":0},{"d":0,"r":[1316,1318],"t":0},{"d":0,"r":[1318,1319],"t":0},{"d":0,"r":[1319,1322],"t":0},{"d":0,"r":[1322,1323],"t":0},{"d":0,"r":[1323,1325],"t":0},{"d":0,"r":[1325,1326],"t":0},{"d":0,"r":[1326,1329],"t":0},{"d":0,"r":[1329,1330],"t":0},{"d":0,"r":[1330,1332],"t":0},{"d":0,"r":[1332,1333],"t":0},{"d":0,"r":[1333,1336],"t":0},{"d":0,"r":[1336,1337],"t":0},{"d":0,"r":[1337,1339],"t":0},{"d":0,"r":[1339,1340],"t":0},{"d":0,"r":[1340,1343],"t":0},{"d":0,"r":[1343,1344],"t":0},{"d":0,"r":[1344,1346],"t":0},{"d":0,"r":[1346,1347],"t":0},{"d":0,"r":[1347,1350],"t":0},{"d":0,"r":[1350,1351],"t":0},{"d":0,"r":[1351,1353],"t":0},{"d":0,"r":[1353,1354],"t":0},{"d":0,"r":[1354,1357],"t":0},{"d":0,"r":[1357,1358],"t":0},{"d":0,"r":[1358,1360],"t":0},{"d":0,"r":[1360,1361],"t":0},{"d":0,"r":[1361,1364],"t":0},{"d":0,"r":[1364,1365],"t":0},{"d":0,"r":[1365,1367],"t":0},{"d":0,"r":[1367,1368],"t":0},{"d":0,"r":[1368,1371],"t":0},{"d":0,"r":[1371,1372],"t":0},{"d":0,"r":[1372,1374],"t":0},{"d":0,"r":[1374,1375],"t":0},{"d":0,"r":[1375,1378],"t":0},{"d":0,"r":[1378,1379],"t":0},{"d":0,"r":[1379,1381],"t":0},{"d":0,"r":[1381,1382],"t":0},{"d":0,"r":[1382,1385],"t":0},{"d":0,"r":[1385,1386],"t":0},{"d":0,"r":[1386,1388],"t":0},{"d":0,"r":[1388,1389],"t":0},{"d":0,"r":[1389,1392],"t":0},{"d":0,"r":[1392,1393],"t":0},{"d":0,"r":[1393,1395],"t":0},{"d":0,"r":[1395,1396],"t":0},{"d":0,"r":[1396,1399],"t":0},{"d":0,"r":[1399,1400],"t":0},{"d":0,"r":[1400,1402],"t":0},{"d":0,"r":[1402,1403],"t":0},{"d":0,"r":[1403,1406],"t":0},{"d":0,"r":[1406,1407],"t":0},{"d":0,"r":[1407,1409],"t":0},{"d":0,"r":[1409,1410],"t":0},{"d":0,"r":[1410,1413],"t":0},{"d":0,"r":[1413,1414],"t":0},{"d":0,"r":[1414,1416],"t":0},{"d":0,"r":[1416,1417],"t":0},{"d":0,"r":[1417,1420],"t":0},{"d":0,"r":[1420,1421],"t":0},{"d":0,"r":[1421,1423],"t":0},{"d":0,"r":[1423,1424],"t":0},{"d":0,"r":[1424,1427],"t":0},{"d":0,"r":[1427,1428],"t":0},{"d":0,"r":[1428,1430],"t":0},{"d":0,"r":[1430,1431],"t":0},{"d":0,"r":[1431,1434],"t":0},{"d":0,"r":[1434,1435],"t":0},{"d":0,"r":[1435,1437],"t":0},{"d":0,"r":[1437,1438],"t":0},{"d":0,"r":[1438,1441],"t":0},{"d":0,"r":[1441,1442],"t":0},{"d":0,"r":[1442,1444],"t":0},{"d":0,"r":[1444,1445],"t":0},{"d":0,"r":[1445,1448],"t":0},{"d":0,"r":[1448,1449],"t":0},{"d":0,"r":[1449,1451],"t":0},{"d":0,"r":[1451,1452],"t":0},{"d":0,"r":[1452,1455],"t":0},{"d":0,"r":[1455,1456],"t":0},{"d":0,"r":[1456,1458],"t":0},{"d":0,"r":[1458,1459],"t":0},{"d":0,"r":[1459,1462],"t":0},{"d":0,"r":[1462,1463],"t":0},{"d":0,"r":[1463,1465],"t":0},{"d":0,"r":[1465,1466],"t":0},{"d":0,"r":[1466,1469],"t":0},{"d":0,"r":[1469,1470],"t":0},{"d":0,"r":[1470,1472],"t":0},{"d":0,"r":[1472,1473],"t":0},{"d":0,"r":[1473,1476],"t":0},{"d":0,"r":[1476,1477],"t":0},{"d":0,"r":[1477,1479],"t":0},{"d":0,"r":[1479,1480],"t":0},{"d":0,"r":[1480,1483],"t":0},{"d":0,"r":[1483,1484],"t":0},{"d":0,"r":[1484,1486],"t":0},{"d":0,"r":[1486,1487],"t":0},{"d":0,"r":[1487,1490],"t":0},{"d":0,"r":[1490,1491],"t":0},{"d":0,"r":[1491,1493],"t":0},{"d":0,"r":[1493,1494],"t":0},{"d":0,"r":[1494,1497],"t":0},{"d":0,"r":[1497,1498],"t":0},{"d":0,"r":[1498,1500],"t":0},{"d":0,"r":[1500,1501],"t":0},{"d":0,"r":[1501,1504],"t":0},{"d":0,"r":[1504,1505],"t":0},{"d":0,"r":[1505,1507],"t":0},{"d":0,"r":[1507,1508],"t":0},{"d":0,"r":[1508,1511],"t":0},{"d":0,"r":[1511,1512],"t":0},{"d":0,"r":[1512,1514],"t":0},{"d":0,"r":[1514,1515],"t":0},{"d":0,"r":[1515,1518],"t":0},{"d":0,"r":[1518,1519],"t":0},{"d":0,"r":[1519,1521],"t":0},{"d":0,"r":[1521,1522],"t":0},{"d":0,"r":[1522,1525],"t":0},{"d":0,"r":[1525,1526],"t":0},{"d":0,"r":[1526,1528],"t":0},{"d":0,"r":[1528,1529],"t":0},{"d":0,"r":[1529,1532],"t":0},{"d":0,"r":[1532,1533],"t":0},{"d":0,"r":[1533,1535],"t":0},{"d":0,"r":[1535,1536],"t":0},{"d":0,"r":[1536,1539],"t":0},{"d":0,"r":[1539,1540],"t":0},{"d":0,"r":[1540,1542],"t":0},{"d":0,"r":[1542,1543],"t":0},{"d":0,"r":[1543,1546],"t":0},{"d":0,"r":[1546,1547],"t":0},{"d":0,"r":[1547,1549],"t":0},{"d":0,"r":[1549,1550],"t":0},{"d":0,"r":[1550,1553],"t":0},{"d":0,"r":[1553,1554],"t":0},{"d":0,"r":[1554,1556],"t":0},{"d":0,"r":[1556,1557],"t":0},{"d":0,"r":[1557,1560],"t":0},{"d":0,"r":[1560,1561],"t":0},{"d":0,"r":[1561,1563],"t":0},{"d":0,"r":[1563,1564],"t":0},{"d":0,"r":[1564,1567],"t":0},{"d":0,"r":[1567,1568],"t":0},{"d":0,"r":[1568,1570],"t":0},{"d":0,"r":[1570,1571],"t":0},{"d":0,"r":[1571,1574],"t":0},{"d":0,"r":[1574,1575],"t":0},{"d":0,"r":[1575,1577],"t":0},{"d":0,"r":[1577,1578],"t":0},{"d":0,"r":[1578,1581],"t":0},{"d":0,"r":[1581,1582],"t":0},{"d":0,"r":[1582,1584],"t":0},{"d":0,"r":[1584,1585],"t":0},{"d":0,"r":[1585,1588],"t":0},{"d":0,"r":[1588,1589],"t":0},{"d":0,"r":[1589,1591],"t":0},{"d":0,"r":[1591,1592],"t":0},{"d":0,"r":[1592,1595],"t":0},{"d":0,"r":[1595,1596],"t":0},{"d":0,"r":[1596,1598],"t":0},{"d":0,"r":[1598,1599],"t":0},{"d":0,"r":[1599,1602],"t":0},{"d":0,"r":[1602,1603],"t":0},{"d":0,"r":[1603,1606],"t":0},{"d":0,"r":[1608,1627],"t":0},{"d":0,"r":[1610,1616],"t":0},{"d":0,"r":[1616,1617],"t":0},{"d":0,"r":[1617,1621],"t":0},{"d":0,"r":[1621,1622],"t":0},{"d":0,"r":[1622,1626],"t":0},{"d":0,"r":[1628,1644],"t":0},{"d":0,"r":[1630,1644],"t":0},{"d":0,"r":[1630,1634],"t":0},{"d":0,"r":[1634,1635],"t":0},{"d":0,"r":[1635,1638],"t":0},{"d":0,"r":[1638,1639],"t":0},{"d":0,"r":[1639,1643],"t":0},{"d":0,"r":[0,38],"t":0},{"d":819,"r":[4,33],"t":1},{"d":820,"r":[7,29],"t":1},{"d":819,"r":[4,33],"t":1},{"d":822,"r":[8,28],"t":1},{"d":823,"r":[0,8],"t":1},{"d":822,"r":[8,28],"t":1},{"d":825,"r":[8,9],"t":1},{"d":822,"r":[8,28],"t":1},{"d":827,"r":[9,15],"t":1},{"d":822,"r":[8,28],"t":1},{"d":829,"r":[15,16],"t":1},{"d":822,"r":[8,28],"t":1},{"d":831,"r":[16,20],"t":1},{"d":819,"r":[4,33],"t":1},{"d":833,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[6,["level-6-header-maximum",[],[]],[{"c":"Level","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"6","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"Header","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"(Maximum)","s":11,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"This","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"is","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"the","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"deepest","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"header","s":21,"t":"Str"},{"s":22,"t":"Space"},{"c":"level.","s":23,"t":"Str"}],"s":12,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["ordered-list-with-custom-start",[],[]],[{"c":"Ordered","s":25,"t":"Str"},{"s":26,"t":"Space"},{"c":"List","s":27,"t":"Str"},{"s":28,"t":"Space"},{"c":"with","s":29,"t":"Str"},{"s":30,"t":"Space"},{"c":"Custom","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"Start","s":33,"t":"Str"}]],"s":24,"t":"Header"},{"c":[[5,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Fifth","s":36,"t":"Str"},{"s":37,"t":"Space"},{"c":"item","s":38,"t":"Str"}],"s":35,"t":"Plain"}],[{"c":[{"c":"Sixth","s":40,"t":"Str"},{"s":41,"t":"Space"},{"c":"item","s":42,"t":"Str"}],"s":39,"t":"Plain"}]]],"s":34,"t":"OrderedList"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["many-classes",[],[]],[{"c":"Many","s":44,"t":"Str"},{"s":45,"t":"Space"},{"c":"Classes","s":46,"t":"Str"}]],"s":43,"t":"Header"},{"c":[{"a":{"classes":[49,50,51,52,53,54,55,56,57,58],"id":null,"kvs":[]},"c":[["",["class1","class2","class3","class4","class5","class6","class7","class8","class9","class10"],[]],[{"c":"Div","s":59,"t":"Str"},{"s":60,"t":"Space"},{"c":"with","s":61,"t":"Str"},{"s":62,"t":"Space"},{"c":"many","s":63,"t":"Str"},{"s":64,"t":"Space"},{"c":"classes","s":65,"t":"Str"}]],"s":48,"t":"Span"}],"s":47,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["very-long-string",[],[]],[{"c":"Very","s":67,"t":"Str"},{"s":68,"t":"Space"},{"c":"Long","s":69,"t":"Str"},{"s":70,"t":"Space"},{"c":"String","s":71,"t":"Str"}]],"s":66,"t":"Header"},{"c":[{"c":"This","s":73,"t":"Str"},{"s":74,"t":"Space"},{"c":"is","s":75,"t":"Str"},{"s":76,"t":"Space"},{"c":"a","s":77,"t":"Str"},{"s":78,"t":"Space"},{"c":"very","s":79,"t":"Str"},{"s":80,"t":"Space"},{"c":"long","s":81,"t":"Str"},{"s":82,"t":"Space"},{"c":"string","s":83,"t":"Str"},{"s":84,"t":"Space"},{"c":"that","s":85,"t":"Str"},{"s":86,"t":"Space"},{"c":"goes","s":87,"t":"Str"},{"s":88,"t":"Space"},{"c":"on","s":89,"t":"Str"},{"s":90,"t":"Space"},{"c":"and","s":91,"t":"Str"},{"s":92,"t":"Space"},{"c":"on","s":93,"t":"Str"},{"s":94,"t":"Space"},{"c":"and","s":95,"t":"Str"},{"s":96,"t":"Space"},{"c":"on","s":97,"t":"Str"},{"s":98,"t":"Space"},{"c":"and","s":99,"t":"Str"},{"s":100,"t":"Space"},{"c":"on","s":101,"t":"Str"},{"s":102,"t":"Space"},{"c":"and","s":103,"t":"Str"},{"s":104,"t":"Space"},{"c":"on","s":105,"t":"Str"},{"s":106,"t":"Space"},{"c":"and","s":107,"t":"Str"},{"s":108,"t":"Space"},{"c":"on","s":109,"t":"Str"},{"s":110,"t":"Space"},{"c":"and","s":111,"t":"Str"},{"s":112,"t":"Space"},{"c":"on","s":113,"t":"Str"},{"s":114,"t":"Space"},{"c":"and","s":115,"t":"Str"},{"s":116,"t":"Space"},{"c":"on","s":117,"t":"Str"},{"s":118,"t":"Space"},{"c":"and","s":119,"t":"Str"},{"s":120,"t":"Space"},{"c":"on","s":121,"t":"Str"},{"s":122,"t":"Space"},{"c":"and","s":123,"t":"Str"},{"s":124,"t":"Space"},{"c":"on","s":125,"t":"Str"},{"s":126,"t":"Space"},{"c":"and","s":127,"t":"Str"},{"s":128,"t":"Space"},{"c":"on","s":129,"t":"Str"},{"s":130,"t":"Space"},{"c":"and","s":131,"t":"Str"},{"s":132,"t":"Space"},{"c":"on","s":133,"t":"Str"},{"s":134,"t":"Space"},{"c":"and","s":135,"t":"Str"},{"s":136,"t":"Space"},{"c":"on","s":137,"t":"Str"},{"s":138,"t":"Space"},{"c":"and","s":139,"t":"Str"},{"s":140,"t":"Space"},{"c":"on","s":141,"t":"Str"},{"s":142,"t":"Space"},{"c":"and","s":143,"t":"Str"},{"s":144,"t":"Space"},{"c":"on","s":145,"t":"Str"},{"s":146,"t":"Space"},{"c":"and","s":147,"t":"Str"},{"s":148,"t":"Space"},{"c":"on","s":149,"t":"Str"},{"s":150,"t":"Space"},{"c":"and","s":151,"t":"Str"},{"s":152,"t":"Space"},{"c":"on","s":153,"t":"Str"},{"s":154,"t":"Space"},{"c":"and","s":155,"t":"Str"},{"s":156,"t":"Space"},{"c":"on","s":157,"t":"Str"},{"s":158,"t":"Space"},{"c":"and","s":159,"t":"Str"},{"s":160,"t":"Space"},{"c":"on","s":161,"t":"Str"},{"s":162,"t":"Space"},{"c":"and","s":163,"t":"Str"},{"s":164,"t":"Space"},{"c":"on","s":165,"t":"Str"},{"s":166,"t":"Space"},{"c":"and","s":167,"t":"Str"},{"s":168,"t":"Space"},{"c":"on","s":169,"t":"Str"},{"s":170,"t":"Space"},{"c":"and","s":171,"t":"Str"},{"s":172,"t":"Space"},{"c":"on","s":173,"t":"Str"},{"s":174,"t":"Space"},{"c":"and","s":175,"t":"Str"},{"s":176,"t":"Space"},{"c":"on","s":177,"t":"Str"},{"s":178,"t":"Space"},{"c":"and","s":179,"t":"Str"},{"s":180,"t":"Space"},{"c":"on","s":181,"t":"Str"},{"s":182,"t":"Space"},{"c":"and","s":183,"t":"Str"},{"s":184,"t":"Space"},{"c":"on","s":185,"t":"Str"},{"s":186,"t":"Space"},{"c":"and","s":187,"t":"Str"},{"s":188,"t":"Space"},{"c":"on","s":189,"t":"Str"},{"s":190,"t":"Space"},{"c":"and","s":191,"t":"Str"},{"s":192,"t":"Space"},{"c":"on","s":193,"t":"Str"},{"s":194,"t":"Space"},{"c":"and","s":195,"t":"Str"},{"s":196,"t":"Space"},{"c":"on","s":197,"t":"Str"},{"s":198,"t":"Space"},{"c":"and","s":199,"t":"Str"},{"s":200,"t":"Space"},{"c":"on","s":201,"t":"Str"},{"s":202,"t":"Space"},{"c":"and","s":203,"t":"Str"},{"s":204,"t":"Space"},{"c":"on","s":205,"t":"Str"},{"s":206,"t":"Space"},{"c":"and","s":207,"t":"Str"},{"s":208,"t":"Space"},{"c":"on","s":209,"t":"Str"},{"s":210,"t":"Space"},{"c":"and","s":211,"t":"Str"},{"s":212,"t":"Space"},{"c":"on","s":213,"t":"Str"},{"s":214,"t":"Space"},{"c":"and","s":215,"t":"Str"},{"s":216,"t":"Space"},{"c":"on","s":217,"t":"Str"},{"s":218,"t":"Space"},{"c":"and","s":219,"t":"Str"},{"s":220,"t":"Space"},{"c":"on","s":221,"t":"Str"},{"s":222,"t":"Space"},{"c":"and","s":223,"t":"Str"},{"s":224,"t":"Space"},{"c":"on","s":225,"t":"Str"},{"s":226,"t":"Space"},{"c":"and","s":227,"t":"Str"},{"s":228,"t":"Space"},{"c":"on","s":229,"t":"Str"},{"s":230,"t":"Space"},{"c":"and","s":231,"t":"Str"},{"s":232,"t":"Space"},{"c":"on","s":233,"t":"Str"},{"s":234,"t":"Space"},{"c":"and","s":235,"t":"Str"},{"s":236,"t":"Space"},{"c":"on","s":237,"t":"Str"},{"s":238,"t":"Space"},{"c":"and","s":239,"t":"Str"},{"s":240,"t":"Space"},{"c":"on","s":241,"t":"Str"},{"s":242,"t":"Space"},{"c":"and","s":243,"t":"Str"},{"s":244,"t":"Space"},{"c":"on","s":245,"t":"Str"},{"s":246,"t":"Space"},{"c":"and","s":247,"t":"Str"},{"s":248,"t":"Space"},{"c":"on","s":249,"t":"Str"},{"s":250,"t":"Space"},{"c":"and","s":251,"t":"Str"},{"s":252,"t":"Space"},{"c":"on","s":253,"t":"Str"},{"s":254,"t":"Space"},{"c":"and","s":255,"t":"Str"},{"s":256,"t":"Space"},{"c":"on","s":257,"t":"Str"},{"s":258,"t":"Space"},{"c":"and","s":259,"t":"Str"},{"s":260,"t":"Space"},{"c":"on","s":261,"t":"Str"},{"s":262,"t":"Space"},{"c":"and","s":263,"t":"Str"},{"s":264,"t":"Space"},{"c":"on","s":265,"t":"Str"},{"s":266,"t":"Space"},{"c":"and","s":267,"t":"Str"},{"s":268,"t":"Space"},{"c":"on","s":269,"t":"Str"},{"s":270,"t":"Space"},{"c":"and","s":271,"t":"Str"},{"s":272,"t":"Space"},{"c":"on","s":273,"t":"Str"},{"s":274,"t":"Space"},{"c":"and","s":275,"t":"Str"},{"s":276,"t":"Space"},{"c":"on","s":277,"t":"Str"},{"s":278,"t":"Space"},{"c":"and","s":279,"t":"Str"},{"s":280,"t":"Space"},{"c":"on","s":281,"t":"Str"},{"s":282,"t":"Space"},{"c":"and","s":283,"t":"Str"},{"s":284,"t":"Space"},{"c":"on","s":285,"t":"Str"},{"s":286,"t":"Space"},{"c":"and","s":287,"t":"Str"},{"s":288,"t":"Space"},{"c":"on","s":289,"t":"Str"},{"s":290,"t":"Space"},{"c":"and","s":291,"t":"Str"},{"s":292,"t":"Space"},{"c":"on","s":293,"t":"Str"},{"s":294,"t":"Space"},{"c":"and","s":295,"t":"Str"},{"s":296,"t":"Space"},{"c":"on","s":297,"t":"Str"},{"s":298,"t":"Space"},{"c":"and","s":299,"t":"Str"},{"s":300,"t":"Space"},{"c":"on","s":301,"t":"Str"},{"s":302,"t":"Space"},{"c":"and","s":303,"t":"Str"},{"s":304,"t":"Space"},{"c":"on","s":305,"t":"Str"},{"s":306,"t":"Space"},{"c":"and","s":307,"t":"Str"},{"s":308,"t":"Space"},{"c":"on","s":309,"t":"Str"},{"s":310,"t":"Space"},{"c":"and","s":311,"t":"Str"},{"s":312,"t":"Space"},{"c":"on","s":313,"t":"Str"},{"s":314,"t":"Space"},{"c":"and","s":315,"t":"Str"},{"s":316,"t":"Space"},{"c":"on","s":317,"t":"Str"},{"s":318,"t":"Space"},{"c":"and","s":319,"t":"Str"},{"s":320,"t":"Space"},{"c":"on","s":321,"t":"Str"},{"s":322,"t":"Space"},{"c":"and","s":323,"t":"Str"},{"s":324,"t":"Space"},{"c":"on","s":325,"t":"Str"},{"s":326,"t":"Space"},{"c":"and","s":327,"t":"Str"},{"s":328,"t":"Space"},{"c":"on","s":329,"t":"Str"},{"s":330,"t":"Space"},{"c":"and","s":331,"t":"Str"},{"s":332,"t":"Space"},{"c":"on","s":333,"t":"Str"},{"s":334,"t":"Space"},{"c":"and","s":335,"t":"Str"},{"s":336,"t":"Space"},{"c":"on","s":337,"t":"Str"},{"s":338,"t":"Space"},{"c":"and","s":339,"t":"Str"},{"s":340,"t":"Space"},{"c":"on","s":341,"t":"Str"},{"s":342,"t":"Space"},{"c":"and","s":343,"t":"Str"},{"s":344,"t":"Space"},{"c":"on","s":345,"t":"Str"},{"s":346,"t":"Space"},{"c":"and","s":347,"t":"Str"},{"s":348,"t":"Space"},{"c":"on","s":349,"t":"Str"},{"s":350,"t":"Space"},{"c":"and","s":351,"t":"Str"},{"s":352,"t":"Space"},{"c":"on","s":353,"t":"Str"},{"s":354,"t":"Space"},{"c":"and","s":355,"t":"Str"},{"s":356,"t":"Space"},{"c":"on","s":357,"t":"Str"},{"s":358,"t":"Space"},{"c":"and","s":359,"t":"Str"},{"s":360,"t":"Space"},{"c":"on","s":361,"t":"Str"},{"s":362,"t":"Space"},{"c":"and","s":363,"t":"Str"},{"s":364,"t":"Space"},{"c":"on","s":365,"t":"Str"},{"s":366,"t":"Space"},{"c":"and","s":367,"t":"Str"},{"s":368,"t":"Space"},{"c":"on","s":369,"t":"Str"},{"s":370,"t":"Space"},{"c":"and","s":371,"t":"Str"},{"s":372,"t":"Space"},{"c":"on","s":373,"t":"Str"},{"s":374,"t":"Space"},{"c":"and","s":375,"t":"Str"},{"s":376,"t":"Space"},{"c":"on","s":377,"t":"Str"},{"s":378,"t":"Space"},{"c":"and","s":379,"t":"Str"},{"s":380,"t":"Space"},{"c":"on","s":381,"t":"Str"},{"s":382,"t":"Space"},{"c":"and","s":383,"t":"Str"},{"s":384,"t":"Space"},{"c":"on","s":385,"t":"Str"},{"s":386,"t":"Space"},{"c":"and","s":387,"t":"Str"},{"s":388,"t":"Space"},{"c":"on","s":389,"t":"Str"},{"s":390,"t":"Space"},{"c":"and","s":391,"t":"Str"},{"s":392,"t":"Space"},{"c":"on","s":393,"t":"Str"},{"s":394,"t":"Space"},{"c":"and","s":395,"t":"Str"},{"s":396,"t":"Space"},{"c":"on","s":397,"t":"Str"},{"s":398,"t":"Space"},{"c":"and","s":399,"t":"Str"},{"s":400,"t":"Space"},{"c":"on","s":401,"t":"Str"},{"s":402,"t":"Space"},{"c":"and","s":403,"t":"Str"},{"s":404,"t":"Space"},{"c":"on","s":405,"t":"Str"},{"s":406,"t":"Space"},{"c":"and","s":407,"t":"Str"},{"s":408,"t":"Space"},{"c":"on","s":409,"t":"Str"},{"s":410,"t":"Space"},{"c":"and","s":411,"t":"Str"},{"s":412,"t":"Space"},{"c":"on","s":413,"t":"Str"},{"s":414,"t":"Space"},{"c":"and","s":415,"t":"Str"},{"s":416,"t":"Space"},{"c":"on","s":417,"t":"Str"},{"s":418,"t":"Space"},{"c":"and","s":419,"t":"Str"},{"s":420,"t":"Space"},{"c":"on","s":421,"t":"Str"},{"s":422,"t":"Space"},{"c":"and","s":423,"t":"Str"},{"s":424,"t":"Space"},{"c":"on","s":425,"t":"Str"},{"s":426,"t":"Space"},{"c":"and","s":427,"t":"Str"},{"s":428,"t":"Space"},{"c":"on","s":429,"t":"Str"},{"s":430,"t":"Space"},{"c":"and","s":431,"t":"Str"},{"s":432,"t":"Space"},{"c":"on","s":433,"t":"Str"},{"s":434,"t":"Space"},{"c":"and","s":435,"t":"Str"},{"s":436,"t":"Space"},{"c":"on","s":437,"t":"Str"},{"s":438,"t":"Space"},{"c":"and","s":439,"t":"Str"},{"s":440,"t":"Space"},{"c":"on","s":441,"t":"Str"},{"s":442,"t":"Space"},{"c":"and","s":443,"t":"Str"},{"s":444,"t":"Space"},{"c":"on","s":445,"t":"Str"},{"s":446,"t":"Space"},{"c":"and","s":447,"t":"Str"},{"s":448,"t":"Space"},{"c":"on","s":449,"t":"Str"},{"s":450,"t":"Space"},{"c":"and","s":451,"t":"Str"},{"s":452,"t":"Space"},{"c":"on","s":453,"t":"Str"},{"s":454,"t":"Space"},{"c":"and","s":455,"t":"Str"},{"s":456,"t":"Space"},{"c":"on","s":457,"t":"Str"},{"s":458,"t":"Space"},{"c":"and","s":459,"t":"Str"},{"s":460,"t":"Space"},{"c":"on","s":461,"t":"Str"},{"s":462,"t":"Space"},{"c":"and","s":463,"t":"Str"},{"s":464,"t":"Space"},{"c":"on","s":465,"t":"Str"},{"s":466,"t":"Space"},{"c":"and","s":467,"t":"Str"},{"s":468,"t":"Space"},{"c":"on","s":469,"t":"Str"},{"s":470,"t":"Space"},{"c":"and","s":471,"t":"Str"},{"s":472,"t":"Space"},{"c":"on","s":473,"t":"Str"},{"s":474,"t":"Space"},{"c":"and","s":475,"t":"Str"},{"s":476,"t":"Space"},{"c":"on","s":477,"t":"Str"},{"s":478,"t":"Space"},{"c":"and","s":479,"t":"Str"},{"s":480,"t":"Space"},{"c":"on","s":481,"t":"Str"},{"s":482,"t":"Space"},{"c":"and","s":483,"t":"Str"},{"s":484,"t":"Space"},{"c":"on","s":485,"t":"Str"},{"s":486,"t":"Space"},{"c":"and","s":487,"t":"Str"},{"s":488,"t":"Space"},{"c":"on","s":489,"t":"Str"},{"s":490,"t":"Space"},{"c":"and","s":491,"t":"Str"},{"s":492,"t":"Space"},{"c":"on","s":493,"t":"Str"},{"s":494,"t":"Space"},{"c":"and","s":495,"t":"Str"},{"s":496,"t":"Space"},{"c":"on","s":497,"t":"Str"},{"s":498,"t":"Space"},{"c":"and","s":499,"t":"Str"},{"s":500,"t":"Space"},{"c":"on","s":501,"t":"Str"},{"s":502,"t":"Space"},{"c":"and","s":503,"t":"Str"},{"s":504,"t":"Space"},{"c":"on","s":505,"t":"Str"},{"s":506,"t":"Space"},{"c":"and","s":507,"t":"Str"},{"s":508,"t":"Space"},{"c":"on","s":509,"t":"Str"},{"s":510,"t":"Space"},{"c":"and","s":511,"t":"Str"},{"s":512,"t":"Space"},{"c":"on","s":513,"t":"Str"},{"s":514,"t":"Space"},{"c":"and","s":515,"t":"Str"},{"s":516,"t":"Space"},{"c":"on","s":517,"t":"Str"},{"s":518,"t":"Space"},{"c":"and","s":519,"t":"Str"},{"s":520,"t":"Space"},{"c":"on","s":521,"t":"Str"},{"s":522,"t":"Space"},{"c":"and","s":523,"t":"Str"},{"s":524,"t":"Space"},{"c":"on","s":525,"t":"Str"},{"s":526,"t":"Space"},{"c":"and","s":527,"t":"Str"},{"s":528,"t":"Space"},{"c":"on","s":529,"t":"Str"},{"s":530,"t":"Space"},{"c":"and","s":531,"t":"Str"},{"s":532,"t":"Space"},{"c":"on","s":533,"t":"Str"},{"s":534,"t":"Space"},{"c":"and","s":535,"t":"Str"},{"s":536,"t":"Space"},{"c":"on","s":537,"t":"Str"},{"s":538,"t":"Space"},{"c":"and","s":539,"t":"Str"},{"s":540,"t":"Space"},{"c":"on","s":541,"t":"Str"},{"s":542,"t":"Space"},{"c":"and","s":543,"t":"Str"},{"s":544,"t":"Space"},{"c":"on","s":545,"t":"Str"},{"s":546,"t":"Space"},{"c":"and","s":547,"t":"Str"},{"s":548,"t":"Space"},{"c":"on","s":549,"t":"Str"},{"s":550,"t":"Space"},{"c":"and","s":551,"t":"Str"},{"s":552,"t":"Space"},{"c":"on","s":553,"t":"Str"},{"s":554,"t":"Space"},{"c":"and","s":555,"t":"Str"},{"s":556,"t":"Space"},{"c":"on","s":557,"t":"Str"},{"s":558,"t":"Space"},{"c":"and","s":559,"t":"Str"},{"s":560,"t":"Space"},{"c":"on","s":561,"t":"Str"},{"s":562,"t":"Space"},{"c":"and","s":563,"t":"Str"},{"s":564,"t":"Space"},{"c":"on","s":565,"t":"Str"},{"s":566,"t":"Space"},{"c":"and","s":567,"t":"Str"},{"s":568,"t":"Space"},{"c":"on","s":569,"t":"Str"},{"s":570,"t":"Space"},{"c":"and","s":571,"t":"Str"},{"s":572,"t":"Space"},{"c":"on","s":573,"t":"Str"},{"s":574,"t":"Space"},{"c":"and","s":575,"t":"Str"},{"s":576,"t":"Space"},{"c":"on","s":577,"t":"Str"},{"s":578,"t":"Space"},{"c":"and","s":579,"t":"Str"},{"s":580,"t":"Space"},{"c":"on","s":581,"t":"Str"},{"s":582,"t":"Space"},{"c":"and","s":583,"t":"Str"},{"s":584,"t":"Space"},{"c":"on","s":585,"t":"Str"},{"s":586,"t":"Space"},{"c":"and","s":587,"t":"Str"},{"s":588,"t":"Space"},{"c":"on","s":589,"t":"Str"},{"s":590,"t":"Space"},{"c":"and","s":591,"t":"Str"},{"s":592,"t":"Space"},{"c":"on","s":593,"t":"Str"},{"s":594,"t":"Space"},{"c":"and","s":595,"t":"Str"},{"s":596,"t":"Space"},{"c":"on","s":597,"t":"Str"},{"s":598,"t":"Space"},{"c":"and","s":599,"t":"Str"},{"s":600,"t":"Space"},{"c":"on","s":601,"t":"Str"},{"s":602,"t":"Space"},{"c":"and","s":603,"t":"Str"},{"s":604,"t":"Space"},{"c":"on","s":605,"t":"Str"},{"s":606,"t":"Space"},{"c":"and","s":607,"t":"Str"},{"s":608,"t":"Space"},{"c":"on","s":609,"t":"Str"},{"s":610,"t":"Space"},{"c":"and","s":611,"t":"Str"},{"s":612,"t":"Space"},{"c":"on","s":613,"t":"Str"},{"s":614,"t":"Space"},{"c":"and","s":615,"t":"Str"},{"s":616,"t":"Space"},{"c":"on","s":617,"t":"Str"},{"s":618,"t":"Space"},{"c":"and","s":619,"t":"Str"},{"s":620,"t":"Space"},{"c":"on","s":621,"t":"Str"},{"s":622,"t":"Space"},{"c":"and","s":623,"t":"Str"},{"s":624,"t":"Space"},{"c":"on","s":625,"t":"Str"},{"s":626,"t":"Space"},{"c":"and","s":627,"t":"Str"},{"s":628,"t":"Space"},{"c":"on","s":629,"t":"Str"},{"s":630,"t":"Space"},{"c":"and","s":631,"t":"Str"},{"s":632,"t":"Space"},{"c":"on","s":633,"t":"Str"},{"s":634,"t":"Space"},{"c":"and","s":635,"t":"Str"},{"s":636,"t":"Space"},{"c":"on","s":637,"t":"Str"},{"s":638,"t":"Space"},{"c":"and","s":639,"t":"Str"},{"s":640,"t":"Space"},{"c":"on","s":641,"t":"Str"},{"s":642,"t":"Space"},{"c":"and","s":643,"t":"Str"},{"s":644,"t":"Space"},{"c":"on","s":645,"t":"Str"},{"s":646,"t":"Space"},{"c":"and","s":647,"t":"Str"},{"s":648,"t":"Space"},{"c":"on","s":649,"t":"Str"},{"s":650,"t":"Space"},{"c":"and","s":651,"t":"Str"},{"s":652,"t":"Space"},{"c":"on","s":653,"t":"Str"},{"s":654,"t":"Space"},{"c":"and","s":655,"t":"Str"},{"s":656,"t":"Space"},{"c":"on","s":657,"t":"Str"},{"s":658,"t":"Space"},{"c":"and","s":659,"t":"Str"},{"s":660,"t":"Space"},{"c":"on","s":661,"t":"Str"},{"s":662,"t":"Space"},{"c":"and","s":663,"t":"Str"},{"s":664,"t":"Space"},{"c":"on","s":665,"t":"Str"},{"s":666,"t":"Space"},{"c":"and","s":667,"t":"Str"},{"s":668,"t":"Space"},{"c":"on","s":669,"t":"Str"},{"s":670,"t":"Space"},{"c":"and","s":671,"t":"Str"},{"s":672,"t":"Space"},{"c":"on","s":673,"t":"Str"},{"s":674,"t":"Space"},{"c":"and","s":675,"t":"Str"},{"s":676,"t":"Space"},{"c":"on","s":677,"t":"Str"},{"s":678,"t":"Space"},{"c":"and","s":679,"t":"Str"},{"s":680,"t":"Space"},{"c":"on","s":681,"t":"Str"},{"s":682,"t":"Space"},{"c":"and","s":683,"t":"Str"},{"s":684,"t":"Space"},{"c":"on","s":685,"t":"Str"},{"s":686,"t":"Space"},{"c":"and","s":687,"t":"Str"},{"s":688,"t":"Space"},{"c":"on","s":689,"t":"Str"},{"s":690,"t":"Space"},{"c":"and","s":691,"t":"Str"},{"s":692,"t":"Space"},{"c":"on","s":693,"t":"Str"},{"s":694,"t":"Space"},{"c":"and","s":695,"t":"Str"},{"s":696,"t":"Space"},{"c":"on","s":697,"t":"Str"},{"s":698,"t":"Space"},{"c":"and","s":699,"t":"Str"},{"s":700,"t":"Space"},{"c":"on","s":701,"t":"Str"},{"s":702,"t":"Space"},{"c":"and","s":703,"t":"Str"},{"s":704,"t":"Space"},{"c":"on","s":705,"t":"Str"},{"s":706,"t":"Space"},{"c":"and","s":707,"t":"Str"},{"s":708,"t":"Space"},{"c":"on","s":709,"t":"Str"},{"s":710,"t":"Space"},{"c":"and","s":711,"t":"Str"},{"s":712,"t":"Space"},{"c":"on","s":713,"t":"Str"},{"s":714,"t":"Space"},{"c":"and","s":715,"t":"Str"},{"s":716,"t":"Space"},{"c":"on","s":717,"t":"Str"},{"s":718,"t":"Space"},{"c":"and","s":719,"t":"Str"},{"s":720,"t":"Space"},{"c":"on","s":721,"t":"Str"},{"s":722,"t":"Space"},{"c":"and","s":723,"t":"Str"},{"s":724,"t":"Space"},{"c":"on","s":725,"t":"Str"},{"s":726,"t":"Space"},{"c":"and","s":727,"t":"Str"},{"s":728,"t":"Space"},{"c":"on","s":729,"t":"Str"},{"s":730,"t":"Space"},{"c":"and","s":731,"t":"Str"},{"s":732,"t":"Space"},{"c":"on","s":733,"t":"Str"},{"s":734,"t":"Space"},{"c":"and","s":735,"t":"Str"},{"s":736,"t":"Space"},{"c":"on","s":737,"t":"Str"},{"s":738,"t":"Space"},{"c":"and","s":739,"t":"Str"},{"s":740,"t":"Space"},{"c":"on","s":741,"t":"Str"},{"s":742,"t":"Space"},{"c":"and","s":743,"t":"Str"},{"s":744,"t":"Space"},{"c":"on","s":745,"t":"Str"},{"s":746,"t":"Space"},{"c":"and","s":747,"t":"Str"},{"s":748,"t":"Space"},{"c":"on","s":749,"t":"Str"},{"s":750,"t":"Space"},{"c":"and","s":751,"t":"Str"},{"s":752,"t":"Space"},{"c":"on","s":753,"t":"Str"},{"s":754,"t":"Space"},{"c":"and","s":755,"t":"Str"},{"s":756,"t":"Space"},{"c":"on","s":757,"t":"Str"},{"s":758,"t":"Space"},{"c":"and","s":759,"t":"Str"},{"s":760,"t":"Space"},{"c":"on","s":761,"t":"Str"},{"s":762,"t":"Space"},{"c":"and","s":763,"t":"Str"},{"s":764,"t":"Space"},{"c":"on","s":765,"t":"Str"},{"s":766,"t":"Space"},{"c":"and","s":767,"t":"Str"},{"s":768,"t":"Space"},{"c":"on","s":769,"t":"Str"},{"s":770,"t":"Space"},{"c":"and","s":771,"t":"Str"},{"s":772,"t":"Space"},{"c":"on","s":773,"t":"Str"},{"s":774,"t":"Space"},{"c":"and","s":775,"t":"Str"},{"s":776,"t":"Space"},{"c":"on","s":777,"t":"Str"},{"s":778,"t":"Space"},{"c":"and","s":779,"t":"Str"},{"s":780,"t":"Space"},{"c":"on","s":781,"t":"Str"},{"s":782,"t":"Space"},{"c":"and","s":783,"t":"Str"},{"s":784,"t":"Space"},{"c":"on","s":785,"t":"Str"},{"s":786,"t":"Space"},{"c":"and","s":787,"t":"Str"},{"s":788,"t":"Space"},{"c":"on","s":789,"t":"Str"},{"s":790,"t":"Space"},{"c":"and","s":791,"t":"Str"},{"s":792,"t":"Space"},{"c":"on","s":793,"t":"Str"},{"s":794,"t":"Space"},{"c":"and","s":795,"t":"Str"},{"s":796,"t":"Space"},{"c":"on","s":797,"t":"Str"},{"s":798,"t":"Space"},{"c":"and","s":799,"t":"Str"},{"s":800,"t":"Space"},{"c":"on","s":801,"t":"Str"},{"s":802,"t":"Space"},{"c":"and","s":803,"t":"Str"},{"s":804,"t":"Space"},{"c":"on.","s":805,"t":"Str"}],"s":72,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["single-item-list",[],[]],[{"c":"Single","s":807,"t":"Str"},{"s":808,"t":"Space"},{"c":"Item","s":809,"t":"Str"},{"s":810,"t":"Space"},{"c":"List","s":811,"t":"Str"}]],"s":806,"t":"Header"},{"c":[[{"c":[{"c":"Only","s":814,"t":"Str"},{"s":815,"t":"Space"},{"c":"one","s":816,"t":"Str"},{"s":817,"t":"Space"},{"c":"item","s":818,"t":"Str"}],"s":813,"t":"Plain"}]],"s":812,"t":"BulletList"}],"meta":{"title":{"c":[{"c":"Boundary","s":823,"t":"Str"},{"s":825,"t":"Space"},{"c":"Values","s":827,"t":"Str"},{"s":829,"t":"Space"},{"c":"Test","s":831,"t":"Str"}],"s":820,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,33,37,38,70,71,105,106,139,140,154,168,169,184,185,291,292,311,312,1606,1607,1626,1627,1643],"name":"ts-packages/annotated-qmd/examples/boundary-values.qmd","total_length":1644}],"metaTopLevelKeySources":{"title":833},"p":[{"d":0,"r":[39,71],"t":0},{"d":0,"r":[46,51],"t":0},{"d":0,"r":[51,52],"t":0},{"d":0,"r":[52,53],"t":0},{"d":0,"r":[53,54],"t":0},{"d":0,"r":[54,60],"t":0},{"d":0,"r":[60,61],"t":0},{"d":0,"r":[61,62],"t":0},{"d":0,"r":[62,69],"t":0},{"d":[[7,0,1],[8,1,7]],"r":[0,8],"t":2},{"d":0,"r":[69,70],"t":0},{"d":[[9,0,8],[10,8,1]],"r":[0,9],"t":2},{"d":0,"r":[72,106],"t":0},{"d":0,"r":[72,76],"t":0},{"d":0,"r":[76,77],"t":0},{"d":0,"r":[77,79],"t":0},{"d":0,"r":[79,80],"t":0},{"d":0,"r":[80,83],"t":0},{"d":0,"r":[83,84],"t":0},{"d":0,"r":[84,91],"t":0},{"d":0,"r":[91,92],"t":0},{"d":0,"r":[92,98],"t":0},{"d":0,"r":[98,99],"t":0},{"d":0,"r":[99,105],"t":0},{"d":0,"r":[107,140],"t":0},{"d":0,"r":[109,116],"t":0},{"d":0,"r":[116,117],"t":0},{"d":0,"r":[117,121],"t":0},{"d":0,"r":[121,122],"t":0},{"d":0,"r":[122,126],"t":0},{"d":0,"r":[126,127],"t":0},{"d":0,"r":[127,133],"t":0},{"d":0,"r":[133,134],"t":0},{"d":0,"r":[134,139],"t":0},{"d":0,"r":[141,170],"t":0},{"d":0,"r":[144,155],"t":0},{"d":0,"r":[144,149],"t":0},{"d":0,"r":[149,150],"t":0},{"d":0,"r":[150,154],"t":0},{"d":0,"r":[158,169],"t":0},{"d":0,"r":[158,163],"t":0},{"d":0,"r":[163,164],"t":0},{"d":0,"r":[164,168],"t":0},{"d":0,"r":[170,185],"t":0},{"d":0,"r":[172,176],"t":0},{"d":0,"r":[176,177],"t":0},{"d":0,"r":[177,184],"t":0},{"d":0,"r":[186,292],"t":0},{"d":0,"r":[186,291],"t":0},{"d":0,"r":[210,217],"t":0},{"d":0,"r":[218,225],"t":0},{"d":0,"r":[226,233],"t":0},{"d":0,"r":[234,241],"t":0},{"d":0,"r":[242,249],"t":0},{"d":0,"r":[250,257],"t":0},{"d":0,"r":[258,265],"t":0},{"d":0,"r":[266,273],"t":0},{"d":0,"r":[274,281],"t":0},{"d":0,"r":[282,290],"t":0},{"d":0,"r":[187,190],"t":0},{"d":0,"r":[190,191],"t":0},{"d":0,"r":[191,195],"t":0},{"d":0,"r":[195,196],"t":0},{"d":0,"r":[196,200],"t":0},{"d":0,"r":[200,201],"t":0},{"d":0,"r":[201,208],"t":0},{"d":0,"r":[293,312],"t":0},{"d":0,"r":[295,299],"t":0},{"d":0,"r":[299,300],"t":0},{"d":0,"r":[300,304],"t":0},{"d":0,"r":[304,305],"t":0},{"d":0,"r":[305,311],"t":0},{"d":0,"r":[313,1607],"t":0},{"d":0,"r":[313,317],"t":0},{"d":0,"r":[317,318],"t":0},{"d":0,"r":[318,320],"t":0},{"d":0,"r":[320,321],"t":0},{"d":0,"r":[321,322],"t":0},{"d":0,"r":[322,323],"t":0},{"d":0,"r":[323,327],"t":0},{"d":0,"r":[327,328],"t":0},{"d":0,"r":[328,332],"t":0},{"d":0,"r":[332,333],"t":0},{"d":0,"r":[333,339],"t":0},{"d":0,"r":[339,340],"t":0},{"d":0,"r":[340,344],"t":0},{"d":0,"r":[344,345],"t":0},{"d":0,"r":[345,349],"t":0},{"d":0,"r":[349,350],"t":0},{"d":0,"r":[350,352],"t":0},{"d":0,"r":[352,353],"t":0},{"d":0,"r":[353,356],"t":0},{"d":0,"r":[356,357],"t":0},{"d":0,"r":[357,359],"t":0},{"d":0,"r":[359,360],"t":0},{"d":0,"r":[360,363],"t":0},{"d":0,"r":[363,364],"t":0},{"d":0,"r":[364,366],"t":0},{"d":0,"r":[366,367],"t":0},{"d":0,"r":[367,370],"t":0},{"d":0,"r":[370,371],"t":0},{"d":0,"r":[371,373],"t":0},{"d":0,"r":[373,374],"t":0},{"d":0,"r":[374,377],"t":0},{"d":0,"r":[377,378],"t":0},{"d":0,"r":[378,380],"t":0},{"d":0,"r":[380,381],"t":0},{"d":0,"r":[381,384],"t":0},{"d":0,"r":[384,385],"t":0},{"d":0,"r":[385,387],"t":0},{"d":0,"r":[387,388],"t":0},{"d":0,"r":[388,391],"t":0},{"d":0,"r":[391,392],"t":0},{"d":0,"r":[392,394],"t":0},{"d":0,"r":[394,395],"t":0},{"d":0,"r":[395,398],"t":0},{"d":0,"r":[398,399],"t":0},{"d":0,"r":[399,401],"t":0},{"d":0,"r":[401,402],"t":0},{"d":0,"r":[402,405],"t":0},{"d":0,"r":[405,406],"t":0},{"d":0,"r":[406,408],"t":0},{"d":0,"r":[408,409],"t":0},{"d":0,"r":[409,412],"t":0},{"d":0,"r":[412,413],"t":0},{"d":0,"r":[413,415],"t":0},{"d":0,"r":[415,416],"t":0},{"d":0,"r":[416,419],"t":0},{"d":0,"r":[419,420],"t":0},{"d":0,"r":[420,422],"t":0},{"d":0,"r":[422,423],"t":0},{"d":0,"r":[423,426],"t":0},{"d":0,"r":[426,427],"t":0},{"d":0,"r":[427,429],"t":0},{"d":0,"r":[429,430],"t":0},{"d":0,"r":[430,433],"t":0},{"d":0,"r":[433,434],"t":0},{"d":0,"r":[434,436],"t":0},{"d":0,"r":[436,437],"t":0},{"d":0,"r":[437,440],"t":0},{"d":0,"r":[440,441],"t":0},{"d":0,"r":[441,443],"t":0},{"d":0,"r":[443,444],"t":0},{"d":0,"r":[444,447],"t":0},{"d":0,"r":[447,448],"t":0},{"d":0,"r":[448,450],"t":0},{"d":0,"r":[450,451],"t":0},{"d":0,"r":[451,454],"t":0},{"d":0,"r":[454,455],"t":0},{"d":0,"r":[455,457],"t":0},{"d":0,"r":[457,458],"t":0},{"d":0,"r":[458,461],"t":0},{"d":0,"r":[461,462],"t":0},{"d":0,"r":[462,464],"t":0},{"d":0,"r":[464,465],"t":0},{"d":0,"r":[465,468],"t":0},{"d":0,"r":[468,469],"t":0},{"d":0,"r":[469,471],"t":0},{"d":0,"r":[471,472],"t":0},{"d":0,"r":[472,475],"t":0},{"d":0,"r":[475,476],"t":0},{"d":0,"r":[476,478],"t":0},{"d":0,"r":[478,479],"t":0},{"d":0,"r":[479,482],"t":0},{"d":0,"r":[482,483],"t":0},{"d":0,"r":[483,485],"t":0},{"d":0,"r":[485,486],"t":0},{"d":0,"r":[486,489],"t":0},{"d":0,"r":[489,490],"t":0},{"d":0,"r":[490,492],"t":0},{"d":0,"r":[492,493],"t":0},{"d":0,"r":[493,496],"t":0},{"d":0,"r":[496,497],"t":0},{"d":0,"r":[497,499],"t":0},{"d":0,"r":[499,500],"t":0},{"d":0,"r":[500,503],"t":0},{"d":0,"r":[503,504],"t":0},{"d":0,"r":[504,506],"t":0},{"d":0,"r":[506,507],"t":0},{"d":0,"r":[507,510],"t":0},{"d":0,"r":[510,511],"t":0},{"d":0,"r":[511,513],"t":0},{"d":0,"r":[513,514],"t":0},{"d":0,"r":[514,517],"t":0},{"d":0,"r":[517,518],"t":0},{"d":0,"r":[518,520],"t":0},{"d":0,"r":[520,521],"t":0},{"d":0,"r":[521,524],"t":0},{"d":0,"r":[524,525],"t":0},{"d":0,"r":[525,527],"t":0},{"d":0,"r":[527,528],"t":0},{"d":0,"r":[528,531],"t":0},{"d":0,"r":[531,532],"t":0},{"d":0,"r":[532,534],"t":0},{"d":0,"r":[534,535],"t":0},{"d":0,"r":[535,538],"t":0},{"d":0,"r":[538,539],"t":0},{"d":0,"r":[539,541],"t":0},{"d":0,"r":[541,542],"t":0},{"d":0,"r":[542,545],"t":0},{"d":0,"r":[545,546],"t":0},{"d":0,"r":[546,548],"t":0},{"d":0,"r":[548,549],"t":0},{"d":0,"r":[549,552],"t":0},{"d":0,"r":[552,553],"t":0},{"d":0,"r":[553,555],"t":0},{"d":0,"r":[555,556],"t":0},{"d":0,"r":[556,559],"t":0},{"d":0,"r":[559,560],"t":0},{"d":0,"r":[560,562],"t":0},{"d":0,"r":[562,563],"t":0},{"d":0,"r":[563,566],"t":0},{"d":0,"r":[566,567],"t":0},{"d":0,"r":[567,569],"t":0},{"d":0,"r":[569,570],"t":0},{"d":0,"r":[570,573],"t":0},{"d":0,"r":[573,574],"t":0},{"d":0,"r":[574,576],"t":0},{"d":0,"r":[576,577],"t":0},{"d":0,"r":[577,580],"t":0},{"d":0,"r":[580,581],"t":0},{"d":0,"r":[581,583],"t":0},{"d":0,"r":[583,584],"t":0},{"d":0,"r":[584,587],"t":0},{"d":0,"r":[587,588],"t":0},{"d":0,"r":[588,590],"t":0},{"d":0,"r":[590,591],"t":0},{"d":0,"r":[591,594],"t":0},{"d":0,"r":[594,595],"t":0},{"d":0,"r":[595,597],"t":0},{"d":0,"r":[597,598],"t":0},{"d":0,"r":[598,601],"t":0},{"d":0,"r":[601,602],"t":0},{"d":0,"r":[602,604],"t":0},{"d":0,"r":[604,605],"t":0},{"d":0,"r":[605,608],"t":0},{"d":0,"r":[608,609],"t":0},{"d":0,"r":[609,611],"t":0},{"d":0,"r":[611,612],"t":0},{"d":0,"r":[612,615],"t":0},{"d":0,"r":[615,616],"t":0},{"d":0,"r":[616,618],"t":0},{"d":0,"r":[618,619],"t":0},{"d":0,"r":[619,622],"t":0},{"d":0,"r":[622,623],"t":0},{"d":0,"r":[623,625],"t":0},{"d":0,"r":[625,626],"t":0},{"d":0,"r":[626,629],"t":0},{"d":0,"r":[629,630],"t":0},{"d":0,"r":[630,632],"t":0},{"d":0,"r":[632,633],"t":0},{"d":0,"r":[633,636],"t":0},{"d":0,"r":[636,637],"t":0},{"d":0,"r":[637,639],"t":0},{"d":0,"r":[639,640],"t":0},{"d":0,"r":[640,643],"t":0},{"d":0,"r":[643,644],"t":0},{"d":0,"r":[644,646],"t":0},{"d":0,"r":[646,647],"t":0},{"d":0,"r":[647,650],"t":0},{"d":0,"r":[650,651],"t":0},{"d":0,"r":[651,653],"t":0},{"d":0,"r":[653,654],"t":0},{"d":0,"r":[654,657],"t":0},{"d":0,"r":[657,658],"t":0},{"d":0,"r":[658,660],"t":0},{"d":0,"r":[660,661],"t":0},{"d":0,"r":[661,664],"t":0},{"d":0,"r":[664,665],"t":0},{"d":0,"r":[665,667],"t":0},{"d":0,"r":[667,668],"t":0},{"d":0,"r":[668,671],"t":0},{"d":0,"r":[671,672],"t":0},{"d":0,"r":[672,674],"t":0},{"d":0,"r":[674,675],"t":0},{"d":0,"r":[675,678],"t":0},{"d":0,"r":[678,679],"t":0},{"d":0,"r":[679,681],"t":0},{"d":0,"r":[681,682],"t":0},{"d":0,"r":[682,685],"t":0},{"d":0,"r":[685,686],"t":0},{"d":0,"r":[686,688],"t":0},{"d":0,"r":[688,689],"t":0},{"d":0,"r":[689,692],"t":0},{"d":0,"r":[692,693],"t":0},{"d":0,"r":[693,695],"t":0},{"d":0,"r":[695,696],"t":0},{"d":0,"r":[696,699],"t":0},{"d":0,"r":[699,700],"t":0},{"d":0,"r":[700,702],"t":0},{"d":0,"r":[702,703],"t":0},{"d":0,"r":[703,706],"t":0},{"d":0,"r":[706,707],"t":0},{"d":0,"r":[707,709],"t":0},{"d":0,"r":[709,710],"t":0},{"d":0,"r":[710,713],"t":0},{"d":0,"r":[713,714],"t":0},{"d":0,"r":[714,716],"t":0},{"d":0,"r":[716,717],"t":0},{"d":0,"r":[717,720],"t":0},{"d":0,"r":[720,721],"t":0},{"d":0,"r":[721,723],"t":0},{"d":0,"r":[723,724],"t":0},{"d":0,"r":[724,727],"t":0},{"d":0,"r":[727,728],"t":0},{"d":0,"r":[728,730],"t":0},{"d":0,"r":[730,731],"t":0},{"d":0,"r":[731,734],"t":0},{"d":0,"r":[734,735],"t":0},{"d":0,"r":[735,737],"t":0},{"d":0,"r":[737,738],"t":0},{"d":0,"r":[738,741],"t":0},{"d":0,"r":[741,742],"t":0},{"d":0,"r":[742,744],"t":0},{"d":0,"r":[744,745],"t":0},{"d":0,"r":[745,748],"t":0},{"d":0,"r":[748,749],"t":0},{"d":0,"r":[749,751],"t":0},{"d":0,"r":[751,752],"t":0},{"d":0,"r":[752,755],"t":0},{"d":0,"r":[755,756],"t":0},{"d":0,"r":[756,758],"t":0},{"d":0,"r":[758,759],"t":0},{"d":0,"r":[759,762],"t":0},{"d":0,"r":[762,763],"t":0},{"d":0,"r":[763,765],"t":0},{"d":0,"r":[765,766],"t":0},{"d":0,"r":[766,769],"t":0},{"d":0,"r":[769,770],"t":0},{"d":0,"r":[770,772],"t":0},{"d":0,"r":[772,773],"t":0},{"d":0,"r":[773,776],"t":0},{"d":0,"r":[776,777],"t":0},{"d":0,"r":[777,779],"t":0},{"d":0,"r":[779,780],"t":0},{"d":0,"r":[780,783],"t":0},{"d":0,"r":[783,784],"t":0},{"d":0,"r":[784,786],"t":0},{"d":0,"r":[786,787],"t":0},{"d":0,"r":[787,790],"t":0},{"d":0,"r":[790,791],"t":0},{"d":0,"r":[791,793],"t":0},{"d":0,"r":[793,794],"t":0},{"d":0,"r":[794,797],"t":0},{"d":0,"r":[797,798],"t":0},{"d":0,"r":[798,800],"t":0},{"d":0,"r":[800,801],"t":0},{"d":0,"r":[801,804],"t":0},{"d":0,"r":[804,805],"t":0},{"d":0,"r":[805,807],"t":0},{"d":0,"r":[807,808],"t":0},{"d":0,"r":[808,811],"t":0},{"d":0,"r":[811,812],"t":0},{"d":0,"r":[812,814],"t":0},{"d":0,"r":[814,815],"t":0},{"d":0,"r":[815,818],"t":0},{"d":0,"r":[818,819],"t":0},{"d":0,"r":[819,821],"t":0},{"d":0,"r":[821,822],"t":0},{"d":0,"r":[822,825],"t":0},{"d":0,"r":[825,826],"t":0},{"d":0,"r":[826,828],"t":0},{"d":0,"r":[828,829],"t":0},{"d":0,"r":[829,832],"t":0},{"d":0,"r":[832,833],"t":0},{"d":0,"r":[833,835],"t":0},{"d":0,"r":[835,836],"t":0},{"d":0,"r":[836,839],"t":0},{"d":0,"r":[839,840],"t":0},{"d":0,"r":[840,842],"t":0},{"d":0,"r":[842,843],"t":0},{"d":0,"r":[843,846],"t":0},{"d":0,"r":[846,847],"t":0},{"d":0,"r":[847,849],"t":0},{"d":0,"r":[849,850],"t":0},{"d":0,"r":[850,853],"t":0},{"d":0,"r":[853,854],"t":0},{"d":0,"r":[854,856],"t":0},{"d":0,"r":[856,857],"t":0},{"d":0,"r":[857,860],"t":0},{"d":0,"r":[860,861],"t":0},{"d":0,"r":[861,863],"t":0},{"d":0,"r":[863,864],"t":0},{"d":0,"r":[864,867],"t":0},{"d":0,"r":[867,868],"t":0},{"d":0,"r":[868,870],"t":0},{"d":0,"r":[870,871],"t":0},{"d":0,"r":[871,874],"t":0},{"d":0,"r":[874,875],"t":0},{"d":0,"r":[875,877],"t":0},{"d":0,"r":[877,878],"t":0},{"d":0,"r":[878,881],"t":0},{"d":0,"r":[881,882],"t":0},{"d":0,"r":[882,884],"t":0},{"d":0,"r":[884,885],"t":0},{"d":0,"r":[885,888],"t":0},{"d":0,"r":[888,889],"t":0},{"d":0,"r":[889,891],"t":0},{"d":0,"r":[891,892],"t":0},{"d":0,"r":[892,895],"t":0},{"d":0,"r":[895,896],"t":0},{"d":0,"r":[896,898],"t":0},{"d":0,"r":[898,899],"t":0},{"d":0,"r":[899,902],"t":0},{"d":0,"r":[902,903],"t":0},{"d":0,"r":[903,905],"t":0},{"d":0,"r":[905,906],"t":0},{"d":0,"r":[906,909],"t":0},{"d":0,"r":[909,910],"t":0},{"d":0,"r":[910,912],"t":0},{"d":0,"r":[912,913],"t":0},{"d":0,"r":[913,916],"t":0},{"d":0,"r":[916,917],"t":0},{"d":0,"r":[917,919],"t":0},{"d":0,"r":[919,920],"t":0},{"d":0,"r":[920,923],"t":0},{"d":0,"r":[923,924],"t":0},{"d":0,"r":[924,926],"t":0},{"d":0,"r":[926,927],"t":0},{"d":0,"r":[927,930],"t":0},{"d":0,"r":[930,931],"t":0},{"d":0,"r":[931,933],"t":0},{"d":0,"r":[933,934],"t":0},{"d":0,"r":[934,937],"t":0},{"d":0,"r":[937,938],"t":0},{"d":0,"r":[938,940],"t":0},{"d":0,"r":[940,941],"t":0},{"d":0,"r":[941,944],"t":0},{"d":0,"r":[944,945],"t":0},{"d":0,"r":[945,947],"t":0},{"d":0,"r":[947,948],"t":0},{"d":0,"r":[948,951],"t":0},{"d":0,"r":[951,952],"t":0},{"d":0,"r":[952,954],"t":0},{"d":0,"r":[954,955],"t":0},{"d":0,"r":[955,958],"t":0},{"d":0,"r":[958,959],"t":0},{"d":0,"r":[959,961],"t":0},{"d":0,"r":[961,962],"t":0},{"d":0,"r":[962,965],"t":0},{"d":0,"r":[965,966],"t":0},{"d":0,"r":[966,968],"t":0},{"d":0,"r":[968,969],"t":0},{"d":0,"r":[969,972],"t":0},{"d":0,"r":[972,973],"t":0},{"d":0,"r":[973,975],"t":0},{"d":0,"r":[975,976],"t":0},{"d":0,"r":[976,979],"t":0},{"d":0,"r":[979,980],"t":0},{"d":0,"r":[980,982],"t":0},{"d":0,"r":[982,983],"t":0},{"d":0,"r":[983,986],"t":0},{"d":0,"r":[986,987],"t":0},{"d":0,"r":[987,989],"t":0},{"d":0,"r":[989,990],"t":0},{"d":0,"r":[990,993],"t":0},{"d":0,"r":[993,994],"t":0},{"d":0,"r":[994,996],"t":0},{"d":0,"r":[996,997],"t":0},{"d":0,"r":[997,1000],"t":0},{"d":0,"r":[1000,1001],"t":0},{"d":0,"r":[1001,1003],"t":0},{"d":0,"r":[1003,1004],"t":0},{"d":0,"r":[1004,1007],"t":0},{"d":0,"r":[1007,1008],"t":0},{"d":0,"r":[1008,1010],"t":0},{"d":0,"r":[1010,1011],"t":0},{"d":0,"r":[1011,1014],"t":0},{"d":0,"r":[1014,1015],"t":0},{"d":0,"r":[1015,1017],"t":0},{"d":0,"r":[1017,1018],"t":0},{"d":0,"r":[1018,1021],"t":0},{"d":0,"r":[1021,1022],"t":0},{"d":0,"r":[1022,1024],"t":0},{"d":0,"r":[1024,1025],"t":0},{"d":0,"r":[1025,1028],"t":0},{"d":0,"r":[1028,1029],"t":0},{"d":0,"r":[1029,1031],"t":0},{"d":0,"r":[1031,1032],"t":0},{"d":0,"r":[1032,1035],"t":0},{"d":0,"r":[1035,1036],"t":0},{"d":0,"r":[1036,1038],"t":0},{"d":0,"r":[1038,1039],"t":0},{"d":0,"r":[1039,1042],"t":0},{"d":0,"r":[1042,1043],"t":0},{"d":0,"r":[1043,1045],"t":0},{"d":0,"r":[1045,1046],"t":0},{"d":0,"r":[1046,1049],"t":0},{"d":0,"r":[1049,1050],"t":0},{"d":0,"r":[1050,1052],"t":0},{"d":0,"r":[1052,1053],"t":0},{"d":0,"r":[1053,1056],"t":0},{"d":0,"r":[1056,1057],"t":0},{"d":0,"r":[1057,1059],"t":0},{"d":0,"r":[1059,1060],"t":0},{"d":0,"r":[1060,1063],"t":0},{"d":0,"r":[1063,1064],"t":0},{"d":0,"r":[1064,1066],"t":0},{"d":0,"r":[1066,1067],"t":0},{"d":0,"r":[1067,1070],"t":0},{"d":0,"r":[1070,1071],"t":0},{"d":0,"r":[1071,1073],"t":0},{"d":0,"r":[1073,1074],"t":0},{"d":0,"r":[1074,1077],"t":0},{"d":0,"r":[1077,1078],"t":0},{"d":0,"r":[1078,1080],"t":0},{"d":0,"r":[1080,1081],"t":0},{"d":0,"r":[1081,1084],"t":0},{"d":0,"r":[1084,1085],"t":0},{"d":0,"r":[1085,1087],"t":0},{"d":0,"r":[1087,1088],"t":0},{"d":0,"r":[1088,1091],"t":0},{"d":0,"r":[1091,1092],"t":0},{"d":0,"r":[1092,1094],"t":0},{"d":0,"r":[1094,1095],"t":0},{"d":0,"r":[1095,1098],"t":0},{"d":0,"r":[1098,1099],"t":0},{"d":0,"r":[1099,1101],"t":0},{"d":0,"r":[1101,1102],"t":0},{"d":0,"r":[1102,1105],"t":0},{"d":0,"r":[1105,1106],"t":0},{"d":0,"r":[1106,1108],"t":0},{"d":0,"r":[1108,1109],"t":0},{"d":0,"r":[1109,1112],"t":0},{"d":0,"r":[1112,1113],"t":0},{"d":0,"r":[1113,1115],"t":0},{"d":0,"r":[1115,1116],"t":0},{"d":0,"r":[1116,1119],"t":0},{"d":0,"r":[1119,1120],"t":0},{"d":0,"r":[1120,1122],"t":0},{"d":0,"r":[1122,1123],"t":0},{"d":0,"r":[1123,1126],"t":0},{"d":0,"r":[1126,1127],"t":0},{"d":0,"r":[1127,1129],"t":0},{"d":0,"r":[1129,1130],"t":0},{"d":0,"r":[1130,1133],"t":0},{"d":0,"r":[1133,1134],"t":0},{"d":0,"r":[1134,1136],"t":0},{"d":0,"r":[1136,1137],"t":0},{"d":0,"r":[1137,1140],"t":0},{"d":0,"r":[1140,1141],"t":0},{"d":0,"r":[1141,1143],"t":0},{"d":0,"r":[1143,1144],"t":0},{"d":0,"r":[1144,1147],"t":0},{"d":0,"r":[1147,1148],"t":0},{"d":0,"r":[1148,1150],"t":0},{"d":0,"r":[1150,1151],"t":0},{"d":0,"r":[1151,1154],"t":0},{"d":0,"r":[1154,1155],"t":0},{"d":0,"r":[1155,1157],"t":0},{"d":0,"r":[1157,1158],"t":0},{"d":0,"r":[1158,1161],"t":0},{"d":0,"r":[1161,1162],"t":0},{"d":0,"r":[1162,1164],"t":0},{"d":0,"r":[1164,1165],"t":0},{"d":0,"r":[1165,1168],"t":0},{"d":0,"r":[1168,1169],"t":0},{"d":0,"r":[1169,1171],"t":0},{"d":0,"r":[1171,1172],"t":0},{"d":0,"r":[1172,1175],"t":0},{"d":0,"r":[1175,1176],"t":0},{"d":0,"r":[1176,1178],"t":0},{"d":0,"r":[1178,1179],"t":0},{"d":0,"r":[1179,1182],"t":0},{"d":0,"r":[1182,1183],"t":0},{"d":0,"r":[1183,1185],"t":0},{"d":0,"r":[1185,1186],"t":0},{"d":0,"r":[1186,1189],"t":0},{"d":0,"r":[1189,1190],"t":0},{"d":0,"r":[1190,1192],"t":0},{"d":0,"r":[1192,1193],"t":0},{"d":0,"r":[1193,1196],"t":0},{"d":0,"r":[1196,1197],"t":0},{"d":0,"r":[1197,1199],"t":0},{"d":0,"r":[1199,1200],"t":0},{"d":0,"r":[1200,1203],"t":0},{"d":0,"r":[1203,1204],"t":0},{"d":0,"r":[1204,1206],"t":0},{"d":0,"r":[1206,1207],"t":0},{"d":0,"r":[1207,1210],"t":0},{"d":0,"r":[1210,1211],"t":0},{"d":0,"r":[1211,1213],"t":0},{"d":0,"r":[1213,1214],"t":0},{"d":0,"r":[1214,1217],"t":0},{"d":0,"r":[1217,1218],"t":0},{"d":0,"r":[1218,1220],"t":0},{"d":0,"r":[1220,1221],"t":0},{"d":0,"r":[1221,1224],"t":0},{"d":0,"r":[1224,1225],"t":0},{"d":0,"r":[1225,1227],"t":0},{"d":0,"r":[1227,1228],"t":0},{"d":0,"r":[1228,1231],"t":0},{"d":0,"r":[1231,1232],"t":0},{"d":0,"r":[1232,1234],"t":0},{"d":0,"r":[1234,1235],"t":0},{"d":0,"r":[1235,1238],"t":0},{"d":0,"r":[1238,1239],"t":0},{"d":0,"r":[1239,1241],"t":0},{"d":0,"r":[1241,1242],"t":0},{"d":0,"r":[1242,1245],"t":0},{"d":0,"r":[1245,1246],"t":0},{"d":0,"r":[1246,1248],"t":0},{"d":0,"r":[1248,1249],"t":0},{"d":0,"r":[1249,1252],"t":0},{"d":0,"r":[1252,1253],"t":0},{"d":0,"r":[1253,1255],"t":0},{"d":0,"r":[1255,1256],"t":0},{"d":0,"r":[1256,1259],"t":0},{"d":0,"r":[1259,1260],"t":0},{"d":0,"r":[1260,1262],"t":0},{"d":0,"r":[1262,1263],"t":0},{"d":0,"r":[1263,1266],"t":0},{"d":0,"r":[1266,1267],"t":0},{"d":0,"r":[1267,1269],"t":0},{"d":0,"r":[1269,1270],"t":0},{"d":0,"r":[1270,1273],"t":0},{"d":0,"r":[1273,1274],"t":0},{"d":0,"r":[1274,1276],"t":0},{"d":0,"r":[1276,1277],"t":0},{"d":0,"r":[1277,1280],"t":0},{"d":0,"r":[1280,1281],"t":0},{"d":0,"r":[1281,1283],"t":0},{"d":0,"r":[1283,1284],"t":0},{"d":0,"r":[1284,1287],"t":0},{"d":0,"r":[1287,1288],"t":0},{"d":0,"r":[1288,1290],"t":0},{"d":0,"r":[1290,1291],"t":0},{"d":0,"r":[1291,1294],"t":0},{"d":0,"r":[1294,1295],"t":0},{"d":0,"r":[1295,1297],"t":0},{"d":0,"r":[1297,1298],"t":0},{"d":0,"r":[1298,1301],"t":0},{"d":0,"r":[1301,1302],"t":0},{"d":0,"r":[1302,1304],"t":0},{"d":0,"r":[1304,1305],"t":0},{"d":0,"r":[1305,1308],"t":0},{"d":0,"r":[1308,1309],"t":0},{"d":0,"r":[1309,1311],"t":0},{"d":0,"r":[1311,1312],"t":0},{"d":0,"r":[1312,1315],"t":0},{"d":0,"r":[1315,1316],"t":0},{"d":0,"r":[1316,1318],"t":0},{"d":0,"r":[1318,1319],"t":0},{"d":0,"r":[1319,1322],"t":0},{"d":0,"r":[1322,1323],"t":0},{"d":0,"r":[1323,1325],"t":0},{"d":0,"r":[1325,1326],"t":0},{"d":0,"r":[1326,1329],"t":0},{"d":0,"r":[1329,1330],"t":0},{"d":0,"r":[1330,1332],"t":0},{"d":0,"r":[1332,1333],"t":0},{"d":0,"r":[1333,1336],"t":0},{"d":0,"r":[1336,1337],"t":0},{"d":0,"r":[1337,1339],"t":0},{"d":0,"r":[1339,1340],"t":0},{"d":0,"r":[1340,1343],"t":0},{"d":0,"r":[1343,1344],"t":0},{"d":0,"r":[1344,1346],"t":0},{"d":0,"r":[1346,1347],"t":0},{"d":0,"r":[1347,1350],"t":0},{"d":0,"r":[1350,1351],"t":0},{"d":0,"r":[1351,1353],"t":0},{"d":0,"r":[1353,1354],"t":0},{"d":0,"r":[1354,1357],"t":0},{"d":0,"r":[1357,1358],"t":0},{"d":0,"r":[1358,1360],"t":0},{"d":0,"r":[1360,1361],"t":0},{"d":0,"r":[1361,1364],"t":0},{"d":0,"r":[1364,1365],"t":0},{"d":0,"r":[1365,1367],"t":0},{"d":0,"r":[1367,1368],"t":0},{"d":0,"r":[1368,1371],"t":0},{"d":0,"r":[1371,1372],"t":0},{"d":0,"r":[1372,1374],"t":0},{"d":0,"r":[1374,1375],"t":0},{"d":0,"r":[1375,1378],"t":0},{"d":0,"r":[1378,1379],"t":0},{"d":0,"r":[1379,1381],"t":0},{"d":0,"r":[1381,1382],"t":0},{"d":0,"r":[1382,1385],"t":0},{"d":0,"r":[1385,1386],"t":0},{"d":0,"r":[1386,1388],"t":0},{"d":0,"r":[1388,1389],"t":0},{"d":0,"r":[1389,1392],"t":0},{"d":0,"r":[1392,1393],"t":0},{"d":0,"r":[1393,1395],"t":0},{"d":0,"r":[1395,1396],"t":0},{"d":0,"r":[1396,1399],"t":0},{"d":0,"r":[1399,1400],"t":0},{"d":0,"r":[1400,1402],"t":0},{"d":0,"r":[1402,1403],"t":0},{"d":0,"r":[1403,1406],"t":0},{"d":0,"r":[1406,1407],"t":0},{"d":0,"r":[1407,1409],"t":0},{"d":0,"r":[1409,1410],"t":0},{"d":0,"r":[1410,1413],"t":0},{"d":0,"r":[1413,1414],"t":0},{"d":0,"r":[1414,1416],"t":0},{"d":0,"r":[1416,1417],"t":0},{"d":0,"r":[1417,1420],"t":0},{"d":0,"r":[1420,1421],"t":0},{"d":0,"r":[1421,1423],"t":0},{"d":0,"r":[1423,1424],"t":0},{"d":0,"r":[1424,1427],"t":0},{"d":0,"r":[1427,1428],"t":0},{"d":0,"r":[1428,1430],"t":0},{"d":0,"r":[1430,1431],"t":0},{"d":0,"r":[1431,1434],"t":0},{"d":0,"r":[1434,1435],"t":0},{"d":0,"r":[1435,1437],"t":0},{"d":0,"r":[1437,1438],"t":0},{"d":0,"r":[1438,1441],"t":0},{"d":0,"r":[1441,1442],"t":0},{"d":0,"r":[1442,1444],"t":0},{"d":0,"r":[1444,1445],"t":0},{"d":0,"r":[1445,1448],"t":0},{"d":0,"r":[1448,1449],"t":0},{"d":0,"r":[1449,1451],"t":0},{"d":0,"r":[1451,1452],"t":0},{"d":0,"r":[1452,1455],"t":0},{"d":0,"r":[1455,1456],"t":0},{"d":0,"r":[1456,1458],"t":0},{"d":0,"r":[1458,1459],"t":0},{"d":0,"r":[1459,1462],"t":0},{"d":0,"r":[1462,1463],"t":0},{"d":0,"r":[1463,1465],"t":0},{"d":0,"r":[1465,1466],"t":0},{"d":0,"r":[1466,1469],"t":0},{"d":0,"r":[1469,1470],"t":0},{"d":0,"r":[1470,1472],"t":0},{"d":0,"r":[1472,1473],"t":0},{"d":0,"r":[1473,1476],"t":0},{"d":0,"r":[1476,1477],"t":0},{"d":0,"r":[1477,1479],"t":0},{"d":0,"r":[1479,1480],"t":0},{"d":0,"r":[1480,1483],"t":0},{"d":0,"r":[1483,1484],"t":0},{"d":0,"r":[1484,1486],"t":0},{"d":0,"r":[1486,1487],"t":0},{"d":0,"r":[1487,1490],"t":0},{"d":0,"r":[1490,1491],"t":0},{"d":0,"r":[1491,1493],"t":0},{"d":0,"r":[1493,1494],"t":0},{"d":0,"r":[1494,1497],"t":0},{"d":0,"r":[1497,1498],"t":0},{"d":0,"r":[1498,1500],"t":0},{"d":0,"r":[1500,1501],"t":0},{"d":0,"r":[1501,1504],"t":0},{"d":0,"r":[1504,1505],"t":0},{"d":0,"r":[1505,1507],"t":0},{"d":0,"r":[1507,1508],"t":0},{"d":0,"r":[1508,1511],"t":0},{"d":0,"r":[1511,1512],"t":0},{"d":0,"r":[1512,1514],"t":0},{"d":0,"r":[1514,1515],"t":0},{"d":0,"r":[1515,1518],"t":0},{"d":0,"r":[1518,1519],"t":0},{"d":0,"r":[1519,1521],"t":0},{"d":0,"r":[1521,1522],"t":0},{"d":0,"r":[1522,1525],"t":0},{"d":0,"r":[1525,1526],"t":0},{"d":0,"r":[1526,1528],"t":0},{"d":0,"r":[1528,1529],"t":0},{"d":0,"r":[1529,1532],"t":0},{"d":0,"r":[1532,1533],"t":0},{"d":0,"r":[1533,1535],"t":0},{"d":0,"r":[1535,1536],"t":0},{"d":0,"r":[1536,1539],"t":0},{"d":0,"r":[1539,1540],"t":0},{"d":0,"r":[1540,1542],"t":0},{"d":0,"r":[1542,1543],"t":0},{"d":0,"r":[1543,1546],"t":0},{"d":0,"r":[1546,1547],"t":0},{"d":0,"r":[1547,1549],"t":0},{"d":0,"r":[1549,1550],"t":0},{"d":0,"r":[1550,1553],"t":0},{"d":0,"r":[1553,1554],"t":0},{"d":0,"r":[1554,1556],"t":0},{"d":0,"r":[1556,1557],"t":0},{"d":0,"r":[1557,1560],"t":0},{"d":0,"r":[1560,1561],"t":0},{"d":0,"r":[1561,1563],"t":0},{"d":0,"r":[1563,1564],"t":0},{"d":0,"r":[1564,1567],"t":0},{"d":0,"r":[1567,1568],"t":0},{"d":0,"r":[1568,1570],"t":0},{"d":0,"r":[1570,1571],"t":0},{"d":0,"r":[1571,1574],"t":0},{"d":0,"r":[1574,1575],"t":0},{"d":0,"r":[1575,1577],"t":0},{"d":0,"r":[1577,1578],"t":0},{"d":0,"r":[1578,1581],"t":0},{"d":0,"r":[1581,1582],"t":0},{"d":0,"r":[1582,1584],"t":0},{"d":0,"r":[1584,1585],"t":0},{"d":0,"r":[1585,1588],"t":0},{"d":0,"r":[1588,1589],"t":0},{"d":0,"r":[1589,1591],"t":0},{"d":0,"r":[1591,1592],"t":0},{"d":0,"r":[1592,1595],"t":0},{"d":0,"r":[1595,1596],"t":0},{"d":0,"r":[1596,1598],"t":0},{"d":0,"r":[1598,1599],"t":0},{"d":0,"r":[1599,1602],"t":0},{"d":0,"r":[1602,1603],"t":0},{"d":0,"r":[1603,1606],"t":0},{"d":0,"r":[1608,1627],"t":0},{"d":0,"r":[1610,1616],"t":0},{"d":0,"r":[1616,1617],"t":0},{"d":0,"r":[1617,1621],"t":0},{"d":0,"r":[1621,1622],"t":0},{"d":0,"r":[1622,1626],"t":0},{"d":0,"r":[1628,1644],"t":0},{"d":0,"r":[1630,1644],"t":0},{"d":0,"r":[1630,1634],"t":0},{"d":0,"r":[1634,1635],"t":0},{"d":0,"r":[1635,1638],"t":0},{"d":0,"r":[1638,1639],"t":0},{"d":0,"r":[1639,1643],"t":0},{"d":0,"r":[4,34],"t":0},{"d":819,"r":[7,29],"t":1},{"d":0,"r":[4,34],"t":0},{"d":821,"r":[8,28],"t":1},{"d":822,"r":[0,8],"t":1},{"d":821,"r":[8,28],"t":1},{"d":824,"r":[8,9],"t":1},{"d":821,"r":[8,28],"t":1},{"d":826,"r":[9,15],"t":1},{"d":821,"r":[8,28],"t":1},{"d":828,"r":[15,16],"t":1},{"d":821,"r":[8,28],"t":1},{"d":830,"r":[16,20],"t":1},{"d":0,"r":[4,34],"t":0},{"d":832,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/definition-list.json b/ts-packages/annotated-qmd/examples/definition-list.json index 36876393f..33df19ddc 100644 --- a/ts-packages/annotated-qmd/examples/definition-list.json +++ b/ts-packages/annotated-qmd/examples/definition-list.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["definition-lists",[],[]],[{"c":"Definition","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Lists","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"c":[[[{"c":"Term","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"1","s":7,"t":"Str"}],[[{"c":[{"c":"Definition","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"for","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"term","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"1","s":15,"t":"Str"}],"s":8,"t":"Plain"}]]],[[{"c":"Term","s":16,"t":"Str"},{"s":17,"t":"Space"},{"c":"2","s":18,"t":"Str"}],[[{"c":[{"c":"First","s":20,"t":"Str"},{"s":21,"t":"Space"},{"c":"definition","s":22,"t":"Str"},{"s":23,"t":"Space"},{"c":"for","s":24,"t":"Str"},{"s":25,"t":"Space"},{"c":"term","s":26,"t":"Str"},{"s":27,"t":"Space"},{"c":"2","s":28,"t":"Str"}],"s":19,"t":"Plain"}],[{"c":[{"c":"Second","s":30,"t":"Str"},{"s":31,"t":"Space"},{"c":"definition","s":32,"t":"Str"},{"s":33,"t":"Space"},{"c":"for","s":34,"t":"Str"},{"s":35,"t":"Space"},{"c":"term","s":36,"t":"Str"},{"s":37,"t":"Space"},{"c":"2","s":38,"t":"Str"}],"s":29,"t":"Plain"}]]],[[{"c":[{"c":"Formatted","s":40,"t":"Str"},{"s":41,"t":"Space"},{"c":"Term","s":42,"t":"Str"}],"s":39,"t":"Emph"}],[[{"c":[{"c":"Definition","s":44,"t":"Str"},{"s":45,"t":"Space"},{"c":"with","s":46,"t":"Str"},{"s":47,"t":"Space"},{"c":[{"c":"bold","s":49,"t":"Str"}],"s":48,"t":"Strong"},{"s":50,"t":"Space"},{"c":"text","s":51,"t":"Str"}],"s":43,"t":"Plain"}]]]],"s":4,"t":"DefinitionList"}],"meta":{"title":{"c":[{"c":"Definition","s":57,"t":"Str"},{"s":59,"t":"Space"},{"c":"List","s":61,"t":"Str"},{"s":63,"t":"Space"},{"c":"Example","s":65,"t":"Str"}],"s":54,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,34,38,39,58,59,82,91,117,118,127,159,192,193,212,246,250],"name":"ts-packages/annotated-qmd/examples/definition-list.qmd","total_length":251}],"metaTopLevelKeySources":{"title":67},"p":[{"d":0,"r":[40,59],"t":0},{"d":0,"r":[42,52],"t":0},{"d":0,"r":[52,53],"t":0},{"d":0,"r":[53,58],"t":0},{"d":0,"r":[60,251],"t":0},{"d":0,"r":[85,89],"t":0},{"d":0,"r":[89,90],"t":0},{"d":0,"r":[90,91],"t":0},{"d":0,"r":[96,119],"t":0},{"d":0,"r":[96,106],"t":0},{"d":0,"r":[106,107],"t":0},{"d":0,"r":[107,110],"t":0},{"d":0,"r":[110,111],"t":0},{"d":0,"r":[111,115],"t":0},{"d":0,"r":[115,116],"t":0},{"d":0,"r":[116,117],"t":0},{"d":0,"r":[121,125],"t":0},{"d":0,"r":[125,126],"t":0},{"d":0,"r":[126,127],"t":0},{"d":0,"r":[132,162],"t":0},{"d":0,"r":[132,137],"t":0},{"d":0,"r":[137,138],"t":0},{"d":0,"r":[138,148],"t":0},{"d":0,"r":[148,149],"t":0},{"d":0,"r":[149,152],"t":0},{"d":0,"r":[152,153],"t":0},{"d":0,"r":[153,157],"t":0},{"d":0,"r":[157,158],"t":0},{"d":0,"r":[158,159],"t":0},{"d":0,"r":[164,194],"t":0},{"d":0,"r":[164,170],"t":0},{"d":0,"r":[170,171],"t":0},{"d":0,"r":[171,181],"t":0},{"d":0,"r":[181,182],"t":0},{"d":0,"r":[182,185],"t":0},{"d":0,"r":[185,186],"t":0},{"d":0,"r":[186,190],"t":0},{"d":0,"r":[190,191],"t":0},{"d":0,"r":[191,192],"t":0},{"d":0,"r":[196,212],"t":0},{"d":0,"r":[197,206],"t":0},{"d":0,"r":[206,207],"t":0},{"d":0,"r":[207,211],"t":0},{"d":0,"r":[217,247],"t":0},{"d":0,"r":[217,227],"t":0},{"d":0,"r":[227,228],"t":0},{"d":0,"r":[228,232],"t":0},{"d":0,"r":[232,233],"t":0},{"d":0,"r":[233,241],"t":0},{"d":0,"r":[235,239],"t":0},{"d":0,"r":[241,242],"t":0},{"d":0,"r":[242,246],"t":0},{"d":0,"r":[0,39],"t":0},{"d":52,"r":[4,34],"t":1},{"d":53,"r":[7,30],"t":1},{"d":52,"r":[4,34],"t":1},{"d":55,"r":[7,30],"t":1},{"d":56,"r":[0,10],"t":1},{"d":55,"r":[7,30],"t":1},{"d":58,"r":[10,11],"t":1},{"d":55,"r":[7,30],"t":1},{"d":60,"r":[11,15],"t":1},{"d":55,"r":[7,30],"t":1},{"d":62,"r":[15,16],"t":1},{"d":55,"r":[7,30],"t":1},{"d":64,"r":[16,23],"t":1},{"d":52,"r":[4,34],"t":1},{"d":66,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["definition-lists",[],[]],[{"c":"Definition","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Lists","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"c":[[[{"c":"Term","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"1","s":7,"t":"Str"}],[[{"c":[{"c":"Definition","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"for","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"term","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"1","s":15,"t":"Str"}],"s":8,"t":"Plain"}]]],[[{"c":"Term","s":16,"t":"Str"},{"s":17,"t":"Space"},{"c":"2","s":18,"t":"Str"}],[[{"c":[{"c":"First","s":20,"t":"Str"},{"s":21,"t":"Space"},{"c":"definition","s":22,"t":"Str"},{"s":23,"t":"Space"},{"c":"for","s":24,"t":"Str"},{"s":25,"t":"Space"},{"c":"term","s":26,"t":"Str"},{"s":27,"t":"Space"},{"c":"2","s":28,"t":"Str"}],"s":19,"t":"Plain"}],[{"c":[{"c":"Second","s":30,"t":"Str"},{"s":31,"t":"Space"},{"c":"definition","s":32,"t":"Str"},{"s":33,"t":"Space"},{"c":"for","s":34,"t":"Str"},{"s":35,"t":"Space"},{"c":"term","s":36,"t":"Str"},{"s":37,"t":"Space"},{"c":"2","s":38,"t":"Str"}],"s":29,"t":"Plain"}]]],[[{"c":[{"c":"Formatted","s":40,"t":"Str"},{"s":41,"t":"Space"},{"c":"Term","s":42,"t":"Str"}],"s":39,"t":"Emph"}],[[{"c":[{"c":"Definition","s":44,"t":"Str"},{"s":45,"t":"Space"},{"c":"with","s":46,"t":"Str"},{"s":47,"t":"Space"},{"c":[{"c":"bold","s":49,"t":"Str"}],"s":48,"t":"Strong"},{"s":50,"t":"Space"},{"c":"text","s":51,"t":"Str"}],"s":43,"t":"Plain"}]]]],"s":4,"t":"DefinitionList"}],"meta":{"title":{"c":[{"c":"Definition","s":56,"t":"Str"},{"s":58,"t":"Space"},{"c":"List","s":60,"t":"Str"},{"s":62,"t":"Space"},{"c":"Example","s":64,"t":"Str"}],"s":53,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,34,38,39,58,59,82,91,117,118,127,159,192,193,212,246,250],"name":"ts-packages/annotated-qmd/examples/definition-list.qmd","total_length":251}],"metaTopLevelKeySources":{"title":66},"p":[{"d":0,"r":[40,59],"t":0},{"d":0,"r":[42,52],"t":0},{"d":0,"r":[52,53],"t":0},{"d":0,"r":[53,58],"t":0},{"d":0,"r":[60,251],"t":0},{"d":0,"r":[85,89],"t":0},{"d":0,"r":[89,90],"t":0},{"d":0,"r":[90,91],"t":0},{"d":0,"r":[96,119],"t":0},{"d":0,"r":[96,106],"t":0},{"d":0,"r":[106,107],"t":0},{"d":0,"r":[107,110],"t":0},{"d":0,"r":[110,111],"t":0},{"d":0,"r":[111,115],"t":0},{"d":0,"r":[115,116],"t":0},{"d":0,"r":[116,117],"t":0},{"d":0,"r":[121,125],"t":0},{"d":0,"r":[125,126],"t":0},{"d":0,"r":[126,127],"t":0},{"d":0,"r":[132,162],"t":0},{"d":0,"r":[132,137],"t":0},{"d":0,"r":[137,138],"t":0},{"d":0,"r":[138,148],"t":0},{"d":0,"r":[148,149],"t":0},{"d":0,"r":[149,152],"t":0},{"d":0,"r":[152,153],"t":0},{"d":0,"r":[153,157],"t":0},{"d":0,"r":[157,158],"t":0},{"d":0,"r":[158,159],"t":0},{"d":0,"r":[164,194],"t":0},{"d":0,"r":[164,170],"t":0},{"d":0,"r":[170,171],"t":0},{"d":0,"r":[171,181],"t":0},{"d":0,"r":[181,182],"t":0},{"d":0,"r":[182,185],"t":0},{"d":0,"r":[185,186],"t":0},{"d":0,"r":[186,190],"t":0},{"d":0,"r":[190,191],"t":0},{"d":0,"r":[191,192],"t":0},{"d":0,"r":[196,212],"t":0},{"d":0,"r":[197,206],"t":0},{"d":0,"r":[206,207],"t":0},{"d":0,"r":[207,211],"t":0},{"d":0,"r":[217,247],"t":0},{"d":0,"r":[217,227],"t":0},{"d":0,"r":[227,228],"t":0},{"d":0,"r":[228,232],"t":0},{"d":0,"r":[232,233],"t":0},{"d":0,"r":[233,241],"t":0},{"d":0,"r":[235,239],"t":0},{"d":0,"r":[241,242],"t":0},{"d":0,"r":[242,246],"t":0},{"d":0,"r":[4,35],"t":0},{"d":52,"r":[7,30],"t":1},{"d":0,"r":[4,35],"t":0},{"d":54,"r":[7,30],"t":1},{"d":55,"r":[0,10],"t":1},{"d":54,"r":[7,30],"t":1},{"d":57,"r":[10,11],"t":1},{"d":54,"r":[7,30],"t":1},{"d":59,"r":[11,15],"t":1},{"d":54,"r":[7,30],"t":1},{"d":61,"r":[15,16],"t":1},{"d":54,"r":[7,30],"t":1},{"d":63,"r":[16,23],"t":1},{"d":0,"r":[4,35],"t":0},{"d":65,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/div-attrs.json b/ts-packages/annotated-qmd/examples/div-attrs.json index e0fbece46..a359b9205 100644 --- a/ts-packages/annotated-qmd/examples/div-attrs.json +++ b/ts-packages/annotated-qmd/examples/div-attrs.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["divs",[],[]],[{"c":"Divs","s":1,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"Simple","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"div","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"with","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"class:","s":11,"t":"Str"}],"s":2,"t":"Para"},{"a":{"classes":[13],"id":null,"kvs":[]},"c":[["",["callout-note"],[]],[{"c":[{"c":"This","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"is","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"a","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"note","s":21,"t":"Str"},{"s":22,"t":"Space"},{"c":"callout.","s":23,"t":"Str"}],"s":14,"t":"Para"}]],"s":12,"t":"Div"},{"c":[{"c":"Div","s":25,"t":"Str"},{"s":26,"t":"Space"},{"c":"with","s":27,"t":"Str"},{"s":28,"t":"Space"},{"c":"ID","s":29,"t":"Str"},{"s":30,"t":"Space"},{"c":"and","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"class:","s":35,"t":"Str"}],"s":24,"t":"Para"},{"a":{"classes":[37],"id":38,"kvs":[]},"c":[["my-div",["important"],[]],[{"c":[{"c":"Important","s":40,"t":"Str"},{"s":41,"t":"Space"},{"c":"content","s":42,"t":"Str"},{"s":43,"t":"Space"},{"c":"here.","s":44,"t":"Str"}],"s":39,"t":"Para"}]],"s":36,"t":"Div"},{"c":[{"c":"Div","s":46,"t":"Str"},{"s":47,"t":"Space"},{"c":"with","s":48,"t":"Str"},{"s":49,"t":"Space"},{"c":"custom","s":50,"t":"Str"},{"s":51,"t":"Space"},{"c":"attributes:","s":54,"t":"Str"}],"s":45,"t":"Para"},{"a":{"classes":[56],"id":null,"kvs":[[57,58],[59,60]]},"c":[["",["panel"],[["data-value","42"],["custom-key","test"]]],[{"c":[{"c":"Panel","s":62,"t":"Str"},{"s":63,"t":"Space"},{"c":"with","s":64,"t":"Str"},{"s":65,"t":"Space"},{"c":"custom","s":66,"t":"Str"},{"s":67,"t":"Space"},{"c":"attributes.","s":68,"t":"Str"}],"s":61,"t":"Para"}]],"s":55,"t":"Div"},{"c":[{"c":"Nested","s":70,"t":"Str"},{"s":71,"t":"Space"},{"c":"divs:","s":74,"t":"Str"}],"s":69,"t":"Para"},{"a":{"classes":[76],"id":null,"kvs":[]},"c":[["",["outer"],[]],[{"c":[{"c":"Outer","s":78,"t":"Str"},{"s":79,"t":"Space"},{"c":"div","s":80,"t":"Str"},{"s":81,"t":"Space"},{"c":"content.","s":82,"t":"Str"}],"s":77,"t":"Para"},{"a":{"classes":[84],"id":null,"kvs":[]},"c":[["",["inner"],[]],[{"c":[{"c":"Inner","s":86,"t":"Str"},{"s":87,"t":"Space"},{"c":"div","s":88,"t":"Str"},{"s":89,"t":"Space"},{"c":"content.","s":90,"t":"Str"}],"s":85,"t":"Para"}]],"s":83,"t":"Div"}]],"s":75,"t":"Div"}],"meta":{"title":{"c":[{"c":"Div","s":96,"t":"Str"},{"s":98,"t":"Space"},{"c":"with","s":100,"t":"Str"},{"s":102,"t":"Space"},{"c":"Attributes","s":104,"t":"Str"}],"s":93,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,30,34,35,42,43,66,67,87,111,115,116,139,140,165,189,193,194,222,223,270,300,304,305,318,319,332,351,352,365,384,388,392],"name":"ts-packages/annotated-qmd/examples/div-attrs.qmd","total_length":393}],"metaTopLevelKeySources":{"title":106},"p":[{"d":0,"r":[36,43],"t":0},{"d":0,"r":[38,42],"t":0},{"d":0,"r":[44,67],"t":0},{"d":0,"r":[44,50],"t":0},{"d":0,"r":[50,51],"t":0},{"d":0,"r":[51,54],"t":0},{"d":0,"r":[54,55],"t":0},{"d":0,"r":[55,59],"t":0},{"d":0,"r":[59,60],"t":0},{"d":0,"r":[60,65],"t":0},{"d":0,"r":[65,66],"t":0},{"d":[[9,0,5],[10,5,1]],"r":[0,6],"t":2},{"d":0,"r":[68,116],"t":0},{"d":0,"r":[73,86],"t":0},{"d":0,"r":[88,112],"t":0},{"d":0,"r":[88,92],"t":0},{"d":0,"r":[92,93],"t":0},{"d":0,"r":[93,95],"t":0},{"d":0,"r":[95,96],"t":0},{"d":0,"r":[96,97],"t":0},{"d":0,"r":[97,98],"t":0},{"d":0,"r":[98,102],"t":0},{"d":0,"r":[102,103],"t":0},{"d":0,"r":[103,111],"t":0},{"d":0,"r":[117,140],"t":0},{"d":0,"r":[117,120],"t":0},{"d":0,"r":[120,121],"t":0},{"d":0,"r":[121,125],"t":0},{"d":0,"r":[125,126],"t":0},{"d":0,"r":[126,128],"t":0},{"d":0,"r":[128,129],"t":0},{"d":0,"r":[129,132],"t":0},{"d":0,"r":[132,133],"t":0},{"d":0,"r":[133,138],"t":0},{"d":0,"r":[138,139],"t":0},{"d":[[33,0,5],[34,5,1]],"r":[0,6],"t":2},{"d":0,"r":[141,194],"t":0},{"d":0,"r":[154,164],"t":0},{"d":0,"r":[146,153],"t":0},{"d":0,"r":[166,190],"t":0},{"d":0,"r":[166,175],"t":0},{"d":0,"r":[175,176],"t":0},{"d":0,"r":[176,183],"t":0},{"d":0,"r":[183,184],"t":0},{"d":0,"r":[184,189],"t":0},{"d":0,"r":[195,223],"t":0},{"d":0,"r":[195,198],"t":0},{"d":0,"r":[198,199],"t":0},{"d":0,"r":[199,203],"t":0},{"d":0,"r":[203,204],"t":0},{"d":0,"r":[204,210],"t":0},{"d":0,"r":[210,211],"t":0},{"d":0,"r":[211,221],"t":0},{"d":0,"r":[221,222],"t":0},{"d":[[52,0,10],[53,10,1]],"r":[0,11],"t":2},{"d":0,"r":[224,305],"t":0},{"d":0,"r":[229,235],"t":0},{"d":0,"r":[236,246],"t":0},{"d":0,"r":[248,250],"t":0},{"d":0,"r":[252,262],"t":0},{"d":0,"r":[264,268],"t":0},{"d":0,"r":[271,301],"t":0},{"d":0,"r":[271,276],"t":0},{"d":0,"r":[276,277],"t":0},{"d":0,"r":[277,281],"t":0},{"d":0,"r":[281,282],"t":0},{"d":0,"r":[282,288],"t":0},{"d":0,"r":[288,289],"t":0},{"d":0,"r":[289,300],"t":0},{"d":0,"r":[306,319],"t":0},{"d":0,"r":[306,312],"t":0},{"d":0,"r":[312,313],"t":0},{"d":0,"r":[313,317],"t":0},{"d":0,"r":[317,318],"t":0},{"d":[[72,0,4],[73,4,1]],"r":[0,5],"t":2},{"d":0,"r":[320,393],"t":0},{"d":0,"r":[325,331],"t":0},{"d":0,"r":[333,352],"t":0},{"d":0,"r":[333,338],"t":0},{"d":0,"r":[338,339],"t":0},{"d":0,"r":[339,342],"t":0},{"d":0,"r":[342,343],"t":0},{"d":0,"r":[343,351],"t":0},{"d":0,"r":[353,389],"t":0},{"d":0,"r":[358,364],"t":0},{"d":0,"r":[366,385],"t":0},{"d":0,"r":[366,371],"t":0},{"d":0,"r":[371,372],"t":0},{"d":0,"r":[372,375],"t":0},{"d":0,"r":[375,376],"t":0},{"d":0,"r":[376,384],"t":0},{"d":0,"r":[0,35],"t":0},{"d":91,"r":[4,30],"t":1},{"d":92,"r":[7,26],"t":1},{"d":91,"r":[4,30],"t":1},{"d":94,"r":[7,26],"t":1},{"d":95,"r":[0,3],"t":1},{"d":94,"r":[7,26],"t":1},{"d":97,"r":[3,4],"t":1},{"d":94,"r":[7,26],"t":1},{"d":99,"r":[4,8],"t":1},{"d":94,"r":[7,26],"t":1},{"d":101,"r":[8,9],"t":1},{"d":94,"r":[7,26],"t":1},{"d":103,"r":[9,19],"t":1},{"d":91,"r":[4,30],"t":1},{"d":105,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["divs",[],[]],[{"c":"Divs","s":1,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"Simple","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"div","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"with","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"class:","s":11,"t":"Str"}],"s":2,"t":"Para"},{"a":{"classes":[13],"id":null,"kvs":[]},"c":[["",["callout-note"],[]],[{"c":[{"c":"This","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"is","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"a","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"note","s":21,"t":"Str"},{"s":22,"t":"Space"},{"c":"callout.","s":23,"t":"Str"}],"s":14,"t":"Para"}]],"s":12,"t":"Div"},{"c":[{"c":"Div","s":25,"t":"Str"},{"s":26,"t":"Space"},{"c":"with","s":27,"t":"Str"},{"s":28,"t":"Space"},{"c":"ID","s":29,"t":"Str"},{"s":30,"t":"Space"},{"c":"and","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"class:","s":35,"t":"Str"}],"s":24,"t":"Para"},{"a":{"classes":[37],"id":38,"kvs":[]},"c":[["my-div",["important"],[]],[{"c":[{"c":"Important","s":40,"t":"Str"},{"s":41,"t":"Space"},{"c":"content","s":42,"t":"Str"},{"s":43,"t":"Space"},{"c":"here.","s":44,"t":"Str"}],"s":39,"t":"Para"}]],"s":36,"t":"Div"},{"c":[{"c":"Div","s":46,"t":"Str"},{"s":47,"t":"Space"},{"c":"with","s":48,"t":"Str"},{"s":49,"t":"Space"},{"c":"custom","s":50,"t":"Str"},{"s":51,"t":"Space"},{"c":"attributes:","s":54,"t":"Str"}],"s":45,"t":"Para"},{"a":{"classes":[56],"id":null,"kvs":[[57,58],[59,60]]},"c":[["",["panel"],[["data-value","42"],["custom-key","test"]]],[{"c":[{"c":"Panel","s":62,"t":"Str"},{"s":63,"t":"Space"},{"c":"with","s":64,"t":"Str"},{"s":65,"t":"Space"},{"c":"custom","s":66,"t":"Str"},{"s":67,"t":"Space"},{"c":"attributes.","s":68,"t":"Str"}],"s":61,"t":"Para"}]],"s":55,"t":"Div"},{"c":[{"c":"Nested","s":70,"t":"Str"},{"s":71,"t":"Space"},{"c":"divs:","s":74,"t":"Str"}],"s":69,"t":"Para"},{"a":{"classes":[76],"id":null,"kvs":[]},"c":[["",["outer"],[]],[{"c":[{"c":"Outer","s":78,"t":"Str"},{"s":79,"t":"Space"},{"c":"div","s":80,"t":"Str"},{"s":81,"t":"Space"},{"c":"content.","s":82,"t":"Str"}],"s":77,"t":"Para"},{"a":{"classes":[84],"id":null,"kvs":[]},"c":[["",["inner"],[]],[{"c":[{"c":"Inner","s":86,"t":"Str"},{"s":87,"t":"Space"},{"c":"div","s":88,"t":"Str"},{"s":89,"t":"Space"},{"c":"content.","s":90,"t":"Str"}],"s":85,"t":"Para"}]],"s":83,"t":"Div"}]],"s":75,"t":"Div"}],"meta":{"title":{"c":[{"c":"Div","s":95,"t":"Str"},{"s":97,"t":"Space"},{"c":"with","s":99,"t":"Str"},{"s":101,"t":"Space"},{"c":"Attributes","s":103,"t":"Str"}],"s":92,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,30,34,35,42,43,66,67,87,111,115,116,139,140,165,189,193,194,222,223,270,300,304,305,318,319,332,351,352,365,384,388,392],"name":"ts-packages/annotated-qmd/examples/div-attrs.qmd","total_length":393}],"metaTopLevelKeySources":{"title":105},"p":[{"d":0,"r":[36,43],"t":0},{"d":0,"r":[38,42],"t":0},{"d":0,"r":[44,67],"t":0},{"d":0,"r":[44,50],"t":0},{"d":0,"r":[50,51],"t":0},{"d":0,"r":[51,54],"t":0},{"d":0,"r":[54,55],"t":0},{"d":0,"r":[55,59],"t":0},{"d":0,"r":[59,60],"t":0},{"d":0,"r":[60,65],"t":0},{"d":0,"r":[65,66],"t":0},{"d":[[9,0,5],[10,5,1]],"r":[0,6],"t":2},{"d":0,"r":[68,116],"t":0},{"d":0,"r":[73,86],"t":0},{"d":0,"r":[88,112],"t":0},{"d":0,"r":[88,92],"t":0},{"d":0,"r":[92,93],"t":0},{"d":0,"r":[93,95],"t":0},{"d":0,"r":[95,96],"t":0},{"d":0,"r":[96,97],"t":0},{"d":0,"r":[97,98],"t":0},{"d":0,"r":[98,102],"t":0},{"d":0,"r":[102,103],"t":0},{"d":0,"r":[103,111],"t":0},{"d":0,"r":[117,140],"t":0},{"d":0,"r":[117,120],"t":0},{"d":0,"r":[120,121],"t":0},{"d":0,"r":[121,125],"t":0},{"d":0,"r":[125,126],"t":0},{"d":0,"r":[126,128],"t":0},{"d":0,"r":[128,129],"t":0},{"d":0,"r":[129,132],"t":0},{"d":0,"r":[132,133],"t":0},{"d":0,"r":[133,138],"t":0},{"d":0,"r":[138,139],"t":0},{"d":[[33,0,5],[34,5,1]],"r":[0,6],"t":2},{"d":0,"r":[141,194],"t":0},{"d":0,"r":[154,164],"t":0},{"d":0,"r":[146,153],"t":0},{"d":0,"r":[166,190],"t":0},{"d":0,"r":[166,175],"t":0},{"d":0,"r":[175,176],"t":0},{"d":0,"r":[176,183],"t":0},{"d":0,"r":[183,184],"t":0},{"d":0,"r":[184,189],"t":0},{"d":0,"r":[195,223],"t":0},{"d":0,"r":[195,198],"t":0},{"d":0,"r":[198,199],"t":0},{"d":0,"r":[199,203],"t":0},{"d":0,"r":[203,204],"t":0},{"d":0,"r":[204,210],"t":0},{"d":0,"r":[210,211],"t":0},{"d":0,"r":[211,221],"t":0},{"d":0,"r":[221,222],"t":0},{"d":[[52,0,10],[53,10,1]],"r":[0,11],"t":2},{"d":0,"r":[224,305],"t":0},{"d":0,"r":[229,235],"t":0},{"d":0,"r":[236,246],"t":0},{"d":0,"r":[248,250],"t":0},{"d":0,"r":[252,262],"t":0},{"d":0,"r":[264,268],"t":0},{"d":0,"r":[271,301],"t":0},{"d":0,"r":[271,276],"t":0},{"d":0,"r":[276,277],"t":0},{"d":0,"r":[277,281],"t":0},{"d":0,"r":[281,282],"t":0},{"d":0,"r":[282,288],"t":0},{"d":0,"r":[288,289],"t":0},{"d":0,"r":[289,300],"t":0},{"d":0,"r":[306,319],"t":0},{"d":0,"r":[306,312],"t":0},{"d":0,"r":[312,313],"t":0},{"d":0,"r":[313,317],"t":0},{"d":0,"r":[317,318],"t":0},{"d":[[72,0,4],[73,4,1]],"r":[0,5],"t":2},{"d":0,"r":[320,393],"t":0},{"d":0,"r":[325,331],"t":0},{"d":0,"r":[333,352],"t":0},{"d":0,"r":[333,338],"t":0},{"d":0,"r":[338,339],"t":0},{"d":0,"r":[339,342],"t":0},{"d":0,"r":[342,343],"t":0},{"d":0,"r":[343,351],"t":0},{"d":0,"r":[353,389],"t":0},{"d":0,"r":[358,364],"t":0},{"d":0,"r":[366,385],"t":0},{"d":0,"r":[366,371],"t":0},{"d":0,"r":[371,372],"t":0},{"d":0,"r":[372,375],"t":0},{"d":0,"r":[375,376],"t":0},{"d":0,"r":[376,384],"t":0},{"d":0,"r":[4,31],"t":0},{"d":91,"r":[7,26],"t":1},{"d":0,"r":[4,31],"t":0},{"d":93,"r":[7,26],"t":1},{"d":94,"r":[0,3],"t":1},{"d":93,"r":[7,26],"t":1},{"d":96,"r":[3,4],"t":1},{"d":93,"r":[7,26],"t":1},{"d":98,"r":[4,8],"t":1},{"d":93,"r":[7,26],"t":1},{"d":100,"r":[8,9],"t":1},{"d":93,"r":[7,26],"t":1},{"d":102,"r":[9,19],"t":1},{"d":0,"r":[4,31],"t":0},{"d":104,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/empty-content.json b/ts-packages/annotated-qmd/examples/empty-content.json index fbfe6c3d5..328facff0 100644 --- a/ts-packages/annotated-qmd/examples/empty-content.json +++ b/ts-packages/annotated-qmd/examples/empty-content.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["empty-elements-test",[],[]],[{"c":"Empty","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Elements","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"Test","s":5,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"Empty","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"paragraph","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"below:","s":13,"t":"Str"}],"s":6,"t":"Para"},{"c":[{"c":"Empty","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"bullet","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"list:","s":21,"t":"Str"}],"s":14,"t":"Para"},{"c":[[]],"s":22,"t":"BulletList"},{"c":[{"c":"Empty","s":24,"t":"Str"},{"s":25,"t":"Space"},{"c":"ordered","s":26,"t":"Str"},{"s":27,"t":"Space"},{"c":"list:","s":30,"t":"Str"}],"s":23,"t":"Para"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[]]],"s":31,"t":"OrderedList"},{"c":[{"c":"Empty","s":33,"t":"Str"},{"s":34,"t":"Space"},{"c":"code","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"block:","s":39,"t":"Str"}],"s":32,"t":"Para"},{"a":{"classes":[41],"id":null,"kvs":[]},"c":[["",["python"],[]],""],"s":40,"t":"CodeBlock"},{"c":[{"c":"Empty","s":43,"t":"Str"},{"s":44,"t":"Space"},{"c":"formatting:","s":47,"t":"Str"}],"s":42,"t":"Para"},{"s":48,"t":"HorizontalRule"},{"c":[{"c":"Empty","s":50,"t":"Str"},{"s":51,"t":"Space"},{"c":"emphasis:","s":54,"t":"Str"}],"s":49,"t":"Para"},{"c":[[{"c":[[]],"s":56,"t":"BulletList"}]],"s":55,"t":"BulletList"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["more-tests",[],[]],[{"c":"More","s":58,"t":"Str"},{"s":59,"t":"Space"},{"c":"Tests","s":60,"t":"Str"}]],"s":57,"t":"Header"},{"c":[{"c":"Code","s":62,"t":"Str"},{"s":63,"t":"Space"},{"c":"block","s":64,"t":"Str"},{"s":65,"t":"Space"},{"c":"with","s":66,"t":"Str"},{"s":67,"t":"Space"},{"c":"just","s":68,"t":"Str"},{"s":69,"t":"Space"},{"c":"whitespace:","s":72,"t":"Str"}],"s":61,"t":"Para"},{"a":{"classes":[74],"id":null,"kvs":[]},"c":[["",["bash"],[]],""],"s":73,"t":"CodeBlock"},{"c":[{"c":"List","s":76,"t":"Str"},{"s":77,"t":"Space"},{"c":"item","s":78,"t":"Str"},{"s":79,"t":"Space"},{"c":"with","s":80,"t":"Str"},{"s":81,"t":"Space"},{"c":"empty","s":82,"t":"Str"},{"s":83,"t":"Space"},{"c":"content:","s":86,"t":"Str"}],"s":75,"t":"Para"},{"c":[[{"c":[{"c":"Item","s":89,"t":"Str"},{"s":90,"t":"Space"},{"c":"1","s":91,"t":"Str"}],"s":88,"t":"Plain"}],[],[{"c":[{"c":"Item","s":93,"t":"Str"},{"s":94,"t":"Space"},{"c":"3","s":95,"t":"Str"}],"s":92,"t":"Plain"}]],"s":87,"t":"BulletList"}],"meta":{"author":{"c":[{"c":"Test","s":101,"t":"Str"},{"s":103,"t":"Space"},{"c":"Suite","s":105,"t":"Str"}],"s":98,"t":"MetaInlines"},"title":{"c":[{"c":"Empty","s":110,"t":"Str"},{"s":112,"t":"Space"},{"c":"Content","s":114,"t":"Str"},{"s":116,"t":"Space"},{"c":"Test","s":118,"t":"Str"}],"s":107,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,31,52,56,57,79,80,103,104,105,106,125,126,128,129,149,150,153,154,172,173,183,187,188,206,207,213,214,230,231,235,236,249,250,283,284,292,293,297,298,328,329,338,340,349],"name":"ts-packages/annotated-qmd/examples/empty-content.qmd","total_length":350}],"metaTopLevelKeySources":{"author":120,"title":122},"p":[{"d":0,"r":[58,80],"t":0},{"d":0,"r":[60,65],"t":0},{"d":0,"r":[65,66],"t":0},{"d":0,"r":[66,74],"t":0},{"d":0,"r":[74,75],"t":0},{"d":0,"r":[75,79],"t":0},{"d":0,"r":[81,104],"t":0},{"d":0,"r":[81,86],"t":0},{"d":0,"r":[86,87],"t":0},{"d":0,"r":[87,96],"t":0},{"d":0,"r":[96,97],"t":0},{"d":0,"r":[97,102],"t":0},{"d":0,"r":[102,103],"t":0},{"d":[[11,0,5],[12,5,1]],"r":[0,6],"t":2},{"d":0,"r":[107,126],"t":0},{"d":0,"r":[107,112],"t":0},{"d":0,"r":[112,113],"t":0},{"d":0,"r":[113,119],"t":0},{"d":0,"r":[119,120],"t":0},{"d":0,"r":[120,124],"t":0},{"d":0,"r":[124,125],"t":0},{"d":[[19,0,4],[20,4,1]],"r":[0,5],"t":2},{"d":0,"r":[127,130],"t":0},{"d":0,"r":[130,150],"t":0},{"d":0,"r":[130,135],"t":0},{"d":0,"r":[135,136],"t":0},{"d":0,"r":[136,143],"t":0},{"d":0,"r":[143,144],"t":0},{"d":0,"r":[144,148],"t":0},{"d":0,"r":[148,149],"t":0},{"d":[[28,0,4],[29,4,1]],"r":[0,5],"t":2},{"d":0,"r":[151,155],"t":0},{"d":0,"r":[155,173],"t":0},{"d":0,"r":[155,160],"t":0},{"d":0,"r":[160,161],"t":0},{"d":0,"r":[161,165],"t":0},{"d":0,"r":[165,166],"t":0},{"d":0,"r":[166,171],"t":0},{"d":0,"r":[171,172],"t":0},{"d":[[37,0,5],[38,5,1]],"r":[0,6],"t":2},{"d":0,"r":[174,188],"t":0},{"d":0,"r":[177,183],"t":0},{"d":0,"r":[189,207],"t":0},{"d":0,"r":[189,194],"t":0},{"d":0,"r":[194,195],"t":0},{"d":0,"r":[195,205],"t":0},{"d":0,"r":[205,206],"t":0},{"d":[[45,0,10],[46,10,1]],"r":[0,11],"t":2},{"d":0,"r":[208,214],"t":0},{"d":0,"r":[215,231],"t":0},{"d":0,"r":[215,220],"t":0},{"d":0,"r":[220,221],"t":0},{"d":0,"r":[221,229],"t":0},{"d":0,"r":[229,230],"t":0},{"d":[[52,0,8],[53,8,1]],"r":[0,9],"t":2},{"d":0,"r":[232,237],"t":0},{"d":0,"r":[234,237],"t":0},{"d":0,"r":[237,250],"t":0},{"d":0,"r":[239,243],"t":0},{"d":0,"r":[243,244],"t":0},{"d":0,"r":[244,249],"t":0},{"d":0,"r":[251,284],"t":0},{"d":0,"r":[251,255],"t":0},{"d":0,"r":[255,256],"t":0},{"d":0,"r":[256,261],"t":0},{"d":0,"r":[261,262],"t":0},{"d":0,"r":[262,266],"t":0},{"d":0,"r":[266,267],"t":0},{"d":0,"r":[267,271],"t":0},{"d":0,"r":[271,272],"t":0},{"d":0,"r":[272,282],"t":0},{"d":0,"r":[282,283],"t":0},{"d":[[70,0,10],[71,10,1]],"r":[0,11],"t":2},{"d":0,"r":[285,298],"t":0},{"d":0,"r":[288,292],"t":0},{"d":0,"r":[299,329],"t":0},{"d":0,"r":[299,303],"t":0},{"d":0,"r":[303,304],"t":0},{"d":0,"r":[304,308],"t":0},{"d":0,"r":[308,309],"t":0},{"d":0,"r":[309,313],"t":0},{"d":0,"r":[313,314],"t":0},{"d":0,"r":[314,319],"t":0},{"d":0,"r":[319,320],"t":0},{"d":0,"r":[320,327],"t":0},{"d":0,"r":[327,328],"t":0},{"d":[[84,0,7],[85,7,1]],"r":[0,8],"t":2},{"d":0,"r":[330,350],"t":0},{"d":0,"r":[332,339],"t":0},{"d":0,"r":[332,336],"t":0},{"d":0,"r":[336,337],"t":0},{"d":0,"r":[337,338],"t":0},{"d":0,"r":[343,350],"t":0},{"d":0,"r":[343,347],"t":0},{"d":0,"r":[347,348],"t":0},{"d":0,"r":[348,349],"t":0},{"d":0,"r":[0,57],"t":0},{"d":96,"r":[4,52],"t":1},{"d":97,"r":[36,48],"t":1},{"d":96,"r":[4,52],"t":1},{"d":99,"r":[37,47],"t":1},{"d":100,"r":[0,4],"t":1},{"d":99,"r":[37,47],"t":1},{"d":102,"r":[4,5],"t":1},{"d":99,"r":[37,47],"t":1},{"d":104,"r":[5,10],"t":1},{"d":96,"r":[4,52],"t":1},{"d":106,"r":[7,27],"t":1},{"d":96,"r":[4,52],"t":1},{"d":108,"r":[8,26],"t":1},{"d":109,"r":[0,5],"t":1},{"d":108,"r":[8,26],"t":1},{"d":111,"r":[5,6],"t":1},{"d":108,"r":[8,26],"t":1},{"d":113,"r":[6,13],"t":1},{"d":108,"r":[8,26],"t":1},{"d":115,"r":[13,14],"t":1},{"d":108,"r":[8,26],"t":1},{"d":117,"r":[14,18],"t":1},{"d":96,"r":[4,52],"t":1},{"d":119,"r":[28,34],"t":1},{"d":96,"r":[4,52],"t":1},{"d":121,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["empty-elements-test",[],[]],[{"c":"Empty","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Elements","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"Test","s":5,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"Empty","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"paragraph","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"below:","s":13,"t":"Str"}],"s":6,"t":"Para"},{"c":[{"c":"Empty","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"bullet","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"list:","s":21,"t":"Str"}],"s":14,"t":"Para"},{"c":[[]],"s":22,"t":"BulletList"},{"c":[{"c":"Empty","s":24,"t":"Str"},{"s":25,"t":"Space"},{"c":"ordered","s":26,"t":"Str"},{"s":27,"t":"Space"},{"c":"list:","s":30,"t":"Str"}],"s":23,"t":"Para"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[]]],"s":31,"t":"OrderedList"},{"c":[{"c":"Empty","s":33,"t":"Str"},{"s":34,"t":"Space"},{"c":"code","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"block:","s":39,"t":"Str"}],"s":32,"t":"Para"},{"a":{"classes":[41],"id":null,"kvs":[]},"c":[["",["python"],[]],""],"s":40,"t":"CodeBlock"},{"c":[{"c":"Empty","s":43,"t":"Str"},{"s":44,"t":"Space"},{"c":"formatting:","s":47,"t":"Str"}],"s":42,"t":"Para"},{"s":48,"t":"HorizontalRule"},{"c":[{"c":"Empty","s":50,"t":"Str"},{"s":51,"t":"Space"},{"c":"emphasis:","s":54,"t":"Str"}],"s":49,"t":"Para"},{"c":[[{"c":[[]],"s":56,"t":"BulletList"}]],"s":55,"t":"BulletList"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["more-tests",[],[]],[{"c":"More","s":58,"t":"Str"},{"s":59,"t":"Space"},{"c":"Tests","s":60,"t":"Str"}]],"s":57,"t":"Header"},{"c":[{"c":"Code","s":62,"t":"Str"},{"s":63,"t":"Space"},{"c":"block","s":64,"t":"Str"},{"s":65,"t":"Space"},{"c":"with","s":66,"t":"Str"},{"s":67,"t":"Space"},{"c":"just","s":68,"t":"Str"},{"s":69,"t":"Space"},{"c":"whitespace:","s":72,"t":"Str"}],"s":61,"t":"Para"},{"a":{"classes":[74],"id":null,"kvs":[]},"c":[["",["bash"],[]],""],"s":73,"t":"CodeBlock"},{"c":[{"c":"List","s":76,"t":"Str"},{"s":77,"t":"Space"},{"c":"item","s":78,"t":"Str"},{"s":79,"t":"Space"},{"c":"with","s":80,"t":"Str"},{"s":81,"t":"Space"},{"c":"empty","s":82,"t":"Str"},{"s":83,"t":"Space"},{"c":"content:","s":86,"t":"Str"}],"s":75,"t":"Para"},{"c":[[{"c":[{"c":"Item","s":89,"t":"Str"},{"s":90,"t":"Space"},{"c":"1","s":91,"t":"Str"}],"s":88,"t":"Plain"}],[],[{"c":[{"c":"Item","s":93,"t":"Str"},{"s":94,"t":"Space"},{"c":"3","s":95,"t":"Str"}],"s":92,"t":"Plain"}]],"s":87,"t":"BulletList"}],"meta":{"author":{"c":[{"c":"Test","s":100,"t":"Str"},{"s":102,"t":"Space"},{"c":"Suite","s":104,"t":"Str"}],"s":97,"t":"MetaInlines"},"title":{"c":[{"c":"Empty","s":109,"t":"Str"},{"s":111,"t":"Space"},{"c":"Content","s":113,"t":"Str"},{"s":115,"t":"Space"},{"c":"Test","s":117,"t":"Str"}],"s":106,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,31,52,56,57,79,80,103,104,105,106,125,126,128,129,149,150,153,154,172,173,183,187,188,206,207,213,214,230,231,235,236,249,250,283,284,292,293,297,298,328,329,338,340,349],"name":"ts-packages/annotated-qmd/examples/empty-content.qmd","total_length":350}],"metaTopLevelKeySources":{"author":119,"title":121},"p":[{"d":0,"r":[58,80],"t":0},{"d":0,"r":[60,65],"t":0},{"d":0,"r":[65,66],"t":0},{"d":0,"r":[66,74],"t":0},{"d":0,"r":[74,75],"t":0},{"d":0,"r":[75,79],"t":0},{"d":0,"r":[81,104],"t":0},{"d":0,"r":[81,86],"t":0},{"d":0,"r":[86,87],"t":0},{"d":0,"r":[87,96],"t":0},{"d":0,"r":[96,97],"t":0},{"d":0,"r":[97,102],"t":0},{"d":0,"r":[102,103],"t":0},{"d":[[11,0,5],[12,5,1]],"r":[0,6],"t":2},{"d":0,"r":[107,126],"t":0},{"d":0,"r":[107,112],"t":0},{"d":0,"r":[112,113],"t":0},{"d":0,"r":[113,119],"t":0},{"d":0,"r":[119,120],"t":0},{"d":0,"r":[120,124],"t":0},{"d":0,"r":[124,125],"t":0},{"d":[[19,0,4],[20,4,1]],"r":[0,5],"t":2},{"d":0,"r":[127,130],"t":0},{"d":0,"r":[130,150],"t":0},{"d":0,"r":[130,135],"t":0},{"d":0,"r":[135,136],"t":0},{"d":0,"r":[136,143],"t":0},{"d":0,"r":[143,144],"t":0},{"d":0,"r":[144,148],"t":0},{"d":0,"r":[148,149],"t":0},{"d":[[28,0,4],[29,4,1]],"r":[0,5],"t":2},{"d":0,"r":[151,155],"t":0},{"d":0,"r":[155,173],"t":0},{"d":0,"r":[155,160],"t":0},{"d":0,"r":[160,161],"t":0},{"d":0,"r":[161,165],"t":0},{"d":0,"r":[165,166],"t":0},{"d":0,"r":[166,171],"t":0},{"d":0,"r":[171,172],"t":0},{"d":[[37,0,5],[38,5,1]],"r":[0,6],"t":2},{"d":0,"r":[174,188],"t":0},{"d":0,"r":[177,183],"t":0},{"d":0,"r":[189,207],"t":0},{"d":0,"r":[189,194],"t":0},{"d":0,"r":[194,195],"t":0},{"d":0,"r":[195,205],"t":0},{"d":0,"r":[205,206],"t":0},{"d":[[45,0,10],[46,10,1]],"r":[0,11],"t":2},{"d":0,"r":[208,214],"t":0},{"d":0,"r":[215,231],"t":0},{"d":0,"r":[215,220],"t":0},{"d":0,"r":[220,221],"t":0},{"d":0,"r":[221,229],"t":0},{"d":0,"r":[229,230],"t":0},{"d":[[52,0,8],[53,8,1]],"r":[0,9],"t":2},{"d":0,"r":[232,237],"t":0},{"d":0,"r":[234,237],"t":0},{"d":0,"r":[237,250],"t":0},{"d":0,"r":[239,243],"t":0},{"d":0,"r":[243,244],"t":0},{"d":0,"r":[244,249],"t":0},{"d":0,"r":[251,284],"t":0},{"d":0,"r":[251,255],"t":0},{"d":0,"r":[255,256],"t":0},{"d":0,"r":[256,261],"t":0},{"d":0,"r":[261,262],"t":0},{"d":0,"r":[262,266],"t":0},{"d":0,"r":[266,267],"t":0},{"d":0,"r":[267,271],"t":0},{"d":0,"r":[271,272],"t":0},{"d":0,"r":[272,282],"t":0},{"d":0,"r":[282,283],"t":0},{"d":[[70,0,10],[71,10,1]],"r":[0,11],"t":2},{"d":0,"r":[285,298],"t":0},{"d":0,"r":[288,292],"t":0},{"d":0,"r":[299,329],"t":0},{"d":0,"r":[299,303],"t":0},{"d":0,"r":[303,304],"t":0},{"d":0,"r":[304,308],"t":0},{"d":0,"r":[308,309],"t":0},{"d":0,"r":[309,313],"t":0},{"d":0,"r":[313,314],"t":0},{"d":0,"r":[314,319],"t":0},{"d":0,"r":[319,320],"t":0},{"d":0,"r":[320,327],"t":0},{"d":0,"r":[327,328],"t":0},{"d":[[84,0,7],[85,7,1]],"r":[0,8],"t":2},{"d":0,"r":[330,350],"t":0},{"d":0,"r":[332,339],"t":0},{"d":0,"r":[332,336],"t":0},{"d":0,"r":[336,337],"t":0},{"d":0,"r":[337,338],"t":0},{"d":0,"r":[343,350],"t":0},{"d":0,"r":[343,347],"t":0},{"d":0,"r":[347,348],"t":0},{"d":0,"r":[348,349],"t":0},{"d":0,"r":[4,53],"t":0},{"d":96,"r":[36,48],"t":1},{"d":0,"r":[4,53],"t":0},{"d":98,"r":[37,47],"t":1},{"d":99,"r":[0,4],"t":1},{"d":98,"r":[37,47],"t":1},{"d":101,"r":[4,5],"t":1},{"d":98,"r":[37,47],"t":1},{"d":103,"r":[5,10],"t":1},{"d":0,"r":[4,53],"t":0},{"d":105,"r":[7,27],"t":1},{"d":0,"r":[4,53],"t":0},{"d":107,"r":[8,26],"t":1},{"d":108,"r":[0,5],"t":1},{"d":107,"r":[8,26],"t":1},{"d":110,"r":[5,6],"t":1},{"d":107,"r":[8,26],"t":1},{"d":112,"r":[6,13],"t":1},{"d":107,"r":[8,26],"t":1},{"d":114,"r":[13,14],"t":1},{"d":107,"r":[8,26],"t":1},{"d":116,"r":[14,18],"t":1},{"d":0,"r":[4,53],"t":0},{"d":118,"r":[28,34],"t":1},{"d":0,"r":[4,53],"t":0},{"d":120,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/figure.json b/ts-packages/annotated-qmd/examples/figure.json index 569a8eabe..98cf6e004 100644 --- a/ts-packages/annotated-qmd/examples/figure.json +++ b/ts-packages/annotated-qmd/examples/figure.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["figures",[],[]],[{"c":"Figures","s":1,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"a":{"classes":[],"id":4,"kvs":[]},"c":[["fig-simple",[],[]],[],["placeholder.png",""]],"s":3,"t":"Image","targetS":[5,null]}],"s":2,"t":"Para"},{"a":{"classes":[],"id":7,"kvs":[]},"c":[["fig-with-caption",[],[]],[null,[{"c":[{"c":"Simple","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"figure","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"caption","s":13,"t":"Str"}],"s":8,"t":"Plain"}]],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"Simple","s":16,"t":"Str"},{"s":17,"t":"Space"},{"c":"figure","s":18,"t":"Str"},{"s":19,"t":"Space"},{"c":"caption","s":20,"t":"Str"}],["placeholder.png",""]],"s":15,"t":"Image","targetS":[21,null]}],"s":14,"t":"Plain"}]],"captionS":22,"s":6,"t":"Figure"},{"a":{"classes":[],"id":24,"kvs":[]},"c":[["fig-layout",[],[]],[{"a":{"classes":[],"id":26,"kvs":[]},"c":[["fig-a",[],[]],[null,[{"c":[{"c":"First","s":28,"t":"Str"}],"s":27,"t":"Plain"}]],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"First","s":31,"t":"Str"}],["placeholder.png",""]],"s":30,"t":"Image","targetS":[32,null]}],"s":29,"t":"Plain"}]],"captionS":33,"s":25,"t":"Figure"},{"a":{"classes":[],"id":35,"kvs":[]},"c":[["fig-b",[],[]],[null,[{"c":[{"c":"Second","s":37,"t":"Str"}],"s":36,"t":"Plain"}]],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"Second","s":40,"t":"Str"}],["placeholder.png",""]],"s":39,"t":"Image","targetS":[41,null]}],"s":38,"t":"Plain"}]],"captionS":42,"s":34,"t":"Figure"},{"c":[{"c":"Figure","s":44,"t":"Str"},{"s":45,"t":"Space"},{"c":"layout","s":46,"t":"Str"},{"s":47,"t":"Space"},{"c":"with","s":48,"t":"Str"},{"s":49,"t":"Space"},{"c":"multiple","s":50,"t":"Str"},{"s":51,"t":"Space"},{"c":"images","s":52,"t":"Str"}],"s":43,"t":"Para"}]],"s":23,"t":"Div"}],"meta":{"title":{"c":[{"c":"Figure","s":58,"t":"Str"},{"s":60,"t":"Space"},{"c":"Example","s":62,"t":"Str"}],"s":55,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,25,29,30,40,41,75,76,137,138,156,190,191,226,227,262,266],"name":"ts-packages/annotated-qmd/examples/figure.qmd","total_length":267}],"metaTopLevelKeySources":{"title":64},"p":[{"d":0,"r":[31,41],"t":0},{"d":0,"r":[33,40],"t":0},{"d":0,"r":[42,76],"t":0},{"d":0,"r":[42,75],"t":0},{"d":0,"r":[63,74],"t":0},{"d":0,"r":[46,61],"t":0},{"d":0,"r":[77,138],"t":0},{"d":0,"r":[119,136],"t":0},{"d":0,"r":[77,137],"t":0},{"d":0,"r":[79,85],"t":0},{"d":0,"r":[85,86],"t":0},{"d":0,"r":[86,92],"t":0},{"d":0,"r":[92,93],"t":0},{"d":0,"r":[93,100],"t":0},{"d":0,"r":[77,137],"t":0},{"d":0,"r":[77,137],"t":0},{"d":0,"r":[79,85],"t":0},{"d":0,"r":[85,86],"t":0},{"d":0,"r":[86,92],"t":0},{"d":0,"r":[92,93],"t":0},{"d":0,"r":[93,100],"t":0},{"d":0,"r":[102,117],"t":0},{"d":0,"r":[77,137],"t":0},{"d":0,"r":[139,267],"t":0},{"d":0,"r":[144,155],"t":0},{"d":0,"r":[157,191],"t":0},{"d":0,"r":[183,189],"t":0},{"d":0,"r":[157,190],"t":0},{"d":0,"r":[159,164],"t":0},{"d":0,"r":[157,190],"t":0},{"d":0,"r":[157,190],"t":0},{"d":0,"r":[159,164],"t":0},{"d":0,"r":[166,181],"t":0},{"d":0,"r":[157,190],"t":0},{"d":0,"r":[192,227],"t":0},{"d":0,"r":[219,225],"t":0},{"d":0,"r":[192,226],"t":0},{"d":0,"r":[194,200],"t":0},{"d":0,"r":[192,226],"t":0},{"d":0,"r":[192,226],"t":0},{"d":0,"r":[194,200],"t":0},{"d":0,"r":[202,217],"t":0},{"d":0,"r":[192,226],"t":0},{"d":0,"r":[228,263],"t":0},{"d":0,"r":[228,234],"t":0},{"d":0,"r":[234,235],"t":0},{"d":0,"r":[235,241],"t":0},{"d":0,"r":[241,242],"t":0},{"d":0,"r":[242,246],"t":0},{"d":0,"r":[246,247],"t":0},{"d":0,"r":[247,255],"t":0},{"d":0,"r":[255,256],"t":0},{"d":0,"r":[256,262],"t":0},{"d":0,"r":[0,30],"t":0},{"d":53,"r":[4,25],"t":1},{"d":54,"r":[7,21],"t":1},{"d":53,"r":[4,25],"t":1},{"d":56,"r":[7,21],"t":1},{"d":57,"r":[0,6],"t":1},{"d":56,"r":[7,21],"t":1},{"d":59,"r":[6,7],"t":1},{"d":56,"r":[7,21],"t":1},{"d":61,"r":[7,14],"t":1},{"d":53,"r":[4,25],"t":1},{"d":63,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["figures",[],[]],[{"c":"Figures","s":1,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"a":{"classes":[],"id":4,"kvs":[]},"c":[["fig-simple",[],[]],[],["placeholder.png",""]],"s":3,"t":"Image","targetS":[5,null]}],"s":2,"t":"Para"},{"a":{"classes":[],"id":7,"kvs":[]},"c":[["fig-with-caption",[],[]],[null,[{"c":[{"c":"Simple","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"figure","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"caption","s":13,"t":"Str"}],"s":8,"t":"Plain"}]],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"Simple","s":16,"t":"Str"},{"s":17,"t":"Space"},{"c":"figure","s":18,"t":"Str"},{"s":19,"t":"Space"},{"c":"caption","s":20,"t":"Str"}],["placeholder.png",""]],"s":15,"t":"Image","targetS":[21,null]}],"s":14,"t":"Plain"}]],"captionS":22,"s":6,"t":"Figure"},{"a":{"classes":[],"id":24,"kvs":[]},"c":[["fig-layout",[],[]],[{"a":{"classes":[],"id":26,"kvs":[]},"c":[["fig-a",[],[]],[null,[{"c":[{"c":"First","s":28,"t":"Str"}],"s":27,"t":"Plain"}]],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"First","s":31,"t":"Str"}],["placeholder.png",""]],"s":30,"t":"Image","targetS":[32,null]}],"s":29,"t":"Plain"}]],"captionS":33,"s":25,"t":"Figure"},{"a":{"classes":[],"id":35,"kvs":[]},"c":[["fig-b",[],[]],[null,[{"c":[{"c":"Second","s":37,"t":"Str"}],"s":36,"t":"Plain"}]],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"Second","s":40,"t":"Str"}],["placeholder.png",""]],"s":39,"t":"Image","targetS":[41,null]}],"s":38,"t":"Plain"}]],"captionS":42,"s":34,"t":"Figure"},{"c":[{"c":"Figure","s":44,"t":"Str"},{"s":45,"t":"Space"},{"c":"layout","s":46,"t":"Str"},{"s":47,"t":"Space"},{"c":"with","s":48,"t":"Str"},{"s":49,"t":"Space"},{"c":"multiple","s":50,"t":"Str"},{"s":51,"t":"Space"},{"c":"images","s":52,"t":"Str"}],"s":43,"t":"Para"}]],"s":23,"t":"Div"}],"meta":{"title":{"c":[{"c":"Figure","s":57,"t":"Str"},{"s":59,"t":"Space"},{"c":"Example","s":61,"t":"Str"}],"s":54,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,25,29,30,40,41,75,76,137,138,156,190,191,226,227,262,266],"name":"ts-packages/annotated-qmd/examples/figure.qmd","total_length":267}],"metaTopLevelKeySources":{"title":63},"p":[{"d":0,"r":[31,41],"t":0},{"d":0,"r":[33,40],"t":0},{"d":0,"r":[42,76],"t":0},{"d":0,"r":[42,75],"t":0},{"d":0,"r":[63,74],"t":0},{"d":0,"r":[46,61],"t":0},{"d":0,"r":[77,138],"t":0},{"d":0,"r":[119,136],"t":0},{"d":0,"r":[77,137],"t":0},{"d":0,"r":[79,85],"t":0},{"d":0,"r":[85,86],"t":0},{"d":0,"r":[86,92],"t":0},{"d":0,"r":[92,93],"t":0},{"d":0,"r":[93,100],"t":0},{"d":0,"r":[77,137],"t":0},{"d":0,"r":[77,137],"t":0},{"d":0,"r":[79,85],"t":0},{"d":0,"r":[85,86],"t":0},{"d":0,"r":[86,92],"t":0},{"d":0,"r":[92,93],"t":0},{"d":0,"r":[93,100],"t":0},{"d":0,"r":[102,117],"t":0},{"d":0,"r":[77,137],"t":0},{"d":0,"r":[139,267],"t":0},{"d":0,"r":[144,155],"t":0},{"d":0,"r":[157,191],"t":0},{"d":0,"r":[183,189],"t":0},{"d":0,"r":[157,190],"t":0},{"d":0,"r":[159,164],"t":0},{"d":0,"r":[157,190],"t":0},{"d":0,"r":[157,190],"t":0},{"d":0,"r":[159,164],"t":0},{"d":0,"r":[166,181],"t":0},{"d":0,"r":[157,190],"t":0},{"d":0,"r":[192,227],"t":0},{"d":0,"r":[219,225],"t":0},{"d":0,"r":[192,226],"t":0},{"d":0,"r":[194,200],"t":0},{"d":0,"r":[192,226],"t":0},{"d":0,"r":[192,226],"t":0},{"d":0,"r":[194,200],"t":0},{"d":0,"r":[202,217],"t":0},{"d":0,"r":[192,226],"t":0},{"d":0,"r":[228,263],"t":0},{"d":0,"r":[228,234],"t":0},{"d":0,"r":[234,235],"t":0},{"d":0,"r":[235,241],"t":0},{"d":0,"r":[241,242],"t":0},{"d":0,"r":[242,246],"t":0},{"d":0,"r":[246,247],"t":0},{"d":0,"r":[247,255],"t":0},{"d":0,"r":[255,256],"t":0},{"d":0,"r":[256,262],"t":0},{"d":0,"r":[4,26],"t":0},{"d":53,"r":[7,21],"t":1},{"d":0,"r":[4,26],"t":0},{"d":55,"r":[7,21],"t":1},{"d":56,"r":[0,6],"t":1},{"d":55,"r":[7,21],"t":1},{"d":58,"r":[6,7],"t":1},{"d":55,"r":[7,21],"t":1},{"d":60,"r":[7,14],"t":1},{"d":0,"r":[4,26],"t":0},{"d":62,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/horizontal-rule.json b/ts-packages/annotated-qmd/examples/horizontal-rule.json index fd9544845..742e20f28 100644 --- a/ts-packages/annotated-qmd/examples/horizontal-rule.json +++ b/ts-packages/annotated-qmd/examples/horizontal-rule.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["horizontal-rules",[],[]],[{"c":"Horizontal","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Rules","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"Above","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"the","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"rule.","s":9,"t":"Str"}],"s":4,"t":"Para"},{"s":10,"t":"HorizontalRule"},{"c":[{"c":"Below","s":12,"t":"Str"},{"s":13,"t":"Space"},{"c":"the","s":14,"t":"Str"},{"s":15,"t":"Space"},{"c":"rule.","s":16,"t":"Str"}],"s":11,"t":"Para"},{"s":17,"t":"HorizontalRule"},{"c":[{"c":"Another","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"paragraph.","s":21,"t":"Str"}],"s":18,"t":"Para"},{"s":22,"t":"HorizontalRule"},{"c":[{"c":"Final","s":24,"t":"Str"},{"s":25,"t":"Space"},{"c":"paragraph.","s":26,"t":"Str"}],"s":23,"t":"Para"}],"meta":{"title":{"c":[{"c":"Horizontal","s":32,"t":"Str"},{"s":34,"t":"Space"},{"c":"Rule","s":36,"t":"Str"},{"s":38,"t":"Space"},{"c":"Example","s":40,"t":"Str"}],"s":29,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,34,38,39,58,59,75,76,80,81,97,98,102,103,122,123,127,128,145],"name":"ts-packages/annotated-qmd/examples/horizontal-rule.qmd","total_length":146}],"metaTopLevelKeySources":{"title":42},"p":[{"d":0,"r":[40,59],"t":0},{"d":0,"r":[42,52],"t":0},{"d":0,"r":[52,53],"t":0},{"d":0,"r":[53,58],"t":0},{"d":0,"r":[60,76],"t":0},{"d":0,"r":[60,65],"t":0},{"d":0,"r":[65,66],"t":0},{"d":0,"r":[66,69],"t":0},{"d":0,"r":[69,70],"t":0},{"d":0,"r":[70,75],"t":0},{"d":0,"r":[77,81],"t":0},{"d":0,"r":[82,98],"t":0},{"d":0,"r":[82,87],"t":0},{"d":0,"r":[87,88],"t":0},{"d":0,"r":[88,91],"t":0},{"d":0,"r":[91,92],"t":0},{"d":0,"r":[92,97],"t":0},{"d":0,"r":[99,103],"t":0},{"d":0,"r":[104,123],"t":0},{"d":0,"r":[104,111],"t":0},{"d":0,"r":[111,112],"t":0},{"d":0,"r":[112,122],"t":0},{"d":0,"r":[124,128],"t":0},{"d":0,"r":[129,146],"t":0},{"d":0,"r":[129,134],"t":0},{"d":0,"r":[134,135],"t":0},{"d":0,"r":[135,145],"t":0},{"d":0,"r":[0,39],"t":0},{"d":27,"r":[4,34],"t":1},{"d":28,"r":[7,30],"t":1},{"d":27,"r":[4,34],"t":1},{"d":30,"r":[7,30],"t":1},{"d":31,"r":[0,10],"t":1},{"d":30,"r":[7,30],"t":1},{"d":33,"r":[10,11],"t":1},{"d":30,"r":[7,30],"t":1},{"d":35,"r":[11,15],"t":1},{"d":30,"r":[7,30],"t":1},{"d":37,"r":[15,16],"t":1},{"d":30,"r":[7,30],"t":1},{"d":39,"r":[16,23],"t":1},{"d":27,"r":[4,34],"t":1},{"d":41,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["horizontal-rules",[],[]],[{"c":"Horizontal","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Rules","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"Above","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"the","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"rule.","s":9,"t":"Str"}],"s":4,"t":"Para"},{"s":10,"t":"HorizontalRule"},{"c":[{"c":"Below","s":12,"t":"Str"},{"s":13,"t":"Space"},{"c":"the","s":14,"t":"Str"},{"s":15,"t":"Space"},{"c":"rule.","s":16,"t":"Str"}],"s":11,"t":"Para"},{"s":17,"t":"HorizontalRule"},{"c":[{"c":"Another","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"paragraph.","s":21,"t":"Str"}],"s":18,"t":"Para"},{"s":22,"t":"HorizontalRule"},{"c":[{"c":"Final","s":24,"t":"Str"},{"s":25,"t":"Space"},{"c":"paragraph.","s":26,"t":"Str"}],"s":23,"t":"Para"}],"meta":{"title":{"c":[{"c":"Horizontal","s":31,"t":"Str"},{"s":33,"t":"Space"},{"c":"Rule","s":35,"t":"Str"},{"s":37,"t":"Space"},{"c":"Example","s":39,"t":"Str"}],"s":28,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,34,38,39,58,59,75,76,80,81,97,98,102,103,122,123,127,128,145],"name":"ts-packages/annotated-qmd/examples/horizontal-rule.qmd","total_length":146}],"metaTopLevelKeySources":{"title":41},"p":[{"d":0,"r":[40,59],"t":0},{"d":0,"r":[42,52],"t":0},{"d":0,"r":[52,53],"t":0},{"d":0,"r":[53,58],"t":0},{"d":0,"r":[60,76],"t":0},{"d":0,"r":[60,65],"t":0},{"d":0,"r":[65,66],"t":0},{"d":0,"r":[66,69],"t":0},{"d":0,"r":[69,70],"t":0},{"d":0,"r":[70,75],"t":0},{"d":0,"r":[77,81],"t":0},{"d":0,"r":[82,98],"t":0},{"d":0,"r":[82,87],"t":0},{"d":0,"r":[87,88],"t":0},{"d":0,"r":[88,91],"t":0},{"d":0,"r":[91,92],"t":0},{"d":0,"r":[92,97],"t":0},{"d":0,"r":[99,103],"t":0},{"d":0,"r":[104,123],"t":0},{"d":0,"r":[104,111],"t":0},{"d":0,"r":[111,112],"t":0},{"d":0,"r":[112,122],"t":0},{"d":0,"r":[124,128],"t":0},{"d":0,"r":[129,146],"t":0},{"d":0,"r":[129,134],"t":0},{"d":0,"r":[134,135],"t":0},{"d":0,"r":[135,145],"t":0},{"d":0,"r":[4,35],"t":0},{"d":27,"r":[7,30],"t":1},{"d":0,"r":[4,35],"t":0},{"d":29,"r":[7,30],"t":1},{"d":30,"r":[0,10],"t":1},{"d":29,"r":[7,30],"t":1},{"d":32,"r":[10,11],"t":1},{"d":29,"r":[7,30],"t":1},{"d":34,"r":[11,15],"t":1},{"d":29,"r":[7,30],"t":1},{"d":36,"r":[15,16],"t":1},{"d":29,"r":[7,30],"t":1},{"d":38,"r":[16,23],"t":1},{"d":0,"r":[4,35],"t":0},{"d":40,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/inline-types.json b/ts-packages/annotated-qmd/examples/inline-types.json index 7629c8f8e..29419f806 100644 --- a/ts-packages/annotated-qmd/examples/inline-types.json +++ b/ts-packages/annotated-qmd/examples/inline-types.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["inline-elements",[],[]],[{"c":"Inline","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Elements","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["image",[],[]],[{"c":"Image","s":5,"t":"Str"}]],"s":4,"t":"Header"},{"c":[{"c":"Here","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"is","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"an","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"inline","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"image:","s":17,"t":"Str"},{"s":18,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"alt","s":20,"t":"Str"},{"s":21,"t":"Space"},{"c":"text","s":22,"t":"Str"}],["placeholder.png",""]],"s":19,"t":"Image","targetS":[23,null]}],"s":6,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["span-with-attributes",[],[]],[{"c":"Span","s":25,"t":"Str"},{"s":26,"t":"Space"},{"c":"with","s":27,"t":"Str"},{"s":28,"t":"Space"},{"c":"Attributes","s":29,"t":"Str"}]],"s":24,"t":"Header"},{"c":[{"c":"This","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"is","s":33,"t":"Str"},{"s":34,"t":"Space"},{"c":"a","s":35,"t":"Str"},{"s":36,"t":"Space"},{"a":{"classes":[38],"id":null,"kvs":[]},"c":[["",["highlight"],[]],[{"c":"span","s":39,"t":"Str"},{"s":40,"t":"Space"},{"c":"with","s":41,"t":"Str"},{"s":42,"t":"Space"},{"c":"class","s":43,"t":"Str"}]],"s":37,"t":"Span"},{"s":44,"t":"Space"},{"c":"and","s":45,"t":"Str"},{"s":46,"t":"Space"},{"c":"this","s":47,"t":"Str"},{"s":48,"t":"Space"},{"c":"is","s":49,"t":"Str"},{"s":50,"t":"Space"},{"c":"a","s":51,"t":"Str"},{"s":52,"t":"Space"},{"a":{"classes":[],"id":54,"kvs":[]},"c":[["my-span",[],[]],[{"c":"span","s":55,"t":"Str"},{"s":56,"t":"Space"},{"c":"with","s":57,"t":"Str"},{"s":58,"t":"Space"},{"c":"ID","s":59,"t":"Str"}]],"s":53,"t":"Span"},{"s":60,"t":"Space"},{"c":"and","s":61,"t":"Str"},{"s":62,"t":"Space"},{"c":"this","s":63,"t":"Str"},{"s":64,"t":"Space"},{"c":"is","s":65,"t":"Str"},{"s":66,"t":"Space"},{"c":"a","s":67,"t":"Str"},{"s":68,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[[70,71]]},"c":[["",[],[["data-value","42"]]],[{"c":"span","s":72,"t":"Str"},{"s":73,"t":"Space"},{"c":"with","s":74,"t":"Str"},{"s":75,"t":"Space"},{"c":"custom","s":76,"t":"Str"},{"s":77,"t":"Space"},{"c":"attrs","s":78,"t":"Str"}]],"s":69,"t":"Span"},{"c":".","s":79,"t":"Str"}],"s":30,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["citations",[],[]],[{"c":"Citations","s":81,"t":"Str"}]],"s":80,"t":"Header"},{"c":[{"c":"This","s":83,"t":"Str"},{"s":84,"t":"Space"},{"c":"is","s":85,"t":"Str"},{"s":86,"t":"Space"},{"c":"a","s":87,"t":"Str"},{"s":88,"t":"Space"},{"c":"citation","s":89,"t":"Str"},{"s":90,"t":"Space"},{"c":"reference","s":91,"t":"Str"},{"s":92,"t":"Space"},{"c":[[{"citationHash":0,"citationId":"smith2020","citationIdS":94,"citationMode":{"t":"NormalCitation"},"citationNoteNum":1,"citationPrefix":[],"citationSuffix":[]}],[]],"s":93,"t":"Cite"},{"s":95,"t":"Space"},{"c":"and","s":96,"t":"Str"},{"s":97,"t":"Space"},{"c":"multiple","s":98,"t":"Str"},{"s":99,"t":"Space"},{"c":"citations","s":100,"t":"Str"},{"s":101,"t":"Space"},{"c":[[{"citationHash":0,"citationId":"jones2021","citationIdS":103,"citationMode":{"t":"NormalCitation"},"citationNoteNum":2,"citationPrefix":[],"citationSuffix":[]},{"citationHash":0,"citationId":"doe2022","citationIdS":104,"citationMode":{"t":"NormalCitation"},"citationNoteNum":2,"citationPrefix":[{"s":105,"t":"Space"}],"citationSuffix":[]}],[]],"s":102,"t":"Cite"},{"c":".","s":106,"t":"Str"}],"s":82,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["footnotes",[],[]],[{"c":"Footnotes","s":108,"t":"Str"}]],"s":107,"t":"Header"},{"c":[{"c":"This","s":110,"t":"Str"},{"s":111,"t":"Space"},{"c":"is","s":112,"t":"Str"},{"s":113,"t":"Space"},{"c":"a","s":114,"t":"Str"},{"s":115,"t":"Space"},{"c":"sentence","s":116,"t":"Str"},{"s":117,"t":"Space"},{"c":"with","s":118,"t":"Str"},{"s":119,"t":"Space"},{"c":"a","s":120,"t":"Str"},{"s":121,"t":"Space"},{"c":"footnote","s":122,"t":"Str"},{"c":[{"c":[{"c":"This","s":125,"t":"Str"},{"s":126,"t":"Space"},{"c":"is","s":127,"t":"Str"},{"s":128,"t":"Space"},{"c":"the","s":129,"t":"Str"},{"s":130,"t":"Space"},{"c":"footnote","s":131,"t":"Str"},{"s":132,"t":"Space"},{"c":"text.","s":133,"t":"Str"}],"s":124,"t":"Para"}],"s":123,"t":"Note"},{"s":134,"t":"Space"},{"c":"embedded","s":135,"t":"Str"},{"s":136,"t":"Space"},{"c":"in","s":137,"t":"Str"},{"s":138,"t":"Space"},{"c":"it.","s":139,"t":"Str"}],"s":109,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["quoted-text",[],[]],[{"c":"Quoted","s":141,"t":"Str"},{"s":142,"t":"Space"},{"c":"Text","s":143,"t":"Str"}]],"s":140,"t":"Header"},{"c":[{"c":"She","s":145,"t":"Str"},{"s":146,"t":"Space"},{"c":"said","s":147,"t":"Str"},{"s":148,"t":"Space"},{"c":[{"t":"SingleQuote"},[{"c":"Hello","s":150,"t":"Str"}]],"s":149,"t":"Quoted"},{"s":151,"t":"Space"},{"c":"using","s":152,"t":"Str"},{"s":153,"t":"Space"},{"c":"single","s":154,"t":"Str"},{"s":155,"t":"Space"},{"c":"quotes.","s":156,"t":"Str"}],"s":144,"t":"Para"},{"c":[{"c":"He","s":158,"t":"Str"},{"s":159,"t":"Space"},{"c":"replied","s":160,"t":"Str"},{"s":161,"t":"Space"},{"c":[{"t":"DoubleQuote"},[{"c":"World","s":163,"t":"Str"}]],"s":162,"t":"Quoted"},{"s":164,"t":"Space"},{"c":"using","s":165,"t":"Str"},{"s":166,"t":"Space"},{"c":"double","s":167,"t":"Str"},{"s":168,"t":"Space"},{"c":"quotes.","s":169,"t":"Str"}],"s":157,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["strikeout",[],[]],[{"c":"Strikeout","s":171,"t":"Str"}]],"s":170,"t":"Header"},{"c":[{"c":"This","s":173,"t":"Str"},{"s":174,"t":"Space"},{"c":"text","s":175,"t":"Str"},{"s":176,"t":"Space"},{"c":"has","s":177,"t":"Str"},{"s":178,"t":"Space"},{"c":[{"c":"strikethrough","s":180,"t":"Str"}],"s":179,"t":"Strikeout"},{"s":181,"t":"Space"},{"c":"formatting.","s":182,"t":"Str"}],"s":172,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["superscript-and-subscript",[],[]],[{"c":"Superscript","s":184,"t":"Str"},{"s":185,"t":"Space"},{"c":"and","s":186,"t":"Str"},{"s":187,"t":"Space"},{"c":"Subscript","s":188,"t":"Str"}]],"s":183,"t":"Header"},{"c":[{"c":"The","s":190,"t":"Str"},{"s":191,"t":"Space"},{"c":"formula","s":192,"t":"Str"},{"s":193,"t":"Space"},{"c":"is","s":194,"t":"Str"},{"s":195,"t":"Space"},{"c":"E","s":196,"t":"Str"},{"s":197,"t":"Space"},{"c":"=","s":198,"t":"Str"},{"s":199,"t":"Space"},{"c":"mc","s":200,"t":"Str"},{"c":[{"c":"2","s":202,"t":"Str"}],"s":201,"t":"Superscript"},{"s":203,"t":"Space"},{"c":"for","s":204,"t":"Str"},{"s":205,"t":"Space"},{"c":"superscript.","s":206,"t":"Str"}],"s":189,"t":"Para"},{"c":[{"c":"The","s":208,"t":"Str"},{"s":209,"t":"Space"},{"c":"chemical","s":210,"t":"Str"},{"s":211,"t":"Space"},{"c":"formula","s":212,"t":"Str"},{"s":213,"t":"Space"},{"c":"is","s":214,"t":"Str"},{"s":215,"t":"Space"},{"c":"H","s":216,"t":"Str"},{"c":[{"c":"2","s":218,"t":"Str"}],"s":217,"t":"Subscript"},{"c":"O","s":219,"t":"Str"},{"s":220,"t":"Space"},{"c":"for","s":221,"t":"Str"},{"s":222,"t":"Space"},{"c":"subscript.","s":223,"t":"Str"}],"s":207,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["smallcaps",[],[]],[{"c":"SmallCaps","s":225,"t":"Str"}]],"s":224,"t":"Header"},{"c":[{"c":"This","s":227,"t":"Str"},{"s":228,"t":"Space"},{"c":"text","s":229,"t":"Str"},{"s":230,"t":"Space"},{"c":"uses","s":231,"t":"Str"},{"s":232,"t":"Space"},{"c":[{"c":"small","s":234,"t":"Str"},{"s":235,"t":"Space"},{"c":"caps","s":236,"t":"Str"}],"s":233,"t":"SmallCaps"},{"s":237,"t":"Space"},{"c":"formatting.","s":238,"t":"Str"}],"s":226,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["underline",[],[]],[{"c":"Underline","s":240,"t":"Str"}]],"s":239,"t":"Header"},{"c":[{"c":"This","s":242,"t":"Str"},{"s":243,"t":"Space"},{"c":"text","s":244,"t":"Str"},{"s":245,"t":"Space"},{"c":"has","s":246,"t":"Str"},{"s":247,"t":"Space"},{"c":[{"c":"underlined","s":249,"t":"Str"}],"s":248,"t":"Underline"},{"s":250,"t":"Space"},{"c":"formatting.","s":251,"t":"Str"}],"s":241,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["rawinline",[],[]],[{"c":"RawInline","s":253,"t":"Str"}]],"s":252,"t":"Header"},{"c":[{"c":"This","s":255,"t":"Str"},{"s":256,"t":"Space"},{"c":"paragraph","s":257,"t":"Str"},{"s":258,"t":"Space"},{"c":"contains","s":259,"t":"Str"},{"s":260,"t":"Space"},{"c":["html","raw HTML"],"s":261,"t":"RawInline"},{"s":262,"t":"Space"},{"c":"inline.","s":263,"t":"Str"}],"s":254,"t":"Para"},{"c":[{"c":"This","s":265,"t":"Str"},{"s":266,"t":"Space"},{"c":"paragraph","s":267,"t":"Str"},{"s":268,"t":"Space"},{"c":"contains","s":269,"t":"Str"},{"s":270,"t":"Space"},{"c":["latex","\\textrm{raw LaTeX}"],"s":271,"t":"RawInline"},{"s":272,"t":"Space"},{"c":"inline.","s":273,"t":"Str"}],"s":264,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["line-breaks",[],[]],[{"c":"Line","s":275,"t":"Str"},{"s":276,"t":"Space"},{"c":"Breaks","s":277,"t":"Str"}]],"s":274,"t":"Header"},{"c":[{"c":"This","s":279,"t":"Str"},{"s":280,"t":"Space"},{"c":"is","s":281,"t":"Str"},{"s":282,"t":"Space"},{"c":"a","s":283,"t":"Str"},{"s":284,"t":"Space"},{"c":"line","s":285,"t":"Str"},{"s":286,"t":"Space"},{"c":"with","s":287,"t":"Str"},{"s":288,"t":"Space"},{"c":"a","s":289,"t":"Str"},{"s":290,"t":"Space"},{"c":"soft","s":291,"t":"Str"},{"s":292,"t":"Space"},{"c":"break","s":293,"t":"Str"},{"s":294,"t":"SoftBreak"},{"c":"that","s":295,"t":"Str"},{"s":296,"t":"Space"},{"c":"continues","s":297,"t":"Str"},{"s":298,"t":"Space"},{"c":"on","s":299,"t":"Str"},{"s":300,"t":"Space"},{"c":"the","s":301,"t":"Str"},{"s":302,"t":"Space"},{"c":"next","s":303,"t":"Str"},{"s":304,"t":"Space"},{"c":"line.","s":305,"t":"Str"}],"s":278,"t":"Para"},{"c":[{"c":"This","s":307,"t":"Str"},{"s":308,"t":"Space"},{"c":"is","s":309,"t":"Str"},{"s":310,"t":"Space"},{"c":"a","s":311,"t":"Str"},{"s":312,"t":"Space"},{"c":"line","s":313,"t":"Str"},{"s":314,"t":"Space"},{"c":"with","s":315,"t":"Str"},{"s":316,"t":"Space"},{"c":"a","s":317,"t":"Str"},{"s":318,"t":"Space"},{"c":"hard","s":319,"t":"Str"},{"s":320,"t":"Space"},{"c":"break","s":321,"t":"Str"},{"s":322,"t":"LineBreak"},{"c":"that","s":323,"t":"Str"},{"s":324,"t":"Space"},{"c":"forces","s":325,"t":"Str"},{"s":326,"t":"Space"},{"c":"a","s":327,"t":"Str"},{"s":328,"t":"Space"},{"c":"line","s":329,"t":"Str"},{"s":330,"t":"Space"},{"c":"break.","s":331,"t":"Str"}],"s":306,"t":"Para"},{"c":[{"c":"This","s":333,"t":"Str"},{"s":334,"t":"Space"},{"c":"is","s":335,"t":"Str"},{"s":336,"t":"Space"},{"c":"another","s":337,"t":"Str"},{"s":338,"t":"Space"},{"c":"hard","s":339,"t":"Str"},{"s":340,"t":"Space"},{"c":"break","s":341,"t":"Str"},{"s":342,"t":"SoftBreak"},{"c":"using","s":343,"t":"Str"},{"s":344,"t":"Space"},{"c":"two","s":345,"t":"Str"},{"s":346,"t":"Space"},{"c":"trailing","s":347,"t":"Str"},{"s":348,"t":"Space"},{"c":"spaces.","s":349,"t":"Str"}],"s":332,"t":"Para"}],"meta":{"title":{"c":[{"c":"Inline","s":355,"t":"Str"},{"s":357,"t":"Space"},{"c":"Types","s":359,"t":"Str"},{"s":361,"t":"Space"},{"c":"Example","s":363,"t":"Str"}],"s":352,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,31,35,36,54,55,64,65,119,120,144,145,281,282,295,296,385,386,399,400,480,481,496,497,535,536,576,577,590,591,635,636,665,666,708,709,754,755,768,769,821,822,835,836,887,888,901,902,977,978,1039,1040,1055,1056,1089,1122,1123,1157,1183,1184,1211,1238],"name":"ts-packages/annotated-qmd/examples/inline-types.qmd","total_length":1239}],"metaTopLevelKeySources":{"title":365},"p":[{"d":0,"r":[37,55],"t":0},{"d":0,"r":[39,45],"t":0},{"d":0,"r":[45,46],"t":0},{"d":0,"r":[46,54],"t":0},{"d":0,"r":[56,65],"t":0},{"d":0,"r":[59,64],"t":0},{"d":0,"r":[66,120],"t":0},{"d":0,"r":[66,70],"t":0},{"d":0,"r":[70,71],"t":0},{"d":0,"r":[71,73],"t":0},{"d":0,"r":[73,74],"t":0},{"d":0,"r":[74,76],"t":0},{"d":0,"r":[76,77],"t":0},{"d":0,"r":[77,83],"t":0},{"d":0,"r":[83,84],"t":0},{"d":0,"r":[84,89],"t":0},{"d":0,"r":[89,90],"t":0},{"d":[[15,0,5],[16,5,1]],"r":[0,6],"t":2},{"d":0,"r":[90,91],"t":0},{"d":0,"r":[91,119],"t":0},{"d":0,"r":[93,96],"t":0},{"d":0,"r":[96,97],"t":0},{"d":0,"r":[97,101],"t":0},{"d":0,"r":[103,118],"t":0},{"d":0,"r":[121,145],"t":0},{"d":0,"r":[124,128],"t":0},{"d":0,"r":[128,129],"t":0},{"d":0,"r":[129,133],"t":0},{"d":0,"r":[133,134],"t":0},{"d":0,"r":[134,144],"t":0},{"d":0,"r":[146,282],"t":0},{"d":0,"r":[146,150],"t":0},{"d":0,"r":[150,151],"t":0},{"d":0,"r":[151,153],"t":0},{"d":0,"r":[153,154],"t":0},{"d":0,"r":[154,155],"t":0},{"d":0,"r":[155,156],"t":0},{"d":0,"r":[156,185],"t":0},{"d":0,"r":[174,184],"t":0},{"d":0,"r":[157,161],"t":0},{"d":0,"r":[161,162],"t":0},{"d":0,"r":[162,166],"t":0},{"d":0,"r":[166,167],"t":0},{"d":0,"r":[167,172],"t":0},{"d":0,"r":[185,186],"t":0},{"d":0,"r":[186,189],"t":0},{"d":0,"r":[189,190],"t":0},{"d":0,"r":[190,194],"t":0},{"d":0,"r":[194,195],"t":0},{"d":0,"r":[195,197],"t":0},{"d":0,"r":[197,198],"t":0},{"d":0,"r":[198,199],"t":0},{"d":0,"r":[199,200],"t":0},{"d":0,"r":[200,224],"t":0},{"d":0,"r":[215,223],"t":0},{"d":0,"r":[201,205],"t":0},{"d":0,"r":[205,206],"t":0},{"d":0,"r":[206,210],"t":0},{"d":0,"r":[210,211],"t":0},{"d":0,"r":[211,213],"t":0},{"d":0,"r":[224,225],"t":0},{"d":0,"r":[225,228],"t":0},{"d":0,"r":[228,229],"t":0},{"d":0,"r":[229,233],"t":0},{"d":0,"r":[233,234],"t":0},{"d":0,"r":[234,236],"t":0},{"d":0,"r":[236,237],"t":0},{"d":0,"r":[237,238],"t":0},{"d":0,"r":[238,239],"t":0},{"d":0,"r":[239,280],"t":0},{"d":0,"r":[264,274],"t":0},{"d":0,"r":[276,278],"t":0},{"d":0,"r":[240,244],"t":0},{"d":0,"r":[244,245],"t":0},{"d":0,"r":[245,249],"t":0},{"d":0,"r":[249,250],"t":0},{"d":0,"r":[250,256],"t":0},{"d":0,"r":[256,257],"t":0},{"d":0,"r":[257,262],"t":0},{"d":0,"r":[280,281],"t":0},{"d":0,"r":[283,296],"t":0},{"d":0,"r":[286,295],"t":0},{"d":0,"r":[297,386],"t":0},{"d":0,"r":[297,301],"t":0},{"d":0,"r":[301,302],"t":0},{"d":0,"r":[302,304],"t":0},{"d":0,"r":[304,305],"t":0},{"d":0,"r":[305,306],"t":0},{"d":0,"r":[306,307],"t":0},{"d":0,"r":[307,315],"t":0},{"d":0,"r":[315,316],"t":0},{"d":0,"r":[316,325],"t":0},{"d":0,"r":[325,326],"t":0},{"d":0,"r":[326,338],"t":0},{"d":0,"r":[328,337],"t":0},{"d":0,"r":[338,339],"t":0},{"d":0,"r":[339,342],"t":0},{"d":0,"r":[342,343],"t":0},{"d":0,"r":[343,351],"t":0},{"d":0,"r":[351,352],"t":0},{"d":0,"r":[352,361],"t":0},{"d":0,"r":[361,362],"t":0},{"d":0,"r":[362,384],"t":0},{"d":0,"r":[364,373],"t":0},{"d":0,"r":[376,383],"t":0},{"d":0,"r":[374,375],"t":0},{"d":0,"r":[384,385],"t":0},{"d":0,"r":[387,400],"t":0},{"d":0,"r":[390,399],"t":0},{"d":0,"r":[401,481],"t":0},{"d":0,"r":[401,405],"t":0},{"d":0,"r":[405,406],"t":0},{"d":0,"r":[406,408],"t":0},{"d":0,"r":[408,409],"t":0},{"d":0,"r":[409,410],"t":0},{"d":0,"r":[410,411],"t":0},{"d":0,"r":[411,419],"t":0},{"d":0,"r":[419,420],"t":0},{"d":0,"r":[420,424],"t":0},{"d":0,"r":[424,425],"t":0},{"d":0,"r":[425,426],"t":0},{"d":0,"r":[426,427],"t":0},{"d":0,"r":[427,435],"t":0},{"d":0,"r":[435,464],"t":0},{"d":0,"r":[435,464],"t":0},{"d":0,"r":[437,441],"t":0},{"d":0,"r":[441,442],"t":0},{"d":0,"r":[442,444],"t":0},{"d":0,"r":[444,445],"t":0},{"d":0,"r":[445,448],"t":0},{"d":0,"r":[448,449],"t":0},{"d":0,"r":[449,457],"t":0},{"d":0,"r":[457,458],"t":0},{"d":0,"r":[458,463],"t":0},{"d":0,"r":[464,465],"t":0},{"d":0,"r":[465,473],"t":0},{"d":0,"r":[473,474],"t":0},{"d":0,"r":[474,476],"t":0},{"d":0,"r":[476,477],"t":0},{"d":0,"r":[477,480],"t":0},{"d":0,"r":[482,497],"t":0},{"d":0,"r":[485,491],"t":0},{"d":0,"r":[491,492],"t":0},{"d":0,"r":[492,496],"t":0},{"d":0,"r":[498,536],"t":0},{"d":0,"r":[498,501],"t":0},{"d":0,"r":[501,502],"t":0},{"d":0,"r":[502,506],"t":0},{"d":0,"r":[506,507],"t":0},{"d":0,"r":[507,514],"t":0},{"d":0,"r":[508,513],"t":0},{"d":0,"r":[514,515],"t":0},{"d":0,"r":[515,520],"t":0},{"d":0,"r":[520,521],"t":0},{"d":0,"r":[521,527],"t":0},{"d":0,"r":[527,528],"t":0},{"d":0,"r":[528,535],"t":0},{"d":0,"r":[537,577],"t":0},{"d":0,"r":[537,539],"t":0},{"d":0,"r":[539,540],"t":0},{"d":0,"r":[540,547],"t":0},{"d":0,"r":[547,548],"t":0},{"d":0,"r":[548,555],"t":0},{"d":0,"r":[549,554],"t":0},{"d":0,"r":[555,556],"t":0},{"d":0,"r":[556,561],"t":0},{"d":0,"r":[561,562],"t":0},{"d":0,"r":[562,568],"t":0},{"d":0,"r":[568,569],"t":0},{"d":0,"r":[569,576],"t":0},{"d":0,"r":[578,591],"t":0},{"d":0,"r":[581,590],"t":0},{"d":0,"r":[592,636],"t":0},{"d":0,"r":[592,596],"t":0},{"d":0,"r":[596,597],"t":0},{"d":0,"r":[597,601],"t":0},{"d":0,"r":[601,602],"t":0},{"d":0,"r":[602,605],"t":0},{"d":0,"r":[605,606],"t":0},{"d":0,"r":[606,623],"t":0},{"d":0,"r":[608,621],"t":0},{"d":0,"r":[623,624],"t":0},{"d":0,"r":[624,635],"t":0},{"d":0,"r":[637,666],"t":0},{"d":0,"r":[640,651],"t":0},{"d":0,"r":[651,652],"t":0},{"d":0,"r":[652,655],"t":0},{"d":0,"r":[655,656],"t":0},{"d":0,"r":[656,665],"t":0},{"d":0,"r":[667,709],"t":0},{"d":0,"r":[667,670],"t":0},{"d":0,"r":[670,671],"t":0},{"d":0,"r":[671,678],"t":0},{"d":0,"r":[678,679],"t":0},{"d":0,"r":[679,681],"t":0},{"d":0,"r":[681,682],"t":0},{"d":0,"r":[682,683],"t":0},{"d":0,"r":[683,684],"t":0},{"d":0,"r":[684,685],"t":0},{"d":0,"r":[685,686],"t":0},{"d":0,"r":[686,688],"t":0},{"d":0,"r":[688,691],"t":0},{"d":0,"r":[689,690],"t":0},{"d":0,"r":[691,692],"t":0},{"d":0,"r":[692,695],"t":0},{"d":0,"r":[695,696],"t":0},{"d":0,"r":[696,708],"t":0},{"d":0,"r":[710,755],"t":0},{"d":0,"r":[710,713],"t":0},{"d":0,"r":[713,714],"t":0},{"d":0,"r":[714,722],"t":0},{"d":0,"r":[722,723],"t":0},{"d":0,"r":[723,730],"t":0},{"d":0,"r":[730,731],"t":0},{"d":0,"r":[731,733],"t":0},{"d":0,"r":[733,734],"t":0},{"d":0,"r":[734,735],"t":0},{"d":0,"r":[735,738],"t":0},{"d":0,"r":[736,737],"t":0},{"d":0,"r":[738,739],"t":0},{"d":0,"r":[739,740],"t":0},{"d":0,"r":[740,743],"t":0},{"d":0,"r":[743,744],"t":0},{"d":0,"r":[744,754],"t":0},{"d":0,"r":[756,769],"t":0},{"d":0,"r":[759,768],"t":0},{"d":0,"r":[770,822],"t":0},{"d":0,"r":[770,774],"t":0},{"d":0,"r":[774,775],"t":0},{"d":0,"r":[775,779],"t":0},{"d":0,"r":[779,780],"t":0},{"d":0,"r":[780,784],"t":0},{"d":0,"r":[784,785],"t":0},{"d":0,"r":[785,809],"t":0},{"d":0,"r":[786,791],"t":0},{"d":0,"r":[791,792],"t":0},{"d":0,"r":[792,796],"t":0},{"d":0,"r":[809,810],"t":0},{"d":0,"r":[810,821],"t":0},{"d":0,"r":[823,836],"t":0},{"d":0,"r":[826,835],"t":0},{"d":0,"r":[837,888],"t":0},{"d":0,"r":[837,841],"t":0},{"d":0,"r":[841,842],"t":0},{"d":0,"r":[842,846],"t":0},{"d":0,"r":[846,847],"t":0},{"d":0,"r":[847,850],"t":0},{"d":0,"r":[850,851],"t":0},{"d":0,"r":[851,875],"t":0},{"d":0,"r":[852,862],"t":0},{"d":0,"r":[875,876],"t":0},{"d":0,"r":[876,887],"t":0},{"d":0,"r":[889,902],"t":0},{"d":0,"r":[892,901],"t":0},{"d":0,"r":[903,978],"t":0},{"d":0,"r":[903,907],"t":0},{"d":0,"r":[907,908],"t":0},{"d":0,"r":[908,917],"t":0},{"d":0,"r":[917,918],"t":0},{"d":0,"r":[918,926],"t":0},{"d":0,"r":[926,927],"t":0},{"d":0,"r":[927,969],"t":0},{"d":0,"r":[969,970],"t":0},{"d":0,"r":[970,977],"t":0},{"d":0,"r":[979,1040],"t":0},{"d":0,"r":[979,983],"t":0},{"d":0,"r":[983,984],"t":0},{"d":0,"r":[984,993],"t":0},{"d":0,"r":[993,994],"t":0},{"d":0,"r":[994,1002],"t":0},{"d":0,"r":[1002,1003],"t":0},{"d":0,"r":[1003,1031],"t":0},{"d":0,"r":[1031,1032],"t":0},{"d":0,"r":[1032,1039],"t":0},{"d":0,"r":[1041,1056],"t":0},{"d":0,"r":[1044,1048],"t":0},{"d":0,"r":[1048,1049],"t":0},{"d":0,"r":[1049,1055],"t":0},{"d":0,"r":[1057,1123],"t":0},{"d":0,"r":[1057,1061],"t":0},{"d":0,"r":[1061,1062],"t":0},{"d":0,"r":[1062,1064],"t":0},{"d":0,"r":[1064,1065],"t":0},{"d":0,"r":[1065,1066],"t":0},{"d":0,"r":[1066,1067],"t":0},{"d":0,"r":[1067,1071],"t":0},{"d":0,"r":[1071,1072],"t":0},{"d":0,"r":[1072,1076],"t":0},{"d":0,"r":[1076,1077],"t":0},{"d":0,"r":[1077,1078],"t":0},{"d":0,"r":[1078,1079],"t":0},{"d":0,"r":[1079,1083],"t":0},{"d":0,"r":[1083,1084],"t":0},{"d":0,"r":[1084,1089],"t":0},{"d":0,"r":[1089,1090],"t":0},{"d":0,"r":[1090,1094],"t":0},{"d":0,"r":[1094,1095],"t":0},{"d":0,"r":[1095,1104],"t":0},{"d":0,"r":[1104,1105],"t":0},{"d":0,"r":[1105,1107],"t":0},{"d":0,"r":[1107,1108],"t":0},{"d":0,"r":[1108,1111],"t":0},{"d":0,"r":[1111,1112],"t":0},{"d":0,"r":[1112,1116],"t":0},{"d":0,"r":[1116,1117],"t":0},{"d":0,"r":[1117,1122],"t":0},{"d":0,"r":[1124,1184],"t":0},{"d":0,"r":[1124,1128],"t":0},{"d":0,"r":[1128,1129],"t":0},{"d":0,"r":[1129,1131],"t":0},{"d":0,"r":[1131,1132],"t":0},{"d":0,"r":[1132,1133],"t":0},{"d":0,"r":[1133,1134],"t":0},{"d":0,"r":[1134,1138],"t":0},{"d":0,"r":[1138,1139],"t":0},{"d":0,"r":[1139,1143],"t":0},{"d":0,"r":[1143,1144],"t":0},{"d":0,"r":[1144,1145],"t":0},{"d":0,"r":[1145,1146],"t":0},{"d":0,"r":[1146,1150],"t":0},{"d":0,"r":[1150,1151],"t":0},{"d":0,"r":[1151,1156],"t":0},{"d":0,"r":[1156,1157],"t":0},{"d":0,"r":[1158,1162],"t":0},{"d":0,"r":[1162,1163],"t":0},{"d":0,"r":[1163,1169],"t":0},{"d":0,"r":[1169,1170],"t":0},{"d":0,"r":[1170,1171],"t":0},{"d":0,"r":[1171,1172],"t":0},{"d":0,"r":[1172,1176],"t":0},{"d":0,"r":[1176,1177],"t":0},{"d":0,"r":[1177,1183],"t":0},{"d":0,"r":[1185,1239],"t":0},{"d":0,"r":[1185,1189],"t":0},{"d":0,"r":[1189,1190],"t":0},{"d":0,"r":[1190,1192],"t":0},{"d":0,"r":[1192,1193],"t":0},{"d":0,"r":[1193,1200],"t":0},{"d":0,"r":[1200,1201],"t":0},{"d":0,"r":[1201,1205],"t":0},{"d":0,"r":[1205,1206],"t":0},{"d":0,"r":[1206,1211],"t":0},{"d":0,"r":[1211,1212],"t":0},{"d":0,"r":[1212,1217],"t":0},{"d":0,"r":[1217,1218],"t":0},{"d":0,"r":[1218,1221],"t":0},{"d":0,"r":[1221,1222],"t":0},{"d":0,"r":[1222,1230],"t":0},{"d":0,"r":[1230,1231],"t":0},{"d":0,"r":[1231,1238],"t":0},{"d":0,"r":[0,36],"t":0},{"d":350,"r":[4,31],"t":1},{"d":351,"r":[7,27],"t":1},{"d":350,"r":[4,31],"t":1},{"d":353,"r":[7,27],"t":1},{"d":354,"r":[0,6],"t":1},{"d":353,"r":[7,27],"t":1},{"d":356,"r":[6,7],"t":1},{"d":353,"r":[7,27],"t":1},{"d":358,"r":[7,12],"t":1},{"d":353,"r":[7,27],"t":1},{"d":360,"r":[12,13],"t":1},{"d":353,"r":[7,27],"t":1},{"d":362,"r":[13,20],"t":1},{"d":350,"r":[4,31],"t":1},{"d":364,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["inline-elements",[],[]],[{"c":"Inline","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Elements","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["image",[],[]],[{"c":"Image","s":5,"t":"Str"}]],"s":4,"t":"Header"},{"c":[{"c":"Here","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"is","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"an","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"inline","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"image:","s":17,"t":"Str"},{"s":18,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"alt","s":20,"t":"Str"},{"s":21,"t":"Space"},{"c":"text","s":22,"t":"Str"}],["placeholder.png",""]],"s":19,"t":"Image","targetS":[23,null]}],"s":6,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["span-with-attributes",[],[]],[{"c":"Span","s":25,"t":"Str"},{"s":26,"t":"Space"},{"c":"with","s":27,"t":"Str"},{"s":28,"t":"Space"},{"c":"Attributes","s":29,"t":"Str"}]],"s":24,"t":"Header"},{"c":[{"c":"This","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"is","s":33,"t":"Str"},{"s":34,"t":"Space"},{"c":"a","s":35,"t":"Str"},{"s":36,"t":"Space"},{"a":{"classes":[38],"id":null,"kvs":[]},"c":[["",["highlight"],[]],[{"c":"span","s":39,"t":"Str"},{"s":40,"t":"Space"},{"c":"with","s":41,"t":"Str"},{"s":42,"t":"Space"},{"c":"class","s":43,"t":"Str"}]],"s":37,"t":"Span"},{"s":44,"t":"Space"},{"c":"and","s":45,"t":"Str"},{"s":46,"t":"Space"},{"c":"this","s":47,"t":"Str"},{"s":48,"t":"Space"},{"c":"is","s":49,"t":"Str"},{"s":50,"t":"Space"},{"c":"a","s":51,"t":"Str"},{"s":52,"t":"Space"},{"a":{"classes":[],"id":54,"kvs":[]},"c":[["my-span",[],[]],[{"c":"span","s":55,"t":"Str"},{"s":56,"t":"Space"},{"c":"with","s":57,"t":"Str"},{"s":58,"t":"Space"},{"c":"ID","s":59,"t":"Str"}]],"s":53,"t":"Span"},{"s":60,"t":"Space"},{"c":"and","s":61,"t":"Str"},{"s":62,"t":"Space"},{"c":"this","s":63,"t":"Str"},{"s":64,"t":"Space"},{"c":"is","s":65,"t":"Str"},{"s":66,"t":"Space"},{"c":"a","s":67,"t":"Str"},{"s":68,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[[70,71]]},"c":[["",[],[["data-value","42"]]],[{"c":"span","s":72,"t":"Str"},{"s":73,"t":"Space"},{"c":"with","s":74,"t":"Str"},{"s":75,"t":"Space"},{"c":"custom","s":76,"t":"Str"},{"s":77,"t":"Space"},{"c":"attrs","s":78,"t":"Str"}]],"s":69,"t":"Span"},{"c":".","s":79,"t":"Str"}],"s":30,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["citations",[],[]],[{"c":"Citations","s":81,"t":"Str"}]],"s":80,"t":"Header"},{"c":[{"c":"This","s":83,"t":"Str"},{"s":84,"t":"Space"},{"c":"is","s":85,"t":"Str"},{"s":86,"t":"Space"},{"c":"a","s":87,"t":"Str"},{"s":88,"t":"Space"},{"c":"citation","s":89,"t":"Str"},{"s":90,"t":"Space"},{"c":"reference","s":91,"t":"Str"},{"s":92,"t":"Space"},{"c":[[{"citationHash":0,"citationId":"smith2020","citationIdS":94,"citationMode":{"t":"NormalCitation"},"citationNoteNum":1,"citationPrefix":[],"citationSuffix":[]}],[]],"s":93,"t":"Cite"},{"s":95,"t":"Space"},{"c":"and","s":96,"t":"Str"},{"s":97,"t":"Space"},{"c":"multiple","s":98,"t":"Str"},{"s":99,"t":"Space"},{"c":"citations","s":100,"t":"Str"},{"s":101,"t":"Space"},{"c":[[{"citationHash":0,"citationId":"jones2021","citationIdS":103,"citationMode":{"t":"NormalCitation"},"citationNoteNum":2,"citationPrefix":[],"citationSuffix":[]},{"citationHash":0,"citationId":"doe2022","citationIdS":104,"citationMode":{"t":"NormalCitation"},"citationNoteNum":2,"citationPrefix":[{"s":105,"t":"Space"}],"citationSuffix":[]}],[]],"s":102,"t":"Cite"},{"c":".","s":106,"t":"Str"}],"s":82,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["footnotes",[],[]],[{"c":"Footnotes","s":108,"t":"Str"}]],"s":107,"t":"Header"},{"c":[{"c":"This","s":110,"t":"Str"},{"s":111,"t":"Space"},{"c":"is","s":112,"t":"Str"},{"s":113,"t":"Space"},{"c":"a","s":114,"t":"Str"},{"s":115,"t":"Space"},{"c":"sentence","s":116,"t":"Str"},{"s":117,"t":"Space"},{"c":"with","s":118,"t":"Str"},{"s":119,"t":"Space"},{"c":"a","s":120,"t":"Str"},{"s":121,"t":"Space"},{"c":"footnote","s":122,"t":"Str"},{"c":[{"c":[{"c":"This","s":125,"t":"Str"},{"s":126,"t":"Space"},{"c":"is","s":127,"t":"Str"},{"s":128,"t":"Space"},{"c":"the","s":129,"t":"Str"},{"s":130,"t":"Space"},{"c":"footnote","s":131,"t":"Str"},{"s":132,"t":"Space"},{"c":"text.","s":133,"t":"Str"}],"s":124,"t":"Para"}],"s":123,"t":"Note"},{"s":134,"t":"Space"},{"c":"embedded","s":135,"t":"Str"},{"s":136,"t":"Space"},{"c":"in","s":137,"t":"Str"},{"s":138,"t":"Space"},{"c":"it.","s":139,"t":"Str"}],"s":109,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["quoted-text",[],[]],[{"c":"Quoted","s":141,"t":"Str"},{"s":142,"t":"Space"},{"c":"Text","s":143,"t":"Str"}]],"s":140,"t":"Header"},{"c":[{"c":"She","s":145,"t":"Str"},{"s":146,"t":"Space"},{"c":"said","s":147,"t":"Str"},{"s":148,"t":"Space"},{"c":[{"t":"SingleQuote"},[{"c":"Hello","s":150,"t":"Str"}]],"s":149,"t":"Quoted"},{"s":151,"t":"Space"},{"c":"using","s":152,"t":"Str"},{"s":153,"t":"Space"},{"c":"single","s":154,"t":"Str"},{"s":155,"t":"Space"},{"c":"quotes.","s":156,"t":"Str"}],"s":144,"t":"Para"},{"c":[{"c":"He","s":158,"t":"Str"},{"s":159,"t":"Space"},{"c":"replied","s":160,"t":"Str"},{"s":161,"t":"Space"},{"c":[{"t":"DoubleQuote"},[{"c":"World","s":163,"t":"Str"}]],"s":162,"t":"Quoted"},{"s":164,"t":"Space"},{"c":"using","s":165,"t":"Str"},{"s":166,"t":"Space"},{"c":"double","s":167,"t":"Str"},{"s":168,"t":"Space"},{"c":"quotes.","s":169,"t":"Str"}],"s":157,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["strikeout",[],[]],[{"c":"Strikeout","s":171,"t":"Str"}]],"s":170,"t":"Header"},{"c":[{"c":"This","s":173,"t":"Str"},{"s":174,"t":"Space"},{"c":"text","s":175,"t":"Str"},{"s":176,"t":"Space"},{"c":"has","s":177,"t":"Str"},{"s":178,"t":"Space"},{"c":[{"c":"strikethrough","s":180,"t":"Str"}],"s":179,"t":"Strikeout"},{"s":181,"t":"Space"},{"c":"formatting.","s":182,"t":"Str"}],"s":172,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["superscript-and-subscript",[],[]],[{"c":"Superscript","s":184,"t":"Str"},{"s":185,"t":"Space"},{"c":"and","s":186,"t":"Str"},{"s":187,"t":"Space"},{"c":"Subscript","s":188,"t":"Str"}]],"s":183,"t":"Header"},{"c":[{"c":"The","s":190,"t":"Str"},{"s":191,"t":"Space"},{"c":"formula","s":192,"t":"Str"},{"s":193,"t":"Space"},{"c":"is","s":194,"t":"Str"},{"s":195,"t":"Space"},{"c":"E","s":196,"t":"Str"},{"s":197,"t":"Space"},{"c":"=","s":198,"t":"Str"},{"s":199,"t":"Space"},{"c":"mc","s":200,"t":"Str"},{"c":[{"c":"2","s":202,"t":"Str"}],"s":201,"t":"Superscript"},{"s":203,"t":"Space"},{"c":"for","s":204,"t":"Str"},{"s":205,"t":"Space"},{"c":"superscript.","s":206,"t":"Str"}],"s":189,"t":"Para"},{"c":[{"c":"The","s":208,"t":"Str"},{"s":209,"t":"Space"},{"c":"chemical","s":210,"t":"Str"},{"s":211,"t":"Space"},{"c":"formula","s":212,"t":"Str"},{"s":213,"t":"Space"},{"c":"is","s":214,"t":"Str"},{"s":215,"t":"Space"},{"c":"H","s":216,"t":"Str"},{"c":[{"c":"2","s":218,"t":"Str"}],"s":217,"t":"Subscript"},{"c":"O","s":219,"t":"Str"},{"s":220,"t":"Space"},{"c":"for","s":221,"t":"Str"},{"s":222,"t":"Space"},{"c":"subscript.","s":223,"t":"Str"}],"s":207,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["smallcaps",[],[]],[{"c":"SmallCaps","s":225,"t":"Str"}]],"s":224,"t":"Header"},{"c":[{"c":"This","s":227,"t":"Str"},{"s":228,"t":"Space"},{"c":"text","s":229,"t":"Str"},{"s":230,"t":"Space"},{"c":"uses","s":231,"t":"Str"},{"s":232,"t":"Space"},{"c":[{"c":"small","s":234,"t":"Str"},{"s":235,"t":"Space"},{"c":"caps","s":236,"t":"Str"}],"s":233,"t":"SmallCaps"},{"s":237,"t":"Space"},{"c":"formatting.","s":238,"t":"Str"}],"s":226,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["underline",[],[]],[{"c":"Underline","s":240,"t":"Str"}]],"s":239,"t":"Header"},{"c":[{"c":"This","s":242,"t":"Str"},{"s":243,"t":"Space"},{"c":"text","s":244,"t":"Str"},{"s":245,"t":"Space"},{"c":"has","s":246,"t":"Str"},{"s":247,"t":"Space"},{"c":[{"c":"underlined","s":249,"t":"Str"}],"s":248,"t":"Underline"},{"s":250,"t":"Space"},{"c":"formatting.","s":251,"t":"Str"}],"s":241,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["rawinline",[],[]],[{"c":"RawInline","s":253,"t":"Str"}]],"s":252,"t":"Header"},{"c":[{"c":"This","s":255,"t":"Str"},{"s":256,"t":"Space"},{"c":"paragraph","s":257,"t":"Str"},{"s":258,"t":"Space"},{"c":"contains","s":259,"t":"Str"},{"s":260,"t":"Space"},{"c":["html","raw HTML"],"s":261,"t":"RawInline"},{"s":262,"t":"Space"},{"c":"inline.","s":263,"t":"Str"}],"s":254,"t":"Para"},{"c":[{"c":"This","s":265,"t":"Str"},{"s":266,"t":"Space"},{"c":"paragraph","s":267,"t":"Str"},{"s":268,"t":"Space"},{"c":"contains","s":269,"t":"Str"},{"s":270,"t":"Space"},{"c":["latex","\\textrm{raw LaTeX}"],"s":271,"t":"RawInline"},{"s":272,"t":"Space"},{"c":"inline.","s":273,"t":"Str"}],"s":264,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["line-breaks",[],[]],[{"c":"Line","s":275,"t":"Str"},{"s":276,"t":"Space"},{"c":"Breaks","s":277,"t":"Str"}]],"s":274,"t":"Header"},{"c":[{"c":"This","s":279,"t":"Str"},{"s":280,"t":"Space"},{"c":"is","s":281,"t":"Str"},{"s":282,"t":"Space"},{"c":"a","s":283,"t":"Str"},{"s":284,"t":"Space"},{"c":"line","s":285,"t":"Str"},{"s":286,"t":"Space"},{"c":"with","s":287,"t":"Str"},{"s":288,"t":"Space"},{"c":"a","s":289,"t":"Str"},{"s":290,"t":"Space"},{"c":"soft","s":291,"t":"Str"},{"s":292,"t":"Space"},{"c":"break","s":293,"t":"Str"},{"s":294,"t":"SoftBreak"},{"c":"that","s":295,"t":"Str"},{"s":296,"t":"Space"},{"c":"continues","s":297,"t":"Str"},{"s":298,"t":"Space"},{"c":"on","s":299,"t":"Str"},{"s":300,"t":"Space"},{"c":"the","s":301,"t":"Str"},{"s":302,"t":"Space"},{"c":"next","s":303,"t":"Str"},{"s":304,"t":"Space"},{"c":"line.","s":305,"t":"Str"}],"s":278,"t":"Para"},{"c":[{"c":"This","s":307,"t":"Str"},{"s":308,"t":"Space"},{"c":"is","s":309,"t":"Str"},{"s":310,"t":"Space"},{"c":"a","s":311,"t":"Str"},{"s":312,"t":"Space"},{"c":"line","s":313,"t":"Str"},{"s":314,"t":"Space"},{"c":"with","s":315,"t":"Str"},{"s":316,"t":"Space"},{"c":"a","s":317,"t":"Str"},{"s":318,"t":"Space"},{"c":"hard","s":319,"t":"Str"},{"s":320,"t":"Space"},{"c":"break","s":321,"t":"Str"},{"s":322,"t":"LineBreak"},{"c":"that","s":323,"t":"Str"},{"s":324,"t":"Space"},{"c":"forces","s":325,"t":"Str"},{"s":326,"t":"Space"},{"c":"a","s":327,"t":"Str"},{"s":328,"t":"Space"},{"c":"line","s":329,"t":"Str"},{"s":330,"t":"Space"},{"c":"break.","s":331,"t":"Str"}],"s":306,"t":"Para"},{"c":[{"c":"This","s":333,"t":"Str"},{"s":334,"t":"Space"},{"c":"is","s":335,"t":"Str"},{"s":336,"t":"Space"},{"c":"another","s":337,"t":"Str"},{"s":338,"t":"Space"},{"c":"hard","s":339,"t":"Str"},{"s":340,"t":"Space"},{"c":"break","s":341,"t":"Str"},{"s":342,"t":"SoftBreak"},{"c":"using","s":343,"t":"Str"},{"s":344,"t":"Space"},{"c":"two","s":345,"t":"Str"},{"s":346,"t":"Space"},{"c":"trailing","s":347,"t":"Str"},{"s":348,"t":"Space"},{"c":"spaces.","s":349,"t":"Str"}],"s":332,"t":"Para"}],"meta":{"title":{"c":[{"c":"Inline","s":354,"t":"Str"},{"s":356,"t":"Space"},{"c":"Types","s":358,"t":"Str"},{"s":360,"t":"Space"},{"c":"Example","s":362,"t":"Str"}],"s":351,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,31,35,36,54,55,64,65,119,120,144,145,281,282,295,296,385,386,399,400,480,481,496,497,535,536,576,577,590,591,635,636,665,666,708,709,754,755,768,769,821,822,835,836,887,888,901,902,977,978,1039,1040,1055,1056,1089,1122,1123,1157,1183,1184,1211,1238],"name":"ts-packages/annotated-qmd/examples/inline-types.qmd","total_length":1239}],"metaTopLevelKeySources":{"title":364},"p":[{"d":0,"r":[37,55],"t":0},{"d":0,"r":[39,45],"t":0},{"d":0,"r":[45,46],"t":0},{"d":0,"r":[46,54],"t":0},{"d":0,"r":[56,65],"t":0},{"d":0,"r":[59,64],"t":0},{"d":0,"r":[66,120],"t":0},{"d":0,"r":[66,70],"t":0},{"d":0,"r":[70,71],"t":0},{"d":0,"r":[71,73],"t":0},{"d":0,"r":[73,74],"t":0},{"d":0,"r":[74,76],"t":0},{"d":0,"r":[76,77],"t":0},{"d":0,"r":[77,83],"t":0},{"d":0,"r":[83,84],"t":0},{"d":0,"r":[84,89],"t":0},{"d":0,"r":[89,90],"t":0},{"d":[[15,0,5],[16,5,1]],"r":[0,6],"t":2},{"d":0,"r":[90,91],"t":0},{"d":0,"r":[91,119],"t":0},{"d":0,"r":[93,96],"t":0},{"d":0,"r":[96,97],"t":0},{"d":0,"r":[97,101],"t":0},{"d":0,"r":[103,118],"t":0},{"d":0,"r":[121,145],"t":0},{"d":0,"r":[124,128],"t":0},{"d":0,"r":[128,129],"t":0},{"d":0,"r":[129,133],"t":0},{"d":0,"r":[133,134],"t":0},{"d":0,"r":[134,144],"t":0},{"d":0,"r":[146,282],"t":0},{"d":0,"r":[146,150],"t":0},{"d":0,"r":[150,151],"t":0},{"d":0,"r":[151,153],"t":0},{"d":0,"r":[153,154],"t":0},{"d":0,"r":[154,155],"t":0},{"d":0,"r":[155,156],"t":0},{"d":0,"r":[156,185],"t":0},{"d":0,"r":[174,184],"t":0},{"d":0,"r":[157,161],"t":0},{"d":0,"r":[161,162],"t":0},{"d":0,"r":[162,166],"t":0},{"d":0,"r":[166,167],"t":0},{"d":0,"r":[167,172],"t":0},{"d":0,"r":[185,186],"t":0},{"d":0,"r":[186,189],"t":0},{"d":0,"r":[189,190],"t":0},{"d":0,"r":[190,194],"t":0},{"d":0,"r":[194,195],"t":0},{"d":0,"r":[195,197],"t":0},{"d":0,"r":[197,198],"t":0},{"d":0,"r":[198,199],"t":0},{"d":0,"r":[199,200],"t":0},{"d":0,"r":[200,224],"t":0},{"d":0,"r":[215,223],"t":0},{"d":0,"r":[201,205],"t":0},{"d":0,"r":[205,206],"t":0},{"d":0,"r":[206,210],"t":0},{"d":0,"r":[210,211],"t":0},{"d":0,"r":[211,213],"t":0},{"d":0,"r":[224,225],"t":0},{"d":0,"r":[225,228],"t":0},{"d":0,"r":[228,229],"t":0},{"d":0,"r":[229,233],"t":0},{"d":0,"r":[233,234],"t":0},{"d":0,"r":[234,236],"t":0},{"d":0,"r":[236,237],"t":0},{"d":0,"r":[237,238],"t":0},{"d":0,"r":[238,239],"t":0},{"d":0,"r":[239,280],"t":0},{"d":0,"r":[264,274],"t":0},{"d":0,"r":[276,278],"t":0},{"d":0,"r":[240,244],"t":0},{"d":0,"r":[244,245],"t":0},{"d":0,"r":[245,249],"t":0},{"d":0,"r":[249,250],"t":0},{"d":0,"r":[250,256],"t":0},{"d":0,"r":[256,257],"t":0},{"d":0,"r":[257,262],"t":0},{"d":0,"r":[280,281],"t":0},{"d":0,"r":[283,296],"t":0},{"d":0,"r":[286,295],"t":0},{"d":0,"r":[297,386],"t":0},{"d":0,"r":[297,301],"t":0},{"d":0,"r":[301,302],"t":0},{"d":0,"r":[302,304],"t":0},{"d":0,"r":[304,305],"t":0},{"d":0,"r":[305,306],"t":0},{"d":0,"r":[306,307],"t":0},{"d":0,"r":[307,315],"t":0},{"d":0,"r":[315,316],"t":0},{"d":0,"r":[316,325],"t":0},{"d":0,"r":[325,326],"t":0},{"d":0,"r":[326,338],"t":0},{"d":0,"r":[328,337],"t":0},{"d":0,"r":[338,339],"t":0},{"d":0,"r":[339,342],"t":0},{"d":0,"r":[342,343],"t":0},{"d":0,"r":[343,351],"t":0},{"d":0,"r":[351,352],"t":0},{"d":0,"r":[352,361],"t":0},{"d":0,"r":[361,362],"t":0},{"d":0,"r":[362,384],"t":0},{"d":0,"r":[364,373],"t":0},{"d":0,"r":[376,383],"t":0},{"d":0,"r":[374,375],"t":0},{"d":0,"r":[384,385],"t":0},{"d":0,"r":[387,400],"t":0},{"d":0,"r":[390,399],"t":0},{"d":0,"r":[401,481],"t":0},{"d":0,"r":[401,405],"t":0},{"d":0,"r":[405,406],"t":0},{"d":0,"r":[406,408],"t":0},{"d":0,"r":[408,409],"t":0},{"d":0,"r":[409,410],"t":0},{"d":0,"r":[410,411],"t":0},{"d":0,"r":[411,419],"t":0},{"d":0,"r":[419,420],"t":0},{"d":0,"r":[420,424],"t":0},{"d":0,"r":[424,425],"t":0},{"d":0,"r":[425,426],"t":0},{"d":0,"r":[426,427],"t":0},{"d":0,"r":[427,435],"t":0},{"d":0,"r":[435,464],"t":0},{"d":0,"r":[435,464],"t":0},{"d":0,"r":[437,441],"t":0},{"d":0,"r":[441,442],"t":0},{"d":0,"r":[442,444],"t":0},{"d":0,"r":[444,445],"t":0},{"d":0,"r":[445,448],"t":0},{"d":0,"r":[448,449],"t":0},{"d":0,"r":[449,457],"t":0},{"d":0,"r":[457,458],"t":0},{"d":0,"r":[458,463],"t":0},{"d":0,"r":[464,465],"t":0},{"d":0,"r":[465,473],"t":0},{"d":0,"r":[473,474],"t":0},{"d":0,"r":[474,476],"t":0},{"d":0,"r":[476,477],"t":0},{"d":0,"r":[477,480],"t":0},{"d":0,"r":[482,497],"t":0},{"d":0,"r":[485,491],"t":0},{"d":0,"r":[491,492],"t":0},{"d":0,"r":[492,496],"t":0},{"d":0,"r":[498,536],"t":0},{"d":0,"r":[498,501],"t":0},{"d":0,"r":[501,502],"t":0},{"d":0,"r":[502,506],"t":0},{"d":0,"r":[506,507],"t":0},{"d":0,"r":[507,514],"t":0},{"d":0,"r":[508,513],"t":0},{"d":0,"r":[514,515],"t":0},{"d":0,"r":[515,520],"t":0},{"d":0,"r":[520,521],"t":0},{"d":0,"r":[521,527],"t":0},{"d":0,"r":[527,528],"t":0},{"d":0,"r":[528,535],"t":0},{"d":0,"r":[537,577],"t":0},{"d":0,"r":[537,539],"t":0},{"d":0,"r":[539,540],"t":0},{"d":0,"r":[540,547],"t":0},{"d":0,"r":[547,548],"t":0},{"d":0,"r":[548,555],"t":0},{"d":0,"r":[549,554],"t":0},{"d":0,"r":[555,556],"t":0},{"d":0,"r":[556,561],"t":0},{"d":0,"r":[561,562],"t":0},{"d":0,"r":[562,568],"t":0},{"d":0,"r":[568,569],"t":0},{"d":0,"r":[569,576],"t":0},{"d":0,"r":[578,591],"t":0},{"d":0,"r":[581,590],"t":0},{"d":0,"r":[592,636],"t":0},{"d":0,"r":[592,596],"t":0},{"d":0,"r":[596,597],"t":0},{"d":0,"r":[597,601],"t":0},{"d":0,"r":[601,602],"t":0},{"d":0,"r":[602,605],"t":0},{"d":0,"r":[605,606],"t":0},{"d":0,"r":[606,623],"t":0},{"d":0,"r":[608,621],"t":0},{"d":0,"r":[623,624],"t":0},{"d":0,"r":[624,635],"t":0},{"d":0,"r":[637,666],"t":0},{"d":0,"r":[640,651],"t":0},{"d":0,"r":[651,652],"t":0},{"d":0,"r":[652,655],"t":0},{"d":0,"r":[655,656],"t":0},{"d":0,"r":[656,665],"t":0},{"d":0,"r":[667,709],"t":0},{"d":0,"r":[667,670],"t":0},{"d":0,"r":[670,671],"t":0},{"d":0,"r":[671,678],"t":0},{"d":0,"r":[678,679],"t":0},{"d":0,"r":[679,681],"t":0},{"d":0,"r":[681,682],"t":0},{"d":0,"r":[682,683],"t":0},{"d":0,"r":[683,684],"t":0},{"d":0,"r":[684,685],"t":0},{"d":0,"r":[685,686],"t":0},{"d":0,"r":[686,688],"t":0},{"d":0,"r":[688,691],"t":0},{"d":0,"r":[689,690],"t":0},{"d":0,"r":[691,692],"t":0},{"d":0,"r":[692,695],"t":0},{"d":0,"r":[695,696],"t":0},{"d":0,"r":[696,708],"t":0},{"d":0,"r":[710,755],"t":0},{"d":0,"r":[710,713],"t":0},{"d":0,"r":[713,714],"t":0},{"d":0,"r":[714,722],"t":0},{"d":0,"r":[722,723],"t":0},{"d":0,"r":[723,730],"t":0},{"d":0,"r":[730,731],"t":0},{"d":0,"r":[731,733],"t":0},{"d":0,"r":[733,734],"t":0},{"d":0,"r":[734,735],"t":0},{"d":0,"r":[735,738],"t":0},{"d":0,"r":[736,737],"t":0},{"d":0,"r":[738,739],"t":0},{"d":0,"r":[739,740],"t":0},{"d":0,"r":[740,743],"t":0},{"d":0,"r":[743,744],"t":0},{"d":0,"r":[744,754],"t":0},{"d":0,"r":[756,769],"t":0},{"d":0,"r":[759,768],"t":0},{"d":0,"r":[770,822],"t":0},{"d":0,"r":[770,774],"t":0},{"d":0,"r":[774,775],"t":0},{"d":0,"r":[775,779],"t":0},{"d":0,"r":[779,780],"t":0},{"d":0,"r":[780,784],"t":0},{"d":0,"r":[784,785],"t":0},{"d":0,"r":[785,809],"t":0},{"d":0,"r":[786,791],"t":0},{"d":0,"r":[791,792],"t":0},{"d":0,"r":[792,796],"t":0},{"d":0,"r":[809,810],"t":0},{"d":0,"r":[810,821],"t":0},{"d":0,"r":[823,836],"t":0},{"d":0,"r":[826,835],"t":0},{"d":0,"r":[837,888],"t":0},{"d":0,"r":[837,841],"t":0},{"d":0,"r":[841,842],"t":0},{"d":0,"r":[842,846],"t":0},{"d":0,"r":[846,847],"t":0},{"d":0,"r":[847,850],"t":0},{"d":0,"r":[850,851],"t":0},{"d":0,"r":[851,875],"t":0},{"d":0,"r":[852,862],"t":0},{"d":0,"r":[875,876],"t":0},{"d":0,"r":[876,887],"t":0},{"d":0,"r":[889,902],"t":0},{"d":0,"r":[892,901],"t":0},{"d":0,"r":[903,978],"t":0},{"d":0,"r":[903,907],"t":0},{"d":0,"r":[907,908],"t":0},{"d":0,"r":[908,917],"t":0},{"d":0,"r":[917,918],"t":0},{"d":0,"r":[918,926],"t":0},{"d":0,"r":[926,927],"t":0},{"d":0,"r":[927,969],"t":0},{"d":0,"r":[969,970],"t":0},{"d":0,"r":[970,977],"t":0},{"d":0,"r":[979,1040],"t":0},{"d":0,"r":[979,983],"t":0},{"d":0,"r":[983,984],"t":0},{"d":0,"r":[984,993],"t":0},{"d":0,"r":[993,994],"t":0},{"d":0,"r":[994,1002],"t":0},{"d":0,"r":[1002,1003],"t":0},{"d":0,"r":[1003,1031],"t":0},{"d":0,"r":[1031,1032],"t":0},{"d":0,"r":[1032,1039],"t":0},{"d":0,"r":[1041,1056],"t":0},{"d":0,"r":[1044,1048],"t":0},{"d":0,"r":[1048,1049],"t":0},{"d":0,"r":[1049,1055],"t":0},{"d":0,"r":[1057,1123],"t":0},{"d":0,"r":[1057,1061],"t":0},{"d":0,"r":[1061,1062],"t":0},{"d":0,"r":[1062,1064],"t":0},{"d":0,"r":[1064,1065],"t":0},{"d":0,"r":[1065,1066],"t":0},{"d":0,"r":[1066,1067],"t":0},{"d":0,"r":[1067,1071],"t":0},{"d":0,"r":[1071,1072],"t":0},{"d":0,"r":[1072,1076],"t":0},{"d":0,"r":[1076,1077],"t":0},{"d":0,"r":[1077,1078],"t":0},{"d":0,"r":[1078,1079],"t":0},{"d":0,"r":[1079,1083],"t":0},{"d":0,"r":[1083,1084],"t":0},{"d":0,"r":[1084,1089],"t":0},{"d":0,"r":[1089,1090],"t":0},{"d":0,"r":[1090,1094],"t":0},{"d":0,"r":[1094,1095],"t":0},{"d":0,"r":[1095,1104],"t":0},{"d":0,"r":[1104,1105],"t":0},{"d":0,"r":[1105,1107],"t":0},{"d":0,"r":[1107,1108],"t":0},{"d":0,"r":[1108,1111],"t":0},{"d":0,"r":[1111,1112],"t":0},{"d":0,"r":[1112,1116],"t":0},{"d":0,"r":[1116,1117],"t":0},{"d":0,"r":[1117,1122],"t":0},{"d":0,"r":[1124,1184],"t":0},{"d":0,"r":[1124,1128],"t":0},{"d":0,"r":[1128,1129],"t":0},{"d":0,"r":[1129,1131],"t":0},{"d":0,"r":[1131,1132],"t":0},{"d":0,"r":[1132,1133],"t":0},{"d":0,"r":[1133,1134],"t":0},{"d":0,"r":[1134,1138],"t":0},{"d":0,"r":[1138,1139],"t":0},{"d":0,"r":[1139,1143],"t":0},{"d":0,"r":[1143,1144],"t":0},{"d":0,"r":[1144,1145],"t":0},{"d":0,"r":[1145,1146],"t":0},{"d":0,"r":[1146,1150],"t":0},{"d":0,"r":[1150,1151],"t":0},{"d":0,"r":[1151,1156],"t":0},{"d":0,"r":[1156,1157],"t":0},{"d":0,"r":[1158,1162],"t":0},{"d":0,"r":[1162,1163],"t":0},{"d":0,"r":[1163,1169],"t":0},{"d":0,"r":[1169,1170],"t":0},{"d":0,"r":[1170,1171],"t":0},{"d":0,"r":[1171,1172],"t":0},{"d":0,"r":[1172,1176],"t":0},{"d":0,"r":[1176,1177],"t":0},{"d":0,"r":[1177,1183],"t":0},{"d":0,"r":[1185,1239],"t":0},{"d":0,"r":[1185,1189],"t":0},{"d":0,"r":[1189,1190],"t":0},{"d":0,"r":[1190,1192],"t":0},{"d":0,"r":[1192,1193],"t":0},{"d":0,"r":[1193,1200],"t":0},{"d":0,"r":[1200,1201],"t":0},{"d":0,"r":[1201,1205],"t":0},{"d":0,"r":[1205,1206],"t":0},{"d":0,"r":[1206,1211],"t":0},{"d":0,"r":[1211,1212],"t":0},{"d":0,"r":[1212,1217],"t":0},{"d":0,"r":[1217,1218],"t":0},{"d":0,"r":[1218,1221],"t":0},{"d":0,"r":[1221,1222],"t":0},{"d":0,"r":[1222,1230],"t":0},{"d":0,"r":[1230,1231],"t":0},{"d":0,"r":[1231,1238],"t":0},{"d":0,"r":[4,32],"t":0},{"d":350,"r":[7,27],"t":1},{"d":0,"r":[4,32],"t":0},{"d":352,"r":[7,27],"t":1},{"d":353,"r":[0,6],"t":1},{"d":352,"r":[7,27],"t":1},{"d":355,"r":[6,7],"t":1},{"d":352,"r":[7,27],"t":1},{"d":357,"r":[7,12],"t":1},{"d":352,"r":[7,27],"t":1},{"d":359,"r":[12,13],"t":1},{"d":352,"r":[7,27],"t":1},{"d":361,"r":[13,20],"t":1},{"d":0,"r":[4,32],"t":0},{"d":363,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/links.json b/ts-packages/annotated-qmd/examples/links.json index da7f8db12..ad4b88649 100644 --- a/ts-packages/annotated-qmd/examples/links.json +++ b/ts-packages/annotated-qmd/examples/links.json @@ -1 +1 @@ -{"blocks":[{"c":[{"c":"Check","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"out","s":3,"t":"Str"},{"s":4,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"Quarto","s":6,"t":"Str"}],["https://quarto.org",""]],"s":5,"t":"Link","targetS":[7,null]},{"s":8,"t":"Space"},{"c":"for","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"more","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"information.","s":13,"t":"Str"}],"s":0,"t":"Para"},{"c":[{"c":"Here’s","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"an","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"inline","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"code","s":21,"t":"Str"},{"s":22,"t":"Space"},{"c":"example:","s":25,"t":"Str"},{"s":26,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"x = 5"],"s":27,"t":"Code"},{"c":".","s":28,"t":"Str"}],"s":14,"t":"Para"},{"c":[{"c":[{"c":"This","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"is","s":33,"t":"Str"},{"s":34,"t":"Space"},{"c":"a","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"blockquote","s":37,"t":"Str"},{"s":38,"t":"Space"},{"c":"with","s":39,"t":"Str"},{"s":40,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"a","s":42,"t":"Str"},{"s":43,"t":"Space"},{"c":"link","s":44,"t":"Str"}],["https://example.com",""]],"s":41,"t":"Link","targetS":[45,null]},{"c":".","s":46,"t":"Str"}],"s":30,"t":"Para"}],"s":29,"t":"BlockQuote"}],"meta":{"title":{"c":[{"c":"Links","s":52,"t":"Str"},{"s":54,"t":"Space"},{"c":"and","s":56,"t":"Str"},{"s":58,"t":"Space"},{"c":"Images","s":60,"t":"Str"}],"s":49,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,27,31,32,93,94,134,135,194],"name":"ts-packages/annotated-qmd/examples/links.qmd","total_length":195}],"metaTopLevelKeySources":{"title":62},"p":[{"d":0,"r":[33,94],"t":0},{"d":0,"r":[33,38],"t":0},{"d":0,"r":[38,39],"t":0},{"d":0,"r":[39,42],"t":0},{"d":0,"r":[42,43],"t":0},{"d":0,"r":[43,71],"t":0},{"d":0,"r":[44,50],"t":0},{"d":0,"r":[52,70],"t":0},{"d":0,"r":[71,72],"t":0},{"d":0,"r":[72,75],"t":0},{"d":0,"r":[75,76],"t":0},{"d":0,"r":[76,80],"t":0},{"d":0,"r":[80,81],"t":0},{"d":0,"r":[81,93],"t":0},{"d":0,"r":[95,135],"t":0},{"d":0,"r":[95,101],"t":0},{"d":0,"r":[101,102],"t":0},{"d":0,"r":[102,104],"t":0},{"d":0,"r":[104,105],"t":0},{"d":0,"r":[105,111],"t":0},{"d":0,"r":[111,112],"t":0},{"d":0,"r":[112,116],"t":0},{"d":0,"r":[116,117],"t":0},{"d":0,"r":[117,124],"t":0},{"d":0,"r":[124,125],"t":0},{"d":[[23,0,7],[24,7,1]],"r":[0,8],"t":2},{"d":0,"r":[125,126],"t":0},{"d":0,"r":[126,133],"t":0},{"d":0,"r":[133,134],"t":0},{"d":0,"r":[136,195],"t":0},{"d":0,"r":[138,195],"t":0},{"d":0,"r":[138,142],"t":0},{"d":0,"r":[142,143],"t":0},{"d":0,"r":[143,145],"t":0},{"d":0,"r":[145,146],"t":0},{"d":0,"r":[146,147],"t":0},{"d":0,"r":[147,148],"t":0},{"d":0,"r":[148,158],"t":0},{"d":0,"r":[158,159],"t":0},{"d":0,"r":[159,163],"t":0},{"d":0,"r":[163,164],"t":0},{"d":0,"r":[164,193],"t":0},{"d":0,"r":[165,166],"t":0},{"d":0,"r":[166,167],"t":0},{"d":0,"r":[167,171],"t":0},{"d":0,"r":[173,192],"t":0},{"d":0,"r":[193,194],"t":0},{"d":0,"r":[0,32],"t":0},{"d":47,"r":[4,27],"t":1},{"d":48,"r":[7,23],"t":1},{"d":47,"r":[4,27],"t":1},{"d":50,"r":[7,23],"t":1},{"d":51,"r":[0,5],"t":1},{"d":50,"r":[7,23],"t":1},{"d":53,"r":[5,6],"t":1},{"d":50,"r":[7,23],"t":1},{"d":55,"r":[6,9],"t":1},{"d":50,"r":[7,23],"t":1},{"d":57,"r":[9,10],"t":1},{"d":50,"r":[7,23],"t":1},{"d":59,"r":[10,16],"t":1},{"d":47,"r":[4,27],"t":1},{"d":61,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"c":[{"c":"Check","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"out","s":3,"t":"Str"},{"s":4,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"Quarto","s":6,"t":"Str"}],["https://quarto.org",""]],"s":5,"t":"Link","targetS":[7,null]},{"s":8,"t":"Space"},{"c":"for","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"more","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"information.","s":13,"t":"Str"}],"s":0,"t":"Para"},{"c":[{"c":"Here’s","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"an","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"inline","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"code","s":21,"t":"Str"},{"s":22,"t":"Space"},{"c":"example:","s":25,"t":"Str"},{"s":26,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"x = 5"],"s":27,"t":"Code"},{"c":".","s":28,"t":"Str"}],"s":14,"t":"Para"},{"c":[{"c":[{"c":"This","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"is","s":33,"t":"Str"},{"s":34,"t":"Space"},{"c":"a","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"blockquote","s":37,"t":"Str"},{"s":38,"t":"Space"},{"c":"with","s":39,"t":"Str"},{"s":40,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"a","s":42,"t":"Str"},{"s":43,"t":"Space"},{"c":"link","s":44,"t":"Str"}],["https://example.com",""]],"s":41,"t":"Link","targetS":[45,null]},{"c":".","s":46,"t":"Str"}],"s":30,"t":"Para"}],"s":29,"t":"BlockQuote"}],"meta":{"title":{"c":[{"c":"Links","s":51,"t":"Str"},{"s":53,"t":"Space"},{"c":"and","s":55,"t":"Str"},{"s":57,"t":"Space"},{"c":"Images","s":59,"t":"Str"}],"s":48,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,27,31,32,93,94,134,135,194],"name":"ts-packages/annotated-qmd/examples/links.qmd","total_length":195}],"metaTopLevelKeySources":{"title":61},"p":[{"d":0,"r":[33,94],"t":0},{"d":0,"r":[33,38],"t":0},{"d":0,"r":[38,39],"t":0},{"d":0,"r":[39,42],"t":0},{"d":0,"r":[42,43],"t":0},{"d":0,"r":[43,71],"t":0},{"d":0,"r":[44,50],"t":0},{"d":0,"r":[52,70],"t":0},{"d":0,"r":[71,72],"t":0},{"d":0,"r":[72,75],"t":0},{"d":0,"r":[75,76],"t":0},{"d":0,"r":[76,80],"t":0},{"d":0,"r":[80,81],"t":0},{"d":0,"r":[81,93],"t":0},{"d":0,"r":[95,135],"t":0},{"d":0,"r":[95,101],"t":0},{"d":0,"r":[101,102],"t":0},{"d":0,"r":[102,104],"t":0},{"d":0,"r":[104,105],"t":0},{"d":0,"r":[105,111],"t":0},{"d":0,"r":[111,112],"t":0},{"d":0,"r":[112,116],"t":0},{"d":0,"r":[116,117],"t":0},{"d":0,"r":[117,124],"t":0},{"d":0,"r":[124,125],"t":0},{"d":[[23,0,7],[24,7,1]],"r":[0,8],"t":2},{"d":0,"r":[125,126],"t":0},{"d":0,"r":[126,133],"t":0},{"d":0,"r":[133,134],"t":0},{"d":0,"r":[136,195],"t":0},{"d":0,"r":[138,195],"t":0},{"d":0,"r":[138,142],"t":0},{"d":0,"r":[142,143],"t":0},{"d":0,"r":[143,145],"t":0},{"d":0,"r":[145,146],"t":0},{"d":0,"r":[146,147],"t":0},{"d":0,"r":[147,148],"t":0},{"d":0,"r":[148,158],"t":0},{"d":0,"r":[158,159],"t":0},{"d":0,"r":[159,163],"t":0},{"d":0,"r":[163,164],"t":0},{"d":0,"r":[164,193],"t":0},{"d":0,"r":[165,166],"t":0},{"d":0,"r":[166,167],"t":0},{"d":0,"r":[167,171],"t":0},{"d":0,"r":[173,192],"t":0},{"d":0,"r":[193,194],"t":0},{"d":0,"r":[4,28],"t":0},{"d":47,"r":[7,23],"t":1},{"d":0,"r":[4,28],"t":0},{"d":49,"r":[7,23],"t":1},{"d":50,"r":[0,5],"t":1},{"d":49,"r":[7,23],"t":1},{"d":52,"r":[5,6],"t":1},{"d":49,"r":[7,23],"t":1},{"d":54,"r":[6,9],"t":1},{"d":49,"r":[7,23],"t":1},{"d":56,"r":[9,10],"t":1},{"d":49,"r":[7,23],"t":1},{"d":58,"r":[10,16],"t":1},{"d":0,"r":[4,28],"t":0},{"d":60,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/minimal-doc.json b/ts-packages/annotated-qmd/examples/minimal-doc.json index 177e1d7c5..61bd1a8d8 100644 --- a/ts-packages/annotated-qmd/examples/minimal-doc.json +++ b/ts-packages/annotated-qmd/examples/minimal-doc.json @@ -1 +1 @@ -{"blocks":[{"c":[{"c":"One","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"paragraph","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"only.","s":5,"t":"Str"}],"s":0,"t":"Para"}],"meta":{"title":{"c":[{"c":"Minimal","s":11,"t":"Str"},{"s":13,"t":"Space"},{"c":"Document","s":15,"t":"Str"}],"s":8,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,29,33,34,54],"name":"ts-packages/annotated-qmd/examples/minimal-doc.qmd","total_length":55}],"metaTopLevelKeySources":{"title":17},"p":[{"d":0,"r":[35,55],"t":0},{"d":0,"r":[35,38],"t":0},{"d":0,"r":[38,39],"t":0},{"d":0,"r":[39,48],"t":0},{"d":0,"r":[48,49],"t":0},{"d":0,"r":[49,54],"t":0},{"d":0,"r":[0,34],"t":0},{"d":6,"r":[4,29],"t":1},{"d":7,"r":[7,25],"t":1},{"d":6,"r":[4,29],"t":1},{"d":9,"r":[8,24],"t":1},{"d":10,"r":[0,7],"t":1},{"d":9,"r":[8,24],"t":1},{"d":12,"r":[7,8],"t":1},{"d":9,"r":[8,24],"t":1},{"d":14,"r":[8,16],"t":1},{"d":6,"r":[4,29],"t":1},{"d":16,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"c":[{"c":"One","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"paragraph","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"only.","s":5,"t":"Str"}],"s":0,"t":"Para"}],"meta":{"title":{"c":[{"c":"Minimal","s":10,"t":"Str"},{"s":12,"t":"Space"},{"c":"Document","s":14,"t":"Str"}],"s":7,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,29,33,34,54],"name":"ts-packages/annotated-qmd/examples/minimal-doc.qmd","total_length":55}],"metaTopLevelKeySources":{"title":16},"p":[{"d":0,"r":[35,55],"t":0},{"d":0,"r":[35,38],"t":0},{"d":0,"r":[38,39],"t":0},{"d":0,"r":[39,48],"t":0},{"d":0,"r":[48,49],"t":0},{"d":0,"r":[49,54],"t":0},{"d":0,"r":[4,30],"t":0},{"d":6,"r":[7,25],"t":1},{"d":0,"r":[4,30],"t":0},{"d":8,"r":[8,24],"t":1},{"d":9,"r":[0,7],"t":1},{"d":8,"r":[8,24],"t":1},{"d":11,"r":[7,8],"t":1},{"d":8,"r":[8,24],"t":1},{"d":13,"r":[8,16],"t":1},{"d":0,"r":[4,30],"t":0},{"d":15,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/minimal-figure.json b/ts-packages/annotated-qmd/examples/minimal-figure.json index 8f3ccb670..5804e0b18 100644 --- a/ts-packages/annotated-qmd/examples/minimal-figure.json +++ b/ts-packages/annotated-qmd/examples/minimal-figure.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["simple-figure",[],[]],[{"c":"Simple","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Figure","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[null,[{"c":[{"c":"Figure","s":6,"t":"Str"},{"s":7,"t":"Space"},{"c":"caption","s":8,"t":"Str"},{"s":9,"t":"Space"},{"c":"text","s":10,"t":"Str"}],"s":5,"t":"Plain"}]],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"Figure","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"caption","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"text","s":17,"t":"Str"}],["image.png",""]],"s":12,"t":"Image","targetS":[18,null]}],"s":11,"t":"Plain"}]],"captionS":19,"s":4,"t":"Figure"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["detailed-figure-with-attributes",[],[]],[{"c":"Detailed","s":21,"t":"Str"},{"s":22,"t":"Space"},{"c":"Figure","s":23,"t":"Str"},{"s":24,"t":"Space"},{"c":"with","s":25,"t":"Str"},{"s":26,"t":"Space"},{"c":"Attributes","s":27,"t":"Str"}]],"s":20,"t":"Header"},{"a":{"classes":[],"id":29,"kvs":[]},"c":[["fig-test",[],[]],[null,[{"c":[{"c":"Detailed","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"caption","s":33,"t":"Str"},{"s":34,"t":"Space"},{"c":"with","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":[{"c":"bold","s":38,"t":"Str"}],"s":37,"t":"Strong"}],"s":30,"t":"Plain"}]],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"Detailed","s":41,"t":"Str"},{"s":42,"t":"Space"},{"c":"caption","s":43,"t":"Str"},{"s":44,"t":"Space"},{"c":"with","s":45,"t":"Str"},{"s":46,"t":"Space"},{"c":[{"c":"bold","s":48,"t":"Str"}],"s":47,"t":"Strong"}],["image.png",""]],"s":40,"t":"Image","targetS":[49,null]}],"s":39,"t":"Plain"}]],"captionS":50,"s":28,"t":"Figure"}],"meta":{"title":{"c":[{"c":"Minimal","s":56,"t":"Str"},{"s":58,"t":"Space"},{"c":"Figure","s":60,"t":"Str"},{"s":62,"t":"Space"},{"c":"Test","s":64,"t":"Str"}],"s":53,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,32,36,37,53,54,88,89,123,124,180],"name":"ts-packages/annotated-qmd/examples/minimal-figure.qmd","total_length":181}],"metaTopLevelKeySources":{"title":66},"p":[{"d":0,"r":[38,54],"t":0},{"d":0,"r":[40,46],"t":0},{"d":0,"r":[46,47],"t":0},{"d":0,"r":[47,53],"t":0},{"d":0,"r":[55,89],"t":0},{"d":0,"r":[55,88],"t":0},{"d":0,"r":[57,63],"t":0},{"d":0,"r":[63,64],"t":0},{"d":0,"r":[64,71],"t":0},{"d":0,"r":[71,72],"t":0},{"d":0,"r":[72,76],"t":0},{"d":0,"r":[55,88],"t":0},{"d":0,"r":[55,88],"t":0},{"d":0,"r":[57,63],"t":0},{"d":0,"r":[63,64],"t":0},{"d":0,"r":[64,71],"t":0},{"d":0,"r":[71,72],"t":0},{"d":0,"r":[72,76],"t":0},{"d":0,"r":[78,87],"t":0},{"d":0,"r":[55,88],"t":0},{"d":0,"r":[90,124],"t":0},{"d":0,"r":[92,100],"t":0},{"d":0,"r":[100,101],"t":0},{"d":0,"r":[101,107],"t":0},{"d":0,"r":[107,108],"t":0},{"d":0,"r":[108,112],"t":0},{"d":0,"r":[112,113],"t":0},{"d":0,"r":[113,123],"t":0},{"d":0,"r":[125,181],"t":0},{"d":0,"r":[170,179],"t":0},{"d":0,"r":[125,180],"t":0},{"d":0,"r":[127,135],"t":0},{"d":0,"r":[135,136],"t":0},{"d":0,"r":[136,143],"t":0},{"d":0,"r":[143,144],"t":0},{"d":0,"r":[144,148],"t":0},{"d":0,"r":[148,149],"t":0},{"d":0,"r":[149,157],"t":0},{"d":0,"r":[151,155],"t":0},{"d":0,"r":[125,180],"t":0},{"d":0,"r":[125,180],"t":0},{"d":0,"r":[127,135],"t":0},{"d":0,"r":[135,136],"t":0},{"d":0,"r":[136,143],"t":0},{"d":0,"r":[143,144],"t":0},{"d":0,"r":[144,148],"t":0},{"d":0,"r":[148,149],"t":0},{"d":0,"r":[149,157],"t":0},{"d":0,"r":[151,155],"t":0},{"d":0,"r":[159,168],"t":0},{"d":0,"r":[125,180],"t":0},{"d":0,"r":[0,37],"t":0},{"d":51,"r":[4,32],"t":1},{"d":52,"r":[7,28],"t":1},{"d":51,"r":[4,32],"t":1},{"d":54,"r":[8,27],"t":1},{"d":55,"r":[0,7],"t":1},{"d":54,"r":[8,27],"t":1},{"d":57,"r":[7,8],"t":1},{"d":54,"r":[8,27],"t":1},{"d":59,"r":[8,14],"t":1},{"d":54,"r":[8,27],"t":1},{"d":61,"r":[14,15],"t":1},{"d":54,"r":[8,27],"t":1},{"d":63,"r":[15,19],"t":1},{"d":51,"r":[4,32],"t":1},{"d":65,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["simple-figure",[],[]],[{"c":"Simple","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Figure","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[null,[{"c":[{"c":"Figure","s":6,"t":"Str"},{"s":7,"t":"Space"},{"c":"caption","s":8,"t":"Str"},{"s":9,"t":"Space"},{"c":"text","s":10,"t":"Str"}],"s":5,"t":"Plain"}]],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"Figure","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"caption","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"text","s":17,"t":"Str"}],["image.png",""]],"s":12,"t":"Image","targetS":[18,null]}],"s":11,"t":"Plain"}]],"captionS":19,"s":4,"t":"Figure"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["detailed-figure-with-attributes",[],[]],[{"c":"Detailed","s":21,"t":"Str"},{"s":22,"t":"Space"},{"c":"Figure","s":23,"t":"Str"},{"s":24,"t":"Space"},{"c":"with","s":25,"t":"Str"},{"s":26,"t":"Space"},{"c":"Attributes","s":27,"t":"Str"}]],"s":20,"t":"Header"},{"a":{"classes":[],"id":29,"kvs":[]},"c":[["fig-test",[],[]],[null,[{"c":[{"c":"Detailed","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"caption","s":33,"t":"Str"},{"s":34,"t":"Space"},{"c":"with","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":[{"c":"bold","s":38,"t":"Str"}],"s":37,"t":"Strong"}],"s":30,"t":"Plain"}]],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"Detailed","s":41,"t":"Str"},{"s":42,"t":"Space"},{"c":"caption","s":43,"t":"Str"},{"s":44,"t":"Space"},{"c":"with","s":45,"t":"Str"},{"s":46,"t":"Space"},{"c":[{"c":"bold","s":48,"t":"Str"}],"s":47,"t":"Strong"}],["image.png",""]],"s":40,"t":"Image","targetS":[49,null]}],"s":39,"t":"Plain"}]],"captionS":50,"s":28,"t":"Figure"}],"meta":{"title":{"c":[{"c":"Minimal","s":55,"t":"Str"},{"s":57,"t":"Space"},{"c":"Figure","s":59,"t":"Str"},{"s":61,"t":"Space"},{"c":"Test","s":63,"t":"Str"}],"s":52,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,32,36,37,53,54,88,89,123,124,180],"name":"ts-packages/annotated-qmd/examples/minimal-figure.qmd","total_length":181}],"metaTopLevelKeySources":{"title":65},"p":[{"d":0,"r":[38,54],"t":0},{"d":0,"r":[40,46],"t":0},{"d":0,"r":[46,47],"t":0},{"d":0,"r":[47,53],"t":0},{"d":0,"r":[55,89],"t":0},{"d":0,"r":[55,88],"t":0},{"d":0,"r":[57,63],"t":0},{"d":0,"r":[63,64],"t":0},{"d":0,"r":[64,71],"t":0},{"d":0,"r":[71,72],"t":0},{"d":0,"r":[72,76],"t":0},{"d":0,"r":[55,88],"t":0},{"d":0,"r":[55,88],"t":0},{"d":0,"r":[57,63],"t":0},{"d":0,"r":[63,64],"t":0},{"d":0,"r":[64,71],"t":0},{"d":0,"r":[71,72],"t":0},{"d":0,"r":[72,76],"t":0},{"d":0,"r":[78,87],"t":0},{"d":0,"r":[55,88],"t":0},{"d":0,"r":[90,124],"t":0},{"d":0,"r":[92,100],"t":0},{"d":0,"r":[100,101],"t":0},{"d":0,"r":[101,107],"t":0},{"d":0,"r":[107,108],"t":0},{"d":0,"r":[108,112],"t":0},{"d":0,"r":[112,113],"t":0},{"d":0,"r":[113,123],"t":0},{"d":0,"r":[125,181],"t":0},{"d":0,"r":[170,179],"t":0},{"d":0,"r":[125,180],"t":0},{"d":0,"r":[127,135],"t":0},{"d":0,"r":[135,136],"t":0},{"d":0,"r":[136,143],"t":0},{"d":0,"r":[143,144],"t":0},{"d":0,"r":[144,148],"t":0},{"d":0,"r":[148,149],"t":0},{"d":0,"r":[149,157],"t":0},{"d":0,"r":[151,155],"t":0},{"d":0,"r":[125,180],"t":0},{"d":0,"r":[125,180],"t":0},{"d":0,"r":[127,135],"t":0},{"d":0,"r":[135,136],"t":0},{"d":0,"r":[136,143],"t":0},{"d":0,"r":[143,144],"t":0},{"d":0,"r":[144,148],"t":0},{"d":0,"r":[148,149],"t":0},{"d":0,"r":[149,157],"t":0},{"d":0,"r":[151,155],"t":0},{"d":0,"r":[159,168],"t":0},{"d":0,"r":[125,180],"t":0},{"d":0,"r":[4,33],"t":0},{"d":51,"r":[7,28],"t":1},{"d":0,"r":[4,33],"t":0},{"d":53,"r":[8,27],"t":1},{"d":54,"r":[0,7],"t":1},{"d":53,"r":[8,27],"t":1},{"d":56,"r":[7,8],"t":1},{"d":53,"r":[8,27],"t":1},{"d":58,"r":[8,14],"t":1},{"d":53,"r":[8,27],"t":1},{"d":60,"r":[14,15],"t":1},{"d":53,"r":[8,27],"t":1},{"d":62,"r":[15,19],"t":1},{"d":0,"r":[4,33],"t":0},{"d":64,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/missing-fields.json b/ts-packages/annotated-qmd/examples/missing-fields.json index 681e6cbf0..1f627063a 100644 --- a/ts-packages/annotated-qmd/examples/missing-fields.json +++ b/ts-packages/annotated-qmd/examples/missing-fields.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["empty-link",[],[]],[{"c":"Empty","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Link","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[],["",""]],"s":5,"t":"Link","targetS":[null,null]}],"s":4,"t":"Para"},{"c":[{"c":"Link","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"with","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"empty","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"text:","s":15,"t":"Str"},{"s":16,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[],["https://example.com",""]],"s":17,"t":"Link","targetS":[18,null]}],"s":6,"t":"Para"},{"c":[{"c":"Link","s":20,"t":"Str"},{"s":21,"t":"Space"},{"c":"with","s":22,"t":"Str"},{"s":23,"t":"Space"},{"c":"empty","s":24,"t":"Str"},{"s":25,"t":"Space"},{"c":"target:","s":28,"t":"Str"},{"s":29,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"click","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"here","s":33,"t":"Str"}],["",""]],"s":30,"t":"Link","targetS":[null,null]}],"s":19,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["table-without-caption",[],[]],[{"c":"Table","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"Without","s":37,"t":"Str"},{"s":38,"t":"Space"},{"c":"Caption","s":39,"t":"Str"}]],"s":34,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"bodiesS":[{"a":{"classes":[],"id":null,"kvs":[]},"bodyS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":41},{"a":{"classes":[],"id":null,"kvs":[]},"s":42}],"s":43}],"headS":[],"s":44}],"c":[["",[],[]],[null,[]],[[{"t":"AlignDefault"},{"t":"ColWidthDefault"}],[{"t":"AlignDefault"},{"t":"ColWidthDefault"}]],[["",[],[]],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"A","s":46,"t":"Str"}],"s":45,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"B","s":48,"t":"Str"}],"s":47,"t":"Plain"}]]]]]],[[["",[],[]],0,[],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"1","s":50,"t":"Str"}],"s":49,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"2","s":52,"t":"Str"}],"s":51,"t":"Plain"}]]]]]]],[["",[],[]],[]]],"captionS":53,"footS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[],"s":54},"headS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":55},{"a":{"classes":[],"id":null,"kvs":[]},"s":56}],"s":57}],"s":58},"s":40,"t":"Table"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["single-cell-table",[],[]],[{"c":"Single","s":60,"t":"Str"},{"s":61,"t":"Space"},{"c":"Cell","s":62,"t":"Str"},{"s":63,"t":"Space"},{"c":"Table","s":64,"t":"Str"}]],"s":59,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"bodiesS":[{"a":{"classes":[],"id":null,"kvs":[]},"bodyS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":66}],"s":67}],"headS":[],"s":68}],"c":[["",[],[]],[null,[]],[[{"t":"AlignDefault"},{"t":"ColWidthDefault"}]],[["",[],[]],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"X","s":70,"t":"Str"}],"s":69,"t":"Plain"}]]]]]],[[["",[],[]],0,[],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"1","s":72,"t":"Str"}],"s":71,"t":"Plain"}]]]]]]],[["",[],[]],[]]],"captionS":73,"footS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[],"s":74},"headS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":75}],"s":76}],"s":77},"s":65,"t":"Table"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["definition-list",[],[]],[{"c":"Definition","s":79,"t":"Str"},{"s":80,"t":"Space"},{"c":"List","s":81,"t":"Str"}]],"s":78,"t":"Header"},{"c":[{"c":"Term","s":83,"t":"Str"}],"s":82,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["empty-metadata-values",[],[]],[{"c":"Empty","s":85,"t":"Str"},{"s":86,"t":"Space"},{"c":"Metadata","s":87,"t":"Str"},{"s":88,"t":"Space"},{"c":"Values","s":89,"t":"Str"}]],"s":84,"t":"Header"},{"c":[{"c":"Just","s":91,"t":"Str"},{"s":92,"t":"Space"},{"c":"testing","s":93,"t":"Str"},{"s":94,"t":"Space"},{"c":"that","s":95,"t":"Str"},{"s":96,"t":"Space"},{"c":"metadata","s":97,"t":"Str"},{"s":98,"t":"Space"},{"c":"parsing","s":99,"t":"Str"},{"s":100,"t":"Space"},{"c":"works","s":101,"t":"Str"},{"s":102,"t":"Space"},{"c":"when","s":103,"t":"Str"},{"s":104,"t":"Space"},{"c":"values","s":105,"t":"Str"},{"s":106,"t":"Space"},{"c":"might","s":107,"t":"Str"},{"s":108,"t":"Space"},{"c":"be","s":109,"t":"Str"},{"s":110,"t":"Space"},{"c":"edge","s":111,"t":"Str"},{"s":112,"t":"Space"},{"c":"cases.","s":113,"t":"Str"}],"s":90,"t":"Para"}],"meta":{"title":{"c":[{"c":"Missing","s":119,"t":"Str"},{"s":121,"t":"Space"},{"c":"Fields","s":123,"t":"Str"},{"s":125,"t":"Space"},{"c":"Test","s":127,"t":"Str"}],"s":116,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,32,36,37,50,51,56,57,103,104,143,144,168,169,179,189,199,200,220,221,227,233,239,240,258,259,264,265,285,286,310,311,385],"name":"ts-packages/annotated-qmd/examples/missing-fields.qmd","total_length":386}],"metaTopLevelKeySources":{"title":129},"p":[{"d":0,"r":[38,51],"t":0},{"d":0,"r":[40,45],"t":0},{"d":0,"r":[45,46],"t":0},{"d":0,"r":[46,50],"t":0},{"d":0,"r":[52,57],"t":0},{"d":0,"r":[52,56],"t":0},{"d":0,"r":[58,104],"t":0},{"d":0,"r":[58,62],"t":0},{"d":0,"r":[62,63],"t":0},{"d":0,"r":[63,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,78],"t":0},{"d":0,"r":[78,79],"t":0},{"d":[[13,0,4],[14,4,1]],"r":[0,5],"t":2},{"d":0,"r":[79,80],"t":0},{"d":0,"r":[80,103],"t":0},{"d":0,"r":[83,102],"t":0},{"d":0,"r":[105,144],"t":0},{"d":0,"r":[105,109],"t":0},{"d":0,"r":[109,110],"t":0},{"d":0,"r":[110,114],"t":0},{"d":0,"r":[114,115],"t":0},{"d":0,"r":[115,120],"t":0},{"d":0,"r":[120,121],"t":0},{"d":0,"r":[121,127],"t":0},{"d":0,"r":[127,128],"t":0},{"d":[[26,0,6],[27,6,1]],"r":[0,7],"t":2},{"d":0,"r":[128,129],"t":0},{"d":0,"r":[129,143],"t":0},{"d":0,"r":[130,135],"t":0},{"d":0,"r":[135,136],"t":0},{"d":0,"r":[136,140],"t":0},{"d":0,"r":[145,169],"t":0},{"d":0,"r":[147,152],"t":0},{"d":0,"r":[152,153],"t":0},{"d":0,"r":[153,160],"t":0},{"d":0,"r":[160,161],"t":0},{"d":0,"r":[161,168],"t":0},{"d":0,"r":[170,200],"t":0},{"d":0,"r":[192,193],"t":0},{"d":0,"r":[196,197],"t":0},{"d":0,"r":[190,199],"t":0},{"d":0,"r":[170,200],"t":0},{"d":0,"r":[172,173],"t":0},{"d":0,"r":[172,173],"t":0},{"d":0,"r":[176,177],"t":0},{"d":0,"r":[176,177],"t":0},{"d":0,"r":[192,193],"t":0},{"d":0,"r":[192,193],"t":0},{"d":0,"r":[196,197],"t":0},{"d":0,"r":[196,197],"t":0},{"d":0,"r":[170,200],"t":0},{"d":0,"r":[170,200],"t":0},{"d":0,"r":[172,173],"t":0},{"d":0,"r":[176,177],"t":0},{"d":0,"r":[170,179],"t":0},{"d":0,"r":[170,200],"t":0},{"d":0,"r":[201,221],"t":0},{"d":0,"r":[203,209],"t":0},{"d":0,"r":[209,210],"t":0},{"d":0,"r":[210,214],"t":0},{"d":0,"r":[214,215],"t":0},{"d":0,"r":[215,220],"t":0},{"d":0,"r":[222,240],"t":0},{"d":0,"r":[236,237],"t":0},{"d":0,"r":[234,239],"t":0},{"d":0,"r":[222,240],"t":0},{"d":0,"r":[224,225],"t":0},{"d":0,"r":[224,225],"t":0},{"d":0,"r":[236,237],"t":0},{"d":0,"r":[236,237],"t":0},{"d":0,"r":[222,240],"t":0},{"d":0,"r":[222,240],"t":0},{"d":0,"r":[224,225],"t":0},{"d":0,"r":[222,227],"t":0},{"d":0,"r":[222,240],"t":0},{"d":0,"r":[241,259],"t":0},{"d":0,"r":[243,253],"t":0},{"d":0,"r":[253,254],"t":0},{"d":0,"r":[254,258],"t":0},{"d":0,"r":[260,265],"t":0},{"d":0,"r":[260,264],"t":0},{"d":0,"r":[287,311],"t":0},{"d":0,"r":[289,294],"t":0},{"d":0,"r":[294,295],"t":0},{"d":0,"r":[295,303],"t":0},{"d":0,"r":[303,304],"t":0},{"d":0,"r":[304,310],"t":0},{"d":0,"r":[312,386],"t":0},{"d":0,"r":[312,316],"t":0},{"d":0,"r":[316,317],"t":0},{"d":0,"r":[317,324],"t":0},{"d":0,"r":[324,325],"t":0},{"d":0,"r":[325,329],"t":0},{"d":0,"r":[329,330],"t":0},{"d":0,"r":[330,338],"t":0},{"d":0,"r":[338,339],"t":0},{"d":0,"r":[339,346],"t":0},{"d":0,"r":[346,347],"t":0},{"d":0,"r":[347,352],"t":0},{"d":0,"r":[352,353],"t":0},{"d":0,"r":[353,357],"t":0},{"d":0,"r":[357,358],"t":0},{"d":0,"r":[358,364],"t":0},{"d":0,"r":[364,365],"t":0},{"d":0,"r":[365,370],"t":0},{"d":0,"r":[370,371],"t":0},{"d":0,"r":[371,373],"t":0},{"d":0,"r":[373,374],"t":0},{"d":0,"r":[374,378],"t":0},{"d":0,"r":[378,379],"t":0},{"d":0,"r":[379,385],"t":0},{"d":0,"r":[0,37],"t":0},{"d":114,"r":[4,32],"t":1},{"d":115,"r":[7,28],"t":1},{"d":114,"r":[4,32],"t":1},{"d":117,"r":[8,27],"t":1},{"d":118,"r":[0,7],"t":1},{"d":117,"r":[8,27],"t":1},{"d":120,"r":[7,8],"t":1},{"d":117,"r":[8,27],"t":1},{"d":122,"r":[8,14],"t":1},{"d":117,"r":[8,27],"t":1},{"d":124,"r":[14,15],"t":1},{"d":117,"r":[8,27],"t":1},{"d":126,"r":[15,19],"t":1},{"d":114,"r":[4,32],"t":1},{"d":128,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["empty-link",[],[]],[{"c":"Empty","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Link","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[],["",""]],"s":5,"t":"Link","targetS":[null,null]}],"s":4,"t":"Para"},{"c":[{"c":"Link","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"with","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"empty","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"text:","s":15,"t":"Str"},{"s":16,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[],["https://example.com",""]],"s":17,"t":"Link","targetS":[18,null]}],"s":6,"t":"Para"},{"c":[{"c":"Link","s":20,"t":"Str"},{"s":21,"t":"Space"},{"c":"with","s":22,"t":"Str"},{"s":23,"t":"Space"},{"c":"empty","s":24,"t":"Str"},{"s":25,"t":"Space"},{"c":"target:","s":28,"t":"Str"},{"s":29,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"click","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"here","s":33,"t":"Str"}],["",""]],"s":30,"t":"Link","targetS":[null,null]}],"s":19,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["table-without-caption",[],[]],[{"c":"Table","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"Without","s":37,"t":"Str"},{"s":38,"t":"Space"},{"c":"Caption","s":39,"t":"Str"}]],"s":34,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"bodiesS":[{"a":{"classes":[],"id":null,"kvs":[]},"bodyS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":41},{"a":{"classes":[],"id":null,"kvs":[]},"s":42}],"s":43}],"headS":[],"s":44}],"c":[["",[],[]],[null,[]],[[{"t":"AlignDefault"},{"t":"ColWidthDefault"}],[{"t":"AlignDefault"},{"t":"ColWidthDefault"}]],[["",[],[]],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"A","s":46,"t":"Str"}],"s":45,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"B","s":48,"t":"Str"}],"s":47,"t":"Plain"}]]]]]],[[["",[],[]],0,[],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"1","s":50,"t":"Str"}],"s":49,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"2","s":52,"t":"Str"}],"s":51,"t":"Plain"}]]]]]]],[["",[],[]],[]]],"captionS":53,"footS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[],"s":54},"headS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":55},{"a":{"classes":[],"id":null,"kvs":[]},"s":56}],"s":57}],"s":58},"s":40,"t":"Table"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["single-cell-table",[],[]],[{"c":"Single","s":60,"t":"Str"},{"s":61,"t":"Space"},{"c":"Cell","s":62,"t":"Str"},{"s":63,"t":"Space"},{"c":"Table","s":64,"t":"Str"}]],"s":59,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"bodiesS":[{"a":{"classes":[],"id":null,"kvs":[]},"bodyS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":66}],"s":67}],"headS":[],"s":68}],"c":[["",[],[]],[null,[]],[[{"t":"AlignDefault"},{"t":"ColWidthDefault"}]],[["",[],[]],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"X","s":70,"t":"Str"}],"s":69,"t":"Plain"}]]]]]],[[["",[],[]],0,[],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"1","s":72,"t":"Str"}],"s":71,"t":"Plain"}]]]]]]],[["",[],[]],[]]],"captionS":73,"footS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[],"s":74},"headS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":75}],"s":76}],"s":77},"s":65,"t":"Table"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["definition-list",[],[]],[{"c":"Definition","s":79,"t":"Str"},{"s":80,"t":"Space"},{"c":"List","s":81,"t":"Str"}]],"s":78,"t":"Header"},{"c":[{"c":"Term","s":83,"t":"Str"}],"s":82,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["empty-metadata-values",[],[]],[{"c":"Empty","s":85,"t":"Str"},{"s":86,"t":"Space"},{"c":"Metadata","s":87,"t":"Str"},{"s":88,"t":"Space"},{"c":"Values","s":89,"t":"Str"}]],"s":84,"t":"Header"},{"c":[{"c":"Just","s":91,"t":"Str"},{"s":92,"t":"Space"},{"c":"testing","s":93,"t":"Str"},{"s":94,"t":"Space"},{"c":"that","s":95,"t":"Str"},{"s":96,"t":"Space"},{"c":"metadata","s":97,"t":"Str"},{"s":98,"t":"Space"},{"c":"parsing","s":99,"t":"Str"},{"s":100,"t":"Space"},{"c":"works","s":101,"t":"Str"},{"s":102,"t":"Space"},{"c":"when","s":103,"t":"Str"},{"s":104,"t":"Space"},{"c":"values","s":105,"t":"Str"},{"s":106,"t":"Space"},{"c":"might","s":107,"t":"Str"},{"s":108,"t":"Space"},{"c":"be","s":109,"t":"Str"},{"s":110,"t":"Space"},{"c":"edge","s":111,"t":"Str"},{"s":112,"t":"Space"},{"c":"cases.","s":113,"t":"Str"}],"s":90,"t":"Para"}],"meta":{"title":{"c":[{"c":"Missing","s":118,"t":"Str"},{"s":120,"t":"Space"},{"c":"Fields","s":122,"t":"Str"},{"s":124,"t":"Space"},{"c":"Test","s":126,"t":"Str"}],"s":115,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,32,36,37,50,51,56,57,103,104,143,144,168,169,179,189,199,200,220,221,227,233,239,240,258,259,264,265,285,286,310,311,385],"name":"ts-packages/annotated-qmd/examples/missing-fields.qmd","total_length":386}],"metaTopLevelKeySources":{"title":128},"p":[{"d":0,"r":[38,51],"t":0},{"d":0,"r":[40,45],"t":0},{"d":0,"r":[45,46],"t":0},{"d":0,"r":[46,50],"t":0},{"d":0,"r":[52,57],"t":0},{"d":0,"r":[52,56],"t":0},{"d":0,"r":[58,104],"t":0},{"d":0,"r":[58,62],"t":0},{"d":0,"r":[62,63],"t":0},{"d":0,"r":[63,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,78],"t":0},{"d":0,"r":[78,79],"t":0},{"d":[[13,0,4],[14,4,1]],"r":[0,5],"t":2},{"d":0,"r":[79,80],"t":0},{"d":0,"r":[80,103],"t":0},{"d":0,"r":[83,102],"t":0},{"d":0,"r":[105,144],"t":0},{"d":0,"r":[105,109],"t":0},{"d":0,"r":[109,110],"t":0},{"d":0,"r":[110,114],"t":0},{"d":0,"r":[114,115],"t":0},{"d":0,"r":[115,120],"t":0},{"d":0,"r":[120,121],"t":0},{"d":0,"r":[121,127],"t":0},{"d":0,"r":[127,128],"t":0},{"d":[[26,0,6],[27,6,1]],"r":[0,7],"t":2},{"d":0,"r":[128,129],"t":0},{"d":0,"r":[129,143],"t":0},{"d":0,"r":[130,135],"t":0},{"d":0,"r":[135,136],"t":0},{"d":0,"r":[136,140],"t":0},{"d":0,"r":[145,169],"t":0},{"d":0,"r":[147,152],"t":0},{"d":0,"r":[152,153],"t":0},{"d":0,"r":[153,160],"t":0},{"d":0,"r":[160,161],"t":0},{"d":0,"r":[161,168],"t":0},{"d":0,"r":[170,200],"t":0},{"d":0,"r":[192,193],"t":0},{"d":0,"r":[196,197],"t":0},{"d":0,"r":[190,199],"t":0},{"d":0,"r":[170,200],"t":0},{"d":0,"r":[172,173],"t":0},{"d":0,"r":[172,173],"t":0},{"d":0,"r":[176,177],"t":0},{"d":0,"r":[176,177],"t":0},{"d":0,"r":[192,193],"t":0},{"d":0,"r":[192,193],"t":0},{"d":0,"r":[196,197],"t":0},{"d":0,"r":[196,197],"t":0},{"d":0,"r":[170,200],"t":0},{"d":0,"r":[170,200],"t":0},{"d":0,"r":[172,173],"t":0},{"d":0,"r":[176,177],"t":0},{"d":0,"r":[170,179],"t":0},{"d":0,"r":[170,200],"t":0},{"d":0,"r":[201,221],"t":0},{"d":0,"r":[203,209],"t":0},{"d":0,"r":[209,210],"t":0},{"d":0,"r":[210,214],"t":0},{"d":0,"r":[214,215],"t":0},{"d":0,"r":[215,220],"t":0},{"d":0,"r":[222,240],"t":0},{"d":0,"r":[236,237],"t":0},{"d":0,"r":[234,239],"t":0},{"d":0,"r":[222,240],"t":0},{"d":0,"r":[224,225],"t":0},{"d":0,"r":[224,225],"t":0},{"d":0,"r":[236,237],"t":0},{"d":0,"r":[236,237],"t":0},{"d":0,"r":[222,240],"t":0},{"d":0,"r":[222,240],"t":0},{"d":0,"r":[224,225],"t":0},{"d":0,"r":[222,227],"t":0},{"d":0,"r":[222,240],"t":0},{"d":0,"r":[241,259],"t":0},{"d":0,"r":[243,253],"t":0},{"d":0,"r":[253,254],"t":0},{"d":0,"r":[254,258],"t":0},{"d":0,"r":[260,265],"t":0},{"d":0,"r":[260,264],"t":0},{"d":0,"r":[287,311],"t":0},{"d":0,"r":[289,294],"t":0},{"d":0,"r":[294,295],"t":0},{"d":0,"r":[295,303],"t":0},{"d":0,"r":[303,304],"t":0},{"d":0,"r":[304,310],"t":0},{"d":0,"r":[312,386],"t":0},{"d":0,"r":[312,316],"t":0},{"d":0,"r":[316,317],"t":0},{"d":0,"r":[317,324],"t":0},{"d":0,"r":[324,325],"t":0},{"d":0,"r":[325,329],"t":0},{"d":0,"r":[329,330],"t":0},{"d":0,"r":[330,338],"t":0},{"d":0,"r":[338,339],"t":0},{"d":0,"r":[339,346],"t":0},{"d":0,"r":[346,347],"t":0},{"d":0,"r":[347,352],"t":0},{"d":0,"r":[352,353],"t":0},{"d":0,"r":[353,357],"t":0},{"d":0,"r":[357,358],"t":0},{"d":0,"r":[358,364],"t":0},{"d":0,"r":[364,365],"t":0},{"d":0,"r":[365,370],"t":0},{"d":0,"r":[370,371],"t":0},{"d":0,"r":[371,373],"t":0},{"d":0,"r":[373,374],"t":0},{"d":0,"r":[374,378],"t":0},{"d":0,"r":[378,379],"t":0},{"d":0,"r":[379,385],"t":0},{"d":0,"r":[4,33],"t":0},{"d":114,"r":[7,28],"t":1},{"d":0,"r":[4,33],"t":0},{"d":116,"r":[8,27],"t":1},{"d":117,"r":[0,7],"t":1},{"d":116,"r":[8,27],"t":1},{"d":119,"r":[7,8],"t":1},{"d":116,"r":[8,27],"t":1},{"d":121,"r":[8,14],"t":1},{"d":116,"r":[8,27],"t":1},{"d":123,"r":[14,15],"t":1},{"d":116,"r":[8,27],"t":1},{"d":125,"r":[15,19],"t":1},{"d":0,"r":[4,33],"t":0},{"d":127,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/ordered-list.json b/ts-packages/annotated-qmd/examples/ordered-list.json index 6ca92ba82..f6469b766 100644 --- a/ts-packages/annotated-qmd/examples/ordered-list.json +++ b/ts-packages/annotated-qmd/examples/ordered-list.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["ordered-lists",[],[]],[{"c":"Ordered","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Lists","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"First","s":6,"t":"Str"},{"s":7,"t":"Space"},{"c":"item","s":8,"t":"Str"}],"s":5,"t":"Plain"}],[{"c":[{"c":"Second","s":10,"t":"Str"},{"s":11,"t":"Space"},{"c":"item","s":12,"t":"Str"}],"s":9,"t":"Plain"}],[{"c":[{"c":"Third","s":14,"t":"Str"},{"s":15,"t":"Space"},{"c":"item","s":16,"t":"Str"}],"s":13,"t":"Plain"}]]],"s":4,"t":"OrderedList"},{"c":[{"c":"Starting","s":18,"t":"Str"},{"s":19,"t":"Space"},{"c":"at","s":20,"t":"Str"},{"s":21,"t":"Space"},{"c":"5:","s":24,"t":"Str"}],"s":17,"t":"Para"},{"c":[[5,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Fifth","s":27,"t":"Str"},{"s":28,"t":"Space"},{"c":"item","s":29,"t":"Str"}],"s":26,"t":"Plain"}],[{"c":[{"c":"Sixth","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"item","s":33,"t":"Str"}],"s":30,"t":"Plain"}]]],"s":25,"t":"OrderedList"},{"c":[{"c":"Nested","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"ordered","s":37,"t":"Str"},{"s":38,"t":"Space"},{"c":"list:","s":41,"t":"Str"}],"s":34,"t":"Para"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Top","s":44,"t":"Str"},{"s":45,"t":"Space"},{"c":"level","s":46,"t":"Str"},{"s":47,"t":"Space"},{"c":"item","s":48,"t":"Str"},{"s":49,"t":"Space"},{"c":"one","s":50,"t":"Str"}],"s":43,"t":"Plain"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Nested","s":53,"t":"Str"},{"s":54,"t":"Space"},{"c":"item","s":55,"t":"Str"},{"s":56,"t":"Space"},{"c":"A","s":57,"t":"Str"}],"s":52,"t":"Plain"}],[{"c":[{"c":"Nested","s":59,"t":"Str"},{"s":60,"t":"Space"},{"c":"item","s":61,"t":"Str"},{"s":62,"t":"Space"},{"c":"B","s":63,"t":"Str"}],"s":58,"t":"Plain"}]]],"s":51,"t":"OrderedList"}],[{"c":[{"c":"Top","s":65,"t":"Str"},{"s":66,"t":"Space"},{"c":"level","s":67,"t":"Str"},{"s":68,"t":"Space"},{"c":"item","s":69,"t":"Str"},{"s":70,"t":"Space"},{"c":"two","s":71,"t":"Str"}],"s":64,"t":"Plain"}]]],"s":42,"t":"OrderedList"}],"meta":{"title":{"c":[{"c":"Ordered","s":77,"t":"Str"},{"s":79,"t":"Space"},{"c":"List","s":81,"t":"Str"},{"s":83,"t":"Space"},{"c":"Example","s":85,"t":"Str"}],"s":74,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,31,35,36,52,53,67,82,96,97,112,113,127,141,142,163,164,186,206,226,248],"name":"ts-packages/annotated-qmd/examples/ordered-list.qmd","total_length":249}],"metaTopLevelKeySources":{"title":87},"p":[{"d":0,"r":[37,53],"t":0},{"d":0,"r":[39,46],"t":0},{"d":0,"r":[46,47],"t":0},{"d":0,"r":[47,52],"t":0},{"d":0,"r":[54,98],"t":0},{"d":0,"r":[57,68],"t":0},{"d":0,"r":[57,62],"t":0},{"d":0,"r":[62,63],"t":0},{"d":0,"r":[63,67],"t":0},{"d":0,"r":[71,83],"t":0},{"d":0,"r":[71,77],"t":0},{"d":0,"r":[77,78],"t":0},{"d":0,"r":[78,82],"t":0},{"d":0,"r":[86,97],"t":0},{"d":0,"r":[86,91],"t":0},{"d":0,"r":[91,92],"t":0},{"d":0,"r":[92,96],"t":0},{"d":0,"r":[98,113],"t":0},{"d":0,"r":[98,106],"t":0},{"d":0,"r":[106,107],"t":0},{"d":0,"r":[107,109],"t":0},{"d":0,"r":[109,110],"t":0},{"d":0,"r":[110,111],"t":0},{"d":0,"r":[111,112],"t":0},{"d":[[22,0,1],[23,1,1]],"r":[0,2],"t":2},{"d":0,"r":[114,143],"t":0},{"d":0,"r":[117,128],"t":0},{"d":0,"r":[117,122],"t":0},{"d":0,"r":[122,123],"t":0},{"d":0,"r":[123,127],"t":0},{"d":0,"r":[131,142],"t":0},{"d":0,"r":[131,136],"t":0},{"d":0,"r":[136,137],"t":0},{"d":0,"r":[137,141],"t":0},{"d":0,"r":[143,164],"t":0},{"d":0,"r":[143,149],"t":0},{"d":0,"r":[149,150],"t":0},{"d":0,"r":[150,157],"t":0},{"d":0,"r":[157,158],"t":0},{"d":0,"r":[158,162],"t":0},{"d":0,"r":[162,163],"t":0},{"d":[[39,0,4],[40,4,1]],"r":[0,5],"t":2},{"d":0,"r":[165,249],"t":0},{"d":0,"r":[168,190],"t":0},{"d":0,"r":[168,171],"t":0},{"d":0,"r":[171,172],"t":0},{"d":0,"r":[172,177],"t":0},{"d":0,"r":[177,178],"t":0},{"d":0,"r":[178,182],"t":0},{"d":0,"r":[182,183],"t":0},{"d":0,"r":[183,186],"t":0},{"d":0,"r":[190,227],"t":0},{"d":0,"r":[193,210],"t":0},{"d":0,"r":[193,199],"t":0},{"d":0,"r":[199,200],"t":0},{"d":0,"r":[200,204],"t":0},{"d":0,"r":[204,205],"t":0},{"d":0,"r":[205,206],"t":0},{"d":0,"r":[213,227],"t":0},{"d":0,"r":[213,219],"t":0},{"d":0,"r":[219,220],"t":0},{"d":0,"r":[220,224],"t":0},{"d":0,"r":[224,225],"t":0},{"d":0,"r":[225,226],"t":0},{"d":0,"r":[230,249],"t":0},{"d":0,"r":[230,233],"t":0},{"d":0,"r":[233,234],"t":0},{"d":0,"r":[234,239],"t":0},{"d":0,"r":[239,240],"t":0},{"d":0,"r":[240,244],"t":0},{"d":0,"r":[244,245],"t":0},{"d":0,"r":[245,248],"t":0},{"d":0,"r":[0,36],"t":0},{"d":72,"r":[4,31],"t":1},{"d":73,"r":[7,27],"t":1},{"d":72,"r":[4,31],"t":1},{"d":75,"r":[7,27],"t":1},{"d":76,"r":[0,7],"t":1},{"d":75,"r":[7,27],"t":1},{"d":78,"r":[7,8],"t":1},{"d":75,"r":[7,27],"t":1},{"d":80,"r":[8,12],"t":1},{"d":75,"r":[7,27],"t":1},{"d":82,"r":[12,13],"t":1},{"d":75,"r":[7,27],"t":1},{"d":84,"r":[13,20],"t":1},{"d":72,"r":[4,31],"t":1},{"d":86,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["ordered-lists",[],[]],[{"c":"Ordered","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Lists","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"First","s":6,"t":"Str"},{"s":7,"t":"Space"},{"c":"item","s":8,"t":"Str"}],"s":5,"t":"Plain"}],[{"c":[{"c":"Second","s":10,"t":"Str"},{"s":11,"t":"Space"},{"c":"item","s":12,"t":"Str"}],"s":9,"t":"Plain"}],[{"c":[{"c":"Third","s":14,"t":"Str"},{"s":15,"t":"Space"},{"c":"item","s":16,"t":"Str"}],"s":13,"t":"Plain"}]]],"s":4,"t":"OrderedList"},{"c":[{"c":"Starting","s":18,"t":"Str"},{"s":19,"t":"Space"},{"c":"at","s":20,"t":"Str"},{"s":21,"t":"Space"},{"c":"5:","s":24,"t":"Str"}],"s":17,"t":"Para"},{"c":[[5,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Fifth","s":27,"t":"Str"},{"s":28,"t":"Space"},{"c":"item","s":29,"t":"Str"}],"s":26,"t":"Plain"}],[{"c":[{"c":"Sixth","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"item","s":33,"t":"Str"}],"s":30,"t":"Plain"}]]],"s":25,"t":"OrderedList"},{"c":[{"c":"Nested","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"ordered","s":37,"t":"Str"},{"s":38,"t":"Space"},{"c":"list:","s":41,"t":"Str"}],"s":34,"t":"Para"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Top","s":44,"t":"Str"},{"s":45,"t":"Space"},{"c":"level","s":46,"t":"Str"},{"s":47,"t":"Space"},{"c":"item","s":48,"t":"Str"},{"s":49,"t":"Space"},{"c":"one","s":50,"t":"Str"}],"s":43,"t":"Plain"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Nested","s":53,"t":"Str"},{"s":54,"t":"Space"},{"c":"item","s":55,"t":"Str"},{"s":56,"t":"Space"},{"c":"A","s":57,"t":"Str"}],"s":52,"t":"Plain"}],[{"c":[{"c":"Nested","s":59,"t":"Str"},{"s":60,"t":"Space"},{"c":"item","s":61,"t":"Str"},{"s":62,"t":"Space"},{"c":"B","s":63,"t":"Str"}],"s":58,"t":"Plain"}]]],"s":51,"t":"OrderedList"}],[{"c":[{"c":"Top","s":65,"t":"Str"},{"s":66,"t":"Space"},{"c":"level","s":67,"t":"Str"},{"s":68,"t":"Space"},{"c":"item","s":69,"t":"Str"},{"s":70,"t":"Space"},{"c":"two","s":71,"t":"Str"}],"s":64,"t":"Plain"}]]],"s":42,"t":"OrderedList"}],"meta":{"title":{"c":[{"c":"Ordered","s":76,"t":"Str"},{"s":78,"t":"Space"},{"c":"List","s":80,"t":"Str"},{"s":82,"t":"Space"},{"c":"Example","s":84,"t":"Str"}],"s":73,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,31,35,36,52,53,67,82,96,97,112,113,127,141,142,163,164,186,206,226,248],"name":"ts-packages/annotated-qmd/examples/ordered-list.qmd","total_length":249}],"metaTopLevelKeySources":{"title":86},"p":[{"d":0,"r":[37,53],"t":0},{"d":0,"r":[39,46],"t":0},{"d":0,"r":[46,47],"t":0},{"d":0,"r":[47,52],"t":0},{"d":0,"r":[54,98],"t":0},{"d":0,"r":[57,68],"t":0},{"d":0,"r":[57,62],"t":0},{"d":0,"r":[62,63],"t":0},{"d":0,"r":[63,67],"t":0},{"d":0,"r":[71,83],"t":0},{"d":0,"r":[71,77],"t":0},{"d":0,"r":[77,78],"t":0},{"d":0,"r":[78,82],"t":0},{"d":0,"r":[86,97],"t":0},{"d":0,"r":[86,91],"t":0},{"d":0,"r":[91,92],"t":0},{"d":0,"r":[92,96],"t":0},{"d":0,"r":[98,113],"t":0},{"d":0,"r":[98,106],"t":0},{"d":0,"r":[106,107],"t":0},{"d":0,"r":[107,109],"t":0},{"d":0,"r":[109,110],"t":0},{"d":0,"r":[110,111],"t":0},{"d":0,"r":[111,112],"t":0},{"d":[[22,0,1],[23,1,1]],"r":[0,2],"t":2},{"d":0,"r":[114,143],"t":0},{"d":0,"r":[117,128],"t":0},{"d":0,"r":[117,122],"t":0},{"d":0,"r":[122,123],"t":0},{"d":0,"r":[123,127],"t":0},{"d":0,"r":[131,142],"t":0},{"d":0,"r":[131,136],"t":0},{"d":0,"r":[136,137],"t":0},{"d":0,"r":[137,141],"t":0},{"d":0,"r":[143,164],"t":0},{"d":0,"r":[143,149],"t":0},{"d":0,"r":[149,150],"t":0},{"d":0,"r":[150,157],"t":0},{"d":0,"r":[157,158],"t":0},{"d":0,"r":[158,162],"t":0},{"d":0,"r":[162,163],"t":0},{"d":[[39,0,4],[40,4,1]],"r":[0,5],"t":2},{"d":0,"r":[165,249],"t":0},{"d":0,"r":[168,190],"t":0},{"d":0,"r":[168,171],"t":0},{"d":0,"r":[171,172],"t":0},{"d":0,"r":[172,177],"t":0},{"d":0,"r":[177,178],"t":0},{"d":0,"r":[178,182],"t":0},{"d":0,"r":[182,183],"t":0},{"d":0,"r":[183,186],"t":0},{"d":0,"r":[190,227],"t":0},{"d":0,"r":[193,210],"t":0},{"d":0,"r":[193,199],"t":0},{"d":0,"r":[199,200],"t":0},{"d":0,"r":[200,204],"t":0},{"d":0,"r":[204,205],"t":0},{"d":0,"r":[205,206],"t":0},{"d":0,"r":[213,227],"t":0},{"d":0,"r":[213,219],"t":0},{"d":0,"r":[219,220],"t":0},{"d":0,"r":[220,224],"t":0},{"d":0,"r":[224,225],"t":0},{"d":0,"r":[225,226],"t":0},{"d":0,"r":[230,249],"t":0},{"d":0,"r":[230,233],"t":0},{"d":0,"r":[233,234],"t":0},{"d":0,"r":[234,239],"t":0},{"d":0,"r":[239,240],"t":0},{"d":0,"r":[240,244],"t":0},{"d":0,"r":[244,245],"t":0},{"d":0,"r":[245,248],"t":0},{"d":0,"r":[4,32],"t":0},{"d":72,"r":[7,27],"t":1},{"d":0,"r":[4,32],"t":0},{"d":74,"r":[7,27],"t":1},{"d":75,"r":[0,7],"t":1},{"d":74,"r":[7,27],"t":1},{"d":77,"r":[7,8],"t":1},{"d":74,"r":[7,27],"t":1},{"d":79,"r":[8,12],"t":1},{"d":74,"r":[7,27],"t":1},{"d":81,"r":[12,13],"t":1},{"d":74,"r":[7,27],"t":1},{"d":83,"r":[13,20],"t":1},{"d":0,"r":[4,32],"t":0},{"d":85,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/raw-block.json b/ts-packages/annotated-qmd/examples/raw-block.json index 5ca5eb303..92532c4ef 100644 --- a/ts-packages/annotated-qmd/examples/raw-block.json +++ b/ts-packages/annotated-qmd/examples/raw-block.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["raw-blocks",[],[]],[{"c":"Raw","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Blocks","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"Regular","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"paragraph.","s":7,"t":"Str"}],"s":4,"t":"Para"},{"c":["html","
\n

Raw HTML block

\n
"],"s":8,"t":"RawBlock"},{"c":["latex","\\begin{theorem}\nRaw LaTeX block\n\\end{theorem}"],"s":9,"t":"RawBlock"},{"c":[{"c":"Another","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"regular","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"paragraph.","s":15,"t":"Str"}],"s":10,"t":"Para"}],"meta":{"title":{"c":[{"c":"Raw","s":21,"t":"Str"},{"s":23,"t":"Space"},{"c":"Block","s":25,"t":"Str"},{"s":27,"t":"Space"},{"c":"Example","s":29,"t":"Str"}],"s":18,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,28,32,33,46,47,66,67,78,99,123,130,134,135,147,163,179,193,197,198,225],"name":"ts-packages/annotated-qmd/examples/raw-block.qmd","total_length":226}],"metaTopLevelKeySources":{"title":31},"p":[{"d":0,"r":[34,47],"t":0},{"d":0,"r":[36,39],"t":0},{"d":0,"r":[39,40],"t":0},{"d":0,"r":[40,46],"t":0},{"d":0,"r":[48,67],"t":0},{"d":0,"r":[48,55],"t":0},{"d":0,"r":[55,56],"t":0},{"d":0,"r":[56,66],"t":0},{"d":0,"r":[68,135],"t":0},{"d":0,"r":[136,198],"t":0},{"d":0,"r":[199,226],"t":0},{"d":0,"r":[199,206],"t":0},{"d":0,"r":[206,207],"t":0},{"d":0,"r":[207,214],"t":0},{"d":0,"r":[214,215],"t":0},{"d":0,"r":[215,225],"t":0},{"d":0,"r":[0,33],"t":0},{"d":16,"r":[4,28],"t":1},{"d":17,"r":[7,24],"t":1},{"d":16,"r":[4,28],"t":1},{"d":19,"r":[7,24],"t":1},{"d":20,"r":[0,3],"t":1},{"d":19,"r":[7,24],"t":1},{"d":22,"r":[3,4],"t":1},{"d":19,"r":[7,24],"t":1},{"d":24,"r":[4,9],"t":1},{"d":19,"r":[7,24],"t":1},{"d":26,"r":[9,10],"t":1},{"d":19,"r":[7,24],"t":1},{"d":28,"r":[10,17],"t":1},{"d":16,"r":[4,28],"t":1},{"d":30,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["raw-blocks",[],[]],[{"c":"Raw","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Blocks","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"Regular","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"paragraph.","s":7,"t":"Str"}],"s":4,"t":"Para"},{"c":["html","
\n

Raw HTML block

\n
"],"s":8,"t":"RawBlock"},{"c":["latex","\\begin{theorem}\nRaw LaTeX block\n\\end{theorem}"],"s":9,"t":"RawBlock"},{"c":[{"c":"Another","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"regular","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"paragraph.","s":15,"t":"Str"}],"s":10,"t":"Para"}],"meta":{"title":{"c":[{"c":"Raw","s":20,"t":"Str"},{"s":22,"t":"Space"},{"c":"Block","s":24,"t":"Str"},{"s":26,"t":"Space"},{"c":"Example","s":28,"t":"Str"}],"s":17,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,28,32,33,46,47,66,67,78,99,123,130,134,135,147,163,179,193,197,198,225],"name":"ts-packages/annotated-qmd/examples/raw-block.qmd","total_length":226}],"metaTopLevelKeySources":{"title":30},"p":[{"d":0,"r":[34,47],"t":0},{"d":0,"r":[36,39],"t":0},{"d":0,"r":[39,40],"t":0},{"d":0,"r":[40,46],"t":0},{"d":0,"r":[48,67],"t":0},{"d":0,"r":[48,55],"t":0},{"d":0,"r":[55,56],"t":0},{"d":0,"r":[56,66],"t":0},{"d":0,"r":[68,135],"t":0},{"d":0,"r":[136,198],"t":0},{"d":0,"r":[199,226],"t":0},{"d":0,"r":[199,206],"t":0},{"d":0,"r":[206,207],"t":0},{"d":0,"r":[207,214],"t":0},{"d":0,"r":[214,215],"t":0},{"d":0,"r":[215,225],"t":0},{"d":0,"r":[4,29],"t":0},{"d":16,"r":[7,24],"t":1},{"d":0,"r":[4,29],"t":0},{"d":18,"r":[7,24],"t":1},{"d":19,"r":[0,3],"t":1},{"d":18,"r":[7,24],"t":1},{"d":21,"r":[3,4],"t":1},{"d":18,"r":[7,24],"t":1},{"d":23,"r":[4,9],"t":1},{"d":18,"r":[7,24],"t":1},{"d":25,"r":[9,10],"t":1},{"d":18,"r":[7,24],"t":1},{"d":27,"r":[10,17],"t":1},{"d":0,"r":[4,29],"t":0},{"d":29,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/simple.json b/ts-packages/annotated-qmd/examples/simple.json index de0565692..7bf725988 100644 --- a/ts-packages/annotated-qmd/examples/simple.json +++ b/ts-packages/annotated-qmd/examples/simple.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["introduction",[],[]],[{"c":"Introduction","s":1,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"This","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"is","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"a","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"simple","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"Quarto","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"document","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"with","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"some","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":[{"c":"bold","s":20,"t":"Str"}],"s":19,"t":"Strong"},{"s":21,"t":"Space"},{"c":"and","s":22,"t":"Str"},{"s":23,"t":"Space"},{"c":[{"c":"italic","s":25,"t":"Str"}],"s":24,"t":"Emph"},{"s":26,"t":"Space"},{"c":"text.","s":27,"t":"Str"}],"s":2,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["code-example",[],[]],[{"c":"Code","s":29,"t":"Str"},{"s":30,"t":"Space"},{"c":"Example","s":31,"t":"Str"}]],"s":28,"t":"Header"},{"a":{"classes":[33],"id":null,"kvs":[]},"c":[["",["python"],[]],"def hello():\n print(\"Hello, World!\")"],"s":32,"t":"CodeBlock"},{"c":[[{"c":[{"c":"Item","s":36,"t":"Str"},{"s":37,"t":"Space"},{"c":"1","s":38,"t":"Str"}],"s":35,"t":"Plain"}],[{"c":[{"c":"Item","s":40,"t":"Str"},{"s":41,"t":"Space"},{"c":"2","s":42,"t":"Str"}],"s":39,"t":"Plain"}],[{"c":[{"c":"Item","s":44,"t":"Str"},{"s":45,"t":"Space"},{"c":"3","s":46,"t":"Str"}],"s":43,"t":"Plain"}]],"s":34,"t":"BulletList"}],"meta":{"author":{"c":[{"c":"Test","s":52,"t":"Str"},{"s":54,"t":"Space"},{"c":"Author","s":56,"t":"Str"}],"s":49,"t":"MetaInlines"},"title":{"c":[{"c":"Simple","s":61,"t":"Str"},{"s":63,"t":"Space"},{"c":"Example","s":65,"t":"Str"}],"s":58,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,25,45,49,50,65,66,137,138,154,155,165,178,205,209,210,219,228,237],"name":"ts-packages/annotated-qmd/examples/simple.qmd","total_length":238}],"metaTopLevelKeySources":{"author":67,"title":69},"p":[{"d":0,"r":[51,66],"t":0},{"d":0,"r":[53,65],"t":0},{"d":0,"r":[67,138],"t":0},{"d":0,"r":[67,71],"t":0},{"d":0,"r":[71,72],"t":0},{"d":0,"r":[72,74],"t":0},{"d":0,"r":[74,75],"t":0},{"d":0,"r":[75,76],"t":0},{"d":0,"r":[76,77],"t":0},{"d":0,"r":[77,83],"t":0},{"d":0,"r":[83,84],"t":0},{"d":0,"r":[84,90],"t":0},{"d":0,"r":[90,91],"t":0},{"d":0,"r":[91,99],"t":0},{"d":0,"r":[99,100],"t":0},{"d":0,"r":[100,104],"t":0},{"d":0,"r":[104,105],"t":0},{"d":0,"r":[105,109],"t":0},{"d":0,"r":[109,110],"t":0},{"d":0,"r":[110,118],"t":0},{"d":0,"r":[112,116],"t":0},{"d":0,"r":[118,119],"t":0},{"d":0,"r":[119,122],"t":0},{"d":0,"r":[122,123],"t":0},{"d":0,"r":[123,131],"t":0},{"d":0,"r":[124,130],"t":0},{"d":0,"r":[131,132],"t":0},{"d":0,"r":[132,137],"t":0},{"d":0,"r":[139,155],"t":0},{"d":0,"r":[142,146],"t":0},{"d":0,"r":[146,147],"t":0},{"d":0,"r":[147,154],"t":0},{"d":0,"r":[156,210],"t":0},{"d":0,"r":[159,165],"t":0},{"d":0,"r":[211,238],"t":0},{"d":0,"r":[213,220],"t":0},{"d":0,"r":[213,217],"t":0},{"d":0,"r":[217,218],"t":0},{"d":0,"r":[218,219],"t":0},{"d":0,"r":[222,229],"t":0},{"d":0,"r":[222,226],"t":0},{"d":0,"r":[226,227],"t":0},{"d":0,"r":[227,228],"t":0},{"d":0,"r":[231,238],"t":0},{"d":0,"r":[231,235],"t":0},{"d":0,"r":[235,236],"t":0},{"d":0,"r":[236,237],"t":0},{"d":0,"r":[0,50],"t":0},{"d":47,"r":[4,45],"t":1},{"d":48,"r":[30,41],"t":1},{"d":47,"r":[4,45],"t":1},{"d":50,"r":[30,41],"t":1},{"d":51,"r":[0,4],"t":1},{"d":50,"r":[30,41],"t":1},{"d":53,"r":[4,5],"t":1},{"d":50,"r":[30,41],"t":1},{"d":55,"r":[5,11],"t":1},{"d":47,"r":[4,45],"t":1},{"d":57,"r":[7,21],"t":1},{"d":47,"r":[4,45],"t":1},{"d":59,"r":[7,21],"t":1},{"d":60,"r":[0,6],"t":1},{"d":59,"r":[7,21],"t":1},{"d":62,"r":[6,7],"t":1},{"d":59,"r":[7,21],"t":1},{"d":64,"r":[7,14],"t":1},{"d":47,"r":[4,45],"t":1},{"d":66,"r":[22,28],"t":1},{"d":47,"r":[4,45],"t":1},{"d":68,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["introduction",[],[]],[{"c":"Introduction","s":1,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"This","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"is","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"a","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"simple","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"Quarto","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"document","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"with","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"some","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":[{"c":"bold","s":20,"t":"Str"}],"s":19,"t":"Strong"},{"s":21,"t":"Space"},{"c":"and","s":22,"t":"Str"},{"s":23,"t":"Space"},{"c":[{"c":"italic","s":25,"t":"Str"}],"s":24,"t":"Emph"},{"s":26,"t":"Space"},{"c":"text.","s":27,"t":"Str"}],"s":2,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["code-example",[],[]],[{"c":"Code","s":29,"t":"Str"},{"s":30,"t":"Space"},{"c":"Example","s":31,"t":"Str"}]],"s":28,"t":"Header"},{"a":{"classes":[33],"id":null,"kvs":[]},"c":[["",["python"],[]],"def hello():\n print(\"Hello, World!\")"],"s":32,"t":"CodeBlock"},{"c":[[{"c":[{"c":"Item","s":36,"t":"Str"},{"s":37,"t":"Space"},{"c":"1","s":38,"t":"Str"}],"s":35,"t":"Plain"}],[{"c":[{"c":"Item","s":40,"t":"Str"},{"s":41,"t":"Space"},{"c":"2","s":42,"t":"Str"}],"s":39,"t":"Plain"}],[{"c":[{"c":"Item","s":44,"t":"Str"},{"s":45,"t":"Space"},{"c":"3","s":46,"t":"Str"}],"s":43,"t":"Plain"}]],"s":34,"t":"BulletList"}],"meta":{"author":{"c":[{"c":"Test","s":51,"t":"Str"},{"s":53,"t":"Space"},{"c":"Author","s":55,"t":"Str"}],"s":48,"t":"MetaInlines"},"title":{"c":[{"c":"Simple","s":60,"t":"Str"},{"s":62,"t":"Space"},{"c":"Example","s":64,"t":"Str"}],"s":57,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,25,45,49,50,65,66,137,138,154,155,165,178,205,209,210,219,228,237],"name":"ts-packages/annotated-qmd/examples/simple.qmd","total_length":238}],"metaTopLevelKeySources":{"author":66,"title":68},"p":[{"d":0,"r":[51,66],"t":0},{"d":0,"r":[53,65],"t":0},{"d":0,"r":[67,138],"t":0},{"d":0,"r":[67,71],"t":0},{"d":0,"r":[71,72],"t":0},{"d":0,"r":[72,74],"t":0},{"d":0,"r":[74,75],"t":0},{"d":0,"r":[75,76],"t":0},{"d":0,"r":[76,77],"t":0},{"d":0,"r":[77,83],"t":0},{"d":0,"r":[83,84],"t":0},{"d":0,"r":[84,90],"t":0},{"d":0,"r":[90,91],"t":0},{"d":0,"r":[91,99],"t":0},{"d":0,"r":[99,100],"t":0},{"d":0,"r":[100,104],"t":0},{"d":0,"r":[104,105],"t":0},{"d":0,"r":[105,109],"t":0},{"d":0,"r":[109,110],"t":0},{"d":0,"r":[110,118],"t":0},{"d":0,"r":[112,116],"t":0},{"d":0,"r":[118,119],"t":0},{"d":0,"r":[119,122],"t":0},{"d":0,"r":[122,123],"t":0},{"d":0,"r":[123,131],"t":0},{"d":0,"r":[124,130],"t":0},{"d":0,"r":[131,132],"t":0},{"d":0,"r":[132,137],"t":0},{"d":0,"r":[139,155],"t":0},{"d":0,"r":[142,146],"t":0},{"d":0,"r":[146,147],"t":0},{"d":0,"r":[147,154],"t":0},{"d":0,"r":[156,210],"t":0},{"d":0,"r":[159,165],"t":0},{"d":0,"r":[211,238],"t":0},{"d":0,"r":[213,220],"t":0},{"d":0,"r":[213,217],"t":0},{"d":0,"r":[217,218],"t":0},{"d":0,"r":[218,219],"t":0},{"d":0,"r":[222,229],"t":0},{"d":0,"r":[222,226],"t":0},{"d":0,"r":[226,227],"t":0},{"d":0,"r":[227,228],"t":0},{"d":0,"r":[231,238],"t":0},{"d":0,"r":[231,235],"t":0},{"d":0,"r":[235,236],"t":0},{"d":0,"r":[236,237],"t":0},{"d":0,"r":[4,46],"t":0},{"d":47,"r":[30,41],"t":1},{"d":0,"r":[4,46],"t":0},{"d":49,"r":[30,41],"t":1},{"d":50,"r":[0,4],"t":1},{"d":49,"r":[30,41],"t":1},{"d":52,"r":[4,5],"t":1},{"d":49,"r":[30,41],"t":1},{"d":54,"r":[5,11],"t":1},{"d":0,"r":[4,46],"t":0},{"d":56,"r":[7,21],"t":1},{"d":0,"r":[4,46],"t":0},{"d":58,"r":[7,21],"t":1},{"d":59,"r":[0,6],"t":1},{"d":58,"r":[7,21],"t":1},{"d":61,"r":[6,7],"t":1},{"d":58,"r":[7,21],"t":1},{"d":63,"r":[7,14],"t":1},{"d":0,"r":[4,46],"t":0},{"d":65,"r":[22,28],"t":1},{"d":0,"r":[4,46],"t":0},{"d":67,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/table.json b/ts-packages/annotated-qmd/examples/table.json index 049bb429a..6a58bebce 100644 --- a/ts-packages/annotated-qmd/examples/table.json +++ b/ts-packages/annotated-qmd/examples/table.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["tables",[],[]],[{"c":"Tables","s":1,"t":"Str"}]],"s":0,"t":"Header"},{"a":{"classes":[],"id":3,"kvs":[]},"bodiesS":[{"a":{"classes":[],"id":null,"kvs":[]},"bodyS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":4},{"a":{"classes":[],"id":null,"kvs":[]},"s":5},{"a":{"classes":[],"id":null,"kvs":[]},"s":6}],"s":7},{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":8},{"a":{"classes":[],"id":null,"kvs":[]},"s":9},{"a":{"classes":[],"id":null,"kvs":[]},"s":10}],"s":11}],"headS":[],"s":12}],"c":[["tbl-example",[],[]],[null,[{"c":[{"c":"Example","s":14,"t":"Str"},{"s":15,"t":"Space"},{"c":"table","s":16,"t":"Str"}],"s":13,"t":"Plain"}]],[[{"t":"AlignDefault"},{"t":"ColWidthDefault"}],[{"t":"AlignDefault"},{"t":"ColWidthDefault"}],[{"t":"AlignDefault"},{"t":"ColWidthDefault"}]],[["",[],[]],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Column","s":18,"t":"Str"},{"s":19,"t":"Space"},{"c":"1","s":20,"t":"Str"}],"s":17,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Column","s":22,"t":"Str"},{"s":23,"t":"Space"},{"c":"2","s":24,"t":"Str"}],"s":21,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Column","s":26,"t":"Str"},{"s":27,"t":"Space"},{"c":"3","s":28,"t":"Str"}],"s":25,"t":"Plain"}]]]]]],[[["",[],[]],0,[],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"A","s":30,"t":"Str"}],"s":29,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"B","s":32,"t":"Str"}],"s":31,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"C","s":34,"t":"Str"}],"s":33,"t":"Plain"}]]]],[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"D","s":36,"t":"Str"}],"s":35,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"E","s":38,"t":"Str"}],"s":37,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"F","s":40,"t":"Str"}],"s":39,"t":"Plain"}]]]]]]],[["",[],[]],[]]],"captionS":41,"footS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[],"s":42},"headS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":43},{"a":{"classes":[],"id":null,"kvs":[]},"s":44},{"a":{"classes":[],"id":null,"kvs":[]},"s":45}],"s":46}],"s":47},"s":2,"t":"Table"}],"meta":{"title":{"c":[{"c":"Table","s":53,"t":"Str"},{"s":55,"t":"Space"},{"c":"Example","s":57,"t":"Str"}],"s":50,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,24,28,29,38,39,74,109,144,179,180,211],"name":"ts-packages/annotated-qmd/examples/table.qmd","total_length":212}],"metaTopLevelKeySources":{"title":59},"p":[{"d":0,"r":[30,39],"t":0},{"d":0,"r":[32,38],"t":0},{"d":0,"r":[40,212],"t":0},{"d":0,"r":[198,210],"t":0},{"d":0,"r":[112,113],"t":0},{"d":0,"r":[123,124],"t":0},{"d":0,"r":[134,135],"t":0},{"d":0,"r":[110,144],"t":0},{"d":0,"r":[147,148],"t":0},{"d":0,"r":[158,159],"t":0},{"d":0,"r":[169,170],"t":0},{"d":0,"r":[145,179],"t":0},{"d":0,"r":[40,180],"t":0},{"d":0,"r":[181,212],"t":0},{"d":0,"r":[183,190],"t":0},{"d":0,"r":[190,191],"t":0},{"d":0,"r":[191,196],"t":0},{"d":0,"r":[42,50],"t":0},{"d":0,"r":[42,48],"t":0},{"d":0,"r":[48,49],"t":0},{"d":0,"r":[49,50],"t":0},{"d":0,"r":[53,61],"t":0},{"d":0,"r":[53,59],"t":0},{"d":0,"r":[59,60],"t":0},{"d":0,"r":[60,61],"t":0},{"d":0,"r":[64,72],"t":0},{"d":0,"r":[64,70],"t":0},{"d":0,"r":[70,71],"t":0},{"d":0,"r":[71,72],"t":0},{"d":0,"r":[112,113],"t":0},{"d":0,"r":[112,113],"t":0},{"d":0,"r":[123,124],"t":0},{"d":0,"r":[123,124],"t":0},{"d":0,"r":[134,135],"t":0},{"d":0,"r":[134,135],"t":0},{"d":0,"r":[147,148],"t":0},{"d":0,"r":[147,148],"t":0},{"d":0,"r":[158,159],"t":0},{"d":0,"r":[158,159],"t":0},{"d":0,"r":[169,170],"t":0},{"d":0,"r":[169,170],"t":0},{"d":0,"r":[181,212],"t":0},{"d":0,"r":[40,180],"t":0},{"d":0,"r":[42,50],"t":0},{"d":0,"r":[53,61],"t":0},{"d":0,"r":[64,72],"t":0},{"d":0,"r":[40,74],"t":0},{"d":0,"r":[40,180],"t":0},{"d":0,"r":[0,29],"t":0},{"d":48,"r":[4,24],"t":1},{"d":49,"r":[7,20],"t":1},{"d":48,"r":[4,24],"t":1},{"d":51,"r":[7,20],"t":1},{"d":52,"r":[0,5],"t":1},{"d":51,"r":[7,20],"t":1},{"d":54,"r":[5,6],"t":1},{"d":51,"r":[7,20],"t":1},{"d":56,"r":[6,13],"t":1},{"d":48,"r":[4,24],"t":1},{"d":58,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["tables",[],[]],[{"c":"Tables","s":1,"t":"Str"}]],"s":0,"t":"Header"},{"a":{"classes":[],"id":3,"kvs":[]},"bodiesS":[{"a":{"classes":[],"id":null,"kvs":[]},"bodyS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":4},{"a":{"classes":[],"id":null,"kvs":[]},"s":5},{"a":{"classes":[],"id":null,"kvs":[]},"s":6}],"s":7},{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":8},{"a":{"classes":[],"id":null,"kvs":[]},"s":9},{"a":{"classes":[],"id":null,"kvs":[]},"s":10}],"s":11}],"headS":[],"s":12}],"c":[["tbl-example",[],[]],[null,[{"c":[{"c":"Example","s":14,"t":"Str"},{"s":15,"t":"Space"},{"c":"table","s":16,"t":"Str"}],"s":13,"t":"Plain"}]],[[{"t":"AlignDefault"},{"t":"ColWidthDefault"}],[{"t":"AlignDefault"},{"t":"ColWidthDefault"}],[{"t":"AlignDefault"},{"t":"ColWidthDefault"}]],[["",[],[]],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Column","s":18,"t":"Str"},{"s":19,"t":"Space"},{"c":"1","s":20,"t":"Str"}],"s":17,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Column","s":22,"t":"Str"},{"s":23,"t":"Space"},{"c":"2","s":24,"t":"Str"}],"s":21,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"Column","s":26,"t":"Str"},{"s":27,"t":"Space"},{"c":"3","s":28,"t":"Str"}],"s":25,"t":"Plain"}]]]]]],[[["",[],[]],0,[],[[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"A","s":30,"t":"Str"}],"s":29,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"B","s":32,"t":"Str"}],"s":31,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"C","s":34,"t":"Str"}],"s":33,"t":"Plain"}]]]],[["",[],[]],[[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"D","s":36,"t":"Str"}],"s":35,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"E","s":38,"t":"Str"}],"s":37,"t":"Plain"}]],[["",[],[]],{"t":"AlignDefault"},1,1,[{"c":[{"c":"F","s":40,"t":"Str"}],"s":39,"t":"Plain"}]]]]]]],[["",[],[]],[]]],"captionS":41,"footS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[],"s":42},"headS":{"a":{"classes":[],"id":null,"kvs":[]},"rowsS":[{"a":{"classes":[],"id":null,"kvs":[]},"cellsS":[{"a":{"classes":[],"id":null,"kvs":[]},"s":43},{"a":{"classes":[],"id":null,"kvs":[]},"s":44},{"a":{"classes":[],"id":null,"kvs":[]},"s":45}],"s":46}],"s":47},"s":2,"t":"Table"}],"meta":{"title":{"c":[{"c":"Table","s":52,"t":"Str"},{"s":54,"t":"Space"},{"c":"Example","s":56,"t":"Str"}],"s":49,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,24,28,29,38,39,74,109,144,179,180,211],"name":"ts-packages/annotated-qmd/examples/table.qmd","total_length":212}],"metaTopLevelKeySources":{"title":58},"p":[{"d":0,"r":[30,39],"t":0},{"d":0,"r":[32,38],"t":0},{"d":0,"r":[40,212],"t":0},{"d":0,"r":[198,210],"t":0},{"d":0,"r":[112,113],"t":0},{"d":0,"r":[123,124],"t":0},{"d":0,"r":[134,135],"t":0},{"d":0,"r":[110,144],"t":0},{"d":0,"r":[147,148],"t":0},{"d":0,"r":[158,159],"t":0},{"d":0,"r":[169,170],"t":0},{"d":0,"r":[145,179],"t":0},{"d":0,"r":[40,180],"t":0},{"d":0,"r":[181,212],"t":0},{"d":0,"r":[183,190],"t":0},{"d":0,"r":[190,191],"t":0},{"d":0,"r":[191,196],"t":0},{"d":0,"r":[42,50],"t":0},{"d":0,"r":[42,48],"t":0},{"d":0,"r":[48,49],"t":0},{"d":0,"r":[49,50],"t":0},{"d":0,"r":[53,61],"t":0},{"d":0,"r":[53,59],"t":0},{"d":0,"r":[59,60],"t":0},{"d":0,"r":[60,61],"t":0},{"d":0,"r":[64,72],"t":0},{"d":0,"r":[64,70],"t":0},{"d":0,"r":[70,71],"t":0},{"d":0,"r":[71,72],"t":0},{"d":0,"r":[112,113],"t":0},{"d":0,"r":[112,113],"t":0},{"d":0,"r":[123,124],"t":0},{"d":0,"r":[123,124],"t":0},{"d":0,"r":[134,135],"t":0},{"d":0,"r":[134,135],"t":0},{"d":0,"r":[147,148],"t":0},{"d":0,"r":[147,148],"t":0},{"d":0,"r":[158,159],"t":0},{"d":0,"r":[158,159],"t":0},{"d":0,"r":[169,170],"t":0},{"d":0,"r":[169,170],"t":0},{"d":0,"r":[181,212],"t":0},{"d":0,"r":[40,180],"t":0},{"d":0,"r":[42,50],"t":0},{"d":0,"r":[53,61],"t":0},{"d":0,"r":[64,72],"t":0},{"d":0,"r":[40,74],"t":0},{"d":0,"r":[40,180],"t":0},{"d":0,"r":[4,25],"t":0},{"d":48,"r":[7,20],"t":1},{"d":0,"r":[4,25],"t":0},{"d":50,"r":[7,20],"t":1},{"d":51,"r":[0,5],"t":1},{"d":50,"r":[7,20],"t":1},{"d":53,"r":[5,6],"t":1},{"d":50,"r":[7,20],"t":1},{"d":55,"r":[6,13],"t":1},{"d":0,"r":[4,25],"t":0},{"d":57,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/tutorial.json b/ts-packages/annotated-qmd/examples/tutorial.json index 101b95778..06c97f088 100644 --- a/ts-packages/annotated-qmd/examples/tutorial.json +++ b/ts-packages/annotated-qmd/examples/tutorial.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["overview",[],[]],[{"c":"Overview","s":1,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"This","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"tutorial","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"teaches","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"you","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"to","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"build","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"a","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"simple","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"REST","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"API.","s":21,"t":"Str"},{"s":22,"t":"Space"},{"c":"By","s":23,"t":"Str"},{"s":24,"t":"Space"},{"c":"the","s":25,"t":"Str"},{"s":26,"t":"Space"},{"c":"end,","s":27,"t":"Str"},{"s":28,"t":"Space"},{"c":"you’ll","s":29,"t":"Str"},{"s":30,"t":"Space"},{"c":"have","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"a","s":33,"t":"Str"},{"s":34,"t":"Space"},{"c":"working","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"API","s":37,"t":"Str"},{"s":38,"t":"Space"},{"c":"with","s":39,"t":"Str"},{"s":40,"t":"Space"},{"c":"authentication","s":41,"t":"Str"},{"s":42,"t":"Space"},{"c":"and","s":43,"t":"Str"},{"s":44,"t":"Space"},{"c":"database","s":45,"t":"Str"},{"s":46,"t":"Space"},{"c":"integration.","s":47,"t":"Str"}],"s":2,"t":"Para"},{"a":{"classes":[49],"id":null,"kvs":[]},"c":[["",["callout-note"],[]],[{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["prerequisites",[],[]],[{"c":"Prerequisites","s":51,"t":"Str"}]],"s":50,"t":"Header"},{"c":[{"c":"Before","s":53,"t":"Str"},{"s":54,"t":"Space"},{"c":"starting,","s":55,"t":"Str"},{"s":56,"t":"Space"},{"c":"ensure","s":57,"t":"Str"},{"s":58,"t":"Space"},{"c":"you","s":59,"t":"Str"},{"s":60,"t":"Space"},{"c":"have:","s":63,"t":"Str"}],"s":52,"t":"Para"},{"c":[[{"c":[{"c":"Python","s":66,"t":"Str"},{"s":67,"t":"Space"},{"c":"3.8","s":68,"t":"Str"},{"s":69,"t":"Space"},{"c":"or","s":70,"t":"Str"},{"s":71,"t":"Space"},{"c":"higher","s":72,"t":"Str"}],"s":65,"t":"Plain"}],[{"c":[{"c":"Basic","s":74,"t":"Str"},{"s":75,"t":"Space"},{"c":"understanding","s":76,"t":"Str"},{"s":77,"t":"Space"},{"c":"of","s":78,"t":"Str"},{"s":79,"t":"Space"},{"c":"HTTP","s":80,"t":"Str"}],"s":73,"t":"Plain"}],[{"c":[{"c":"A","s":82,"t":"Str"},{"s":83,"t":"Space"},{"c":"code","s":84,"t":"Str"},{"s":85,"t":"Space"},{"c":"editor","s":86,"t":"Str"}],"s":81,"t":"Plain"}]],"s":64,"t":"BulletList"}]],"s":48,"t":"Div"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["step-1-project-setup",[],[]],[{"c":"Step","s":88,"t":"Str"},{"s":89,"t":"Space"},{"c":"1:","s":92,"t":"Str"},{"s":93,"t":"Space"},{"c":"Project","s":94,"t":"Str"},{"s":95,"t":"Space"},{"c":"Setup","s":96,"t":"Str"}]],"s":87,"t":"Header"},{"c":[{"c":"Create","s":98,"t":"Str"},{"s":99,"t":"Space"},{"c":"a","s":100,"t":"Str"},{"s":101,"t":"Space"},{"c":"new","s":102,"t":"Str"},{"s":103,"t":"Space"},{"c":"directory","s":104,"t":"Str"},{"s":105,"t":"Space"},{"c":"for","s":106,"t":"Str"},{"s":107,"t":"Space"},{"c":"your","s":108,"t":"Str"},{"s":109,"t":"Space"},{"c":"project:","s":112,"t":"Str"}],"s":97,"t":"Para"},{"a":{"classes":[114],"id":null,"kvs":[]},"c":[["",["bash"],[]],"mkdir my-api\ncd my-api\npython -m venv venv\nsource venv/bin/activate # On Windows: venv\\Scripts\\activate"],"s":113,"t":"CodeBlock"},{"a":{"classes":[116],"id":null,"kvs":[]},"c":[["",["callout-tip"],[]],[{"a":{"classes":[],"id":null,"kvs":[]},"c":[3,["virtual-environments",[],[]],[{"c":"Virtual","s":118,"t":"Str"},{"s":119,"t":"Space"},{"c":"Environments","s":120,"t":"Str"}]],"s":117,"t":"Header"},{"c":[{"c":"Always","s":122,"t":"Str"},{"s":123,"t":"Space"},{"c":"use","s":124,"t":"Str"},{"s":125,"t":"Space"},{"c":"a","s":126,"t":"Str"},{"s":127,"t":"Space"},{"c":"virtual","s":128,"t":"Str"},{"s":129,"t":"Space"},{"c":"environment","s":130,"t":"Str"},{"s":131,"t":"Space"},{"c":"to","s":132,"t":"Str"},{"s":133,"t":"Space"},{"c":"isolate","s":134,"t":"Str"},{"s":135,"t":"Space"},{"c":"your","s":136,"t":"Str"},{"s":137,"t":"Space"},{"c":"project","s":138,"t":"Str"},{"s":139,"t":"Space"},{"c":"dependencies.","s":140,"t":"Str"},{"s":141,"t":"Space"},{"c":"This","s":142,"t":"Str"},{"s":143,"t":"Space"},{"c":"prevents","s":144,"t":"Str"},{"s":145,"t":"Space"},{"c":"conflicts","s":146,"t":"Str"},{"s":147,"t":"Space"},{"c":"between","s":148,"t":"Str"},{"s":149,"t":"Space"},{"c":"different","s":150,"t":"Str"},{"s":151,"t":"Space"},{"c":"projects.","s":152,"t":"Str"}],"s":121,"t":"Para"},{"a":{"classes":[154],"id":null,"kvs":[]},"c":[["",["callout-warning"],[]],[{"c":[{"c":"Make","s":156,"t":"Str"},{"s":157,"t":"Space"},{"c":"sure","s":158,"t":"Str"},{"s":159,"t":"Space"},{"c":"to","s":160,"t":"Str"},{"s":161,"t":"Space"},{"c":"activate","s":162,"t":"Str"},{"s":163,"t":"Space"},{"c":"the","s":164,"t":"Str"},{"s":165,"t":"Space"},{"c":"virtual","s":166,"t":"Str"},{"s":167,"t":"Space"},{"c":"environment","s":168,"t":"Str"},{"s":169,"t":"Space"},{"c":"before","s":170,"t":"Str"},{"s":171,"t":"Space"},{"c":"installing","s":172,"t":"Str"},{"s":173,"t":"Space"},{"c":"packages!","s":174,"t":"Str"}],"s":155,"t":"Para"}]],"s":153,"t":"Div"}]],"s":115,"t":"Div"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["step-2-install-dependencies",[],[]],[{"c":"Step","s":176,"t":"Str"},{"s":177,"t":"Space"},{"c":"2:","s":180,"t":"Str"},{"s":181,"t":"Space"},{"c":"Install","s":182,"t":"Str"},{"s":183,"t":"Space"},{"c":"Dependencies","s":184,"t":"Str"}]],"s":175,"t":"Header"},{"c":[{"c":"Install","s":186,"t":"Str"},{"s":187,"t":"Space"},{"c":"the","s":188,"t":"Str"},{"s":189,"t":"Space"},{"c":"required","s":190,"t":"Str"},{"s":191,"t":"Space"},{"c":"packages:","s":194,"t":"Str"}],"s":185,"t":"Para"},{"a":{"classes":[196],"id":null,"kvs":[]},"c":[["",["bash"],[]],"pip install fastapi uvicorn sqlalchemy"],"s":195,"t":"CodeBlock"},{"c":[{"c":"Create","s":198,"t":"Str"},{"s":199,"t":"Space"},{"c":"a","s":200,"t":"Str"},{"s":201,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"requirements.txt"],"s":202,"t":"Code"},{"s":203,"t":"Space"},{"c":"file:","s":206,"t":"Str"}],"s":197,"t":"Para"},{"a":{"classes":[208],"id":null,"kvs":[]},"c":[["",["txt"],[]],"fastapi==0.104.0\nuvicorn==0.24.0\nsqlalchemy==2.0.23"],"s":207,"t":"CodeBlock"},{"a":{"classes":[],"id":210,"kvs":[]},"c":[["fig-structure",[],[]],[null,[{"c":[{"c":"Project","s":212,"t":"Str"},{"s":213,"t":"Space"},{"c":"structure","s":214,"t":"Str"},{"s":215,"t":"Space"},{"c":"visualization","s":216,"t":"Str"}],"s":211,"t":"Plain"}]],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"Project","s":219,"t":"Str"},{"s":220,"t":"Space"},{"c":"structure","s":221,"t":"Str"},{"s":222,"t":"Space"},{"c":"visualization","s":223,"t":"Str"}],["structure.png",""]],"s":218,"t":"Image","targetS":[224,null]}],"s":217,"t":"Plain"}]],"captionS":225,"s":209,"t":"Figure"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["step-3-create-the-api",[],[]],[{"c":"Step","s":227,"t":"Str"},{"s":228,"t":"Space"},{"c":"3:","s":231,"t":"Str"},{"s":232,"t":"Space"},{"c":"Create","s":233,"t":"Str"},{"s":234,"t":"Space"},{"c":"the","s":235,"t":"Str"},{"s":236,"t":"Space"},{"c":"API","s":237,"t":"Str"}]],"s":226,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["define-data-models",[],[]],[{"c":"Define","s":239,"t":"Str"},{"s":240,"t":"Space"},{"c":"Data","s":241,"t":"Str"},{"s":242,"t":"Space"},{"c":"Models","s":243,"t":"Str"}]],"s":238,"t":"Header"},{"c":[{"c":"Create","s":245,"t":"Str"},{"s":246,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"models.py"],"s":247,"t":"Code"},{"c":":","s":248,"t":"Str"}],"s":244,"t":"Para"},{"a":{"classes":[250],"id":null,"kvs":[]},"c":[["",["python"],[]],"from sqlalchemy import Column, Integer, String, create_engine\nfrom sqlalchemy.ext.declarative import declarative_base\n\nBase = declarative_base()\n\nclass User(Base):\n __tablename__ = \"users\"\n\n id = Column(Integer, primary_key=True)\n username = Column(String, unique=True)\n email = Column(String)"],"s":249,"t":"CodeBlock"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["create-api-endpoints",[],[]],[{"c":"Create","s":252,"t":"Str"},{"s":253,"t":"Space"},{"c":"API","s":254,"t":"Str"},{"s":255,"t":"Space"},{"c":"Endpoints","s":256,"t":"Str"}]],"s":251,"t":"Header"},{"c":[{"c":"Create","s":258,"t":"Str"},{"s":259,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"main.py"],"s":260,"t":"Code"},{"c":":","s":261,"t":"Str"}],"s":257,"t":"Para"},{"a":{"classes":[263],"id":null,"kvs":[]},"c":[["",["python"],[]],"from fastapi import FastAPI, HTTPException\nfrom typing import List\n\napp = FastAPI()\n\n@app.get(\"/\")\ndef read_root():\n return {\"message\": \"Welcome to the API\"}\n\n@app.get(\"/users\")\ndef list_users():\n return [\n {\"id\": 1, \"username\": \"alice\"},\n {\"id\": 2, \"username\": \"bob\"}\n ]"],"s":262,"t":"CodeBlock"},{"a":{"classes":[265],"id":null,"kvs":[]},"c":[["",["callout-important"],[]],[{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["security-considerations",[],[]],[{"c":"Security","s":267,"t":"Str"},{"s":268,"t":"Space"},{"c":"Considerations","s":269,"t":"Str"}]],"s":266,"t":"Header"},{"c":[{"c":"In","s":271,"t":"Str"},{"s":272,"t":"Space"},{"c":"production,","s":273,"t":"Str"},{"s":274,"t":"Space"},{"c":"always:","s":277,"t":"Str"}],"s":270,"t":"Para"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Use","s":280,"t":"Str"},{"s":281,"t":"Space"},{"c":"environment","s":282,"t":"Str"},{"s":283,"t":"Space"},{"c":"variables","s":284,"t":"Str"},{"s":285,"t":"Space"},{"c":"for","s":286,"t":"Str"},{"s":287,"t":"Space"},{"c":"secrets","s":288,"t":"Str"}],"s":279,"t":"Plain"}],[{"c":[{"c":"Implement","s":290,"t":"Str"},{"s":291,"t":"Space"},{"c":"proper","s":292,"t":"Str"},{"s":293,"t":"Space"},{"c":"authentication","s":294,"t":"Str"}],"s":289,"t":"Plain"}],[{"c":[{"c":"Validate","s":296,"t":"Str"},{"s":297,"t":"Space"},{"c":"all","s":298,"t":"Str"},{"s":299,"t":"Space"},{"c":"input","s":300,"t":"Str"},{"s":301,"t":"Space"},{"c":"data","s":302,"t":"Str"}],"s":295,"t":"Plain"}],[{"c":[{"c":"Use","s":304,"t":"Str"},{"s":305,"t":"Space"},{"c":"HTTPS","s":306,"t":"Str"}],"s":303,"t":"Plain"}]]],"s":278,"t":"OrderedList"}]],"s":264,"t":"Div"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["step-4-run-the-server",[],[]],[{"c":"Step","s":308,"t":"Str"},{"s":309,"t":"Space"},{"c":"4:","s":312,"t":"Str"},{"s":313,"t":"Space"},{"c":"Run","s":314,"t":"Str"},{"s":315,"t":"Space"},{"c":"the","s":316,"t":"Str"},{"s":317,"t":"Space"},{"c":"Server","s":318,"t":"Str"}]],"s":307,"t":"Header"},{"c":[{"c":"Start","s":320,"t":"Str"},{"s":321,"t":"Space"},{"c":"your","s":322,"t":"Str"},{"s":323,"t":"Space"},{"c":"API","s":324,"t":"Str"},{"s":325,"t":"Space"},{"c":"server:","s":328,"t":"Str"}],"s":319,"t":"Para"},{"a":{"classes":[330],"id":null,"kvs":[]},"c":[["",["bash"],[]],"uvicorn main:app --reload"],"s":329,"t":"CodeBlock"},{"c":[{"c":"Visit","s":332,"t":"Str"},{"s":333,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"http://localhost:8000/docs"],"s":334,"t":"Code"},{"s":335,"t":"Space"},{"c":"to","s":336,"t":"Str"},{"s":337,"t":"Space"},{"c":"see","s":338,"t":"Str"},{"s":339,"t":"Space"},{"c":"the","s":340,"t":"Str"},{"s":341,"t":"Space"},{"c":"interactive","s":342,"t":"Str"},{"s":343,"t":"Space"},{"c":"API","s":344,"t":"Str"},{"s":345,"t":"Space"},{"c":"documentation.","s":346,"t":"Str"}],"s":331,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["step-5-testing",[],[]],[{"c":"Step","s":348,"t":"Str"},{"s":349,"t":"Space"},{"c":"5:","s":352,"t":"Str"},{"s":353,"t":"Space"},{"c":"Testing","s":354,"t":"Str"}]],"s":347,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["manual-testing",[],[]],[{"c":"Manual","s":356,"t":"Str"},{"s":357,"t":"Space"},{"c":"Testing","s":358,"t":"Str"}]],"s":355,"t":"Header"},{"c":[{"c":"Test","s":360,"t":"Str"},{"s":361,"t":"Space"},{"c":"your","s":362,"t":"Str"},{"s":363,"t":"Space"},{"c":"endpoints","s":364,"t":"Str"},{"s":365,"t":"Space"},{"c":"using","s":366,"t":"Str"},{"s":367,"t":"Space"},{"c":"curl:","s":370,"t":"Str"}],"s":359,"t":"Para"},{"a":{"classes":[372],"id":null,"kvs":[]},"c":[["",["bash"],[]],"curl http://localhost:8000/users"],"s":371,"t":"CodeBlock"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["automated-tests",[],[]],[{"c":"Automated","s":374,"t":"Str"},{"s":375,"t":"Space"},{"c":"Tests","s":376,"t":"Str"}]],"s":373,"t":"Header"},{"c":[{"c":"Create","s":378,"t":"Str"},{"s":379,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"test_main.py"],"s":380,"t":"Code"},{"c":":","s":381,"t":"Str"}],"s":377,"t":"Para"},{"a":{"classes":[383],"id":null,"kvs":[]},"c":[["",["python"],[]],"from fastapi.testclient import TestClient\nfrom main import app\n\nclient = TestClient(app)\n\ndef test_read_root():\n response = client.get(\"/\")\n assert response.status_code == 200\n assert response.json() == {\"message\": \"Welcome to the API\"}"],"s":382,"t":"CodeBlock"},{"a":{"classes":[385],"id":null,"kvs":[]},"c":[["",["callout-tip"],[]],[{"c":[{"c":"Run","s":387,"t":"Str"},{"s":388,"t":"Space"},{"c":"tests","s":389,"t":"Str"},{"s":390,"t":"Space"},{"c":"with:","s":393,"t":"Str"},{"s":394,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"pytest test_main.py"],"s":395,"t":"Code"}],"s":386,"t":"Para"}]],"s":384,"t":"Div"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["next-steps",[],[]],[{"c":"Next","s":397,"t":"Str"},{"s":398,"t":"Space"},{"c":"Steps","s":399,"t":"Str"}]],"s":396,"t":"Header"},{"c":[{"c":"Congratulations!","s":401,"t":"Str"},{"s":402,"t":"Space"},{"c":"You’ve","s":403,"t":"Str"},{"s":404,"t":"Space"},{"c":"built","s":405,"t":"Str"},{"s":406,"t":"Space"},{"c":"a","s":407,"t":"Str"},{"s":408,"t":"Space"},{"c":"working","s":409,"t":"Str"},{"s":410,"t":"Space"},{"c":"API.","s":411,"t":"Str"},{"s":412,"t":"Space"},{"c":"Here’s","s":413,"t":"Str"},{"s":414,"t":"Space"},{"c":"what","s":415,"t":"Str"},{"s":416,"t":"Space"},{"c":"to","s":417,"t":"Str"},{"s":418,"t":"Space"},{"c":"learn","s":419,"t":"Str"},{"s":420,"t":"Space"},{"c":"next:","s":423,"t":"Str"}],"s":400,"t":"Para"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Add","s":426,"t":"Str"},{"s":427,"t":"Space"},{"c":"database","s":428,"t":"Str"},{"s":429,"t":"Space"},{"c":"integration","s":430,"t":"Str"}],"s":425,"t":"Plain"}],[{"c":[{"c":"Implement","s":432,"t":"Str"},{"s":433,"t":"Space"},{"c":"authentication","s":434,"t":"Str"},{"s":435,"t":"Space"},{"c":"(JWT","s":438,"t":"Str"},{"s":439,"t":"Space"},{"c":"tokens)","s":442,"t":"Str"}],"s":431,"t":"Plain"}],[{"c":[{"c":"Add","s":444,"t":"Str"},{"s":445,"t":"Space"},{"c":"request","s":446,"t":"Str"},{"s":447,"t":"Space"},{"c":"validation","s":448,"t":"Str"},{"s":449,"t":"Space"},{"c":"with","s":450,"t":"Str"},{"s":451,"t":"Space"},{"c":"Pydantic","s":452,"t":"Str"}],"s":443,"t":"Plain"}],[{"c":[{"c":"Deploy","s":454,"t":"Str"},{"s":455,"t":"Space"},{"c":"to","s":456,"t":"Str"},{"s":457,"t":"Space"},{"c":"a","s":458,"t":"Str"},{"s":459,"t":"Space"},{"c":"cloud","s":460,"t":"Str"},{"s":461,"t":"Space"},{"c":"platform","s":462,"t":"Str"}],"s":453,"t":"Plain"}],[{"c":[{"c":"Set","s":464,"t":"Str"},{"s":465,"t":"Space"},{"c":"up","s":466,"t":"Str"},{"s":467,"t":"Space"},{"c":"monitoring","s":468,"t":"Str"},{"s":469,"t":"Space"},{"c":"and","s":470,"t":"Str"},{"s":471,"t":"Space"},{"c":"logging","s":472,"t":"Str"}],"s":463,"t":"Plain"}]]],"s":424,"t":"OrderedList"},{"a":{"classes":[474],"id":null,"kvs":[]},"c":[["",["callout-note"],[]],[{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["additional-resources",[],[]],[{"c":"Additional","s":476,"t":"Str"},{"s":477,"t":"Space"},{"c":"Resources","s":478,"t":"Str"}]],"s":475,"t":"Header"},{"c":[[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"FastAPI","s":482,"t":"Str"},{"s":483,"t":"Space"},{"c":"Documentation","s":484,"t":"Str"}],["https://fastapi.tiangolo.com",""]],"s":481,"t":"Link","targetS":[485,null]}],"s":480,"t":"Plain"}],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"SQLAlchemy","s":488,"t":"Str"},{"s":489,"t":"Space"},{"c":"Tutorial","s":490,"t":"Str"}],["https://docs.sqlalchemy.org",""]],"s":487,"t":"Link","targetS":[491,null]}],"s":486,"t":"Plain"}],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"API","s":494,"t":"Str"},{"s":495,"t":"Space"},{"c":"Design","s":496,"t":"Str"},{"s":497,"t":"Space"},{"c":"Best","s":498,"t":"Str"},{"s":499,"t":"Space"},{"c":"Practices","s":500,"t":"Str"}],["https://restfulapi.net",""]],"s":493,"t":"Link","targetS":[501,null]}],"s":492,"t":"Plain"}]],"s":479,"t":"BulletList"}]],"s":473,"t":"Div"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["conclusion",[],[]],[{"c":"Conclusion","s":503,"t":"Str"}]],"s":502,"t":"Header"},{"c":[{"c":"You","s":505,"t":"Str"},{"s":506,"t":"Space"},{"c":"now","s":507,"t":"Str"},{"s":508,"t":"Space"},{"c":"have","s":509,"t":"Str"},{"s":510,"t":"Space"},{"c":"the","s":511,"t":"Str"},{"s":512,"t":"Space"},{"c":"foundation","s":513,"t":"Str"},{"s":514,"t":"Space"},{"c":"for","s":515,"t":"Str"},{"s":516,"t":"Space"},{"c":"building","s":517,"t":"Str"},{"s":518,"t":"Space"},{"c":"production-ready","s":519,"t":"Str"},{"s":520,"t":"Space"},{"c":"APIs.","s":521,"t":"Str"},{"s":522,"t":"Space"},{"c":"Keep","s":523,"t":"Str"},{"s":524,"t":"Space"},{"c":"practicing","s":525,"t":"Str"},{"s":526,"t":"Space"},{"c":"and","s":527,"t":"Str"},{"s":528,"t":"Space"},{"c":"exploring","s":529,"t":"Str"},{"s":530,"t":"Space"},{"c":"the","s":531,"t":"Str"},{"s":532,"t":"Space"},{"c":"ecosystem!","s":533,"t":"Str"}],"s":504,"t":"Para"}],"meta":{"author":{"c":[{"c":"Tutorial","s":539,"t":"Str"},{"s":541,"t":"Space"},{"c":"Team","s":543,"t":"Str"}],"s":536,"t":"MetaInlines"},"format":{"c":[{"c":"html","s":548,"t":"Str"}],"s":545,"t":"MetaInlines"},"subtitle":{"c":[{"c":"A","s":553,"t":"Str"},{"s":555,"t":"Space"},{"c":"Step-by-Step","s":557,"t":"Str"},{"s":559,"t":"Space"},{"c":"Tutorial","s":561,"t":"Str"}],"s":550,"t":"MetaInlines"},"title":{"c":[{"c":"Building","s":566,"t":"Str"},{"s":568,"t":"Space"},{"c":"Your","s":570,"t":"Str"},{"s":572,"t":"Space"},{"c":"First","s":574,"t":"Str"},{"s":576,"t":"Space"},{"c":"Web","s":578,"t":"Str"},{"s":580,"t":"Space"},{"c":"API","s":582,"t":"Str"}],"s":563,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,40,76,100,113,117,118,129,130,268,269,289,306,307,341,342,365,395,411,415,416,440,441,482,483,491,504,514,534,596,600,601,620,645,646,769,770,793,867,871,875,876,907,908,939,940,948,987,991,992,1026,1027,1034,1051,1067,1086,1090,1091,1157,1158,1183,1184,1206,1207,1227,1228,1238,1300,1356,1357,1383,1384,1402,1430,1431,1474,1517,1544,1548,1549,1573,1574,1592,1593,1603,1646,1670,1671,1687,1688,1702,1719,1764,1765,1784,1802,1815,1855,1892,1898,1902,1903,1928,1955,1956,1979,1980,2021,2056,2083,2096,2100,2101,2126,2127,2150,2151,2159,2185,2189,2190,2267,2268,2286,2287,2305,2306,2338,2339,2347,2380,2384,2385,2404,2405,2428,2429,2439,2481,2502,2503,2528,2529,2551,2582,2621,2685,2689,2690,2709,2747,2751,2752,2765,2766,2838,2839,2867,2908,2948,2978,3011,3012,3032,3056,3057,3113,3166,3220,3224,3225,3238,3239,3348],"name":"ts-packages/annotated-qmd/examples/tutorial.qmd","total_length":3349}],"metaTopLevelKeySources":{"author":584,"format":586,"subtitle":588,"title":590},"p":[{"d":0,"r":[119,130],"t":0},{"d":0,"r":[121,129],"t":0},{"d":0,"r":[131,269],"t":0},{"d":0,"r":[131,135],"t":0},{"d":0,"r":[135,136],"t":0},{"d":0,"r":[136,144],"t":0},{"d":0,"r":[144,145],"t":0},{"d":0,"r":[145,152],"t":0},{"d":0,"r":[152,153],"t":0},{"d":0,"r":[153,156],"t":0},{"d":0,"r":[156,157],"t":0},{"d":0,"r":[157,159],"t":0},{"d":0,"r":[159,160],"t":0},{"d":0,"r":[160,165],"t":0},{"d":0,"r":[165,166],"t":0},{"d":0,"r":[166,167],"t":0},{"d":0,"r":[167,168],"t":0},{"d":0,"r":[168,174],"t":0},{"d":0,"r":[174,175],"t":0},{"d":0,"r":[175,179],"t":0},{"d":0,"r":[179,180],"t":0},{"d":0,"r":[180,184],"t":0},{"d":0,"r":[184,185],"t":0},{"d":0,"r":[185,187],"t":0},{"d":0,"r":[187,188],"t":0},{"d":0,"r":[188,191],"t":0},{"d":0,"r":[191,192],"t":0},{"d":0,"r":[192,196],"t":0},{"d":0,"r":[196,197],"t":0},{"d":0,"r":[197,203],"t":0},{"d":0,"r":[203,204],"t":0},{"d":0,"r":[204,208],"t":0},{"d":0,"r":[208,209],"t":0},{"d":0,"r":[209,210],"t":0},{"d":0,"r":[210,211],"t":0},{"d":0,"r":[211,218],"t":0},{"d":0,"r":[218,219],"t":0},{"d":0,"r":[219,222],"t":0},{"d":0,"r":[222,223],"t":0},{"d":0,"r":[223,227],"t":0},{"d":0,"r":[227,228],"t":0},{"d":0,"r":[228,242],"t":0},{"d":0,"r":[242,243],"t":0},{"d":0,"r":[243,246],"t":0},{"d":0,"r":[246,247],"t":0},{"d":0,"r":[247,255],"t":0},{"d":0,"r":[255,256],"t":0},{"d":0,"r":[256,268],"t":0},{"d":0,"r":[270,416],"t":0},{"d":0,"r":[275,288],"t":0},{"d":0,"r":[290,307],"t":0},{"d":0,"r":[293,306],"t":0},{"d":0,"r":[308,342],"t":0},{"d":0,"r":[308,314],"t":0},{"d":0,"r":[314,315],"t":0},{"d":0,"r":[315,324],"t":0},{"d":0,"r":[324,325],"t":0},{"d":0,"r":[325,331],"t":0},{"d":0,"r":[331,332],"t":0},{"d":0,"r":[332,335],"t":0},{"d":0,"r":[335,336],"t":0},{"d":0,"r":[336,340],"t":0},{"d":0,"r":[340,341],"t":0},{"d":[[61,0,4],[62,4,1]],"r":[0,5],"t":2},{"d":0,"r":[343,412],"t":0},{"d":0,"r":[345,366],"t":0},{"d":0,"r":[345,351],"t":0},{"d":0,"r":[351,352],"t":0},{"d":0,"r":[352,355],"t":0},{"d":0,"r":[355,356],"t":0},{"d":0,"r":[356,358],"t":0},{"d":0,"r":[358,359],"t":0},{"d":0,"r":[359,365],"t":0},{"d":0,"r":[368,396],"t":0},{"d":0,"r":[368,373],"t":0},{"d":0,"r":[373,374],"t":0},{"d":0,"r":[374,387],"t":0},{"d":0,"r":[387,388],"t":0},{"d":0,"r":[388,390],"t":0},{"d":0,"r":[390,391],"t":0},{"d":0,"r":[391,395],"t":0},{"d":0,"r":[398,412],"t":0},{"d":0,"r":[398,399],"t":0},{"d":0,"r":[399,400],"t":0},{"d":0,"r":[400,404],"t":0},{"d":0,"r":[404,405],"t":0},{"d":0,"r":[405,411],"t":0},{"d":0,"r":[417,441],"t":0},{"d":0,"r":[419,423],"t":0},{"d":0,"r":[423,424],"t":0},{"d":0,"r":[424,425],"t":0},{"d":0,"r":[425,426],"t":0},{"d":[[90,0,1],[91,1,1]],"r":[0,2],"t":2},{"d":0,"r":[426,427],"t":0},{"d":0,"r":[427,434],"t":0},{"d":0,"r":[434,435],"t":0},{"d":0,"r":[435,440],"t":0},{"d":0,"r":[442,483],"t":0},{"d":0,"r":[442,448],"t":0},{"d":0,"r":[448,449],"t":0},{"d":0,"r":[449,450],"t":0},{"d":0,"r":[450,451],"t":0},{"d":0,"r":[451,454],"t":0},{"d":0,"r":[454,455],"t":0},{"d":0,"r":[455,464],"t":0},{"d":0,"r":[464,465],"t":0},{"d":0,"r":[465,468],"t":0},{"d":0,"r":[468,469],"t":0},{"d":0,"r":[469,473],"t":0},{"d":0,"r":[473,474],"t":0},{"d":0,"r":[474,481],"t":0},{"d":0,"r":[481,482],"t":0},{"d":[[110,0,7],[111,7,1]],"r":[0,8],"t":2},{"d":0,"r":[484,601],"t":0},{"d":0,"r":[487,491],"t":0},{"d":0,"r":[602,876],"t":0},{"d":0,"r":[607,619],"t":0},{"d":0,"r":[621,646],"t":0},{"d":0,"r":[625,632],"t":0},{"d":0,"r":[632,633],"t":0},{"d":0,"r":[633,645],"t":0},{"d":0,"r":[647,770],"t":0},{"d":0,"r":[647,653],"t":0},{"d":0,"r":[653,654],"t":0},{"d":0,"r":[654,657],"t":0},{"d":0,"r":[657,658],"t":0},{"d":0,"r":[658,659],"t":0},{"d":0,"r":[659,660],"t":0},{"d":0,"r":[660,667],"t":0},{"d":0,"r":[667,668],"t":0},{"d":0,"r":[668,679],"t":0},{"d":0,"r":[679,680],"t":0},{"d":0,"r":[680,682],"t":0},{"d":0,"r":[682,683],"t":0},{"d":0,"r":[683,690],"t":0},{"d":0,"r":[690,691],"t":0},{"d":0,"r":[691,695],"t":0},{"d":0,"r":[695,696],"t":0},{"d":0,"r":[696,703],"t":0},{"d":0,"r":[703,704],"t":0},{"d":0,"r":[704,717],"t":0},{"d":0,"r":[717,718],"t":0},{"d":0,"r":[718,722],"t":0},{"d":0,"r":[722,723],"t":0},{"d":0,"r":[723,731],"t":0},{"d":0,"r":[731,732],"t":0},{"d":0,"r":[732,741],"t":0},{"d":0,"r":[741,742],"t":0},{"d":0,"r":[742,749],"t":0},{"d":0,"r":[749,750],"t":0},{"d":0,"r":[750,759],"t":0},{"d":0,"r":[759,760],"t":0},{"d":0,"r":[760,769],"t":0},{"d":0,"r":[771,872],"t":0},{"d":0,"r":[776,792],"t":0},{"d":0,"r":[794,868],"t":0},{"d":0,"r":[794,798],"t":0},{"d":0,"r":[798,799],"t":0},{"d":0,"r":[799,803],"t":0},{"d":0,"r":[803,804],"t":0},{"d":0,"r":[804,806],"t":0},{"d":0,"r":[806,807],"t":0},{"d":0,"r":[807,815],"t":0},{"d":0,"r":[815,816],"t":0},{"d":0,"r":[816,819],"t":0},{"d":0,"r":[819,820],"t":0},{"d":0,"r":[820,827],"t":0},{"d":0,"r":[827,828],"t":0},{"d":0,"r":[828,839],"t":0},{"d":0,"r":[839,840],"t":0},{"d":0,"r":[840,846],"t":0},{"d":0,"r":[846,847],"t":0},{"d":0,"r":[847,857],"t":0},{"d":0,"r":[857,858],"t":0},{"d":0,"r":[858,867],"t":0},{"d":0,"r":[877,908],"t":0},{"d":0,"r":[879,883],"t":0},{"d":0,"r":[883,884],"t":0},{"d":0,"r":[884,885],"t":0},{"d":0,"r":[885,886],"t":0},{"d":[[178,0,1],[179,1,1]],"r":[0,2],"t":2},{"d":0,"r":[886,887],"t":0},{"d":0,"r":[887,894],"t":0},{"d":0,"r":[894,895],"t":0},{"d":0,"r":[895,907],"t":0},{"d":0,"r":[909,940],"t":0},{"d":0,"r":[909,916],"t":0},{"d":0,"r":[916,917],"t":0},{"d":0,"r":[917,920],"t":0},{"d":0,"r":[920,921],"t":0},{"d":0,"r":[921,929],"t":0},{"d":0,"r":[929,930],"t":0},{"d":0,"r":[930,938],"t":0},{"d":0,"r":[938,939],"t":0},{"d":[[192,0,8],[193,8,1]],"r":[0,9],"t":2},{"d":0,"r":[941,992],"t":0},{"d":0,"r":[944,948],"t":0},{"d":0,"r":[993,1027],"t":0},{"d":0,"r":[993,999],"t":0},{"d":0,"r":[999,1000],"t":0},{"d":0,"r":[1000,1001],"t":0},{"d":0,"r":[1001,1002],"t":0},{"d":0,"r":[1002,1020],"t":0},{"d":0,"r":[1020,1021],"t":0},{"d":0,"r":[1021,1025],"t":0},{"d":0,"r":[1025,1026],"t":0},{"d":[[204,0,4],[205,4,1]],"r":[0,5],"t":2},{"d":0,"r":[1028,1091],"t":0},{"d":0,"r":[1031,1034],"t":0},{"d":0,"r":[1092,1158],"t":0},{"d":0,"r":[1142,1156],"t":0},{"d":0,"r":[1092,1157],"t":0},{"d":0,"r":[1094,1101],"t":0},{"d":0,"r":[1101,1102],"t":0},{"d":0,"r":[1102,1111],"t":0},{"d":0,"r":[1111,1112],"t":0},{"d":0,"r":[1112,1125],"t":0},{"d":0,"r":[1092,1157],"t":0},{"d":0,"r":[1092,1157],"t":0},{"d":0,"r":[1094,1101],"t":0},{"d":0,"r":[1101,1102],"t":0},{"d":0,"r":[1102,1111],"t":0},{"d":0,"r":[1111,1112],"t":0},{"d":0,"r":[1112,1125],"t":0},{"d":0,"r":[1127,1140],"t":0},{"d":0,"r":[1092,1157],"t":0},{"d":0,"r":[1159,1184],"t":0},{"d":0,"r":[1161,1165],"t":0},{"d":0,"r":[1165,1166],"t":0},{"d":0,"r":[1166,1167],"t":0},{"d":0,"r":[1167,1168],"t":0},{"d":[[229,0,1],[230,1,1]],"r":[0,2],"t":2},{"d":0,"r":[1168,1169],"t":0},{"d":0,"r":[1169,1175],"t":0},{"d":0,"r":[1175,1176],"t":0},{"d":0,"r":[1176,1179],"t":0},{"d":0,"r":[1179,1180],"t":0},{"d":0,"r":[1180,1183],"t":0},{"d":0,"r":[1185,1207],"t":0},{"d":0,"r":[1188,1194],"t":0},{"d":0,"r":[1194,1195],"t":0},{"d":0,"r":[1195,1199],"t":0},{"d":0,"r":[1199,1200],"t":0},{"d":0,"r":[1200,1206],"t":0},{"d":0,"r":[1208,1228],"t":0},{"d":0,"r":[1208,1214],"t":0},{"d":0,"r":[1214,1215],"t":0},{"d":0,"r":[1215,1226],"t":0},{"d":0,"r":[1226,1227],"t":0},{"d":0,"r":[1229,1549],"t":0},{"d":0,"r":[1232,1238],"t":0},{"d":0,"r":[1550,1574],"t":0},{"d":0,"r":[1553,1559],"t":0},{"d":0,"r":[1559,1560],"t":0},{"d":0,"r":[1560,1563],"t":0},{"d":0,"r":[1563,1564],"t":0},{"d":0,"r":[1564,1573],"t":0},{"d":0,"r":[1575,1593],"t":0},{"d":0,"r":[1575,1581],"t":0},{"d":0,"r":[1581,1582],"t":0},{"d":0,"r":[1582,1591],"t":0},{"d":0,"r":[1591,1592],"t":0},{"d":0,"r":[1594,1903],"t":0},{"d":0,"r":[1597,1603],"t":0},{"d":0,"r":[1904,2101],"t":0},{"d":0,"r":[1909,1927],"t":0},{"d":0,"r":[1929,1956],"t":0},{"d":0,"r":[1932,1940],"t":0},{"d":0,"r":[1940,1941],"t":0},{"d":0,"r":[1941,1955],"t":0},{"d":0,"r":[1957,1980],"t":0},{"d":0,"r":[1957,1959],"t":0},{"d":0,"r":[1959,1960],"t":0},{"d":0,"r":[1960,1971],"t":0},{"d":0,"r":[1971,1972],"t":0},{"d":0,"r":[1972,1978],"t":0},{"d":0,"r":[1978,1979],"t":0},{"d":[[275,0,6],[276,6,1]],"r":[0,7],"t":2},{"d":0,"r":[1981,2097],"t":0},{"d":0,"r":[1984,2022],"t":0},{"d":0,"r":[1984,1987],"t":0},{"d":0,"r":[1987,1988],"t":0},{"d":0,"r":[1988,1999],"t":0},{"d":0,"r":[1999,2000],"t":0},{"d":0,"r":[2000,2009],"t":0},{"d":0,"r":[2009,2010],"t":0},{"d":0,"r":[2010,2013],"t":0},{"d":0,"r":[2013,2014],"t":0},{"d":0,"r":[2014,2021],"t":0},{"d":0,"r":[2025,2057],"t":0},{"d":0,"r":[2025,2034],"t":0},{"d":0,"r":[2034,2035],"t":0},{"d":0,"r":[2035,2041],"t":0},{"d":0,"r":[2041,2042],"t":0},{"d":0,"r":[2042,2056],"t":0},{"d":0,"r":[2060,2084],"t":0},{"d":0,"r":[2060,2068],"t":0},{"d":0,"r":[2068,2069],"t":0},{"d":0,"r":[2069,2072],"t":0},{"d":0,"r":[2072,2073],"t":0},{"d":0,"r":[2073,2078],"t":0},{"d":0,"r":[2078,2079],"t":0},{"d":0,"r":[2079,2083],"t":0},{"d":0,"r":[2087,2097],"t":0},{"d":0,"r":[2087,2090],"t":0},{"d":0,"r":[2090,2091],"t":0},{"d":0,"r":[2091,2096],"t":0},{"d":0,"r":[2102,2127],"t":0},{"d":0,"r":[2104,2108],"t":0},{"d":0,"r":[2108,2109],"t":0},{"d":0,"r":[2109,2110],"t":0},{"d":0,"r":[2110,2111],"t":0},{"d":[[310,0,1],[311,1,1]],"r":[0,2],"t":2},{"d":0,"r":[2111,2112],"t":0},{"d":0,"r":[2112,2115],"t":0},{"d":0,"r":[2115,2116],"t":0},{"d":0,"r":[2116,2119],"t":0},{"d":0,"r":[2119,2120],"t":0},{"d":0,"r":[2120,2126],"t":0},{"d":0,"r":[2128,2151],"t":0},{"d":0,"r":[2128,2133],"t":0},{"d":0,"r":[2133,2134],"t":0},{"d":0,"r":[2134,2138],"t":0},{"d":0,"r":[2138,2139],"t":0},{"d":0,"r":[2139,2142],"t":0},{"d":0,"r":[2142,2143],"t":0},{"d":0,"r":[2143,2149],"t":0},{"d":0,"r":[2149,2150],"t":0},{"d":[[326,0,6],[327,6,1]],"r":[0,7],"t":2},{"d":0,"r":[2152,2190],"t":0},{"d":0,"r":[2155,2159],"t":0},{"d":0,"r":[2191,2268],"t":0},{"d":0,"r":[2191,2196],"t":0},{"d":0,"r":[2196,2197],"t":0},{"d":0,"r":[2197,2225],"t":0},{"d":0,"r":[2225,2226],"t":0},{"d":0,"r":[2226,2228],"t":0},{"d":0,"r":[2228,2229],"t":0},{"d":0,"r":[2229,2232],"t":0},{"d":0,"r":[2232,2233],"t":0},{"d":0,"r":[2233,2236],"t":0},{"d":0,"r":[2236,2237],"t":0},{"d":0,"r":[2237,2248],"t":0},{"d":0,"r":[2248,2249],"t":0},{"d":0,"r":[2249,2252],"t":0},{"d":0,"r":[2252,2253],"t":0},{"d":0,"r":[2253,2267],"t":0},{"d":0,"r":[2269,2287],"t":0},{"d":0,"r":[2271,2275],"t":0},{"d":0,"r":[2275,2276],"t":0},{"d":0,"r":[2276,2277],"t":0},{"d":0,"r":[2277,2278],"t":0},{"d":[[350,0,1],[351,1,1]],"r":[0,2],"t":2},{"d":0,"r":[2278,2279],"t":0},{"d":0,"r":[2279,2286],"t":0},{"d":0,"r":[2288,2306],"t":0},{"d":0,"r":[2291,2297],"t":0},{"d":0,"r":[2297,2298],"t":0},{"d":0,"r":[2298,2305],"t":0},{"d":0,"r":[2307,2339],"t":0},{"d":0,"r":[2307,2311],"t":0},{"d":0,"r":[2311,2312],"t":0},{"d":0,"r":[2312,2316],"t":0},{"d":0,"r":[2316,2317],"t":0},{"d":0,"r":[2317,2326],"t":0},{"d":0,"r":[2326,2327],"t":0},{"d":0,"r":[2327,2332],"t":0},{"d":0,"r":[2332,2333],"t":0},{"d":0,"r":[2333,2337],"t":0},{"d":0,"r":[2337,2338],"t":0},{"d":[[368,0,4],[369,4,1]],"r":[0,5],"t":2},{"d":0,"r":[2340,2385],"t":0},{"d":0,"r":[2343,2347],"t":0},{"d":0,"r":[2386,2405],"t":0},{"d":0,"r":[2389,2398],"t":0},{"d":0,"r":[2398,2399],"t":0},{"d":0,"r":[2399,2404],"t":0},{"d":0,"r":[2406,2429],"t":0},{"d":0,"r":[2406,2412],"t":0},{"d":0,"r":[2412,2413],"t":0},{"d":0,"r":[2413,2427],"t":0},{"d":0,"r":[2427,2428],"t":0},{"d":0,"r":[2430,2690],"t":0},{"d":0,"r":[2433,2439],"t":0},{"d":0,"r":[2691,2752],"t":0},{"d":0,"r":[2696,2708],"t":0},{"d":0,"r":[2710,2748],"t":0},{"d":0,"r":[2710,2713],"t":0},{"d":0,"r":[2713,2714],"t":0},{"d":0,"r":[2714,2719],"t":0},{"d":0,"r":[2719,2720],"t":0},{"d":0,"r":[2720,2724],"t":0},{"d":0,"r":[2724,2725],"t":0},{"d":[[391,0,4],[392,4,1]],"r":[0,5],"t":2},{"d":0,"r":[2725,2726],"t":0},{"d":0,"r":[2726,2747],"t":0},{"d":0,"r":[2753,2766],"t":0},{"d":0,"r":[2755,2759],"t":0},{"d":0,"r":[2759,2760],"t":0},{"d":0,"r":[2760,2765],"t":0},{"d":0,"r":[2767,2839],"t":0},{"d":0,"r":[2767,2783],"t":0},{"d":0,"r":[2783,2784],"t":0},{"d":0,"r":[2784,2790],"t":0},{"d":0,"r":[2790,2791],"t":0},{"d":0,"r":[2791,2796],"t":0},{"d":0,"r":[2796,2797],"t":0},{"d":0,"r":[2797,2798],"t":0},{"d":0,"r":[2798,2799],"t":0},{"d":0,"r":[2799,2806],"t":0},{"d":0,"r":[2806,2807],"t":0},{"d":0,"r":[2807,2811],"t":0},{"d":0,"r":[2811,2812],"t":0},{"d":0,"r":[2812,2818],"t":0},{"d":0,"r":[2818,2819],"t":0},{"d":0,"r":[2819,2823],"t":0},{"d":0,"r":[2823,2824],"t":0},{"d":0,"r":[2824,2826],"t":0},{"d":0,"r":[2826,2827],"t":0},{"d":0,"r":[2827,2832],"t":0},{"d":0,"r":[2832,2833],"t":0},{"d":0,"r":[2833,2837],"t":0},{"d":0,"r":[2837,2838],"t":0},{"d":[[421,0,4],[422,4,1]],"r":[0,5],"t":2},{"d":0,"r":[2840,3013],"t":0},{"d":0,"r":[2843,2868],"t":0},{"d":0,"r":[2843,2846],"t":0},{"d":0,"r":[2846,2847],"t":0},{"d":0,"r":[2847,2855],"t":0},{"d":0,"r":[2855,2856],"t":0},{"d":0,"r":[2856,2867],"t":0},{"d":0,"r":[2871,2909],"t":0},{"d":0,"r":[2871,2880],"t":0},{"d":0,"r":[2880,2881],"t":0},{"d":0,"r":[2881,2895],"t":0},{"d":0,"r":[2895,2896],"t":0},{"d":0,"r":[2896,2897],"t":0},{"d":0,"r":[2897,2900],"t":0},{"d":[[436,0,1],[437,1,3]],"r":[0,4],"t":2},{"d":0,"r":[2900,2901],"t":0},{"d":0,"r":[2901,2907],"t":0},{"d":0,"r":[2907,2908],"t":0},{"d":[[440,0,6],[441,6,1]],"r":[0,7],"t":2},{"d":0,"r":[2912,2949],"t":0},{"d":0,"r":[2912,2915],"t":0},{"d":0,"r":[2915,2916],"t":0},{"d":0,"r":[2916,2923],"t":0},{"d":0,"r":[2923,2924],"t":0},{"d":0,"r":[2924,2934],"t":0},{"d":0,"r":[2934,2935],"t":0},{"d":0,"r":[2935,2939],"t":0},{"d":0,"r":[2939,2940],"t":0},{"d":0,"r":[2940,2948],"t":0},{"d":0,"r":[2952,2979],"t":0},{"d":0,"r":[2952,2958],"t":0},{"d":0,"r":[2958,2959],"t":0},{"d":0,"r":[2959,2961],"t":0},{"d":0,"r":[2961,2962],"t":0},{"d":0,"r":[2962,2963],"t":0},{"d":0,"r":[2963,2964],"t":0},{"d":0,"r":[2964,2969],"t":0},{"d":0,"r":[2969,2970],"t":0},{"d":0,"r":[2970,2978],"t":0},{"d":0,"r":[2982,3012],"t":0},{"d":0,"r":[2982,2985],"t":0},{"d":0,"r":[2985,2986],"t":0},{"d":0,"r":[2986,2988],"t":0},{"d":0,"r":[2988,2989],"t":0},{"d":0,"r":[2989,2999],"t":0},{"d":0,"r":[2999,3000],"t":0},{"d":0,"r":[3000,3003],"t":0},{"d":0,"r":[3003,3004],"t":0},{"d":0,"r":[3004,3011],"t":0},{"d":0,"r":[3013,3225],"t":0},{"d":0,"r":[3018,3031],"t":0},{"d":0,"r":[3033,3057],"t":0},{"d":0,"r":[3036,3046],"t":0},{"d":0,"r":[3046,3047],"t":0},{"d":0,"r":[3047,3056],"t":0},{"d":0,"r":[3058,3221],"t":0},{"d":0,"r":[3060,3114],"t":0},{"d":0,"r":[3060,3113],"t":0},{"d":0,"r":[3061,3068],"t":0},{"d":0,"r":[3068,3069],"t":0},{"d":0,"r":[3069,3082],"t":0},{"d":0,"r":[3084,3112],"t":0},{"d":0,"r":[3116,3167],"t":0},{"d":0,"r":[3116,3166],"t":0},{"d":0,"r":[3117,3127],"t":0},{"d":0,"r":[3127,3128],"t":0},{"d":0,"r":[3128,3136],"t":0},{"d":0,"r":[3138,3165],"t":0},{"d":0,"r":[3169,3221],"t":0},{"d":0,"r":[3169,3220],"t":0},{"d":0,"r":[3170,3173],"t":0},{"d":0,"r":[3173,3174],"t":0},{"d":0,"r":[3174,3180],"t":0},{"d":0,"r":[3180,3181],"t":0},{"d":0,"r":[3181,3185],"t":0},{"d":0,"r":[3185,3186],"t":0},{"d":0,"r":[3186,3195],"t":0},{"d":0,"r":[3197,3219],"t":0},{"d":0,"r":[3226,3239],"t":0},{"d":0,"r":[3228,3238],"t":0},{"d":0,"r":[3240,3349],"t":0},{"d":0,"r":[3240,3243],"t":0},{"d":0,"r":[3243,3244],"t":0},{"d":0,"r":[3244,3247],"t":0},{"d":0,"r":[3247,3248],"t":0},{"d":0,"r":[3248,3252],"t":0},{"d":0,"r":[3252,3253],"t":0},{"d":0,"r":[3253,3256],"t":0},{"d":0,"r":[3256,3257],"t":0},{"d":0,"r":[3257,3267],"t":0},{"d":0,"r":[3267,3268],"t":0},{"d":0,"r":[3268,3271],"t":0},{"d":0,"r":[3271,3272],"t":0},{"d":0,"r":[3272,3280],"t":0},{"d":0,"r":[3280,3281],"t":0},{"d":0,"r":[3281,3297],"t":0},{"d":0,"r":[3297,3298],"t":0},{"d":0,"r":[3298,3303],"t":0},{"d":0,"r":[3303,3304],"t":0},{"d":0,"r":[3304,3308],"t":0},{"d":0,"r":[3308,3309],"t":0},{"d":0,"r":[3309,3319],"t":0},{"d":0,"r":[3319,3320],"t":0},{"d":0,"r":[3320,3323],"t":0},{"d":0,"r":[3323,3324],"t":0},{"d":0,"r":[3324,3333],"t":0},{"d":0,"r":[3333,3334],"t":0},{"d":0,"r":[3334,3337],"t":0},{"d":0,"r":[3337,3338],"t":0},{"d":0,"r":[3338,3348],"t":0},{"d":0,"r":[0,118],"t":0},{"d":534,"r":[4,113],"t":1},{"d":535,"r":[81,96],"t":1},{"d":534,"r":[4,113],"t":1},{"d":537,"r":[82,95],"t":1},{"d":538,"r":[0,8],"t":1},{"d":537,"r":[82,95],"t":1},{"d":540,"r":[8,9],"t":1},{"d":537,"r":[82,95],"t":1},{"d":542,"r":[9,13],"t":1},{"d":534,"r":[4,113],"t":1},{"d":544,"r":[105,109],"t":1},{"d":534,"r":[4,113],"t":1},{"d":546,"r":[105,109],"t":1},{"d":547,"r":[0,4],"t":1},{"d":534,"r":[4,113],"t":1},{"d":549,"r":[47,72],"t":1},{"d":534,"r":[4,113],"t":1},{"d":551,"r":[48,71],"t":1},{"d":552,"r":[0,1],"t":1},{"d":551,"r":[48,71],"t":1},{"d":554,"r":[1,2],"t":1},{"d":551,"r":[48,71],"t":1},{"d":556,"r":[2,14],"t":1},{"d":551,"r":[48,71],"t":1},{"d":558,"r":[14,15],"t":1},{"d":551,"r":[48,71],"t":1},{"d":560,"r":[15,23],"t":1},{"d":534,"r":[4,113],"t":1},{"d":562,"r":[7,36],"t":1},{"d":534,"r":[4,113],"t":1},{"d":564,"r":[8,35],"t":1},{"d":565,"r":[0,8],"t":1},{"d":564,"r":[8,35],"t":1},{"d":567,"r":[8,9],"t":1},{"d":564,"r":[8,35],"t":1},{"d":569,"r":[9,13],"t":1},{"d":564,"r":[8,35],"t":1},{"d":571,"r":[13,14],"t":1},{"d":564,"r":[8,35],"t":1},{"d":573,"r":[14,19],"t":1},{"d":564,"r":[8,35],"t":1},{"d":575,"r":[19,20],"t":1},{"d":564,"r":[8,35],"t":1},{"d":577,"r":[20,23],"t":1},{"d":564,"r":[8,35],"t":1},{"d":579,"r":[23,24],"t":1},{"d":564,"r":[8,35],"t":1},{"d":581,"r":[24,27],"t":1},{"d":534,"r":[4,113],"t":1},{"d":583,"r":[73,79],"t":1},{"d":534,"r":[4,113],"t":1},{"d":585,"r":[97,103],"t":1},{"d":534,"r":[4,113],"t":1},{"d":587,"r":[37,45],"t":1},{"d":534,"r":[4,113],"t":1},{"d":589,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["overview",[],[]],[{"c":"Overview","s":1,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"This","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"tutorial","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"teaches","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"you","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"to","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"build","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"a","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"simple","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"REST","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"API.","s":21,"t":"Str"},{"s":22,"t":"Space"},{"c":"By","s":23,"t":"Str"},{"s":24,"t":"Space"},{"c":"the","s":25,"t":"Str"},{"s":26,"t":"Space"},{"c":"end,","s":27,"t":"Str"},{"s":28,"t":"Space"},{"c":"you’ll","s":29,"t":"Str"},{"s":30,"t":"Space"},{"c":"have","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"a","s":33,"t":"Str"},{"s":34,"t":"Space"},{"c":"working","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"API","s":37,"t":"Str"},{"s":38,"t":"Space"},{"c":"with","s":39,"t":"Str"},{"s":40,"t":"Space"},{"c":"authentication","s":41,"t":"Str"},{"s":42,"t":"Space"},{"c":"and","s":43,"t":"Str"},{"s":44,"t":"Space"},{"c":"database","s":45,"t":"Str"},{"s":46,"t":"Space"},{"c":"integration.","s":47,"t":"Str"}],"s":2,"t":"Para"},{"a":{"classes":[49],"id":null,"kvs":[]},"c":[["",["callout-note"],[]],[{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["prerequisites",[],[]],[{"c":"Prerequisites","s":51,"t":"Str"}]],"s":50,"t":"Header"},{"c":[{"c":"Before","s":53,"t":"Str"},{"s":54,"t":"Space"},{"c":"starting,","s":55,"t":"Str"},{"s":56,"t":"Space"},{"c":"ensure","s":57,"t":"Str"},{"s":58,"t":"Space"},{"c":"you","s":59,"t":"Str"},{"s":60,"t":"Space"},{"c":"have:","s":63,"t":"Str"}],"s":52,"t":"Para"},{"c":[[{"c":[{"c":"Python","s":66,"t":"Str"},{"s":67,"t":"Space"},{"c":"3.8","s":68,"t":"Str"},{"s":69,"t":"Space"},{"c":"or","s":70,"t":"Str"},{"s":71,"t":"Space"},{"c":"higher","s":72,"t":"Str"}],"s":65,"t":"Plain"}],[{"c":[{"c":"Basic","s":74,"t":"Str"},{"s":75,"t":"Space"},{"c":"understanding","s":76,"t":"Str"},{"s":77,"t":"Space"},{"c":"of","s":78,"t":"Str"},{"s":79,"t":"Space"},{"c":"HTTP","s":80,"t":"Str"}],"s":73,"t":"Plain"}],[{"c":[{"c":"A","s":82,"t":"Str"},{"s":83,"t":"Space"},{"c":"code","s":84,"t":"Str"},{"s":85,"t":"Space"},{"c":"editor","s":86,"t":"Str"}],"s":81,"t":"Plain"}]],"s":64,"t":"BulletList"}]],"s":48,"t":"Div"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["step-1-project-setup",[],[]],[{"c":"Step","s":88,"t":"Str"},{"s":89,"t":"Space"},{"c":"1:","s":92,"t":"Str"},{"s":93,"t":"Space"},{"c":"Project","s":94,"t":"Str"},{"s":95,"t":"Space"},{"c":"Setup","s":96,"t":"Str"}]],"s":87,"t":"Header"},{"c":[{"c":"Create","s":98,"t":"Str"},{"s":99,"t":"Space"},{"c":"a","s":100,"t":"Str"},{"s":101,"t":"Space"},{"c":"new","s":102,"t":"Str"},{"s":103,"t":"Space"},{"c":"directory","s":104,"t":"Str"},{"s":105,"t":"Space"},{"c":"for","s":106,"t":"Str"},{"s":107,"t":"Space"},{"c":"your","s":108,"t":"Str"},{"s":109,"t":"Space"},{"c":"project:","s":112,"t":"Str"}],"s":97,"t":"Para"},{"a":{"classes":[114],"id":null,"kvs":[]},"c":[["",["bash"],[]],"mkdir my-api\ncd my-api\npython -m venv venv\nsource venv/bin/activate # On Windows: venv\\Scripts\\activate"],"s":113,"t":"CodeBlock"},{"a":{"classes":[116],"id":null,"kvs":[]},"c":[["",["callout-tip"],[]],[{"a":{"classes":[],"id":null,"kvs":[]},"c":[3,["virtual-environments",[],[]],[{"c":"Virtual","s":118,"t":"Str"},{"s":119,"t":"Space"},{"c":"Environments","s":120,"t":"Str"}]],"s":117,"t":"Header"},{"c":[{"c":"Always","s":122,"t":"Str"},{"s":123,"t":"Space"},{"c":"use","s":124,"t":"Str"},{"s":125,"t":"Space"},{"c":"a","s":126,"t":"Str"},{"s":127,"t":"Space"},{"c":"virtual","s":128,"t":"Str"},{"s":129,"t":"Space"},{"c":"environment","s":130,"t":"Str"},{"s":131,"t":"Space"},{"c":"to","s":132,"t":"Str"},{"s":133,"t":"Space"},{"c":"isolate","s":134,"t":"Str"},{"s":135,"t":"Space"},{"c":"your","s":136,"t":"Str"},{"s":137,"t":"Space"},{"c":"project","s":138,"t":"Str"},{"s":139,"t":"Space"},{"c":"dependencies.","s":140,"t":"Str"},{"s":141,"t":"Space"},{"c":"This","s":142,"t":"Str"},{"s":143,"t":"Space"},{"c":"prevents","s":144,"t":"Str"},{"s":145,"t":"Space"},{"c":"conflicts","s":146,"t":"Str"},{"s":147,"t":"Space"},{"c":"between","s":148,"t":"Str"},{"s":149,"t":"Space"},{"c":"different","s":150,"t":"Str"},{"s":151,"t":"Space"},{"c":"projects.","s":152,"t":"Str"}],"s":121,"t":"Para"},{"a":{"classes":[154],"id":null,"kvs":[]},"c":[["",["callout-warning"],[]],[{"c":[{"c":"Make","s":156,"t":"Str"},{"s":157,"t":"Space"},{"c":"sure","s":158,"t":"Str"},{"s":159,"t":"Space"},{"c":"to","s":160,"t":"Str"},{"s":161,"t":"Space"},{"c":"activate","s":162,"t":"Str"},{"s":163,"t":"Space"},{"c":"the","s":164,"t":"Str"},{"s":165,"t":"Space"},{"c":"virtual","s":166,"t":"Str"},{"s":167,"t":"Space"},{"c":"environment","s":168,"t":"Str"},{"s":169,"t":"Space"},{"c":"before","s":170,"t":"Str"},{"s":171,"t":"Space"},{"c":"installing","s":172,"t":"Str"},{"s":173,"t":"Space"},{"c":"packages!","s":174,"t":"Str"}],"s":155,"t":"Para"}]],"s":153,"t":"Div"}]],"s":115,"t":"Div"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["step-2-install-dependencies",[],[]],[{"c":"Step","s":176,"t":"Str"},{"s":177,"t":"Space"},{"c":"2:","s":180,"t":"Str"},{"s":181,"t":"Space"},{"c":"Install","s":182,"t":"Str"},{"s":183,"t":"Space"},{"c":"Dependencies","s":184,"t":"Str"}]],"s":175,"t":"Header"},{"c":[{"c":"Install","s":186,"t":"Str"},{"s":187,"t":"Space"},{"c":"the","s":188,"t":"Str"},{"s":189,"t":"Space"},{"c":"required","s":190,"t":"Str"},{"s":191,"t":"Space"},{"c":"packages:","s":194,"t":"Str"}],"s":185,"t":"Para"},{"a":{"classes":[196],"id":null,"kvs":[]},"c":[["",["bash"],[]],"pip install fastapi uvicorn sqlalchemy"],"s":195,"t":"CodeBlock"},{"c":[{"c":"Create","s":198,"t":"Str"},{"s":199,"t":"Space"},{"c":"a","s":200,"t":"Str"},{"s":201,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"requirements.txt"],"s":202,"t":"Code"},{"s":203,"t":"Space"},{"c":"file:","s":206,"t":"Str"}],"s":197,"t":"Para"},{"a":{"classes":[208],"id":null,"kvs":[]},"c":[["",["txt"],[]],"fastapi==0.104.0\nuvicorn==0.24.0\nsqlalchemy==2.0.23"],"s":207,"t":"CodeBlock"},{"a":{"classes":[],"id":210,"kvs":[]},"c":[["fig-structure",[],[]],[null,[{"c":[{"c":"Project","s":212,"t":"Str"},{"s":213,"t":"Space"},{"c":"structure","s":214,"t":"Str"},{"s":215,"t":"Space"},{"c":"visualization","s":216,"t":"Str"}],"s":211,"t":"Plain"}]],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"Project","s":219,"t":"Str"},{"s":220,"t":"Space"},{"c":"structure","s":221,"t":"Str"},{"s":222,"t":"Space"},{"c":"visualization","s":223,"t":"Str"}],["structure.png",""]],"s":218,"t":"Image","targetS":[224,null]}],"s":217,"t":"Plain"}]],"captionS":225,"s":209,"t":"Figure"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["step-3-create-the-api",[],[]],[{"c":"Step","s":227,"t":"Str"},{"s":228,"t":"Space"},{"c":"3:","s":231,"t":"Str"},{"s":232,"t":"Space"},{"c":"Create","s":233,"t":"Str"},{"s":234,"t":"Space"},{"c":"the","s":235,"t":"Str"},{"s":236,"t":"Space"},{"c":"API","s":237,"t":"Str"}]],"s":226,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["define-data-models",[],[]],[{"c":"Define","s":239,"t":"Str"},{"s":240,"t":"Space"},{"c":"Data","s":241,"t":"Str"},{"s":242,"t":"Space"},{"c":"Models","s":243,"t":"Str"}]],"s":238,"t":"Header"},{"c":[{"c":"Create","s":245,"t":"Str"},{"s":246,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"models.py"],"s":247,"t":"Code"},{"c":":","s":248,"t":"Str"}],"s":244,"t":"Para"},{"a":{"classes":[250],"id":null,"kvs":[]},"c":[["",["python"],[]],"from sqlalchemy import Column, Integer, String, create_engine\nfrom sqlalchemy.ext.declarative import declarative_base\n\nBase = declarative_base()\n\nclass User(Base):\n __tablename__ = \"users\"\n\n id = Column(Integer, primary_key=True)\n username = Column(String, unique=True)\n email = Column(String)"],"s":249,"t":"CodeBlock"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["create-api-endpoints",[],[]],[{"c":"Create","s":252,"t":"Str"},{"s":253,"t":"Space"},{"c":"API","s":254,"t":"Str"},{"s":255,"t":"Space"},{"c":"Endpoints","s":256,"t":"Str"}]],"s":251,"t":"Header"},{"c":[{"c":"Create","s":258,"t":"Str"},{"s":259,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"main.py"],"s":260,"t":"Code"},{"c":":","s":261,"t":"Str"}],"s":257,"t":"Para"},{"a":{"classes":[263],"id":null,"kvs":[]},"c":[["",["python"],[]],"from fastapi import FastAPI, HTTPException\nfrom typing import List\n\napp = FastAPI()\n\n@app.get(\"/\")\ndef read_root():\n return {\"message\": \"Welcome to the API\"}\n\n@app.get(\"/users\")\ndef list_users():\n return [\n {\"id\": 1, \"username\": \"alice\"},\n {\"id\": 2, \"username\": \"bob\"}\n ]"],"s":262,"t":"CodeBlock"},{"a":{"classes":[265],"id":null,"kvs":[]},"c":[["",["callout-important"],[]],[{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["security-considerations",[],[]],[{"c":"Security","s":267,"t":"Str"},{"s":268,"t":"Space"},{"c":"Considerations","s":269,"t":"Str"}]],"s":266,"t":"Header"},{"c":[{"c":"In","s":271,"t":"Str"},{"s":272,"t":"Space"},{"c":"production,","s":273,"t":"Str"},{"s":274,"t":"Space"},{"c":"always:","s":277,"t":"Str"}],"s":270,"t":"Para"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Use","s":280,"t":"Str"},{"s":281,"t":"Space"},{"c":"environment","s":282,"t":"Str"},{"s":283,"t":"Space"},{"c":"variables","s":284,"t":"Str"},{"s":285,"t":"Space"},{"c":"for","s":286,"t":"Str"},{"s":287,"t":"Space"},{"c":"secrets","s":288,"t":"Str"}],"s":279,"t":"Plain"}],[{"c":[{"c":"Implement","s":290,"t":"Str"},{"s":291,"t":"Space"},{"c":"proper","s":292,"t":"Str"},{"s":293,"t":"Space"},{"c":"authentication","s":294,"t":"Str"}],"s":289,"t":"Plain"}],[{"c":[{"c":"Validate","s":296,"t":"Str"},{"s":297,"t":"Space"},{"c":"all","s":298,"t":"Str"},{"s":299,"t":"Space"},{"c":"input","s":300,"t":"Str"},{"s":301,"t":"Space"},{"c":"data","s":302,"t":"Str"}],"s":295,"t":"Plain"}],[{"c":[{"c":"Use","s":304,"t":"Str"},{"s":305,"t":"Space"},{"c":"HTTPS","s":306,"t":"Str"}],"s":303,"t":"Plain"}]]],"s":278,"t":"OrderedList"}]],"s":264,"t":"Div"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["step-4-run-the-server",[],[]],[{"c":"Step","s":308,"t":"Str"},{"s":309,"t":"Space"},{"c":"4:","s":312,"t":"Str"},{"s":313,"t":"Space"},{"c":"Run","s":314,"t":"Str"},{"s":315,"t":"Space"},{"c":"the","s":316,"t":"Str"},{"s":317,"t":"Space"},{"c":"Server","s":318,"t":"Str"}]],"s":307,"t":"Header"},{"c":[{"c":"Start","s":320,"t":"Str"},{"s":321,"t":"Space"},{"c":"your","s":322,"t":"Str"},{"s":323,"t":"Space"},{"c":"API","s":324,"t":"Str"},{"s":325,"t":"Space"},{"c":"server:","s":328,"t":"Str"}],"s":319,"t":"Para"},{"a":{"classes":[330],"id":null,"kvs":[]},"c":[["",["bash"],[]],"uvicorn main:app --reload"],"s":329,"t":"CodeBlock"},{"c":[{"c":"Visit","s":332,"t":"Str"},{"s":333,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"http://localhost:8000/docs"],"s":334,"t":"Code"},{"s":335,"t":"Space"},{"c":"to","s":336,"t":"Str"},{"s":337,"t":"Space"},{"c":"see","s":338,"t":"Str"},{"s":339,"t":"Space"},{"c":"the","s":340,"t":"Str"},{"s":341,"t":"Space"},{"c":"interactive","s":342,"t":"Str"},{"s":343,"t":"Space"},{"c":"API","s":344,"t":"Str"},{"s":345,"t":"Space"},{"c":"documentation.","s":346,"t":"Str"}],"s":331,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["step-5-testing",[],[]],[{"c":"Step","s":348,"t":"Str"},{"s":349,"t":"Space"},{"c":"5:","s":352,"t":"Str"},{"s":353,"t":"Space"},{"c":"Testing","s":354,"t":"Str"}]],"s":347,"t":"Header"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["manual-testing",[],[]],[{"c":"Manual","s":356,"t":"Str"},{"s":357,"t":"Space"},{"c":"Testing","s":358,"t":"Str"}]],"s":355,"t":"Header"},{"c":[{"c":"Test","s":360,"t":"Str"},{"s":361,"t":"Space"},{"c":"your","s":362,"t":"Str"},{"s":363,"t":"Space"},{"c":"endpoints","s":364,"t":"Str"},{"s":365,"t":"Space"},{"c":"using","s":366,"t":"Str"},{"s":367,"t":"Space"},{"c":"curl:","s":370,"t":"Str"}],"s":359,"t":"Para"},{"a":{"classes":[372],"id":null,"kvs":[]},"c":[["",["bash"],[]],"curl http://localhost:8000/users"],"s":371,"t":"CodeBlock"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["automated-tests",[],[]],[{"c":"Automated","s":374,"t":"Str"},{"s":375,"t":"Space"},{"c":"Tests","s":376,"t":"Str"}]],"s":373,"t":"Header"},{"c":[{"c":"Create","s":378,"t":"Str"},{"s":379,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"test_main.py"],"s":380,"t":"Code"},{"c":":","s":381,"t":"Str"}],"s":377,"t":"Para"},{"a":{"classes":[383],"id":null,"kvs":[]},"c":[["",["python"],[]],"from fastapi.testclient import TestClient\nfrom main import app\n\nclient = TestClient(app)\n\ndef test_read_root():\n response = client.get(\"/\")\n assert response.status_code == 200\n assert response.json() == {\"message\": \"Welcome to the API\"}"],"s":382,"t":"CodeBlock"},{"a":{"classes":[385],"id":null,"kvs":[]},"c":[["",["callout-tip"],[]],[{"c":[{"c":"Run","s":387,"t":"Str"},{"s":388,"t":"Space"},{"c":"tests","s":389,"t":"Str"},{"s":390,"t":"Space"},{"c":"with:","s":393,"t":"Str"},{"s":394,"t":"Space"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],"pytest test_main.py"],"s":395,"t":"Code"}],"s":386,"t":"Para"}]],"s":384,"t":"Div"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["next-steps",[],[]],[{"c":"Next","s":397,"t":"Str"},{"s":398,"t":"Space"},{"c":"Steps","s":399,"t":"Str"}]],"s":396,"t":"Header"},{"c":[{"c":"Congratulations!","s":401,"t":"Str"},{"s":402,"t":"Space"},{"c":"You’ve","s":403,"t":"Str"},{"s":404,"t":"Space"},{"c":"built","s":405,"t":"Str"},{"s":406,"t":"Space"},{"c":"a","s":407,"t":"Str"},{"s":408,"t":"Space"},{"c":"working","s":409,"t":"Str"},{"s":410,"t":"Space"},{"c":"API.","s":411,"t":"Str"},{"s":412,"t":"Space"},{"c":"Here’s","s":413,"t":"Str"},{"s":414,"t":"Space"},{"c":"what","s":415,"t":"Str"},{"s":416,"t":"Space"},{"c":"to","s":417,"t":"Str"},{"s":418,"t":"Space"},{"c":"learn","s":419,"t":"Str"},{"s":420,"t":"Space"},{"c":"next:","s":423,"t":"Str"}],"s":400,"t":"Para"},{"c":[[1,{"t":"Decimal"},{"t":"Period"}],[[{"c":[{"c":"Add","s":426,"t":"Str"},{"s":427,"t":"Space"},{"c":"database","s":428,"t":"Str"},{"s":429,"t":"Space"},{"c":"integration","s":430,"t":"Str"}],"s":425,"t":"Plain"}],[{"c":[{"c":"Implement","s":432,"t":"Str"},{"s":433,"t":"Space"},{"c":"authentication","s":434,"t":"Str"},{"s":435,"t":"Space"},{"c":"(JWT","s":438,"t":"Str"},{"s":439,"t":"Space"},{"c":"tokens)","s":442,"t":"Str"}],"s":431,"t":"Plain"}],[{"c":[{"c":"Add","s":444,"t":"Str"},{"s":445,"t":"Space"},{"c":"request","s":446,"t":"Str"},{"s":447,"t":"Space"},{"c":"validation","s":448,"t":"Str"},{"s":449,"t":"Space"},{"c":"with","s":450,"t":"Str"},{"s":451,"t":"Space"},{"c":"Pydantic","s":452,"t":"Str"}],"s":443,"t":"Plain"}],[{"c":[{"c":"Deploy","s":454,"t":"Str"},{"s":455,"t":"Space"},{"c":"to","s":456,"t":"Str"},{"s":457,"t":"Space"},{"c":"a","s":458,"t":"Str"},{"s":459,"t":"Space"},{"c":"cloud","s":460,"t":"Str"},{"s":461,"t":"Space"},{"c":"platform","s":462,"t":"Str"}],"s":453,"t":"Plain"}],[{"c":[{"c":"Set","s":464,"t":"Str"},{"s":465,"t":"Space"},{"c":"up","s":466,"t":"Str"},{"s":467,"t":"Space"},{"c":"monitoring","s":468,"t":"Str"},{"s":469,"t":"Space"},{"c":"and","s":470,"t":"Str"},{"s":471,"t":"Space"},{"c":"logging","s":472,"t":"Str"}],"s":463,"t":"Plain"}]]],"s":424,"t":"OrderedList"},{"a":{"classes":[474],"id":null,"kvs":[]},"c":[["",["callout-note"],[]],[{"a":{"classes":[],"id":null,"kvs":[]},"c":[2,["additional-resources",[],[]],[{"c":"Additional","s":476,"t":"Str"},{"s":477,"t":"Space"},{"c":"Resources","s":478,"t":"Str"}]],"s":475,"t":"Header"},{"c":[[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"FastAPI","s":482,"t":"Str"},{"s":483,"t":"Space"},{"c":"Documentation","s":484,"t":"Str"}],["https://fastapi.tiangolo.com",""]],"s":481,"t":"Link","targetS":[485,null]}],"s":480,"t":"Plain"}],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"SQLAlchemy","s":488,"t":"Str"},{"s":489,"t":"Space"},{"c":"Tutorial","s":490,"t":"Str"}],["https://docs.sqlalchemy.org",""]],"s":487,"t":"Link","targetS":[491,null]}],"s":486,"t":"Plain"}],[{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",[],[]],[{"c":"API","s":494,"t":"Str"},{"s":495,"t":"Space"},{"c":"Design","s":496,"t":"Str"},{"s":497,"t":"Space"},{"c":"Best","s":498,"t":"Str"},{"s":499,"t":"Space"},{"c":"Practices","s":500,"t":"Str"}],["https://restfulapi.net",""]],"s":493,"t":"Link","targetS":[501,null]}],"s":492,"t":"Plain"}]],"s":479,"t":"BulletList"}]],"s":473,"t":"Div"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["conclusion",[],[]],[{"c":"Conclusion","s":503,"t":"Str"}]],"s":502,"t":"Header"},{"c":[{"c":"You","s":505,"t":"Str"},{"s":506,"t":"Space"},{"c":"now","s":507,"t":"Str"},{"s":508,"t":"Space"},{"c":"have","s":509,"t":"Str"},{"s":510,"t":"Space"},{"c":"the","s":511,"t":"Str"},{"s":512,"t":"Space"},{"c":"foundation","s":513,"t":"Str"},{"s":514,"t":"Space"},{"c":"for","s":515,"t":"Str"},{"s":516,"t":"Space"},{"c":"building","s":517,"t":"Str"},{"s":518,"t":"Space"},{"c":"production-ready","s":519,"t":"Str"},{"s":520,"t":"Space"},{"c":"APIs.","s":521,"t":"Str"},{"s":522,"t":"Space"},{"c":"Keep","s":523,"t":"Str"},{"s":524,"t":"Space"},{"c":"practicing","s":525,"t":"Str"},{"s":526,"t":"Space"},{"c":"and","s":527,"t":"Str"},{"s":528,"t":"Space"},{"c":"exploring","s":529,"t":"Str"},{"s":530,"t":"Space"},{"c":"the","s":531,"t":"Str"},{"s":532,"t":"Space"},{"c":"ecosystem!","s":533,"t":"Str"}],"s":504,"t":"Para"}],"meta":{"author":{"c":[{"c":"Tutorial","s":538,"t":"Str"},{"s":540,"t":"Space"},{"c":"Team","s":542,"t":"Str"}],"s":535,"t":"MetaInlines"},"format":{"c":[{"c":"html","s":547,"t":"Str"}],"s":544,"t":"MetaInlines"},"subtitle":{"c":[{"c":"A","s":552,"t":"Str"},{"s":554,"t":"Space"},{"c":"Step-by-Step","s":556,"t":"Str"},{"s":558,"t":"Space"},{"c":"Tutorial","s":560,"t":"Str"}],"s":549,"t":"MetaInlines"},"title":{"c":[{"c":"Building","s":565,"t":"Str"},{"s":567,"t":"Space"},{"c":"Your","s":569,"t":"Str"},{"s":571,"t":"Space"},{"c":"First","s":573,"t":"Str"},{"s":575,"t":"Space"},{"c":"Web","s":577,"t":"Str"},{"s":579,"t":"Space"},{"c":"API","s":581,"t":"Str"}],"s":562,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,40,76,100,113,117,118,129,130,268,269,289,306,307,341,342,365,395,411,415,416,440,441,482,483,491,504,514,534,596,600,601,620,645,646,769,770,793,867,871,875,876,907,908,939,940,948,987,991,992,1026,1027,1034,1051,1067,1086,1090,1091,1157,1158,1183,1184,1206,1207,1227,1228,1238,1300,1356,1357,1383,1384,1402,1430,1431,1474,1517,1544,1548,1549,1573,1574,1592,1593,1603,1646,1670,1671,1687,1688,1702,1719,1764,1765,1784,1802,1815,1855,1892,1898,1902,1903,1928,1955,1956,1979,1980,2021,2056,2083,2096,2100,2101,2126,2127,2150,2151,2159,2185,2189,2190,2267,2268,2286,2287,2305,2306,2338,2339,2347,2380,2384,2385,2404,2405,2428,2429,2439,2481,2502,2503,2528,2529,2551,2582,2621,2685,2689,2690,2709,2747,2751,2752,2765,2766,2838,2839,2867,2908,2948,2978,3011,3012,3032,3056,3057,3113,3166,3220,3224,3225,3238,3239,3348],"name":"ts-packages/annotated-qmd/examples/tutorial.qmd","total_length":3349}],"metaTopLevelKeySources":{"author":583,"format":585,"subtitle":587,"title":589},"p":[{"d":0,"r":[119,130],"t":0},{"d":0,"r":[121,129],"t":0},{"d":0,"r":[131,269],"t":0},{"d":0,"r":[131,135],"t":0},{"d":0,"r":[135,136],"t":0},{"d":0,"r":[136,144],"t":0},{"d":0,"r":[144,145],"t":0},{"d":0,"r":[145,152],"t":0},{"d":0,"r":[152,153],"t":0},{"d":0,"r":[153,156],"t":0},{"d":0,"r":[156,157],"t":0},{"d":0,"r":[157,159],"t":0},{"d":0,"r":[159,160],"t":0},{"d":0,"r":[160,165],"t":0},{"d":0,"r":[165,166],"t":0},{"d":0,"r":[166,167],"t":0},{"d":0,"r":[167,168],"t":0},{"d":0,"r":[168,174],"t":0},{"d":0,"r":[174,175],"t":0},{"d":0,"r":[175,179],"t":0},{"d":0,"r":[179,180],"t":0},{"d":0,"r":[180,184],"t":0},{"d":0,"r":[184,185],"t":0},{"d":0,"r":[185,187],"t":0},{"d":0,"r":[187,188],"t":0},{"d":0,"r":[188,191],"t":0},{"d":0,"r":[191,192],"t":0},{"d":0,"r":[192,196],"t":0},{"d":0,"r":[196,197],"t":0},{"d":0,"r":[197,203],"t":0},{"d":0,"r":[203,204],"t":0},{"d":0,"r":[204,208],"t":0},{"d":0,"r":[208,209],"t":0},{"d":0,"r":[209,210],"t":0},{"d":0,"r":[210,211],"t":0},{"d":0,"r":[211,218],"t":0},{"d":0,"r":[218,219],"t":0},{"d":0,"r":[219,222],"t":0},{"d":0,"r":[222,223],"t":0},{"d":0,"r":[223,227],"t":0},{"d":0,"r":[227,228],"t":0},{"d":0,"r":[228,242],"t":0},{"d":0,"r":[242,243],"t":0},{"d":0,"r":[243,246],"t":0},{"d":0,"r":[246,247],"t":0},{"d":0,"r":[247,255],"t":0},{"d":0,"r":[255,256],"t":0},{"d":0,"r":[256,268],"t":0},{"d":0,"r":[270,416],"t":0},{"d":0,"r":[275,288],"t":0},{"d":0,"r":[290,307],"t":0},{"d":0,"r":[293,306],"t":0},{"d":0,"r":[308,342],"t":0},{"d":0,"r":[308,314],"t":0},{"d":0,"r":[314,315],"t":0},{"d":0,"r":[315,324],"t":0},{"d":0,"r":[324,325],"t":0},{"d":0,"r":[325,331],"t":0},{"d":0,"r":[331,332],"t":0},{"d":0,"r":[332,335],"t":0},{"d":0,"r":[335,336],"t":0},{"d":0,"r":[336,340],"t":0},{"d":0,"r":[340,341],"t":0},{"d":[[61,0,4],[62,4,1]],"r":[0,5],"t":2},{"d":0,"r":[343,412],"t":0},{"d":0,"r":[345,366],"t":0},{"d":0,"r":[345,351],"t":0},{"d":0,"r":[351,352],"t":0},{"d":0,"r":[352,355],"t":0},{"d":0,"r":[355,356],"t":0},{"d":0,"r":[356,358],"t":0},{"d":0,"r":[358,359],"t":0},{"d":0,"r":[359,365],"t":0},{"d":0,"r":[368,396],"t":0},{"d":0,"r":[368,373],"t":0},{"d":0,"r":[373,374],"t":0},{"d":0,"r":[374,387],"t":0},{"d":0,"r":[387,388],"t":0},{"d":0,"r":[388,390],"t":0},{"d":0,"r":[390,391],"t":0},{"d":0,"r":[391,395],"t":0},{"d":0,"r":[398,412],"t":0},{"d":0,"r":[398,399],"t":0},{"d":0,"r":[399,400],"t":0},{"d":0,"r":[400,404],"t":0},{"d":0,"r":[404,405],"t":0},{"d":0,"r":[405,411],"t":0},{"d":0,"r":[417,441],"t":0},{"d":0,"r":[419,423],"t":0},{"d":0,"r":[423,424],"t":0},{"d":0,"r":[424,425],"t":0},{"d":0,"r":[425,426],"t":0},{"d":[[90,0,1],[91,1,1]],"r":[0,2],"t":2},{"d":0,"r":[426,427],"t":0},{"d":0,"r":[427,434],"t":0},{"d":0,"r":[434,435],"t":0},{"d":0,"r":[435,440],"t":0},{"d":0,"r":[442,483],"t":0},{"d":0,"r":[442,448],"t":0},{"d":0,"r":[448,449],"t":0},{"d":0,"r":[449,450],"t":0},{"d":0,"r":[450,451],"t":0},{"d":0,"r":[451,454],"t":0},{"d":0,"r":[454,455],"t":0},{"d":0,"r":[455,464],"t":0},{"d":0,"r":[464,465],"t":0},{"d":0,"r":[465,468],"t":0},{"d":0,"r":[468,469],"t":0},{"d":0,"r":[469,473],"t":0},{"d":0,"r":[473,474],"t":0},{"d":0,"r":[474,481],"t":0},{"d":0,"r":[481,482],"t":0},{"d":[[110,0,7],[111,7,1]],"r":[0,8],"t":2},{"d":0,"r":[484,601],"t":0},{"d":0,"r":[487,491],"t":0},{"d":0,"r":[602,876],"t":0},{"d":0,"r":[607,619],"t":0},{"d":0,"r":[621,646],"t":0},{"d":0,"r":[625,632],"t":0},{"d":0,"r":[632,633],"t":0},{"d":0,"r":[633,645],"t":0},{"d":0,"r":[647,770],"t":0},{"d":0,"r":[647,653],"t":0},{"d":0,"r":[653,654],"t":0},{"d":0,"r":[654,657],"t":0},{"d":0,"r":[657,658],"t":0},{"d":0,"r":[658,659],"t":0},{"d":0,"r":[659,660],"t":0},{"d":0,"r":[660,667],"t":0},{"d":0,"r":[667,668],"t":0},{"d":0,"r":[668,679],"t":0},{"d":0,"r":[679,680],"t":0},{"d":0,"r":[680,682],"t":0},{"d":0,"r":[682,683],"t":0},{"d":0,"r":[683,690],"t":0},{"d":0,"r":[690,691],"t":0},{"d":0,"r":[691,695],"t":0},{"d":0,"r":[695,696],"t":0},{"d":0,"r":[696,703],"t":0},{"d":0,"r":[703,704],"t":0},{"d":0,"r":[704,717],"t":0},{"d":0,"r":[717,718],"t":0},{"d":0,"r":[718,722],"t":0},{"d":0,"r":[722,723],"t":0},{"d":0,"r":[723,731],"t":0},{"d":0,"r":[731,732],"t":0},{"d":0,"r":[732,741],"t":0},{"d":0,"r":[741,742],"t":0},{"d":0,"r":[742,749],"t":0},{"d":0,"r":[749,750],"t":0},{"d":0,"r":[750,759],"t":0},{"d":0,"r":[759,760],"t":0},{"d":0,"r":[760,769],"t":0},{"d":0,"r":[771,872],"t":0},{"d":0,"r":[776,792],"t":0},{"d":0,"r":[794,868],"t":0},{"d":0,"r":[794,798],"t":0},{"d":0,"r":[798,799],"t":0},{"d":0,"r":[799,803],"t":0},{"d":0,"r":[803,804],"t":0},{"d":0,"r":[804,806],"t":0},{"d":0,"r":[806,807],"t":0},{"d":0,"r":[807,815],"t":0},{"d":0,"r":[815,816],"t":0},{"d":0,"r":[816,819],"t":0},{"d":0,"r":[819,820],"t":0},{"d":0,"r":[820,827],"t":0},{"d":0,"r":[827,828],"t":0},{"d":0,"r":[828,839],"t":0},{"d":0,"r":[839,840],"t":0},{"d":0,"r":[840,846],"t":0},{"d":0,"r":[846,847],"t":0},{"d":0,"r":[847,857],"t":0},{"d":0,"r":[857,858],"t":0},{"d":0,"r":[858,867],"t":0},{"d":0,"r":[877,908],"t":0},{"d":0,"r":[879,883],"t":0},{"d":0,"r":[883,884],"t":0},{"d":0,"r":[884,885],"t":0},{"d":0,"r":[885,886],"t":0},{"d":[[178,0,1],[179,1,1]],"r":[0,2],"t":2},{"d":0,"r":[886,887],"t":0},{"d":0,"r":[887,894],"t":0},{"d":0,"r":[894,895],"t":0},{"d":0,"r":[895,907],"t":0},{"d":0,"r":[909,940],"t":0},{"d":0,"r":[909,916],"t":0},{"d":0,"r":[916,917],"t":0},{"d":0,"r":[917,920],"t":0},{"d":0,"r":[920,921],"t":0},{"d":0,"r":[921,929],"t":0},{"d":0,"r":[929,930],"t":0},{"d":0,"r":[930,938],"t":0},{"d":0,"r":[938,939],"t":0},{"d":[[192,0,8],[193,8,1]],"r":[0,9],"t":2},{"d":0,"r":[941,992],"t":0},{"d":0,"r":[944,948],"t":0},{"d":0,"r":[993,1027],"t":0},{"d":0,"r":[993,999],"t":0},{"d":0,"r":[999,1000],"t":0},{"d":0,"r":[1000,1001],"t":0},{"d":0,"r":[1001,1002],"t":0},{"d":0,"r":[1002,1020],"t":0},{"d":0,"r":[1020,1021],"t":0},{"d":0,"r":[1021,1025],"t":0},{"d":0,"r":[1025,1026],"t":0},{"d":[[204,0,4],[205,4,1]],"r":[0,5],"t":2},{"d":0,"r":[1028,1091],"t":0},{"d":0,"r":[1031,1034],"t":0},{"d":0,"r":[1092,1158],"t":0},{"d":0,"r":[1142,1156],"t":0},{"d":0,"r":[1092,1157],"t":0},{"d":0,"r":[1094,1101],"t":0},{"d":0,"r":[1101,1102],"t":0},{"d":0,"r":[1102,1111],"t":0},{"d":0,"r":[1111,1112],"t":0},{"d":0,"r":[1112,1125],"t":0},{"d":0,"r":[1092,1157],"t":0},{"d":0,"r":[1092,1157],"t":0},{"d":0,"r":[1094,1101],"t":0},{"d":0,"r":[1101,1102],"t":0},{"d":0,"r":[1102,1111],"t":0},{"d":0,"r":[1111,1112],"t":0},{"d":0,"r":[1112,1125],"t":0},{"d":0,"r":[1127,1140],"t":0},{"d":0,"r":[1092,1157],"t":0},{"d":0,"r":[1159,1184],"t":0},{"d":0,"r":[1161,1165],"t":0},{"d":0,"r":[1165,1166],"t":0},{"d":0,"r":[1166,1167],"t":0},{"d":0,"r":[1167,1168],"t":0},{"d":[[229,0,1],[230,1,1]],"r":[0,2],"t":2},{"d":0,"r":[1168,1169],"t":0},{"d":0,"r":[1169,1175],"t":0},{"d":0,"r":[1175,1176],"t":0},{"d":0,"r":[1176,1179],"t":0},{"d":0,"r":[1179,1180],"t":0},{"d":0,"r":[1180,1183],"t":0},{"d":0,"r":[1185,1207],"t":0},{"d":0,"r":[1188,1194],"t":0},{"d":0,"r":[1194,1195],"t":0},{"d":0,"r":[1195,1199],"t":0},{"d":0,"r":[1199,1200],"t":0},{"d":0,"r":[1200,1206],"t":0},{"d":0,"r":[1208,1228],"t":0},{"d":0,"r":[1208,1214],"t":0},{"d":0,"r":[1214,1215],"t":0},{"d":0,"r":[1215,1226],"t":0},{"d":0,"r":[1226,1227],"t":0},{"d":0,"r":[1229,1549],"t":0},{"d":0,"r":[1232,1238],"t":0},{"d":0,"r":[1550,1574],"t":0},{"d":0,"r":[1553,1559],"t":0},{"d":0,"r":[1559,1560],"t":0},{"d":0,"r":[1560,1563],"t":0},{"d":0,"r":[1563,1564],"t":0},{"d":0,"r":[1564,1573],"t":0},{"d":0,"r":[1575,1593],"t":0},{"d":0,"r":[1575,1581],"t":0},{"d":0,"r":[1581,1582],"t":0},{"d":0,"r":[1582,1591],"t":0},{"d":0,"r":[1591,1592],"t":0},{"d":0,"r":[1594,1903],"t":0},{"d":0,"r":[1597,1603],"t":0},{"d":0,"r":[1904,2101],"t":0},{"d":0,"r":[1909,1927],"t":0},{"d":0,"r":[1929,1956],"t":0},{"d":0,"r":[1932,1940],"t":0},{"d":0,"r":[1940,1941],"t":0},{"d":0,"r":[1941,1955],"t":0},{"d":0,"r":[1957,1980],"t":0},{"d":0,"r":[1957,1959],"t":0},{"d":0,"r":[1959,1960],"t":0},{"d":0,"r":[1960,1971],"t":0},{"d":0,"r":[1971,1972],"t":0},{"d":0,"r":[1972,1978],"t":0},{"d":0,"r":[1978,1979],"t":0},{"d":[[275,0,6],[276,6,1]],"r":[0,7],"t":2},{"d":0,"r":[1981,2097],"t":0},{"d":0,"r":[1984,2022],"t":0},{"d":0,"r":[1984,1987],"t":0},{"d":0,"r":[1987,1988],"t":0},{"d":0,"r":[1988,1999],"t":0},{"d":0,"r":[1999,2000],"t":0},{"d":0,"r":[2000,2009],"t":0},{"d":0,"r":[2009,2010],"t":0},{"d":0,"r":[2010,2013],"t":0},{"d":0,"r":[2013,2014],"t":0},{"d":0,"r":[2014,2021],"t":0},{"d":0,"r":[2025,2057],"t":0},{"d":0,"r":[2025,2034],"t":0},{"d":0,"r":[2034,2035],"t":0},{"d":0,"r":[2035,2041],"t":0},{"d":0,"r":[2041,2042],"t":0},{"d":0,"r":[2042,2056],"t":0},{"d":0,"r":[2060,2084],"t":0},{"d":0,"r":[2060,2068],"t":0},{"d":0,"r":[2068,2069],"t":0},{"d":0,"r":[2069,2072],"t":0},{"d":0,"r":[2072,2073],"t":0},{"d":0,"r":[2073,2078],"t":0},{"d":0,"r":[2078,2079],"t":0},{"d":0,"r":[2079,2083],"t":0},{"d":0,"r":[2087,2097],"t":0},{"d":0,"r":[2087,2090],"t":0},{"d":0,"r":[2090,2091],"t":0},{"d":0,"r":[2091,2096],"t":0},{"d":0,"r":[2102,2127],"t":0},{"d":0,"r":[2104,2108],"t":0},{"d":0,"r":[2108,2109],"t":0},{"d":0,"r":[2109,2110],"t":0},{"d":0,"r":[2110,2111],"t":0},{"d":[[310,0,1],[311,1,1]],"r":[0,2],"t":2},{"d":0,"r":[2111,2112],"t":0},{"d":0,"r":[2112,2115],"t":0},{"d":0,"r":[2115,2116],"t":0},{"d":0,"r":[2116,2119],"t":0},{"d":0,"r":[2119,2120],"t":0},{"d":0,"r":[2120,2126],"t":0},{"d":0,"r":[2128,2151],"t":0},{"d":0,"r":[2128,2133],"t":0},{"d":0,"r":[2133,2134],"t":0},{"d":0,"r":[2134,2138],"t":0},{"d":0,"r":[2138,2139],"t":0},{"d":0,"r":[2139,2142],"t":0},{"d":0,"r":[2142,2143],"t":0},{"d":0,"r":[2143,2149],"t":0},{"d":0,"r":[2149,2150],"t":0},{"d":[[326,0,6],[327,6,1]],"r":[0,7],"t":2},{"d":0,"r":[2152,2190],"t":0},{"d":0,"r":[2155,2159],"t":0},{"d":0,"r":[2191,2268],"t":0},{"d":0,"r":[2191,2196],"t":0},{"d":0,"r":[2196,2197],"t":0},{"d":0,"r":[2197,2225],"t":0},{"d":0,"r":[2225,2226],"t":0},{"d":0,"r":[2226,2228],"t":0},{"d":0,"r":[2228,2229],"t":0},{"d":0,"r":[2229,2232],"t":0},{"d":0,"r":[2232,2233],"t":0},{"d":0,"r":[2233,2236],"t":0},{"d":0,"r":[2236,2237],"t":0},{"d":0,"r":[2237,2248],"t":0},{"d":0,"r":[2248,2249],"t":0},{"d":0,"r":[2249,2252],"t":0},{"d":0,"r":[2252,2253],"t":0},{"d":0,"r":[2253,2267],"t":0},{"d":0,"r":[2269,2287],"t":0},{"d":0,"r":[2271,2275],"t":0},{"d":0,"r":[2275,2276],"t":0},{"d":0,"r":[2276,2277],"t":0},{"d":0,"r":[2277,2278],"t":0},{"d":[[350,0,1],[351,1,1]],"r":[0,2],"t":2},{"d":0,"r":[2278,2279],"t":0},{"d":0,"r":[2279,2286],"t":0},{"d":0,"r":[2288,2306],"t":0},{"d":0,"r":[2291,2297],"t":0},{"d":0,"r":[2297,2298],"t":0},{"d":0,"r":[2298,2305],"t":0},{"d":0,"r":[2307,2339],"t":0},{"d":0,"r":[2307,2311],"t":0},{"d":0,"r":[2311,2312],"t":0},{"d":0,"r":[2312,2316],"t":0},{"d":0,"r":[2316,2317],"t":0},{"d":0,"r":[2317,2326],"t":0},{"d":0,"r":[2326,2327],"t":0},{"d":0,"r":[2327,2332],"t":0},{"d":0,"r":[2332,2333],"t":0},{"d":0,"r":[2333,2337],"t":0},{"d":0,"r":[2337,2338],"t":0},{"d":[[368,0,4],[369,4,1]],"r":[0,5],"t":2},{"d":0,"r":[2340,2385],"t":0},{"d":0,"r":[2343,2347],"t":0},{"d":0,"r":[2386,2405],"t":0},{"d":0,"r":[2389,2398],"t":0},{"d":0,"r":[2398,2399],"t":0},{"d":0,"r":[2399,2404],"t":0},{"d":0,"r":[2406,2429],"t":0},{"d":0,"r":[2406,2412],"t":0},{"d":0,"r":[2412,2413],"t":0},{"d":0,"r":[2413,2427],"t":0},{"d":0,"r":[2427,2428],"t":0},{"d":0,"r":[2430,2690],"t":0},{"d":0,"r":[2433,2439],"t":0},{"d":0,"r":[2691,2752],"t":0},{"d":0,"r":[2696,2708],"t":0},{"d":0,"r":[2710,2748],"t":0},{"d":0,"r":[2710,2713],"t":0},{"d":0,"r":[2713,2714],"t":0},{"d":0,"r":[2714,2719],"t":0},{"d":0,"r":[2719,2720],"t":0},{"d":0,"r":[2720,2724],"t":0},{"d":0,"r":[2724,2725],"t":0},{"d":[[391,0,4],[392,4,1]],"r":[0,5],"t":2},{"d":0,"r":[2725,2726],"t":0},{"d":0,"r":[2726,2747],"t":0},{"d":0,"r":[2753,2766],"t":0},{"d":0,"r":[2755,2759],"t":0},{"d":0,"r":[2759,2760],"t":0},{"d":0,"r":[2760,2765],"t":0},{"d":0,"r":[2767,2839],"t":0},{"d":0,"r":[2767,2783],"t":0},{"d":0,"r":[2783,2784],"t":0},{"d":0,"r":[2784,2790],"t":0},{"d":0,"r":[2790,2791],"t":0},{"d":0,"r":[2791,2796],"t":0},{"d":0,"r":[2796,2797],"t":0},{"d":0,"r":[2797,2798],"t":0},{"d":0,"r":[2798,2799],"t":0},{"d":0,"r":[2799,2806],"t":0},{"d":0,"r":[2806,2807],"t":0},{"d":0,"r":[2807,2811],"t":0},{"d":0,"r":[2811,2812],"t":0},{"d":0,"r":[2812,2818],"t":0},{"d":0,"r":[2818,2819],"t":0},{"d":0,"r":[2819,2823],"t":0},{"d":0,"r":[2823,2824],"t":0},{"d":0,"r":[2824,2826],"t":0},{"d":0,"r":[2826,2827],"t":0},{"d":0,"r":[2827,2832],"t":0},{"d":0,"r":[2832,2833],"t":0},{"d":0,"r":[2833,2837],"t":0},{"d":0,"r":[2837,2838],"t":0},{"d":[[421,0,4],[422,4,1]],"r":[0,5],"t":2},{"d":0,"r":[2840,3013],"t":0},{"d":0,"r":[2843,2868],"t":0},{"d":0,"r":[2843,2846],"t":0},{"d":0,"r":[2846,2847],"t":0},{"d":0,"r":[2847,2855],"t":0},{"d":0,"r":[2855,2856],"t":0},{"d":0,"r":[2856,2867],"t":0},{"d":0,"r":[2871,2909],"t":0},{"d":0,"r":[2871,2880],"t":0},{"d":0,"r":[2880,2881],"t":0},{"d":0,"r":[2881,2895],"t":0},{"d":0,"r":[2895,2896],"t":0},{"d":0,"r":[2896,2897],"t":0},{"d":0,"r":[2897,2900],"t":0},{"d":[[436,0,1],[437,1,3]],"r":[0,4],"t":2},{"d":0,"r":[2900,2901],"t":0},{"d":0,"r":[2901,2907],"t":0},{"d":0,"r":[2907,2908],"t":0},{"d":[[440,0,6],[441,6,1]],"r":[0,7],"t":2},{"d":0,"r":[2912,2949],"t":0},{"d":0,"r":[2912,2915],"t":0},{"d":0,"r":[2915,2916],"t":0},{"d":0,"r":[2916,2923],"t":0},{"d":0,"r":[2923,2924],"t":0},{"d":0,"r":[2924,2934],"t":0},{"d":0,"r":[2934,2935],"t":0},{"d":0,"r":[2935,2939],"t":0},{"d":0,"r":[2939,2940],"t":0},{"d":0,"r":[2940,2948],"t":0},{"d":0,"r":[2952,2979],"t":0},{"d":0,"r":[2952,2958],"t":0},{"d":0,"r":[2958,2959],"t":0},{"d":0,"r":[2959,2961],"t":0},{"d":0,"r":[2961,2962],"t":0},{"d":0,"r":[2962,2963],"t":0},{"d":0,"r":[2963,2964],"t":0},{"d":0,"r":[2964,2969],"t":0},{"d":0,"r":[2969,2970],"t":0},{"d":0,"r":[2970,2978],"t":0},{"d":0,"r":[2982,3012],"t":0},{"d":0,"r":[2982,2985],"t":0},{"d":0,"r":[2985,2986],"t":0},{"d":0,"r":[2986,2988],"t":0},{"d":0,"r":[2988,2989],"t":0},{"d":0,"r":[2989,2999],"t":0},{"d":0,"r":[2999,3000],"t":0},{"d":0,"r":[3000,3003],"t":0},{"d":0,"r":[3003,3004],"t":0},{"d":0,"r":[3004,3011],"t":0},{"d":0,"r":[3013,3225],"t":0},{"d":0,"r":[3018,3031],"t":0},{"d":0,"r":[3033,3057],"t":0},{"d":0,"r":[3036,3046],"t":0},{"d":0,"r":[3046,3047],"t":0},{"d":0,"r":[3047,3056],"t":0},{"d":0,"r":[3058,3221],"t":0},{"d":0,"r":[3060,3114],"t":0},{"d":0,"r":[3060,3113],"t":0},{"d":0,"r":[3061,3068],"t":0},{"d":0,"r":[3068,3069],"t":0},{"d":0,"r":[3069,3082],"t":0},{"d":0,"r":[3084,3112],"t":0},{"d":0,"r":[3116,3167],"t":0},{"d":0,"r":[3116,3166],"t":0},{"d":0,"r":[3117,3127],"t":0},{"d":0,"r":[3127,3128],"t":0},{"d":0,"r":[3128,3136],"t":0},{"d":0,"r":[3138,3165],"t":0},{"d":0,"r":[3169,3221],"t":0},{"d":0,"r":[3169,3220],"t":0},{"d":0,"r":[3170,3173],"t":0},{"d":0,"r":[3173,3174],"t":0},{"d":0,"r":[3174,3180],"t":0},{"d":0,"r":[3180,3181],"t":0},{"d":0,"r":[3181,3185],"t":0},{"d":0,"r":[3185,3186],"t":0},{"d":0,"r":[3186,3195],"t":0},{"d":0,"r":[3197,3219],"t":0},{"d":0,"r":[3226,3239],"t":0},{"d":0,"r":[3228,3238],"t":0},{"d":0,"r":[3240,3349],"t":0},{"d":0,"r":[3240,3243],"t":0},{"d":0,"r":[3243,3244],"t":0},{"d":0,"r":[3244,3247],"t":0},{"d":0,"r":[3247,3248],"t":0},{"d":0,"r":[3248,3252],"t":0},{"d":0,"r":[3252,3253],"t":0},{"d":0,"r":[3253,3256],"t":0},{"d":0,"r":[3256,3257],"t":0},{"d":0,"r":[3257,3267],"t":0},{"d":0,"r":[3267,3268],"t":0},{"d":0,"r":[3268,3271],"t":0},{"d":0,"r":[3271,3272],"t":0},{"d":0,"r":[3272,3280],"t":0},{"d":0,"r":[3280,3281],"t":0},{"d":0,"r":[3281,3297],"t":0},{"d":0,"r":[3297,3298],"t":0},{"d":0,"r":[3298,3303],"t":0},{"d":0,"r":[3303,3304],"t":0},{"d":0,"r":[3304,3308],"t":0},{"d":0,"r":[3308,3309],"t":0},{"d":0,"r":[3309,3319],"t":0},{"d":0,"r":[3319,3320],"t":0},{"d":0,"r":[3320,3323],"t":0},{"d":0,"r":[3323,3324],"t":0},{"d":0,"r":[3324,3333],"t":0},{"d":0,"r":[3333,3334],"t":0},{"d":0,"r":[3334,3337],"t":0},{"d":0,"r":[3337,3338],"t":0},{"d":0,"r":[3338,3348],"t":0},{"d":0,"r":[4,114],"t":0},{"d":534,"r":[81,96],"t":1},{"d":0,"r":[4,114],"t":0},{"d":536,"r":[82,95],"t":1},{"d":537,"r":[0,8],"t":1},{"d":536,"r":[82,95],"t":1},{"d":539,"r":[8,9],"t":1},{"d":536,"r":[82,95],"t":1},{"d":541,"r":[9,13],"t":1},{"d":0,"r":[4,114],"t":0},{"d":543,"r":[105,109],"t":1},{"d":0,"r":[4,114],"t":0},{"d":545,"r":[105,109],"t":1},{"d":546,"r":[0,4],"t":1},{"d":0,"r":[4,114],"t":0},{"d":548,"r":[47,72],"t":1},{"d":0,"r":[4,114],"t":0},{"d":550,"r":[48,71],"t":1},{"d":551,"r":[0,1],"t":1},{"d":550,"r":[48,71],"t":1},{"d":553,"r":[1,2],"t":1},{"d":550,"r":[48,71],"t":1},{"d":555,"r":[2,14],"t":1},{"d":550,"r":[48,71],"t":1},{"d":557,"r":[14,15],"t":1},{"d":550,"r":[48,71],"t":1},{"d":559,"r":[15,23],"t":1},{"d":0,"r":[4,114],"t":0},{"d":561,"r":[7,36],"t":1},{"d":0,"r":[4,114],"t":0},{"d":563,"r":[8,35],"t":1},{"d":564,"r":[0,8],"t":1},{"d":563,"r":[8,35],"t":1},{"d":566,"r":[8,9],"t":1},{"d":563,"r":[8,35],"t":1},{"d":568,"r":[9,13],"t":1},{"d":563,"r":[8,35],"t":1},{"d":570,"r":[13,14],"t":1},{"d":563,"r":[8,35],"t":1},{"d":572,"r":[14,19],"t":1},{"d":563,"r":[8,35],"t":1},{"d":574,"r":[19,20],"t":1},{"d":563,"r":[8,35],"t":1},{"d":576,"r":[20,23],"t":1},{"d":563,"r":[8,35],"t":1},{"d":578,"r":[23,24],"t":1},{"d":563,"r":[8,35],"t":1},{"d":580,"r":[24,27],"t":1},{"d":0,"r":[4,114],"t":0},{"d":582,"r":[73,79],"t":1},{"d":0,"r":[4,114],"t":0},{"d":584,"r":[97,103],"t":1},{"d":0,"r":[4,114],"t":0},{"d":586,"r":[37,45],"t":1},{"d":0,"r":[4,114],"t":0},{"d":588,"r":[0,5],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/yaml-tags.json b/ts-packages/annotated-qmd/examples/yaml-tags.json index c1bad5ae3..e9ef940f1 100644 --- a/ts-packages/annotated-qmd/examples/yaml-tags.json +++ b/ts-packages/annotated-qmd/examples/yaml-tags.json @@ -1 +1 @@ -{"blocks":[{"c":[{"c":"This","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"document","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"demonstrates","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"YAML","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"tagged","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"values.","s":11,"t":"Str"}],"s":0,"t":"Para"}],"meta":{"compute":{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",["yaml-tagged-string"],[["tag","expr"]]],[{"c":"x + 1","s":16,"t":"Str"}]],"s":15,"t":"Span"}],"s":14,"t":"MetaInlines"},"date":{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",["yaml-tagged-string"],[["tag","date"]]],[{"c":"2024-01-15","s":20,"t":"Str"}]],"s":19,"t":"Span"}],"s":18,"t":"MetaInlines"},"path":{"c":[{"c":"/usr/local/bin","s":23,"t":"Str"}],"s":22,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,24,51,74,78,79,126],"name":"ts-packages/annotated-qmd/examples/yaml-tags.qmd","total_length":127}],"metaTopLevelKeySources":{"compute":25,"date":27,"path":29},"p":[{"d":0,"r":[80,127],"t":0},{"d":0,"r":[80,84],"t":0},{"d":0,"r":[84,85],"t":0},{"d":0,"r":[85,93],"t":0},{"d":0,"r":[93,94],"t":0},{"d":0,"r":[94,106],"t":0},{"d":0,"r":[106,107],"t":0},{"d":0,"r":[107,111],"t":0},{"d":0,"r":[111,112],"t":0},{"d":0,"r":[112,118],"t":0},{"d":0,"r":[118,119],"t":0},{"d":0,"r":[119,126],"t":0},{"d":0,"r":[0,79],"t":0},{"d":12,"r":[4,74],"t":1},{"d":13,"r":[15,20],"t":1},{"d":13,"r":[15,20],"t":1},{"d":13,"r":[15,20],"t":1},{"d":12,"r":[4,74],"t":1},{"d":17,"r":[60,70],"t":1},{"d":17,"r":[60,70],"t":1},{"d":17,"r":[60,70],"t":1},{"d":12,"r":[4,74],"t":1},{"d":21,"r":[33,47],"t":1},{"d":21,"r":[33,47],"t":1},{"d":12,"r":[4,74],"t":1},{"d":24,"r":[0,7],"t":1},{"d":12,"r":[4,74],"t":1},{"d":26,"r":[48,52],"t":1},{"d":12,"r":[4,74],"t":1},{"d":28,"r":[21,25],"t":1}]}} \ No newline at end of file +{"blocks":[{"c":[{"c":"This","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"document","s":3,"t":"Str"},{"s":4,"t":"Space"},{"c":"demonstrates","s":5,"t":"Str"},{"s":6,"t":"Space"},{"c":"YAML","s":7,"t":"Str"},{"s":8,"t":"Space"},{"c":"tagged","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"values.","s":11,"t":"Str"}],"s":0,"t":"Para"}],"meta":{"compute":{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",["yaml-tagged-string"],[["tag","expr"]]],[{"c":"x + 1","s":15,"t":"Str"}]],"s":14,"t":"Span"}],"s":13,"t":"MetaInlines"},"date":{"c":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[["",["yaml-tagged-string"],[["tag","date"]]],[{"c":"2024-01-15","s":19,"t":"Str"}]],"s":18,"t":"Span"}],"s":17,"t":"MetaInlines"},"path":{"c":[{"c":"/usr/local/bin","s":22,"t":"Str"}],"s":21,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,24,51,74,78,79,126],"name":"ts-packages/annotated-qmd/examples/yaml-tags.qmd","total_length":127}],"metaTopLevelKeySources":{"compute":24,"date":26,"path":28},"p":[{"d":0,"r":[80,127],"t":0},{"d":0,"r":[80,84],"t":0},{"d":0,"r":[84,85],"t":0},{"d":0,"r":[85,93],"t":0},{"d":0,"r":[93,94],"t":0},{"d":0,"r":[94,106],"t":0},{"d":0,"r":[106,107],"t":0},{"d":0,"r":[107,111],"t":0},{"d":0,"r":[111,112],"t":0},{"d":0,"r":[112,118],"t":0},{"d":0,"r":[118,119],"t":0},{"d":0,"r":[119,126],"t":0},{"d":0,"r":[4,75],"t":0},{"d":12,"r":[15,20],"t":1},{"d":12,"r":[15,20],"t":1},{"d":12,"r":[15,20],"t":1},{"d":0,"r":[4,75],"t":0},{"d":16,"r":[60,70],"t":1},{"d":16,"r":[60,70],"t":1},{"d":16,"r":[60,70],"t":1},{"d":0,"r":[4,75],"t":0},{"d":20,"r":[33,47],"t":1},{"d":20,"r":[33,47],"t":1},{"d":0,"r":[4,75],"t":0},{"d":23,"r":[0,7],"t":1},{"d":0,"r":[4,75],"t":0},{"d":25,"r":[48,52],"t":1},{"d":0,"r":[4,75],"t":0},{"d":27,"r":[21,25],"t":1}]}} \ No newline at end of file diff --git a/ts-packages/annotated-qmd/examples/zero-width.json b/ts-packages/annotated-qmd/examples/zero-width.json index daa754226..22cf4ed56 100644 --- a/ts-packages/annotated-qmd/examples/zero-width.json +++ b/ts-packages/annotated-qmd/examples/zero-width.json @@ -1 +1 @@ -{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["zero-width-elements",[],[]],[{"c":"Zero-Width","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Elements","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"Word","s":5,"t":"Str"},{"s":6,"t":"LineBreak"},{"c":"Word","s":7,"t":"Str"}],"s":4,"t":"Para"},{"c":[{"c":"This","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"paragraph","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"has","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"multiple","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"spaces","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"between","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"words.","s":21,"t":"Str"}],"s":8,"t":"Para"},{"c":[{"c":"SoftBreak","s":23,"t":"Str"},{"s":24,"t":"Space"},{"c":"happens","s":25,"t":"Str"},{"s":26,"t":"SoftBreak"},{"c":"when","s":27,"t":"Str"},{"s":28,"t":"Space"},{"c":"text","s":29,"t":"Str"},{"s":30,"t":"Space"},{"c":"wraps","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"naturally","s":33,"t":"Str"},{"s":34,"t":"SoftBreak"},{"c":"across","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"multiple","s":37,"t":"Str"},{"s":38,"t":"Space"},{"c":"lines.","s":39,"t":"Str"}],"s":22,"t":"Para"},{"c":[{"c":"LineBreak","s":41,"t":"Str"},{"s":42,"t":"Space"},{"c":"uses","s":43,"t":"Str"},{"s":44,"t":"Space"},{"c":"backslash:","s":47,"t":"Str"},{"s":48,"t":"LineBreak"},{"c":"Like","s":49,"t":"Str"},{"s":50,"t":"Space"},{"c":"this.","s":51,"t":"Str"}],"s":40,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["file-boundaries",[],[]],[{"c":"File","s":53,"t":"Str"},{"s":54,"t":"Space"},{"c":"Boundaries","s":55,"t":"Str"}]],"s":52,"t":"Header"},{"c":[{"c":"First","s":57,"t":"Str"},{"s":58,"t":"Space"},{"c":"character","s":59,"t":"Str"},{"s":60,"t":"Space"},{"c":"test.","s":61,"t":"Str"}],"s":56,"t":"Para"},{"c":[{"c":"Last","s":63,"t":"Str"},{"s":64,"t":"Space"},{"c":"character","s":65,"t":"Str"},{"s":66,"t":"Space"},{"c":"test.","s":67,"t":"Str"}],"s":62,"t":"Para"}],"meta":{"title":{"c":[{"c":"Zero-Width","s":73,"t":"Str"},{"s":75,"t":"Space"},{"c":"Elements","s":77,"t":"Str"}],"s":70,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,32,36,37,59,60,66,71,72,126,127,145,171,194,195,222,233,234,252,253,275,276,297],"name":"ts-packages/annotated-qmd/examples/zero-width.qmd","total_length":298}],"metaTopLevelKeySources":{"title":79},"p":[{"d":0,"r":[38,60],"t":0},{"d":0,"r":[40,50],"t":0},{"d":0,"r":[50,51],"t":0},{"d":0,"r":[51,59],"t":0},{"d":0,"r":[61,72],"t":0},{"d":0,"r":[61,65],"t":0},{"d":0,"r":[65,66],"t":0},{"d":0,"r":[67,71],"t":0},{"d":0,"r":[73,127],"t":0},{"d":0,"r":[73,77],"t":0},{"d":0,"r":[77,78],"t":0},{"d":0,"r":[78,87],"t":0},{"d":0,"r":[87,88],"t":0},{"d":0,"r":[88,91],"t":0},{"d":0,"r":[91,92],"t":0},{"d":0,"r":[92,100],"t":0},{"d":0,"r":[100,105],"t":0},{"d":0,"r":[105,111],"t":0},{"d":0,"r":[111,112],"t":0},{"d":0,"r":[112,119],"t":0},{"d":0,"r":[119,120],"t":0},{"d":0,"r":[120,126],"t":0},{"d":0,"r":[128,195],"t":0},{"d":0,"r":[128,137],"t":0},{"d":0,"r":[137,138],"t":0},{"d":0,"r":[138,145],"t":0},{"d":0,"r":[145,146],"t":0},{"d":0,"r":[146,150],"t":0},{"d":0,"r":[150,151],"t":0},{"d":0,"r":[151,155],"t":0},{"d":0,"r":[155,156],"t":0},{"d":0,"r":[156,161],"t":0},{"d":0,"r":[161,162],"t":0},{"d":0,"r":[162,171],"t":0},{"d":0,"r":[171,172],"t":0},{"d":0,"r":[172,178],"t":0},{"d":0,"r":[178,179],"t":0},{"d":0,"r":[179,187],"t":0},{"d":0,"r":[187,188],"t":0},{"d":0,"r":[188,194],"t":0},{"d":0,"r":[196,234],"t":0},{"d":0,"r":[196,205],"t":0},{"d":0,"r":[205,206],"t":0},{"d":0,"r":[206,210],"t":0},{"d":0,"r":[210,211],"t":0},{"d":0,"r":[211,220],"t":0},{"d":0,"r":[220,221],"t":0},{"d":[[45,0,9],[46,9,1]],"r":[0,10],"t":2},{"d":0,"r":[221,222],"t":0},{"d":0,"r":[223,227],"t":0},{"d":0,"r":[227,228],"t":0},{"d":0,"r":[228,233],"t":0},{"d":0,"r":[235,253],"t":0},{"d":0,"r":[237,241],"t":0},{"d":0,"r":[241,242],"t":0},{"d":0,"r":[242,252],"t":0},{"d":0,"r":[254,276],"t":0},{"d":0,"r":[254,259],"t":0},{"d":0,"r":[259,260],"t":0},{"d":0,"r":[260,269],"t":0},{"d":0,"r":[269,270],"t":0},{"d":0,"r":[270,275],"t":0},{"d":0,"r":[277,298],"t":0},{"d":0,"r":[277,281],"t":0},{"d":0,"r":[281,282],"t":0},{"d":0,"r":[282,291],"t":0},{"d":0,"r":[291,292],"t":0},{"d":0,"r":[292,297],"t":0},{"d":0,"r":[0,37],"t":0},{"d":68,"r":[4,32],"t":1},{"d":69,"r":[7,28],"t":1},{"d":68,"r":[4,32],"t":1},{"d":71,"r":[8,27],"t":1},{"d":72,"r":[0,10],"t":1},{"d":71,"r":[8,27],"t":1},{"d":74,"r":[10,11],"t":1},{"d":71,"r":[8,27],"t":1},{"d":76,"r":[11,19],"t":1},{"d":68,"r":[4,32],"t":1},{"d":78,"r":[0,5],"t":1}]}} \ No newline at end of file +{"blocks":[{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["zero-width-elements",[],[]],[{"c":"Zero-Width","s":1,"t":"Str"},{"s":2,"t":"Space"},{"c":"Elements","s":3,"t":"Str"}]],"s":0,"t":"Header"},{"c":[{"c":"Word","s":5,"t":"Str"},{"s":6,"t":"LineBreak"},{"c":"Word","s":7,"t":"Str"}],"s":4,"t":"Para"},{"c":[{"c":"This","s":9,"t":"Str"},{"s":10,"t":"Space"},{"c":"paragraph","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"has","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"multiple","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"spaces","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"between","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"words.","s":21,"t":"Str"}],"s":8,"t":"Para"},{"c":[{"c":"SoftBreak","s":23,"t":"Str"},{"s":24,"t":"Space"},{"c":"happens","s":25,"t":"Str"},{"s":26,"t":"SoftBreak"},{"c":"when","s":27,"t":"Str"},{"s":28,"t":"Space"},{"c":"text","s":29,"t":"Str"},{"s":30,"t":"Space"},{"c":"wraps","s":31,"t":"Str"},{"s":32,"t":"Space"},{"c":"naturally","s":33,"t":"Str"},{"s":34,"t":"SoftBreak"},{"c":"across","s":35,"t":"Str"},{"s":36,"t":"Space"},{"c":"multiple","s":37,"t":"Str"},{"s":38,"t":"Space"},{"c":"lines.","s":39,"t":"Str"}],"s":22,"t":"Para"},{"c":[{"c":"LineBreak","s":41,"t":"Str"},{"s":42,"t":"Space"},{"c":"uses","s":43,"t":"Str"},{"s":44,"t":"Space"},{"c":"backslash:","s":47,"t":"Str"},{"s":48,"t":"LineBreak"},{"c":"Like","s":49,"t":"Str"},{"s":50,"t":"Space"},{"c":"this.","s":51,"t":"Str"}],"s":40,"t":"Para"},{"a":{"classes":[],"id":null,"kvs":[]},"c":[1,["file-boundaries",[],[]],[{"c":"File","s":53,"t":"Str"},{"s":54,"t":"Space"},{"c":"Boundaries","s":55,"t":"Str"}]],"s":52,"t":"Header"},{"c":[{"c":"First","s":57,"t":"Str"},{"s":58,"t":"Space"},{"c":"character","s":59,"t":"Str"},{"s":60,"t":"Space"},{"c":"test.","s":61,"t":"Str"}],"s":56,"t":"Para"},{"c":[{"c":"Last","s":63,"t":"Str"},{"s":64,"t":"Space"},{"c":"character","s":65,"t":"Str"},{"s":66,"t":"Space"},{"c":"test.","s":67,"t":"Str"}],"s":62,"t":"Para"}],"meta":{"title":{"c":[{"c":"Zero-Width","s":72,"t":"Str"},{"s":74,"t":"Space"},{"c":"Elements","s":76,"t":"Str"}],"s":69,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1],"astContext":{"files":[{"line_breaks":[3,32,36,37,59,60,66,71,72,126,127,145,171,194,195,222,233,234,252,253,275,276,297],"name":"ts-packages/annotated-qmd/examples/zero-width.qmd","total_length":298}],"metaTopLevelKeySources":{"title":78},"p":[{"d":0,"r":[38,60],"t":0},{"d":0,"r":[40,50],"t":0},{"d":0,"r":[50,51],"t":0},{"d":0,"r":[51,59],"t":0},{"d":0,"r":[61,72],"t":0},{"d":0,"r":[61,65],"t":0},{"d":0,"r":[65,66],"t":0},{"d":0,"r":[67,71],"t":0},{"d":0,"r":[73,127],"t":0},{"d":0,"r":[73,77],"t":0},{"d":0,"r":[77,78],"t":0},{"d":0,"r":[78,87],"t":0},{"d":0,"r":[87,88],"t":0},{"d":0,"r":[88,91],"t":0},{"d":0,"r":[91,92],"t":0},{"d":0,"r":[92,100],"t":0},{"d":0,"r":[100,105],"t":0},{"d":0,"r":[105,111],"t":0},{"d":0,"r":[111,112],"t":0},{"d":0,"r":[112,119],"t":0},{"d":0,"r":[119,120],"t":0},{"d":0,"r":[120,126],"t":0},{"d":0,"r":[128,195],"t":0},{"d":0,"r":[128,137],"t":0},{"d":0,"r":[137,138],"t":0},{"d":0,"r":[138,145],"t":0},{"d":0,"r":[145,146],"t":0},{"d":0,"r":[146,150],"t":0},{"d":0,"r":[150,151],"t":0},{"d":0,"r":[151,155],"t":0},{"d":0,"r":[155,156],"t":0},{"d":0,"r":[156,161],"t":0},{"d":0,"r":[161,162],"t":0},{"d":0,"r":[162,171],"t":0},{"d":0,"r":[171,172],"t":0},{"d":0,"r":[172,178],"t":0},{"d":0,"r":[178,179],"t":0},{"d":0,"r":[179,187],"t":0},{"d":0,"r":[187,188],"t":0},{"d":0,"r":[188,194],"t":0},{"d":0,"r":[196,234],"t":0},{"d":0,"r":[196,205],"t":0},{"d":0,"r":[205,206],"t":0},{"d":0,"r":[206,210],"t":0},{"d":0,"r":[210,211],"t":0},{"d":0,"r":[211,220],"t":0},{"d":0,"r":[220,221],"t":0},{"d":[[45,0,9],[46,9,1]],"r":[0,10],"t":2},{"d":0,"r":[221,222],"t":0},{"d":0,"r":[223,227],"t":0},{"d":0,"r":[227,228],"t":0},{"d":0,"r":[228,233],"t":0},{"d":0,"r":[235,253],"t":0},{"d":0,"r":[237,241],"t":0},{"d":0,"r":[241,242],"t":0},{"d":0,"r":[242,252],"t":0},{"d":0,"r":[254,276],"t":0},{"d":0,"r":[254,259],"t":0},{"d":0,"r":[259,260],"t":0},{"d":0,"r":[260,269],"t":0},{"d":0,"r":[269,270],"t":0},{"d":0,"r":[270,275],"t":0},{"d":0,"r":[277,298],"t":0},{"d":0,"r":[277,281],"t":0},{"d":0,"r":[281,282],"t":0},{"d":0,"r":[282,291],"t":0},{"d":0,"r":[291,292],"t":0},{"d":0,"r":[292,297],"t":0},{"d":0,"r":[4,33],"t":0},{"d":68,"r":[7,28],"t":1},{"d":0,"r":[4,33],"t":0},{"d":70,"r":[8,27],"t":1},{"d":71,"r":[0,10],"t":1},{"d":70,"r":[8,27],"t":1},{"d":73,"r":[10,11],"t":1},{"d":70,"r":[8,27],"t":1},{"d":75,"r":[11,19],"t":1},{"d":0,"r":[4,33],"t":0},{"d":77,"r":[0,5],"t":1}]}} \ No newline at end of file